/* ==================== Page loading styles ==================== */
.page-loading {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -webkit-transition: all .4s .2s ease-in-out;
      transition: all .4s .2s ease-in-out;
      background-color: #fff;
      opacity: 0;
      visibility: hidden;
      z-index: 9999;
      }
      [data-bs-theme="dark"] .page-loading {
      background-color: #121519;
      }
      .page-loading.active {
      opacity: 1;
      visibility: visible;
      }
      .page-loading-inner {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      text-align: center;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      -webkit-transition: opacity .2s ease-in-out;
      transition: opacity .2s ease-in-out;
      opacity: 0;
      }
      .page-loading.active > .page-loading-inner {
      opacity: 1;
      }
      .page-loading-inner > span {
      display: block;
      font-family: "Libre Baskerville", serif;

      font-size: 1rem;
      font-weight: normal;
      color: #6f788b;
      }
      [data-bs-theme="dark"] .page-loading-inner > span {
      color: #fff;
      opacity: .6;
      }
      .page-spinner {
      display: inline-block;
      width: 2.75rem;
      height: 2.75rem;
      margin-bottom: .75rem;
      vertical-align: text-bottom;
      background-color: #d7dde2;
      border-radius: 50%;
      opacity: 0;
      -webkit-animation: spinner .75s linear infinite;
      animation: spinner .75s linear infinite;
      }
      [data-bs-theme="dark"] .page-spinner {
      background-color: rgba(255,255,255,.25);
      }
      @-webkit-keyframes spinner {
      0% {
      -webkit-transform: scale(0);
      transform: scale(0);
      }
      50% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
      }
      }
      @keyframes spinner {
      0% {
      -webkit-transform: scale(0);
      transform: scale(0);
      }
      50% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
      }
      }

      .sticky-icon {
          z-index: 9999;
          position: fixed;
          top: 75%;
          right: 0%; /* Changed from right: 0% to left: 0% */
          width: 220px;
          display: flex;
          flex-direction: column;
      }

      .sticky-icon a {
          transform: translate(+160px, 0px); /* Changed from +160px to -160px */
          border-radius: 50px 0px 0px 50px; /* Adjusted for left-side alignment */
          text-align: left;
          margin: 0px;
          text-decoration: none;
          text-transform: uppercase;
          padding: 10px;
          font-size: 22px;
          font-family: 'Oswald', sans-serif;
          transition: all 0.8s;
      }

      .sticky-icon a:hover {
          color: #FFF;
          transform: translate(0px, 0px); /* Keep same for slide-in effect */
      }

      .sticky-icon a:hover i {
          transform: rotate(360deg);
      }

      .whatsapp {
          background-color: #075E54;
          color: #FFF;
      }

      .sticky-icon a i {
          background-color: #FFF;
          height: 40px;
          width: 40px;
          color: #000;
          text-align: center;
          line-height: 40px;
          border-radius: 50%;
          margin-left: 20px;
          transition: all 0.5s;
      }

      .sticky-icon a i.fa-google-plus-g {
          background-color: #FFF;
          color: #d34836;
      }


/*Navbar*/
#top-bar {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s ease;
}

#top-bar.hide {
  transform: translateY(-100%);
  opacity: 0;
}
#main-navbar {
  transition: top 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  top: 30px;
  /* default when topbar is visible */
}

#top-bar.hide+#main-navbar {
  top: 0;
  /* smoothly slides up when topbar hides */
}

/* ==================== HOME PAGE CSS ==================== */
.hmbnr{margin-top: 127px;}
.ratio-21x9 {
  --ar-aspect-ratio: 39.00%;
}


.season-title-section {
  text-align: center;
  padding: 40px 0 20px;
  background-color: #fff;
}

.season-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.season-title {
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #1a1a1a;
}

.line {
  flex: 1;
  height: 1px;
  background-color: #ccc;
  border: none;
  margin: 0;
}

/* HOME CATEGORY BOX --------------------- */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  max-width: 1050px;
  aspect-ratio: 1050 / 750;
}

.category-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Title always visible on all screens */
.overlay-title {
  display: inline-block;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  text-align: center;
}

/* Button default styling */
.overlay-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px; 
}

/* Hover animations for large screens only */
@media (min-width: 992px) {

  .category-card:hover .card-img {
    transform: scale(1.05);
  }

  .category-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);  /* transparent initially */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transition: background 0.4s ease;
  }

  .category-card:hover .overlay {
    background: rgba(0, 0, 0, 0.4);
  }

  .overlay-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: #fff;
    transition: width 0.4s ease;
  }

  .category-card:hover .overlay-title::after {
    width: 100%;
  }

  .overlay-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: auto;
  }

  .category-card:hover .overlay-btn {
    opacity: 1;
    transform: translateY(0);
  }
}

/* For small screens, always show overlay and button */
@media (max-width: 991px) {
  .category-card .overlay {
    position: absolute;
    inset: 0;
    /* always visible overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .overlay-btn {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==================== PRODUCT LISTING ==================== */
.card-ratio-wrapper {
  position: relative;
  width: 100%;
  max-width: 1050px;
  aspect-ratio: 1050 / 750;
  overflow: hidden;
}

.card-hover_new {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #121519;
}

/* Default background image */
.card-bg-default {
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Hover background image (starts hidden) */
.card-bg-hover {
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 2;
}

.card-hover_new:hover .card-bg-hover {
  opacity: 1;
}

.link-with-arrow i {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  display: inline-block;
}

.link-with-arrow:hover i {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}


/* ==================== PRODUCT DETAILS ==================== */
.thumb-swiper {
  max-width: 600px;
  margin: 0 auto;
}

.thumb-swiper .swiper-slide {
  width: 60px !important;
  /* Adjust width as needed */
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumb-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.swiper-thumbnail {
  padding: .5rem .5rem .5rem 0;
}

/* ==================== CONTACT US ==================== */
.contact-heading .divider {
  width: 200px;
  margin: 0.75rem auto;
  border: 0;
  border-top: 1px solid #aaa;
}

.contact-heading p {
  font-size: 1rem;
  color: #333;
}
.social-icons i {
  font-size: 20px;
  background-color: #000;
  color: #ffffff;
  margin-right: 10px;
  border: 1px solid #2c2c2c;
  border-radius: 50%;
  padding: 6px;
  width: 34px;
  text-align: center;
}

/* ==================== FOOTER STYLE ==================== */
footer{background-color: #e1f3f4;}

.footer-social-icons i {
  font-size: 20px;
  background-color: #000;
  color: #ffffff;
  margin-right: 10px;
  border: 1px solid #2c2c2c;
  border-radius: 50%;
  padding: 6px;
  width: 34px;
  text-align: center;
}

.footer-bottom {
  background-color: #fafaf7;
  padding: 20px 0;
  font-size: 14px;
}

.link-underline {
  position: relative;
  display: inline-block; /* remove bottom padding so the pseudo-element position is predictable */
  --u: 1.9px; /* underline thickness */
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px; /* move underline slightly below text baseline */
  width: 100%;
  height: var(--u);
  background: currentColor;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(.2,.9,.3,1);
  will-change: transform; /* avoid fractional pixel blur by forcing the element onto its own layer */
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.link-underline:hover::after,
.link-underline:focus::after {
  transform: scaleX(1);
}