/* Styles for the Gold Page */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: #ffffff !important;
}


/* Announcement Bar Customization */
.announcement-bar {
  background-color: #F4E9D3 !important;
}

/* 2. Hero Section Styles */
#gold-main {
  padding-top: 160px;
  /* Accounts for announcement + header-top + nav-container */
}

@media (max-width: 991px) {
  #gold-main {
    padding-top: 60px;
    /* Increased to clear the full mobile header */
  }

  /* Header Overrides for Gold Page - Keep everything black on mobile */
  #main-header .nav-icon,
  #main-header .logo,
  #main-header .nav-links a,
  #main-header .hamburger-btn img,
  #main-header .search-toggle img {
    filter: brightness(0) !important;
    color: #000 !important;
  }

  .nav-links a::after {
    background-color: #000 !important;
  }

  .header-top,
  .header.scrolled .header-top,
  .nav-container,
  .header.scrolled .nav-container {
    background-color: #ffffff !important;
  }
}

#gold-main .hero-section {
  position: relative;
  top: 0;
  height: 80vh;
  /* Controlled height for banner */
  overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* 👈 yahan value badlo — 0.3 halka, 0.6 zyada dark */
    z-index: 1;
}

.hero-section .hero-content-overlay {
    position: relative;
    z-index: 2; /* overlay ke upar rahega text */
}

#gold-main .hero-section img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-content-overlay {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  z-index: 10;
}

.hero-title {
  font-family: 'Vonca', serif;
  font-size: 48px;
  color: #FFFFFF;
  letter-spacing: 5px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background: transparent;
}



.hero-btn:hover {
  background: #FFFFFF;
  color: #000;
}

.contact-float {
  position: absolute;
  right: 4%;
  bottom: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 11;
  color: #FFFFFF;
}

.contact-icon {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.contact-float span {
  font-family: 'author', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 1px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .hero-btn {
    padding: 0.6rem 2rem;
    font-size: 0.65rem;
  }

  .contact-float {
    bottom: 10%;
    right: 3%;
    gap: 0.2rem;
  }

  .contact-icon {
    width: 22px;
    height: 22px;
  }

  .contact-float span {
    font-size: 0.5rem;
  }
}

/* 3. Redesigned Sections Styling */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0;
}

/* Trust Badges Bar */
.trust-badges-bar {
  padding: 3rem 0;
  background-color: #FFF;
  /* border-bottom: 1px solid #F0F0F0; */
}

.badge-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.badge-item img {
  width: 50px;
  height: 38px;
  margin-bottom: 0.2rem;
  opacity: 0.8;
}

.badge-info h4 {
  font-size: 20px;
  font-family: 'author', 'sans-serif';
  font-weight: 500;
  /* margin-bottom: 0.2rem; */
  letter-spacing: 0;
  /* text-transform: uppercase; */
}

.badge-info p {
  font-family: 'author', 'sans-serif';
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  color: #6B6B6B;
  letter-spacing: 0;
}

/* Trust Badges Slider Specifics */
.trust-badges-bar .slider-wrapper {
  padding: 0 0;
  position: relative;
}

/* Force desktop trust badges to be a clean static grid */
@media (min-width: 769px) {
  .trust-badges-bar .product-slider-container {
    overflow: visible !important;
    width: 100% !important;
  }

  .trust-badges-bar .badge-grid {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transform: none !important;
    transition: none !important;
    width: 100% !important;
  }

  .trust-badges-bar .badge-grid .clone {
    display: none !important;
  }

  .trust-badges-bar .product-arrow {
    display: none !important;
  }
}

/* Categories Slider Section */
.gold-categories-slider {
  padding: 2rem 0 5rem 0;
}

.slider-title {
  font-family: 'vonca', 'serif';
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 0.2rem;
}

.slider-subtext {
  font-family: 'author', 'sans-serif';
  font-size: 16px;
  text-transform: capitalize;
  color: #4C091A;
  margin-bottom: 2.5rem;

}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.categories-row {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  /* width: max-content; */
  transition: transform 0.5s ease;
}

.categories-row::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}

.category-item-square {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - (1.2rem * 5)) / 6);
  /* Fit 6 items exactly on desktop */
  min-width: 150px;
  /* Safety fallback for smaller screens */
  flex-shrink: 0;
}

.item-img-box {
  /* width: 100%; */
  aspect-ratio: 1/1;
  /* background-color: #1a2416; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background: #394120;
  border-radius: 50%;
}

.item-img-box img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.category-item-square span {
  font-family: 'author', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  /* letter-spacing: 0.5px; */
}

.slider-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  transition: opacity 0.3s ease;
}

.slider-arrow:hover {
  opacity: 0.5;
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

.collections-header-section {
  padding: 2rem 0 2rem 0;
  background-color: #FFF;
}

.collection-split {
  display: flex;
  background-color: #FFF;
  padding: 0;
}

.collection-image-left {
  flex: 1.2;
}

.collection-image-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-content-right {
  flex: 1;
  padding: 6rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collection-desc {
  font-size: 16px;
  text-transform: capitalize;
  color: black;
  max-width: 540px;
  margin-bottom: 20px;
}


/* Grace Split - Text Left, Image Right */
.grace-split {
  display: flex;
  background-color: #FFF;
  min-height: 80vh;
}

.grace-content-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8% 0 12%;
}

.grace-title {
  font-family: 'vonca', serif;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 2%;
  color: #111;
  text-transform: uppercase;
}

.grace-desc {
  font-family: 'author', sans-serif;
  font-size: 1rem;
  font-weight: 375;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
  max-width: 450px;
}

.btn-outlined {
  display: inline-block;
  padding: 12px 35px;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: max-content;
}

.btn-outlined:hover {
  background: #111;
  color: #FFF;
}

.grace-image-right {
  flex: 1.2;
}

.grace-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bridal Split */
.bridal-split {
  display: flex;
  background-color: #FFF;
  padding: 0 0 2rem 0;
}

.bridal-content-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8% 0 12%;
}

.bridal-image-right {
  flex: 1.2;
}

.bridal-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bridal-desc {
  font-size: 0.9rem;
  text-transform: capitalize;
  color: black;
  margin: 1.5rem 0 2.5rem;
  max-width: 400px;
}

.shop-all-btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border: 1px solid #111;
  font-size: 0.75rem;
  letter-spacing: 2px;
  width: max-content;
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-all-btn:hover {
  background-color: #111;
  color: #fff;
}

/* Button extracted for mobile reordering - hidden on desktop */
.collection-btn-mobile {
  display: none;
}

/* Original button hidden on mobile (replaced by collection-btn-mobile) */
.desktop-only-btn {
  display: inline-block;
}

/* Packaging Showcase */
.packaging-showcase {
  position: relative;
  width: 100%;
}

.packaging-img-wrapper {
  position: relative;
  width: 100%;
  height: 70vh;
}

.packaging-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.packaging-overlay {
  position: absolute;
  bottom: 15%;
  left: 4%;
  color: #111;
}

.packaging-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.packaging-title {
  font-family: 'Vonca', serif;
  font-size: 2rem;
  letter-spacing: 3px;
}

/* Craftsmanship Dark */
.craftsmanship-dark {
  position: relative;
  width: 100%;
  height: 85vh;
  background-color: #000;
  overflow: hidden;
}

.craftsmanship-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.craftsmanship-bg img,
.craftsmanship-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  /* Slight dimming for text readability */
}

.craftsmanship-content-overlay {
  position: absolute;
  bottom: 8%;
  right: 6%;
  max-width: 480px;
  text-align: left;
  z-index: 2;
}

.craftsmanship-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #FFFFFF;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  padding-bottom: 10%;
  /* Subtle shadow for text pop */
}

.craftsmanship-text strong {
  font-weight: 600;
  color: #FFFFFF;
}

/* Custom Video Controls */
.craft-video-controls {
  position: absolute;
  bottom: 40px;
  left: 6%;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
  width: auto;
  min-width: 300px;
}

.craft-play-pause {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.craft-play-pause:hover {
  transform: scale(1.1);
}

.craft-progress-container {
  flex-grow: 1;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.craft-progress-bar {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
}

.craft-progress-filled {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #FFFFFF;
  width: 0%;
  border-radius: 1px;
}

.craft-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 10px;
  height: 100%;
  min-height: 10px;
  background: #FFFFFF;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.1s linear;
}

/* Ensure controls are visible on mobile but maybe simplified */
@media (max-width: 768px) {
  .craft-video-controls {
    bottom: 20px;
    left: 4%;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .craftsmanship-dark {
    height: 60vh;
  }

  .craftsmanship-content-overlay {
    bottom: 5%;
    right: 5%;
    left: 5%;
    max-width: none;
    text-align: center;
  }
}

/* Why Choose Gold */
.why-choose-gold {
  padding: 4rem 6%;
  background-color: #FFF;
}

/* Slider wrapper - column layout, arrows hidden on desktop */
.why-choose-slider-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Clip wrapper: clips the sliding grid */
.why-choose-clip {
  width: 100%;
  overflow: hidden;
}

/* Controls row: arrows at bottom, hidden on desktop */
.why-choose-controls {
  display: none;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.why-choose-arrow {
  display: flex;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.why-choose-arrow:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.why-choose-arrow:hover img,
.why-choose-arrow:active img {
  filter: brightness(0) invert(1);
}

.why-choose-grid {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 4rem;
}

.choose-item {
  flex: 1;
}

.choose-item img {
  width: 90px;
  height: 90px;
  margin-bottom: 0.5rem;
}

.choose-item h4 {
  font-size: 24px;
  font-weight: 500;
  font-family: 'author', 'sans-serif';
  letter-spacing: 0;
  margin-bottom: 1rem;
  line-height: 30px;
}

.choose-item p {
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0;
  font-family: 'author', 'sans-serif';
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-badges-bar {
    padding: 0 0;
  }

  .trust-badges-bar .slider-wrapper {
    padding: 0;
  }

  /* Arrows mobile pe bilkul hide */
  .trust-badges-bar .product-arrow {
    display: none !important;
  }

  /* Touch scroll slider */
  .trust-badges-bar .product-slider-container {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .trust-badges-bar .product-slider-container::-webkit-scrollbar {
    display: none;
  }

  .badge-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 1rem 5%;
    transform: none !important;
    transition: none !important;
    width: max-content;
  }

  .badge-item {
    flex: 0 0 260px;
    background: #fff;
    padding: 2rem 1.2rem;
    border: 1px solid #F0F0F0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
  }

  .badge-item img {
    width: 75px;
    height: 55px;
    margin-bottom: 1.5rem;
    object-fit: contain;
  }

  .badge-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }

  .badge-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
  }

  .grace-split,
  .collection-split,
  .bridal-split {
    flex-direction: column;
    min-height: auto;
  }

  /* Make each split a flex-column so we can reorder children */
  .grace-split,
  .collection-split {
    display: flex;
    flex-direction: column;
  }

  .collection-image-left,
  .grace-image-right,
  .bridal-image-right {
    order: 2;
  }

  .grace-content-left,
  .collection-content-right,
  .bridal-content-left {
    padding: 2rem 6%;
    order: 1;
    text-align: center;
    align-items: center;
  }

  /* Title and description sit above the image (inside content div order:1) */
  .collection-content-right .slider-title,
  .collection-content-right .collection-desc,
  .grace-content-left .grace-title,
  .grace-content-left .grace-desc {
    order: 1;
  }

  /* Push SHOP ALL button to appear BELOW the image */
  .collection-content-right .shop-all-btn,
  .grace-content-left .shop-all-btn {
    order: 3;
    margin-top: 1.5rem;
  }

  /* Center SHOP ALL button */
  .collection-content-right,
  .grace-content-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .collection-desc,
  .grace-desc {
    text-align: center;
    max-width: 100%;
  }

  /* Show extracted button below image on mobile */
  .collection-btn-mobile {
    display: inline-block;
    order: 3;
    margin: 1.5rem auto 2rem;
    text-align: center;
  }

  /* Hide the original in-content button on mobile */
  .desktop-only-btn {
    display: none !important;
  }


  .grace-title {
    font-size: 2.5rem;
  }

  .craftsmanship-dark-container {
    flex-direction: column;
    text-align: center;
    padding: 0 6%;
  }

  .why-choose-grid {
    flex-direction: row;
    gap: 0;
    margin-top: 0;
    width: 100%;
    transition: transform 0.4s ease;
  }

  .choose-item {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 1rem 0.5rem;
  }

  .why-choose-controls {
    display: flex;
  }

  /* Categories Mobile Grid */
  .gold-categories-slider {
    padding: 1rem 0;
  }

  .gold-categories-slider .slider-wrapper {
    padding: 0;
  }

  .gold-categories-slider .product-arrow,
  .gold-categories-slider .clone {
    display: none !important;
  }

  .categories-row {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem 0.5rem;
    transform: none !important;
    padding: 1.5rem 0;
  }

  .category-item-square {
    grid-column: span 2;
    width: 100% !important;
    min-width: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Center the last two items specifically targeting their custom classes */
  .category-item-square.mobile-center-1 {
    grid-column: 2 / span 2;
  }

  .category-item-square.mobile-center-2 {
    grid-column: 4 / span 2;
  }

  .item-img-box {
    width: 100%;
    max-width: 90px;
    margin: 0 auto 0.8rem;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #394120;
    border-radius: 50%;
  }

  .item-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

/* 4. Product Slider Sections */
.product-slider-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.product-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.product-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.product-container {
  flex: 0 0 calc((100% - 60px) / 4);
  /* Display 4 items by default */
  min-width: 280px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-image-area {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 13;
  overflow: hidden;
  background: #fdfdfd;
}

.image-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-area img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.inner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.product-container:hover .inner-arrow {
  opacity: 1;
}

.inner-arrow.prev {
  left: 10px;
}

.inner-arrow.next {
  right: 10px;
}

.image-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.image-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ddd;
  transition: background 0.3s ease;
}

.image-dots span.active {
  background: #111;
}

.product-details {
  padding: 1.5rem;
  text-align: left;
}

.product-title {
  font-family: 'Vonca', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #111;
  margin-bottom: 0.2rem;
  letter-spacing: 0%;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-family: 'author', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #666666;
}

.wishlist-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.wishlist-btn img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.product-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #eee;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-arrow:hover {
  background: #111;
  color: #fff;
}

.product-arrow:hover img,
.product-arrow:active img {
  filter: brightness(0) invert(1);
}

.product-arrow.prev {
  left: -22px;
}

.product-arrow.next {
  right: -22px;
}

/* Infinite Loop Shadow Effect */
.slider-wrapper::before,
.slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.slider-wrapper::before {
  left: 40px;
  /* background: linear-gradient(to right, #fff, transparent); */
}

.slider-wrapper::after {
  right: 40px;
  /* background: linear-gradient(to left, #fff, transparent); */
}

@media (max-width: 1200px) {
  .product-container {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}

@media (max-width: 768px) {
  .product-slider-section {
    display: none !important;
  }

  .product-container {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: 200px;
  }

  .product-arrow {
    width: 35px;
    height: 35px;
  }

  .product-arrow.prev {
    left: 5px;
  }

  .product-arrow.next {
    right: 5px;
  }

  .slider-wrapper {
    padding: 0 10px;
  }

  .slider-wrapper::before,
  .slider-wrapper::after {
    display: none;
  }

  /* Responsive Section Titles */
  .slider-title,
  .grace-title,
  .packaging-title,
  .newsletter-title {
    text-align: center !important;
  }

  .slider-title {
    font-size: 32px !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2 !important;
  }

  .bridal-desc {
color: #4C091A !important;
text-align: center !important;
font-family: "Author Variable";
font-size: 12px !important;
font-style: normal;
font-weight: 400;
line-height: 20px;
margin: 0px;
  }
  .slider-subtext {
    /* font-size: clamp(0.8rem, 3vw, 1rem) !important; */
    font-size: 12px !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
    font-weight: 400;
  }

  .grace-title {
    font-size: clamp(1.5rem, 7vw, 2.5rem) !important;
    line-height: 1.2 !important;
  }

  .packaging-title {
    font-size: clamp(1.3rem, 6vw, 2rem) !important;
    line-height: 1.2 !important;
  }

  .newsletter-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem) !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 480px) {
  .product-container {
    flex: 0 0 85%;
  }

  .product-slider-track {
    gap: 15px;
  }
}

/* Reels Section */
.reels-section {
  display: none;
  /* Hidden on desktop */
}

@media (max-width: 768px) {
  .reels-section {
    display: block;
    padding: 2rem 0;
    background-color: #FFF;
  }

  .reels-slider-wrapper {
    margin-top: 1.5rem;
    overflow: hidden;
  }

  .reels-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
  }

  .reels-track::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
  }

  .reel-thumb {
    flex: 0 0 60%;
    min-width: 200px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: center;
    cursor: pointer;
  }

  .reel-thumb-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .reel-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .reels-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
  }

  .reels-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #000;
    transition: all 0.3s;
  }

  .reels-dots span.active {
    background-color: #000;
  }
}

/* Full Screen Reels Modal */
.reels-modal {
  display: none;
  /* Hidden initially */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background-color: #000;
  z-index: 99999;
  flex-direction: column;
}

.reels-modal.active {
  display: flex;
}

.reels-modal-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.reels-modal-header a {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.reels-modal-header a.active {
  color: #fff;
  font-weight: 600;
}

.reels-modal-scroll-container {
  flex: 1;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.reels-modal-scroll-container::-webkit-scrollbar {
  display: none;
}

.reel-page {
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  position: relative;
  background: #111;
}

.full-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-overlay-top {
  position: absolute;
  top: 60px;
  /* Below the main categories header */
  left: 0;
  width: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.reel-back-btn {
  background: none;
  border: none;
  color: #fff;
  padding: 5px;
  margin-right: 5px;
  cursor: pointer;
}

.reel-categories-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.reel-categories-scroll::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  white-space: nowrap;
}

.cat-pill.active {
  background: #fff;
  color: #000;
}

.reel-overlay-right {
  position: absolute;
  right: 15px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  z-index: 5;
}

.icon-btn-reel {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.icon-count {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.reel-overlay-bottom {
  position: absolute;
  bottom: 20px;
  left: 15px;
  right: 15px;
  z-index: 5;
}

.reel-product-card {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rpc-image {
  width: 50px;
  height: 50px;
  background: #f5f5f5;
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
}

.rpc-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rpc-details {
  flex: 1;
}

.rpc-details h4 {
  font-family: 'author', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 4px;
}

.rpc-details p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
}

.rpc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.view-prod-btn {
  border: 1px solid #111;
  padding: 6px 15px;
  color: #111;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
}

.save-prod-btn {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.save-prod-btn img {
  width: 18px;
  height: 18px;
}