* {
  margin: 0;
  padding: 0;
}

:root {
  --theme-dark-blue: #101c2b;
  --theme-gold: #ffd700;
  --theme-green-1: #00674f;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Logo Circle Animation */
.ring {
  width: 90px;
  height: 90px;
  border: 5px solid rgba(255, 215, 0, 0.2);
  border-top-color: #ffd700;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  margin-bottom: 20px;
}

/* Brand Name Animation */
.brand-text {
  font-family: "Unbounded", cursive;
  font-size: 1.3rem;
  color: #ffd700;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: glow 1.5s ease-in-out infinite alternate;
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #ffd70050, 0 0 10px #ffd70030;
  }
  to {
    text-shadow: 0 0 15px #ffd70080, 0 0 25px #ffd70060;
  }
}

/* Hide loader when done */
.loader--hide {
  opacity: 0;
  visibility: hidden;
}

body {
  font-size: 16px;
  background-color: var(--theme-dark-blue) !important;
  font-family: "Unbounded", cursive;
  color: white;
}

/* Custom Sections CSS */
.section-custom {
  padding: 0rem;
}

/* Logo Styles */
img.logo-main {
  width: 9rem;
  height: auto;
}

.main {
  padding-top: 4rem;
}

a.btn-theme-green,
a.btn-theme-green:hover {
  color: white;
  background-color: var(--theme-green-1);
  border-radius: 100rem;
  padding: 0.5rem 1rem;
}

.image-product {
  width: 100%;
  height: auto;
}

/* Fatcrush Gold Product Section Styles */

.product-rating {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-rating i {
  color: var(--theme-gold);
}

.product-title {
  color: var(--theme-gold);
  font-weight: 700;
}

.product-headline {
  font-size: 1.5rem;
}

.product-price {
  font-weight: 700;
  font-size: 1.8rem;
}

.badge-discount {
  background-color: var(--theme-green-1);
  font-size: 0.9rem;
}

.weight-options .btn {
  border: 1px solid #fff;
  color: #fff;
}

.weight-options .btn:hover {
  background-color: var(--theme-gold);
  color: var(--theme-dark-blue);
  border-color: var(--theme-gold);
}

/* Accordion custom tweaks */
.accordion-button {
  color: white;
  background-color: transparent;
}

.accordion-button:not(.collapsed) {
  background-color: var(--theme-green-1);
  color: white;
}

/* Accordion icon white plus */
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 1v14M1 8h14' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: transform 0.2s ease;
}

/* When accordion is open - rotate or keep as minus */
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1 8h14' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.accordion-item {
  border: none;
  background-color: transparent;
}

.accordion-body {
  background-color: #0d1723;
  color: #ddd;
}

/* Footer Code */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #111;
  color: #fff;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 60px;
  background-color: #000;
  flex-wrap: wrap;
}

/* Left side */
.footer-left {
  max-width: 40%;
}

.footer-left .logo {
  width: 180px;
  margin-bottom: 10px;
}

.footer-left .tagline {
  font-size: 14px;
  margin-bottom: 15px;
  color: #aaa;
}

.footer-left h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-left .description {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* Right side */
.footer-right {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 40px;
}

.footer-column h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 6px 0;
  font-size: 14px;
  color: #ccc;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #f5c542;
}

/* Swiper ALLL Css */

/* .swiper {
  width: 75%;
  height: auto;
}

.swiper img {
  width: 100%;
  height: auto;
}

.swiper-slide:nth-child(1n) {
  background-color: white;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
} */

.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.common-swiper-main {
  height: 80%;
  width: 100%;
}

.common-swiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.common-swiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.common-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Swiper ALL Css end */

/* Temp */
.swiper-main {
  width: 100%;
  height: 100%;
}

.swiper-slide__common {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide__common img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.autoplay-btn {
  position: absolute;
  bottom: 20px;
  right: 20px; /* 👈 ab right corner pe */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}

.autoplay-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.1);
}

.autoplay-btn i {
  font-size: 20px;
  color: #fff;
}
/* Play Icon */
.play-icon {
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent white;
}

/* Pause Icon */
.pause-icon {
  width: 14px;
  height: 18px;
  background: white;
  position: relative;
}

.pause-icon::before,
.pause-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  background: black;
}

.pause-icon::before {
  left: 0;
}
.pause-icon::after {
  right: 0;
}
/* Temp */

.product-short-banner__headline {
  z-index: 1000;
  position: relative;
  font-size: 2.6rem;
  font-weight: 600;
}

.product-short-banner__para {
  width: 100%;
  height: 100%;
  z-index: 6;
  background-color: rgba(0, 0, 0, 0.26);
  position: absolute;
  top: 0;
  left: 0;
}

.product-short-banner {
  background-image: url(../Assets/Images/himalaya.jpg);
  background-size: cover;
  background-position: center;
  z-index: 5;
  position: relative;
}

.dropdown-menu__products {
  background-color: var(--theme-dark-blue) !important;
  color: white !important;
}

.dropdown-menu__products li a {
  color: var(--theme-gold) !important;
  font-weight: 400;
  font-size: 0.8rem;
}

.dropdown-menu__products li a:hover {
  background-color: transparent;
  color: var(--theme-gold);
}
[id] {
  scroll-margin-top: 150px; /* navbar height */
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
  display: none;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-pagination-bullet {
  color: var(--theme-dark-blue);
}

.swiper-pagination-bullet {
  background: var(--theme-dark-blue);
}
/* Responsive */
@media (max-width: 900px) {
  body {
    font-size: 12px;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .footer-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-short-banner__headline {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 11px;
  }
  .footer-right {
    grid-template-columns: 1fr;
  }
  .product-short-banner__headline {
    font-size: 0.7rem;
    font-weight: 800;
  }

  @media (max-width: 768px) {
    .autoplay-btn {
      width: 38px;
      height: 38px;
      bottom: 10px;
      right: 10px;
    }

    .autoplay-btn i {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .autoplay-btn {
      width: 32px;
      height: 32px;
      bottom: 8px;
      right: 8px;
    }

    .autoplay-btn i {
      font-size: 12px;
    }
  }
}
