body {
   overflow-x: hidden;
   background: bisque;
}
@media (max-width: 576px) {
  .navbar .btn i {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .center-logo {
    width: 45%;
  }
}

section{
  margin: var(--main-margin)
}
.carousel-item img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.nav-tabs .nav-link {
  font-weight: 500;
  color: #495057;
}

/* Header CSS */
.nav-tabs .nav-link.active {
  background-color: #01875f;;
  border-radius: 0.5rem;
  color: #eef1f5;
}

/* Loader CSS */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}
/* Loader fade-out animation */
@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* When loader has .fade-out class, animate it */
#loader.fade-out {
  animation: fadeOut 0.5s forwards;
}

/* Initially hidden */
.d-none {
  display: none !important;
}

/* Loader CSS End*/

/* ////////////////////////////////////////////////////////////////////////////////////// */


  .app-list-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
  }

  .app-list-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 15px;
  }

  .app-info  {
    fill: rgb(32, 33, 36);
    stop-color: rgb(32, 33, 36);
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: .0142857143em;
    line-height: 1.25rem;
    /* font-family: Roboto, Helvetica, Arial, sans-serif; */
    letter-spacing: -.2px;
  }

  .app-info small {
    color: #666;
  }

  .app-row { border-bottom: 1px solid #eee; padding-bottom: 10px; }
.app-icon { width: 80px; height: 80px; border-radius: 12px; }
.rating { font-weight: bold;color: #ff7400 !important; }
.rank { 
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: .0142857143em;
    line-height: 1.25rem;
    /* font-family: Roboto, Helvetica, Arial, sans-serif; */
    align-items: center;
 }

/* ////////////////////////////////////////////////////////////////////////////////////// */

/* /////////Tab CSS/////////// */
  .category-tabs {
     display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.header-images
{
    border-radius: 12px;
    border-width: 0;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    height: 70px;
    width: 70px;
}

.category-tabs .nav-link {
  border: 1px rgb(253, 126, 20, 0.28) solid;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    color: #69676b;
    font-weight: 300;
    background-color: transparent;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
    line-height: normal !important;
    min-width: 100px;
    text-align: center;
}

.category-tabs .nav-link.active {
 background-color: #ffb429;
    color: #ffffff;
    border-color: transparent;
}

.category-tabs .nav-item {
  display: flex;
}



/* /////////Tab CSS/////////// */

/* ??????///////////// New Category Style */

  .scroll-wrapper {
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.category-apps-grid {
  /* display: grid; */
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  grid-gap: 0.75rem;
  grid-auto-columns: 160px;
  padding: 0.5rem;
}

.app-card {
  width: 160px;
  cursor: pointer;
  transition: transform 0.2s ease;
 
  overflow: hidden;
}
/* 

.transparent {
  border: none !important;
} */

.app-card:hover {
  transform: scale(1.05);
}

.app-card img {
  object-fit: contain;
  display: block;
  margin: 0.5rem auto;
  border-radius: 8px;
}

.app-card h6 {
  font-size: 0.85rem;
  margin: 0.3rem 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-card .rating {
  font-size: 0.75rem;
  color: #f5c518;
  text-align: center;
  margin-bottom: 0.3rem;

  line-height: 1rem;
    font-size: .75rem;
    letter-spacing: .025em;
    font-weight: 400;
}

.app-info .rating{
   line-height: 1.3rem;
    font-size: .75rem;
    letter-spacing: .025em;
    font-weight: 400;
}
  /* ??????///////////// New Category Style End */



 /* Recomonded apps section Start*/
  .recommended-section {
  margin: 1rem 0;
}

.recommended-section .section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0.5rem;
}

.recommended-section .horizontal-slider {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.recommended-section .horizontal-slider::-webkit-scrollbar {
  display: none;
}

.recommended-section .slide-card {
  flex: 0 0 auto;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  scroll-snap-align: start;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.recommended-section .slide-card:hover {
  transform: scale(1.03);
}

.recommended-section .slide-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.recommended-section .card-info {
  padding: 0.5rem;
}

.recommended-section .card-info h6 {
  font-size: 0.95rem;
  margin: 0.3rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recommended-section .card-info p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.3rem;
}

.recommended-section .card-info .rating {
  font-size: 0.75rem;
  color: #f5c518;
}
    /* Recomonded apps section End */


    /* Other App section Start*/
 
.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  gap: 0.75rem;
  padding: 0 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.horizontal-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}


.app-card {
  flex: 0 0 auto;
  width: 30%;
  text-align: center;
  scroll-snap-align: start;
}

.app-card img {
  width: 100%;
  border-radius: 16px;
}

.app-card .app-name {
  font-size: 0.7rem;
  margin-top: 6px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.app-card .rating {
  font-size: 12px;
  color: #ffb400;
}



    /* Other App section End */