﻿/* =====================================================
   RESPONSIVE REM SCALE
   All sizing in this file uses rem. The root font-size
   steps up on large displays and down on small ones,
   so every rem value scales proportionally.
   Base reference: 1rem = 16px at 1440px viewport.
   ===================================================== */

/* ── Scale UP for large / 4K displays ── */
html {
  font-size: 16px;   /* 1440px – 1599px  (base) */
  overflow-x: hidden;
}
@media (min-width: 1600px) {
  html { font-size: 17px; }   /* 1rem = 17px */
}
@media (min-width: 1920px) {
  html { font-size: 18px; }   /* 1rem = 18px — 1080p large monitor */
}
@media (min-width: 2560px) {
  html { font-size: 20px; }   /* 1rem = 20px — 4K / ultra-wide */
}

/* ── Scale DOWN for tablets & phones ── */
@media (max-width: 1400px) {
  html { font-size: 15px; }   /* 1rem = 15px */
}
@media (max-width: 1200px) {
  html { font-size: 14.5px; } /* 1rem = 14.5px */
}
@media (max-width: 1024px) {
  html { font-size: 14px; }   /* 1rem = 14px  */
}
@media (max-width: 768px) {
  html { font-size: 15px; }   /* 1rem = 15px  */
}
@media (max-width: 480px) {
  html { font-size: 14px; }   /* 1rem = 14px  */
}
@media (max-width: 360px) {
  html { font-size: 13px; }   /* 1rem = 13px  */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #000;
  background: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}

.no-scroll-y {
  overflow-y: hidden;
}


.section-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 3rem;
}
.cd-slider {
  position: relative;
  width: 100%;
  height: 35rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.cd-slider ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cd-slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  transition: visibility 0s 1s;
  will-change: visibility;
}

.cd-slider li:hover {
  animation-play-state: paused;
}

.cd-slider .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  clip: rect(0, 60rem, 35rem, 60rem);
  transition: clip 0.5s cubic-bezier(0.99, 0.01, 0.45, 0.9) 0.5s;
  will-change: clip;
}

.cd-slider .content {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  padding: 2rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  background: rgba(255, 255, 255, 0.95);
}

.cd-slider .content h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
  text-overflow: ellipsis;
  overflow: hidden;
  transform: translateY(-30%);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
  will-change: transform, opacity;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.cd-slider .content a {
  font-family: "Inter", sans-serif;
  display: inline-block;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border: 0.125rem solid #2c3e50;
  color: #2c3e50;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.5s 0.1s, opacity 0.5s 0.1s;
  will-change: transform, opacity;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  text-decoration: none;
  position: relative;
}

.cd-slider .content a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: #2c3e50;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.cd-slider .content a:hover {
  background: #2c3e50;
  color: #fff;
}

.cd-slider .content a:hover::after {
  transform: scaleX(1);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.prev-btn,
.next-btn {
  width: 3rem;
  height: 3rem;
  border: 0.125rem solid #000;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.prev-btn:hover,
.next-btn:hover {
  background: #000;
  color: #fff;
}

/* Current Slide */
.cd-slider li.current {
  visibility: visible;
  transition-delay: 0s;
}

.cd-slider li.current .image {
  clip: rect(0, 60rem, 35rem, 0);
}

.cd-slider li.current .content h2 {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 1s;
}

.cd-slider li.current .content a {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 1.1s;
}

/* Prev Slide */
.cd-slider li.prev_slide .image {
  clip: rect(0, 0, 35rem, 0);
}

@media screen and (max-width: 768px) {

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .cd-slider {
    height: 30rem;
  }

  .cd-slider li {
    z-index: 1;
    transition: visibility 0s 0.8s;
  }

  .cd-slider li.current {
    z-index: 3;
    transition-delay: 0s;
  }

  .cd-slider li.prev_slide {
    z-index: 2;
  }

  .cd-slider .image {
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .cd-slider li.current .image {
    transform: translateX(0);
    transition-delay: 0.2s;
  }

  .cd-slider li.prev_slide .image {
    transform: translateX(-100%);
    transition-delay: 0s;
  }

  .cd-slider .content {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
    text-align: center;
    z-index: 10;
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .cd-slider li.current .content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
  }

  .cd-slider .content h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
  }

  .cd-slider .content a {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border: 0.0625rem solid white;
    color: white;
    background: transparent;
    margin-top: 0.5rem;
  }

  .cd-slider .content a:hover {
    background: white;
    color: black;
  }

  .cd-slider .content a::after {
    background: white;
  }

  .slider-controls {
    bottom: 1rem;
    right: 1rem;
    z-index: 10;
  }

  .prev-btn,
  .next-btn {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
    letter-spacing: 0.125rem;
  }

  .cd-slider {
    height: 25rem;
  }

  .cd-slider .image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .cd-slider .content {
    width: 100%;
    padding: 0.8rem;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
  }

  .cd-slider .content h2 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .cd-slider .content a {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    margin-top: 0.3rem;
  }
}

/* Collections Hero Showcase */
.collections-showcase {
  padding: 6.25rem 0;
  max-width: 90rem;
  margin: 0 auto;
}

.collection-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 60vh;
  margin-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.collection-hero:last-child {
  margin-bottom: 0;
}

.collection-hero-image {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.collection-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-hero:hover .collection-hero-image img {
  transform: scale(1.05);
}

.collection-hero-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.collection-meta {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 1rem;
}

.collection-hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.collection-hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 3rem;
  max-width: 25rem;
}

.collection-hero-btn {
  display: inline-block;
  background: transparent;
  border: 0.125rem solid #000;
  color: #000;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.collection-hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000;
  transition: left 0.4s ease;
  z-index: -1;
}

.collection-hero-btn:hover::before {
  left: 0;
}

.collection-hero-btn:hover {
  color: #fff;
  transform: translateY(-0.125rem);
}

/* Alternating Layout */
.sarees-hero .collection-hero-content {
  order: 1;
}

.sarees-hero .collection-hero-image {
  order: 2;
}

.accessories-hero .collection-hero-content {
  order: 1;
}

.accessories-hero .collection-hero-image {
  order: 2;
}

/* Dark overlay for better text readability on some images */
.collection-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.collection-hero-content {
  position: relative;
  z-index: 2;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .collections-showcase {
    padding: 3.75rem 1rem;
  }

  .collection-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-bottom: 4rem;
  }

  .collection-hero-image {
    height: 40vh;
    order: 1;
  }

  .collection-hero-content {
    padding: 2rem 1rem;
    order: 2;
    text-align: center;
  }

  .sarees-hero .collection-hero-content,
  .accessories-hero .collection-hero-content {
    order: 2;
  }

  .sarees-hero .collection-hero-image,
  .accessories-hero .collection-hero-image {
    order: 1;
  }

  .collection-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .collection-hero-description {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

/* Preloader */
.ctn-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 900;
}

.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 0.1875rem solid rgba(0, 0, 0, 0.2);
  border-top-color: #000000;
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

/* Texto cargando */
.ctn-preloader .animation-preloader .txt-loading {
  font: bold 5em "Montserrat", sans-serif;
  text-align: center;
  user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #000000;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg);
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.ctn-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 0.0625rem);
}

.ctn-preloader .loader-section.section-left {
  left: 0;
}

.ctn-preloader .loader-section.section-right {
  right: 0;
}

/* Efecto de fade en la animación de cargando */
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

/* Efecto de cortina */
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

/* Animación del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

/* Animación de las letras cargando del preloader */
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* Tamaño de portatil hacia atras (portatil, tablet, celular) */
@media screen and (max-width: 767px) {
  /* Preloader */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }

  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 3.5em "Montserrat", sans-serif;
  }
}

@media screen and (max-width: 500px) {
  /* Prelaoder */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }

  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 2em "Montserrat", sans-serif;
  }
}

/* Special Offers Section */
.special-offers {
  padding: 6.25rem 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.special-offers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 50%
    );
  animation: subtleShimmer 10s linear infinite;
}

.special-offers::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.01) 50%,
    transparent 100%
  );
  animation: sweep 15s ease-in-out infinite;
}

.offers-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 2;
}

.offers-header {
  text-align: center;
  margin-bottom: 5rem;
  animation: elegantFadeIn 1.2s ease-out;
}

.offers-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1.25rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  border-radius: 0.125rem;
  padding: 0.75rem 1.5rem;
  margin-bottom: 1.875rem;
  position: relative;
  overflow: hidden;
}

.offers-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: elegantShine 3s infinite;
}

.badge-text {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.offers-title {
  margin: 0;
  text-align: center;
}

.offers-main {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  font-weight: 300;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin-bottom: 0.9375rem;
  position: relative;
}

.offers-main::after {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.offers-subtitle {
  display: block;
  font-size: 1.2rem;
  font-weight: 200;
  color: #2c3e50;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}

/* Swiper Styles */
.offers-swiper {
  width: 100%;
  padding-bottom: 3.75rem;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: hidden;
}

.offers-swiper .swiper-wrapper {
  display: flex;
  align-items: flex-start;
  height: 28.125rem;
}

.offers-grid {
  display: block;
  margin-bottom: 5rem;
}

.offers-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 28.125rem;
  flex-shrink: 0;
  width: auto;
}

.offers-swiper .offer-card {
  width: 100%;
  max-width: 100%;
  height: 28.125rem;
  flex-shrink: 0;
}

.offers-swiper .swiper-pagination {
  position: relative !important;
  margin-top: 1.875rem;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  bottom: auto !important;
  z-index: 10 !important;
}

.offers-swiper .swiper-pagination-bullet {
  width: 0.5rem !important;
  height: 0.5rem !important;
  background: rgba(0, 0, 0, 0.4) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
  margin: 0 0.25rem !important;
  display: inline-block !important;
  cursor: pointer !important;
}

.offers-swiper .swiper-pagination-bullet:hover {
  background: rgba(0, 0, 0, 0.6) !important;
}

.offers-swiper .swiper-pagination-bullet-active {
  background: #000000 !important;
  width: 1.5rem !important;
  border-radius: 0.75rem !important;
  height: 0.5rem !important;
}

/* Navigation buttons */
.offers-swiper .swiper-button-next,
.offers-swiper .swiper-button-prev {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.625rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 3.125rem;
  height: 3.125rem;
  margin-top: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide navigation buttons on mobile */
@media (max-width: 768px) {
  .offers-swiper .swiper-button-next,
  .offers-swiper .swiper-button-prev {
    display: none !important;
  }
}

.offers-swiper .swiper-button-next:hover,
.offers-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

.offers-swiper .swiper-button-next::after,
.offers-swiper .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.offers-swiper .swiper-button-next {
  right: 0.625rem;
  top: 50%;
  margin-top: -1.5625rem;
}

.offers-swiper .swiper-button-prev {
  left: 0.625rem;
  top: 50%;
  margin-top: -1.5625rem;
}

.offers-swiper .swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.offers-swiper .swiper-button-disabled:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  transform: none;
}

.offers-grid {
  display: block;
  margin-bottom: 5rem;
}

.offer-card {
  position: relative;
  height: 28.125rem;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 0.0625rem solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: block;
  visibility: visible;
  top: 0;
  transform: translateY(0);
}

.offers-swiper .offer-card {
  animation: none;
}

.offer-card:nth-child(1) {
  animation-delay: 0.2s;
}
.offer-card:nth-child(2) {
  animation-delay: 0.4s;
}
.offer-card:nth-child(3) {
  animation-delay: 0.6s;
}

.offer-card:hover {
  transform: translateY(-0.3125rem);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 1.5625rem 3.125rem rgba(0, 0, 0, 0.3);
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.02) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.offer-card:hover::before {
  opacity: 1;
}

.card-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.card-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: contrast(1.1) brightness(1.1);
}

.offer-card:hover .card-bg-image {
  transform: scale(1.05);
  filter: contrast(1.2) brightness(1.2);
}

.card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  padding: 3.125rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  z-index: 3;
}

.card-badge {
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1.25rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 0.5rem 1rem;
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.card-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  margin: 0 0 0.9375rem 0;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  position: relative;
}

.card-title::after {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  width: 2.5rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.6);
}

.card-discount {
  font-size: 3.5rem;
  font-weight: 100;
  color: #ffffff;
  margin: 0 0 1.25rem 0;
  letter-spacing: 0.125rem;
  position: relative;
}

.card-discount::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.25rem;
  width: 0.9375rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.4);
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 2.1875rem 0;
  opacity: 0.7;
  font-weight: 300;
  letter-spacing: 0.0312rem;
}

.card-button {
  background: transparent;
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  padding: 1.125rem 2.1875rem;
  color: white;
  font-weight: 300;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  cursor: pointer;
  transition: all 0.4s ease;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  position: relative;
  overflow: hidden;
}

.card-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.4s ease;
}

.card-button:hover::before {
  left: 0;
}

.card-button:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateX(0.625rem);
}

.card-button i {
  transition: transform 0.4s ease;
  font-size: 0.8rem;
}

.card-button:hover i {
  transform: translateX(0.5rem);
}

.card-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  width: 0.125rem;
  height: 3.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  animation: elegantFloat 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 1.25rem;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  bottom: 30%;
  right: 1.25rem;
  animation-delay: 4s;
  transform: rotate(45deg);
}

.offers-timer {
  background: #000000;
  backdrop-filter: blur(1.875rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 3.75rem;
  text-align: center;
  animation: elegantFadeIn 1s ease-out 0.8s both;
  position: relative;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.3);
}

.offers-timer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6.25rem;
  height: 0.0625rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.timer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}

.timer-label {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
}

.timer-display {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1.25rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  padding: 1.5625rem 1.25rem;
  min-width: 5.625rem;
  transition: all 0.3s ease;
}

.timer-unit:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.timer-number {
  font-size: 2.8rem;
  font-weight: 200;
  color: #ffffff;
  letter-spacing: 0.0625rem;
}

.timer-text {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  margin-top: 0.5rem;
}

.timer-separator {
  font-size: 1.5rem;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.3);
  animation: elegantPulse 2s infinite;
}

/* Offer Card Variants - Removed for minimal black/white theme */

/* Animations */
@keyframes subtleShimmer {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2%, -1%);
  }
  50% {
    transform: translate(1%, 2%);
  }
  75% {
    transform: translate(-1%, -2%);
  }
}

@keyframes sweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes elegantFadeIn {
  from {
    opacity: 0;
    transform: translateY(1.875rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes elegantSlide {
  from {
    opacity: 0;
    transform: translateY(3.125rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes elegantShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes elegantFloat {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-0.9375rem) scaleY(1.2);
    opacity: 0.6;
  }
}

@keyframes elegantPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .special-offers {
    padding: 5rem 0;
  }

  .offers-main {
    font-size: 3rem;
    letter-spacing: 0.375rem;
  }

  .offers-subtitle {
    font-size: 1.1rem;
  }

  .offers-grid {
    display: block;
    margin-bottom: 3.75rem;
  }

  .offers-swiper {
    display: block;
  }

  .offers-swiper .offer-card {
    height: 25rem;
    width: 100%;
    max-width: 21.875rem;
    margin: 0 auto;
  }

  .card-content {
    padding: 2.5rem;
  }

  .card-discount {
    font-size: 3rem;
  }

  .timer-display {
    gap: 0.9375rem;
    flex-wrap: nowrap;
  }

  .timer-unit {
    min-width: 3.75rem;
    padding: 0.9375rem 0.625rem;
  }

  .timer-number {
    font-size: 1.8rem;
  }

  .timer-text {
    font-size: 0.7rem;
  }

  .timer-separator {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .special-offers {
    padding: 3.75rem 0;
  }

  .offers-main {
    font-size: 2.2rem;
    letter-spacing: 0.25rem;
  }

  .offers-subtitle {
    font-size: 1rem;
  }

  .card-title {
    font-size: 1.8rem;
    letter-spacing: 0.1875rem;
  }

  .card-discount {
    font-size: 2.5rem;
  }

  .card-content {
    padding: 2.1875rem;
  }

  .timer-display {
    gap: 0.5rem;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .timer-unit {
    min-width: 2.8125rem;
    padding: 0.625rem 0.375rem;
    flex-shrink: 0;
  }

  .timer-number {
    font-size: 1.2rem;
  }

  .timer-text {
    font-size: 0.6rem;
    margin-top: 0.25rem;
  }

  .timer-separator {
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .offers-timer {
    padding: 1.875rem 0.9375rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 6.25rem 0;
  background: #ffffff;
  position: relative;
}

.testimonials-container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 6.25rem;
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 5rem;
  animation: elegantFadeIn 1s ease-out;
}

.testimonials-title {
  margin: 0;
  text-align: center;
}

.testimonials-main {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.375rem;
  margin-bottom: 0.9375rem;
  position: relative;
}



.testimonials-subtitle {
  display: block;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(44, 62, 80, 0.7);
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
}

.testimonials-grid {
  margin-bottom: 3.75rem;
}

.testimonials-swiper {
  width: 100%;
  padding-bottom: 3.75rem;
  overflow: hidden;
}

.testimonials-swiper .swiper-wrapper {
  display: flex;
  align-items: flex-start;
  min-height: 18.75rem;
}

.testimonials-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  flex-shrink: 0;
}

.testimonial-card {
  background: #ffffff;
  border: 0.0625rem solid #e8e8e8;
  border-radius: 0.5rem;
  padding: 2.5rem 1.875rem;
  margin: 0 0.625rem;
  transition: all 0.3s ease;
  position: relative;
  height: 20rem;
  overflow: visible;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.5rem 1.5625rem rgba(0, 0, 0, 0.12);
  border-color: #d0d0d0;
}

.testimonial-card::before {
  display: none;
}

.testimonial-card::after {
  display: none;
}

.testimonial-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  position: relative;
  flex: 1;
}

.testimonial-stars {
  display: flex;
  gap: 0.1875rem;
  margin-bottom: 1.25rem;
  justify-content: center;
}

.testimonial-stars i {
  color: #d4af37;
  font-size: 1rem;
  transition: color 0.3s ease;
}



.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
  margin: 0 0 1.5625rem 0;
  font-style: italic;
  font-weight: 400;
  flex-grow: 1;
  text-align: center;
  position: relative;
  font-family: Georgia, serif;
}

.testimonial-text::before {
  display: none;
}

.testimonial-text::after {
  display: none;
}

.testimonial-author {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 0.0625rem solid #f0f0f0;
  position: relative;
}

.testimonial-author::before {
  content: '';
  position: absolute;
  top: -0.0625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.875rem;
  height: 0.125rem;
  background: #2c3e50;
}

.author-name {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 0.3125rem 0;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
}

.author-location {
  font-size: 0.85rem;
  color: #888888;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

/* Testimonials Navigation */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  color: #2c3e50;
  background: #ffffff;
  border: 0.0625rem solid #e8e8e8;
  border-radius: 50%;
  width: 3.125rem;
  height: 3.125rem;
  margin-top: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background: #f8f9fa;
  border-color: #d0d0d0;
  color: #2c3e50;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.12);
}

.testimonials-swiper .swiper-button-next {
  right: 1.25rem;
}

.testimonials-swiper .swiper-button-prev {
  left: 1.25rem;
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 3.75rem 0;
  }

  .special-offers {
    padding: 3.75rem 0;
  }

  .about-section {
    padding: 3.75rem 0;
  }

  .cta-section {
    padding: 3.75rem 0;
  }

  .testimonials-container {
    max-width: 100%;
    padding: 0 1.25rem;
  }

  .testimonials-header {
    margin-bottom: 2.5rem;
  }

  .testimonials-main {
    font-size: 2rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .testimonial-card {
    height: 17.5rem;
    padding: 1.875rem 1.25rem;
    margin: 0 0.3125rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .author-name {
    font-size: 0.9rem;
  }

  .author-location {
    font-size: 0.8rem;
  }

  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    display: none !important;
  }

  .testimonials-swiper .swiper-pagination {
    margin-top: 1.875rem !important;
  }

  .testimonials-swiper .swiper-pagination-bullet {
    width: 0.625rem !important;
    height: 0.625rem !important;
    margin: 0 0.25rem !important;
  }

  .testimonials-swiper .swiper-pagination-bullet-active {
    width: 1.5rem !important;
    height: 0.625rem !important;
    border-radius: 0.75rem !important;
  }
}

/* Testimonials Pagination */
.testimonials-swiper .swiper-pagination {
  position: relative !important;
  margin-top: 2.5rem !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  bottom: auto !important;
  left: 50% !important;
  right: auto !important;
  width: 100% !important;
  transform: translateX(-50%) !important;
  z-index: 10 !important;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 0.75rem !important;
  height: 0.75rem !important;
  background: #000000 !important;
  border-radius: 50% !important;
  opacity: 0.3 !important;
  transition: all 0.3s ease !important;
  margin: 0 0.375rem !important;
  display: inline-block !important;
  cursor: pointer !important;
  border: none !important;
}

.testimonials-swiper .swiper-pagination-bullet:hover {
  opacity: 0.6 !important;
  transform: scale(1.1) !important;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: #000000 !important;
  opacity: 1 !important;
  width: 1.875rem !important;
  border-radius: 0.9375rem !important;
  height: 0.75rem !important;
  transform: scale(1) !important;
}

/* About Section - Completely Redesigned */
.about-section {
  padding: 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* About Header */
.about-header {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(1.875rem);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.about-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  gap: 1.25rem;
}

.badge-line {
  width: 3.75rem;
  height: 0.0625rem;
  background: #2c3e50;
  display: block;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
}

.about-title {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: #2c3e50;
  margin: 0 0 0.9375rem 0;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
}

.about-subtitle {
  font-size: 1.1rem;
  color: #666666;
  font-style: italic;
  font-family: Georgia, serif;
  margin: 0;
}

/* About Content */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6.25rem;
}

.about-left {
  opacity: 0;
  transform: translateX(-3.125rem);
  animation: slideInLeft 1s ease-out 0.4s forwards;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
}

.about-main-image {
  width: 100%;
  height: 31.25rem;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}

.about-image-frame:hover .about-main-image {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.image-decoration {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 6.25rem;
  height: 6.25rem;
  border: 0.125rem solid #2c3e50;
  border-top: none;
  border-left: none;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.about-image-frame:hover .image-decoration {
  opacity: 1;
  transform: translate(0.625rem, -0.625rem);
}

.about-right {
  opacity: 0;
  transform: translateX(3.125rem);
  animation: slideInRight 1s ease-out 0.6s forwards;
}

.about-intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #2c3e50;
  margin-bottom: 2.5rem;
  font-family: Georgia, serif;
  font-style: italic;
}

/* About Highlights */
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 0.0625rem solid #f0f0f0;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  padding-left: 0.625rem;
  border-bottom-color: #2c3e50;
}

.highlight-icon {
  flex-shrink: 0;
  width: 3.125rem;
  height: 3.125rem;
  border: 0.125rem solid #2c3e50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.highlight-icon i {
  font-size: 1.2rem;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.highlight-item:hover .highlight-icon {
  background: #2c3e50;
  transform: scale(1.1);
}

.highlight-item:hover .highlight-icon i {
  color: white;
}

.highlight-title {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
}

.highlight-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* About Stats */
.about-stats {
  background: #f8f9fa;
  padding: 3.75rem 0;
  margin: 0 -1.25rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.stat-card {
  text-align: center;
  padding: 1.875rem 1.25rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(1.875rem);
  animation: fadeInUp 1s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.8s; }
.stat-card:nth-child(2) { animation-delay: 1s; }
.stat-card:nth-child(3) { animation-delay: 1.2s; }
.stat-card:nth-child(4) { animation-delay: 1.4s; }

.stat-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0.5rem 1.5625rem rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 0.3125rem 0;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
}

.stat-description {
  font-size: 0.85rem;
  color: #666666;
  margin: 0;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-main {
    font-size: 2.5rem;
    letter-spacing: 0.25rem;
  }
  
  .testimonials-subtitle {
    font-size: 1rem;
  }
  
  .testimonial-card {
    padding: 1.875rem;
    height: 16.25rem;
    margin: 0 0.3125rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3.125rem;
    margin-bottom: 3.75rem;
  }
  
  .about-title {
    font-size: 2.2rem;
    letter-spacing: 0.1875rem;
  }
  
  .about-subtitle {
    font-size: 1rem;
  }
  
  .about-main-image {
    height: 21.875rem;
  }
  
  .about-intro {
    font-size: 1.1rem;
    margin-bottom: 1.875rem;
  }
  
  .highlight-item {
    gap: 0.9375rem;
    padding: 0.9375rem 0;
  }
  
  .highlight-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .highlight-icon i {
    font-size: 1rem;
  }
  
  .highlight-title {
    font-size: 1rem;
  }
  
  .highlight-text {
    font-size: 0.9rem;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .stat-card {
    padding: 1.5625rem 0.9375rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .stat-description {
    font-size: 0.8rem;
  }
}


/* ── New Arrivals Section ── */
.na-section {
  padding: 5rem 0 3rem;
  background: #fff;
  overflow: hidden;
}

.na-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}

.na-section-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: #2c3e50;
  border: 0.0625rem solid #2c3e50;
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}

.na-section-title {
  font-family: "Oswald", sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin: 0;
  display: block;
}

.na-section-line {
  width: 3rem;
  height: 0.0625rem;
  background: #2c3e50;
  margin: 1.25rem auto 0;
}

.na-swiper {
  width: 100%;
  padding: 0 0 3.5rem;
  overflow: hidden;
}

.na-swiper .swiper-slide {
  height: 33rem;
}

.na-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
}

.na-card:hover .na-img {
  transform: scale(1.06);
}

.na-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.na-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    transparent 100%
  );
}

.na-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.na-badge {
  display: inline-block;
  background: #2c3e50;
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0.125rem;
  width: fit-content;
}

.na-name {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1;
  margin: 0;
}

.na-btn {
  display: inline-block;
  background: transparent;
  border: 0.0625rem solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 0.125rem;
  width: fit-content;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.na-btn:hover {
  background: #2c3e50;
  border-color: #2c3e50;
}

/* Nav arrows */
.na-swiper .swiper-button-prev,
.na-swiper .swiper-button-next {
  width: 3rem;
  height: 3rem;
  background: #2c3e50;
  border-radius: 50%;
  color: #fff;
  top: 44%;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.na-swiper .swiper-button-prev::after,
.na-swiper .swiper-button-next::after {
  font-size: 0.8rem;
  font-weight: 900;
}

.na-swiper .swiper-button-prev:hover,
.na-swiper .swiper-button-next:hover {
  background: #1a2635;
}

/* Disabled state — buttons fade when slider reaches start/end */
.na-swiper .swiper-button-disabled {
  opacity: 0.25 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}

/* Pagination dots */
.na-swiper .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.na-swiper .swiper-pagination-bullet-active {
  background: #2c3e50;
  width: 1.5rem;
  border-radius: 0.25rem;
}

@media (max-width: 768px) {
  .na-section-title {
    font-size: 2.5rem;
    letter-spacing: 0.3rem;
  }
  .na-swiper .swiper-slide {
    height: 26rem;
  }
  .na-name {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .na-section-title {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
  .na-swiper .swiper-slide {
    height: 22rem;
  }
  .na-name {
    font-size: 1.4rem;
  }
  .na-content {
    padding: 1.5rem 1.25rem;
  }
}

/* CTA Section - Elegant & Modern */
.cta-section {
  padding: 6.25rem 0;
  margin: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.cta-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  min-height: 37.5rem;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(44, 62, 80, 0.03) 0.0625rem, transparent 0.0625rem),
    radial-gradient(circle at 75% 75%, rgba(44, 62, 80, 0.03) 0.0625rem, transparent 0.0625rem);
  background-size: 3.125rem 3.125rem;
  animation: patternFloat 20s linear infinite;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.8), transparent);
}

.cta-text-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateX(-3.125rem);
  animation: slideInLeft 1s ease-out 0.3s forwards;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(44, 62, 80, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 0;
  margin-bottom: 1.5625rem;
  transition: all 0.3s ease;
}

.cta-badge:hover {
  background: rgba(44, 62, 80, 0.15);
  transform: translateY(-0.125rem);
}

.cta-badge-icon {
  color: #2c3e50;
  font-size: 1rem;
  animation: sparkle 2s ease-in-out infinite;
}

.cta-badge-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
}

.cta-title {
  margin: 0 0 1.5625rem 0;
  line-height: 1.2;
}

.cta-title-main {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #2c3e50;
  margin-bottom: 0.3125rem;
}

.cta-title-highlight {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
  position: relative;
}



.cta-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666666;
  margin: 0 0 2.1875rem 0;
  max-width: 31.25rem;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  margin-bottom: 2.5rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #2c3e50;
  opacity: 0;
  transform: translateX(-1.25rem);
  animation: slideInLeft 0.6s ease-out forwards;
}

.cta-feature:nth-child(1) { animation-delay: 1.2s; }
.cta-feature:nth-child(2) { animation-delay: 1.4s; }
.cta-feature:nth-child(3) { animation-delay: 1.6s; }

.cta-feature i {
  color: #2c3e50;
  font-size: 1.1rem;
  width: 1.25rem;
  text-align: center;
}

.cta-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9375rem 1.875rem;
  border: none;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(1.25rem);
  animation: fadeInUp 0.6s ease-out 1.8s forwards;
}

.cta-button.primary {
  background: #2c3e50;
  color: white;
  box-shadow: 0 0.25rem 0.9375rem rgba(44, 62, 80, 0.2);
}

.cta-button.primary:hover {
  background: #1a252f;
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.5rem 1.5625rem rgba(44, 62, 80, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: #2c3e50;
  border: 0.125rem solid #2c3e50;
}

.cta-button.secondary:hover {
  background: #2c3e50;
  color: white;
  transform: translateY(-0.1875rem);
}

.button-text {
  position: relative;
  z-index: 2;
}

.button-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
  transform: translateX(0.1875rem);
}

.button-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.cta-button.primary:hover .button-ripple {
  width: 18.75rem;
  height: 18.75rem;
}

.cta-visual {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateX(3.125rem);
  animation: slideInRight 1s ease-out 0.5s forwards;
}

.cta-image-container {
  position: relative;
}

.cta-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.cta-image {
  width: 100%;
  height: 31.25rem;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: contrast(1.1) saturate(0.9);
}

.cta-image-frame:hover .cta-image {
  transform: scale(1.05);
}

.cta-image-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.decoration-element {
  position: absolute;
  border: 0.125rem solid rgba(44, 62, 80, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.decoration-element:nth-child(1) {
  width: 3.75rem;
  height: 3.75rem;
  top: 1.25rem;
  right: 1.25rem;
  animation-delay: 0s;
}

.decoration-element:nth-child(2) {
  width: 2.5rem;
  height: 2.5rem;
  bottom: 5rem;
  left: 1.875rem;
  animation-delay: 2s;
}

.decoration-element:nth-child(3) {
  width: 1.875rem;
  height: 1.875rem;
  top: 50%;
  right: 2.5rem;
  animation-delay: 4s;
}

.cta-floating-card {
  position: absolute;
  bottom: -1.25rem;
  left: -1.875rem;
  background: white;
  padding: 1.25rem 1.5625rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.9375rem 2.1875rem rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(0.625rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.8);
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card-content {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}

.floating-card-icon {
  width: 2.8125rem;
  height: 2.8125rem;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.floating-card-text {
  display: flex;
  flex-direction: column;
}

.floating-card-number {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1;
}

.floating-card-label {
  font-size: 0.8rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
}

/* Animations */
@keyframes patternFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-0.625rem); }
  100% { transform: translateY(0); }
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(180deg); }
}

@keyframes expandWidth {
  to { transform: scaleX(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-0.625rem) rotate(120deg); }
  66% { transform: translateY(0.3125rem) rotate(240deg); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.5rem); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 5rem 0;
  }
  
  .cta-content {
    grid-template-columns: 1fr;
    gap: 3.125rem;
    text-align: center;
  }
  
  .cta-title-main {
    font-size: 2rem;
  }
  
  .cta-title-highlight {
    font-size: 2.5rem;
    letter-spacing: 0.125rem;
  }
  
  .cta-description {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-button {
    justify-content: center;
    padding: 1.125rem 1.5625rem;
  }
  
  .cta-image {
    height: 21.875rem;
  }
  
  .cta-floating-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 1.25rem;
    justify-self: center;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  padding: 1.5625rem 2.5rem;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(0.625rem);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
}

/* Logo Transformation System */
.logo-master {
  position: fixed;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  text-align: center;
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-logo {
  position: relative;
}

.main-logo img {
  height: 12.5rem;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled state - logo moves to navbar position */
.header.scrolled .logo-master {
  /* JavaScript handles the transformation */
}

.header.scrolled .main-logo img {
  /* JavaScript handles the transformation */
}

/* Rest of your CSS... */
.nav-icons {
  display: flex;
  gap: 1.5625rem;
  align-items: center;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  stroke-width: 1.5;
}

.header.scrolled .icon {
  color: #000;
}

.menu-text {
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  font-weight: 400;
  transition: color 0.3s ease;
}

.header.scrolled .menu-text {
  color: #000;
}

/* Contact Us in Navbar */
.contact-text {
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  font-weight: 400;
  transition: color 0.3s ease;
  margin-right: auto;
}

.header.scrolled .contact-text {
  color: #000;
}

.contact-icon {
  margin-right: 0.5rem;
  font-size: 0.875rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.contact-text:hover .contact-icon {
  transform: rotate(180deg);
}

/* Main Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 50rem;
}

.hero-collection {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.25rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0.0625rem 0.0625rem 0.1875rem rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.125rem;
  margin-bottom: 2.5rem;
  color: #fff;
  text-shadow: 0.0625rem 0.0625rem 0.1875rem rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

.hero-button {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  border: none;
  padding: 0.9375rem 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.hero-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-0.125rem);
}

.btn {
  background-color: transparent;
  border: 0.125rem solid #000;
  color: #000;
  padding: 0.9375rem 1.875rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
}

.btn--block {
  display: block;
  width: 100%;
}

.btn:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-0.125rem);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards__item {
  display: flex;
  padding: 1rem;
}

@media (min-width: 40rem) {
  .cards__item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .cards__item {
    width: 25%;
  }
}

.card {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 1.25rem 2.5rem -0.875rem rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 1.5625rem 3.125rem -0.75rem rgba(0, 0, 0, 0.35);
}

.card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
}

.card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  overflow: hidden;
  position: relative;
}

.card__image::before {
  content: "";
  display: block;
  padding-top: 90%;
}

@media (min-width: 40rem) {
  .card__image::before {
    padding-top: 110%;
  }
}

.card__image--suits {
  background-image: url("images/cheerful-traditional-indian-woman-white-background-studio-shot.jpg");
}

.card__image--sarees {
  background-image: url("images/new arr1 (1).jpg");
}

.card__image--cordsets {
  background-image: url("images/new arr2.jpg");
}

.card__image--accessories {
  background-image: url("images/new arr 3.png");
}

.card__title {
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.card__text {
  flex: 1 1 auto;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #666;
  font-weight: 300;
}

/* Suits and Kurtis Section */
.suits-kurtis {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0;
}

.suits-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 37.5rem;
  margin-bottom: 4rem;
  background: #000;
}

.suits-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.suits-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.suits-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 90%;
  max-width: 50rem;
}

.suits-hero__title {
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.125rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.suits-hero__subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.0625rem;
}

/* Responsive Styles for Suits and Kurtis Section */
@media (max-width: 768px) {
  .suits-hero {
    height: 50vh;
    min-height: 25rem;
  }

  .suits-hero__title {
    font-size: 2.5rem;
  }

  .suits-hero__subtitle {
    font-size: 1rem;
  }

  .product-grid {
    padding: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(15.625rem, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .suits-hero__title {
    font-size: 2rem;
  }

  .product-grid {
    padding: 1rem;
    gap: 1rem;
  }
}

.suits-kurtis-content {
  padding: 2.5rem 0;
}

.suits-kurtis-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.875rem;
  line-height: 1.2;
}

.suits-kurtis-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.suits-kurtis-btn {
  background: transparent;
  border: 0.125rem solid #000;
  color: #000;
  padding: 0.9375rem 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.suits-kurtis-btn:hover {
  background: #000;
  color: #fff;
}

.suits-kurtis-image {
  position: relative;
  overflow: hidden;
}

.suits-kurtis-img {
  width: 100%;
  height: 37.5rem;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.suits-kurtis-image:hover .suits-kurtis-img {
  transform: scale(1.02);
}

/* Sarees Section */
.sarees {
  padding: 7.5rem 2.5rem;
  background: #fff;
}

.sarees-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 100rem;
  margin: 0 auto;
  align-items: center;
}

.sarees-content {
  padding: 2.5rem 0;
}

.sarees-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.875rem;
  line-height: 1.2;
}

.sarees-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.sarees-btn {
  background: transparent;
  border: 0.125rem solid #000;
  color: #000;
  padding: 0.9375rem 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.sarees-btn:hover {
  background: #000;
  color: #fff;
}

.sarees-image {
  position: relative;
  overflow: hidden;
}

.sarees-img {
  width: 100%;
  height: 37.5rem;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.sarees-image:hover .sarees-img {
  transform: scale(1.02);
}

/* Cord Sets Section */
.cord-sets {
  padding: 7.5rem 2.5rem;
  background: #f8f8f8;
}

.cord-sets-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 100rem;
  margin: 0 auto;
  align-items: center;
}

.cord-sets-content {
  padding: 2.5rem 0;
}

.cord-sets-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.875rem;
  line-height: 1.2;
}

.cord-sets-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.cord-sets-btn {
  background: transparent;
  border: 0.125rem solid #000;
  color: #000;
  padding: 0.9375rem 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.cord-sets-btn:hover {
  background: #000;
  color: #fff;
}

.cord-sets-image {
  position: relative;
  overflow: hidden;
}

.cord-sets-img {
  width: 100%;
  height: 37.5rem;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.cord-sets-image:hover .cord-sets-img {
  transform: scale(1.02);
}

/* Accessories Section */
.accessories {
  padding: 7.5rem 2.5rem;
  background: #fff;
}

.accessories-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 100rem;
  margin: 0 auto;
  align-items: center;
}

.accessories-content {
  padding: 2.5rem 0;
}

.accessories-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.875rem;
  line-height: 1.2;
}

.accessories-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.accessories-btn {
  background: transparent;
  border: 0.125rem solid #000;
  color: #000;
  padding: 0.9375rem 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.accessories-btn:hover {
  background: #000;
  color: #fff;
}

.accessories-image {
  position: relative;
  overflow: hidden;
}

.accessories-img {
  width: 100%;
  height: 37.5rem;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.accessories-image:hover .accessories-img {
  transform: scale(1.02);
}

/* Services Section */
.services {
  padding: 6.25rem 2.5rem;
  background: #fff;
}

.services-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.375rem;
  margin-bottom: 5rem;
  text-transform: uppercase;
  color: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 87.5rem;
  margin: 0 auto;
}

.service-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-0.625rem);
}

.service-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 1.875rem;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1875rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  color: #000;
}

.service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  max-width: 18.75rem;
  margin: 0 auto;
}

/* Sliding Menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 31.25rem;
  height: 100%;
  background: white;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.menu-overlay.active .menu-content {
  transform: translateX(0);
}

.menu-header {
  padding: 1.5625rem 2.5rem;
  border-bottom: 0.0625rem solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6.25rem;
}

.menu-close-text {
  background: none;
  border: none;
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
  color: #666;
  font-weight: 400;
  line-height: 1;
}

.menu-items {
  padding: 2.5rem;
}

.menu-category {
  margin-bottom: 2.5rem;
}

.menu-category-title {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #000;
}

.menu-links {
  list-style: none;
}

.menu-links li {
  margin-bottom: 0.9375rem;
}

.menu-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.0625rem;
  transition: color 0.3s ease;
}

.menu-links a:hover {
  color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-collection {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
    padding: 0 1rem;
  }

  .hero-button {
    flex: 0 1 auto;
    padding: 0.625rem 1rem;
    font-size: 0.625rem;
    letter-spacing: 0.0625rem;
    min-width: 7.5rem;
    max-width: 8.75rem;
    white-space: nowrap;
  }
}

@media screen and (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 2rem;
  }

  .hero-button {
    width: 100%;
    max-width: 12.5rem;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    font-size: 0.6875rem;
  }

  .curated-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .new-in {
    grid-template-columns: 1fr;
    height: auto;
  }

  .new-in-item {
    height: 50vh;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .menu-content {
    width: 100vw;
  }

  .contact-link {
    display: none;
  }
  .contact-text {
    margin-left: -1.375rem;
  }
  .menu-text {
    margin-right: -1.375rem;
  }
}

/* Contact Sliding Panel */
.contact-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.contact-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 31.25rem;
  height: 100%;
  background: white;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.contact-overlay.active .contact-content {
  transform: translateX(0);
}

.contact-header {
  padding: 1.5625rem 2.5rem;
  border-bottom: 0.0625rem solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6.25rem;
}

.contact-close-text {
  background: none;
  border: none;
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
  color: #666;
  font-weight: 400;
  line-height: 1;
}

.contact-details {
  padding: 2.5rem;
}

.contact-section {
  margin-bottom: 2.5rem;
}

.contact-section-title {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #000;
}

.contact-info {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0.9375rem;
}

.contact-info strong {
  color: #000;
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-content {
    width: 100vw;
  }
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 25rem;
  height: 100%;
  background: white;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.search-overlay.active .search-content {
  transform: translateX(0);
}

.search-header {
  padding: 1.5625rem 2.5rem;
  border-bottom: 0.0625rem solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6.25rem;
}

.search-close-text {
  background: none;
  border: none;
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
  color: #666;
  font-weight: 400;
  line-height: 1;
}

.search-main {
  padding: 2.5rem;
}

.search-input-container {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.9375rem 0;
  border: none;
  border-bottom: 0.125rem solid #eee;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-bottom-color: #000;
}

.search-results {
  margin-top: 1.875rem;
}

.search-result-item {
  padding: 0.9375rem 0;
  border-bottom: 0.0625rem solid #f0f0f0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-result-item:hover {
  color: #666;
}

.search-result-category {
  font-size: 0.6875rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.3125rem;
}

.search-result-title {
  font-size: 0.875rem;
  font-weight: 400;
  color: #000;
}

.search-no-results {
  text-align: center;
  color: #999;
  font-size: 0.875rem;
  padding: 2.5rem 0;
}

@media (max-width: 768px) {
  .search-content {
    width: 100vw;
  }
}

/* Elegant CTA Section */
.cta {
  padding: 7.5rem 2.5rem;
  background: #000;
  text-align: center;
}

.cta-container {
  max-width: 75rem;
  margin: 0 auto;
}

.cta-content {
  color: white;
}

.cta-title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.375rem;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3.125rem;
  font-weight: 300;
  opacity: 0.9;
  max-width: 37.5rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1.125rem 3.125rem;
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 0.125rem solid white;
}

.cta-btn.primary {
  background: white;
  color: #000;
}

.cta-btn.primary:hover {
  background: transparent;
  color: white;
}

.cta-btn.secondary {
  background: transparent;
  color: white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #000;
}

/* Contact Us Section */
.contact-us {
  padding: 7.5rem 2.5rem;
  background: #f8f8f8;
}

.contact-us-container {
  max-width: 75rem;
  margin: 0 auto;
  text-align: center;
}

.contact-us-content {
  margin-bottom: 5rem;
}

.contact-us-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.375rem;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.875rem;
  line-height: 1.2;
}

.contact-us-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  font-weight: 300;
  max-width: 37.5rem;
  margin: 0 auto;
}

.contact-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem;
  max-width: 62.5rem;
  margin: 0 auto;
}

.contact-us-item {
  text-align: center;
}

.contact-us-item-title {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.5625rem;
}

.contact-us-info {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
}

.contact-us-info p {
  margin-bottom: 0.5rem;
}

/* Footer - Clean & Elegant Design */
.footer {
  background: #2c3e50;
  color: white;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(52, 73, 94, 0.1) 0%, transparent 50%, rgba(44, 62, 80, 0.1) 100%);
  pointer-events: none;
}

.footer-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 2;
}

.footer-top {
  padding: 5rem 0 3.125rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3.75rem;
  align-items: flex-start;
}

/* Footer Brand */
.footer-brand {
  opacity: 0;
  transform: translateY(1.875rem);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.brand-logo {
  margin-bottom: 1.5625rem;
}

.footer-logo {
  height: 15rem;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.brand-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.875rem;
  max-width: 18.75rem;
}

.brand-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: white;
}

.contact-item i {
  width: 1.25rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer Links */
.footer-links {
  opacity: 0;
  transform: translateY(1.875rem);
  animation: fadeInUp 0.8s ease-out forwards;
}

.footer-links:nth-child(2) { animation-delay: 0.4s; }
.footer-links:nth-child(3) { animation-delay: 0.6s; }

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5625rem;
  position: relative;
  padding-bottom: 0.625rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 0.125rem;
  background: rgba(255, 255, 255, 0.3);
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li {
  margin-bottom: 0.625rem;
  transform: translateX(-0.625rem);
  opacity: 0;
  animation: slideInLeft 0.6s ease-out forwards;
}

.link-list li:nth-child(1) { animation-delay: 0.8s; }
.link-list li:nth-child(2) { animation-delay: 0.9s; }
.link-list li:nth-child(3) { animation-delay: 1s; }
.link-list li:nth-child(4) { animation-delay: 1.1s; }
.link-list li:nth-child(5) { animation-delay: 1.2s; }

.link-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.link-list a:hover {
  color: white;
  transform: translateX(0.3125rem);
}

.link-list a::before {
  content: '';
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  width: 0;
  height: 0.0625rem;
  background: white;
  transition: width 0.3s ease;
}

.link-list a:hover::before {
  width: 100%;
}

/* Newsletter Section */
.footer-newsletter {
  opacity: 0;
  transform: translateY(1.875rem);
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.newsletter-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5625rem;
  line-height: 1.6;
}

.newsletter-form {
  margin-bottom: 2.1875rem;
}

.input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  overflow: hidden;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.input-group:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-input {
  flex: 1;
  padding: 0.9375rem 1.125rem;
  border: none;
  background: transparent;
  color: white;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 0.9375rem 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.newsletter-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.newsletter-btn i {
  font-size: 1rem;
}

/* Social Section */
.social-section {
  margin-top: 1.5625rem;
}

.social-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.9375rem;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.8125rem;
  height: 2.8125rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(1.25rem);
  animation: fadeInUp 0.6s ease-out forwards;
}

.social-link:nth-child(1) { animation-delay: 1.4s; }
.social-link:nth-child(2) { animation-delay: 1.5s; }
.social-link:nth-child(3) { animation-delay: 1.6s; }
.social-link:nth-child(4) { animation-delay: 1.7s; }

.social-link:hover {
  transform: translateY(-0.1875rem);
  color: white;
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
}

.social-link[title="Instagram"]:hover { background: #E4405F; }
.social-link[title="Facebook"]:hover { background: #1877F2; }
.social-link[title="Pinterest"]:hover { background: #BD081C; }
.social-link[title="YouTube"]:hover { background: #FF0000; }

.social-link i {
  font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
  padding: 1.875rem 0;
  opacity: 0;
  transform: translateY(1.25rem);
  animation: fadeInUp 0.8s ease-out 1.8s forwards;
}

.footer-bottom-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.875rem;
}

.footer-left {
  justify-self: start;
}

.footer-center {
  justify-self: center;
}

.footer-right {
  justify-self: end;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-badges {
  display: flex;
  gap: 1.5625rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.badge i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-policies {
  display: flex;
  gap: 1.25rem;
}

.footer-policies a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-policies a:hover {
  color: white;
}

/* Back to Top Button */
/* Floating Action Button Stack */
.fab-stack {
  position: fixed;
  bottom: 1.875rem;
  right: 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 1000;
}

.fab {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  font-size: 1.4rem;
  color: #fff;
}

.fab-whatsapp {
  background: #25d366;
}

.fab-whatsapp:hover {
  background: #1da851;
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.375rem 1.25rem rgba(37, 211, 102, 0.45);
}

.fab-call {
  background: #2c3e50;
}

.fab-call:hover {
  background: #1a252f;
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.375rem 1.25rem rgba(44, 62, 80, 0.45);
}

.back-to-top {
  width: 3.125rem;
  height: 3.125rem;
  background: #34495e;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(1.25rem);
  pointer-events: none;
}

.back-to-top:hover {
  background: #2c3e50;
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top i {
  font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Responsive for Sections */
@media (max-width: 768px) {

  .suits-kurtis-container,
  .sarees-container,
  .cord-sets-container,
  .accessories-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .suits-kurtis-title,
  .sarees-title,
  .cord-sets-title,
  .accessories-title {
    font-size: 2rem;
  }

  .suits-kurtis-img,
  .sarees-img,
  .cord-sets-img,
  .accessories-img {
    height: 25rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1.25rem;
  }

  .contact-us-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-top {
    padding: 3.75rem 0 2.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

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

  .brand-description {
    max-width: 100%;
    margin-bottom: 1.5625rem;
  }

  .brand-contact {
    align-items: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }

  .footer-center {
    order: -1;
  }

  .footer-badges {
    flex-direction: column;
    gap: 0.625rem;
  }

  .footer-policies {
    flex-direction: column;
    gap: 0.625rem;
  }

  .fab-stack {
    bottom: 1.25rem;
    right: 1.25rem;
    gap: 0.6rem;
  }

  .fab,
  .back-to-top {
    width: 2.8125rem;
    height: 2.8125rem;
  }

  .fab {
    font-size: 1.2rem;
  }

  .back-to-top i {
    font-size: 1rem;
  }
}

.suits-kurtis {
  padding: 2rem 4rem;
  max-width: 90rem;
  margin: 0 auto;
}

.collection-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #e5e5e5;
}

.collection-info {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.collection-title {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}

.collection-count {
  color: #666;
  font-size: 0.875rem;
}

.collection-filters {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 0.0625rem solid #e5e5e5;
  cursor: pointer;
  font-size: 0.875rem;
}

.sort-select {
  padding: 0.75rem 2rem 0.75rem 1rem;
  border: 0.0625rem solid #e5e5e5;
  background: transparent;
  font-size: 0.875rem;
  cursor: pointer;
  appearance: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
  gap: 2rem;
  padding: 4rem;
  background: #fff;
}

.product-card {
  position: relative;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-0.3125rem);
}

.product-card__media {
  position: relative;
  aspect-ratio: 3/4;
  background: #f8f8f8;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__quick-add {
  transform: translateY(0);
}

.quick-add-btn {
  width: 100%;
  padding: 0.75rem;
  background: #000;
  color: #fff;
  border: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quick-add-btn:hover {
  background: #333;
}

.product-card__info {
  padding: 1rem 0;
  text-align: center;
}

.product-card__title {
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.product-card__price {
  color: #666;
  margin: 0;
}

.product-card__colors {
  display: flex;
  gap: 0.5rem;
}

.color-swatch {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.color-swatch:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .suits-kurtis {
    padding: 1rem;
  }

  .collection-header {
    flex-direction: column;
    gap: 1rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(15.625rem, 1fr));
    gap: 1rem;
  }
}

/* Collection Sections */
.collection-section {
  padding: 0 0 4rem;
  background-color: #fff;
  width: 100%;
  overflow: hidden;
}

.collection-hero {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  margin-bottom: 3rem;
}

.collection-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease-out;
}

.collection-hero:hover .collection-hero__image {
  transform: scale(1.05);
}

.collection-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.collection-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 50rem;
}

.collection-hero__title {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
}

.collection-hero__subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Product Slider Styles */
.collection-slider-container {
  padding: 2rem 5%;
}

.slider-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
  font-family: "Oswald", sans-serif;
}

.product-slider {
  position: relative;
  padding: 0 2.5rem;
}

.slider-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 18.75rem;
  scroll-snap-align: start;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__quick-add {
  transform: translateY(0);
}

.quick-add-btn {
  width: 100%;
  padding: 0.8rem;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: background-color 0.3s ease;
}

.quick-add-btn:hover {
  background: #333;
}

.product-card__info {
  padding: 1rem 0;
  text-align: center;
}

.product-card__title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.product-card__price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: #fff;
  border: 0.0625rem solid #ddd;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.slider-arrow:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

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

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

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

  .collection-slider-container {
    padding: 1rem;
  }

  .product-slider {
    padding: 0 1.25rem;
  }

  .product-card {
    flex: 0 0 17.5rem;
  }

  .slider-arrow {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .collection-hero {
    height: 50vh;
  }

  .collection-hero__title {
    font-size: 2rem;
  }

  .collection-hero__subtitle {
    font-size: 0.9rem;
  }

  .product-card {
    flex: 0 0 15rem;
  }
}

/* Popular Categories Section */
.popular-section {
  padding: 4rem 2rem;
  background: #ffffff;
}

.popular-container {
  max-width: 75rem;
  margin: 0 auto;
}

.popular-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.popular-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

.popular-view-all {
  color: #3498db;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.popular-view-all:hover {
  color: #2980b9;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.category-item:hover {
  transform: translateY(-0.3125rem);
}

.category-icon {
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 1.25rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0.5rem 1.5625rem rgba(0, 0, 0, 0.1);
}

.category-item.travel .category-icon {
  background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
}

.category-item.electronics .category-icon {
  background: linear-gradient(135deg, #dc143c 0%, #b22222 100%);
}

.category-item.furniture .category-icon {
  background: linear-gradient(135deg, #f4e4bc 0%, #d4a574 100%);
}

.category-item.books .category-icon {
  background: linear-gradient(135deg, #4f9cf9 0%, #1e40af 100%);
}

.category-item.handbag .category-icon {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.category-item.accessories .category-icon {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-item:hover .category-image {
  transform: scale(1.1);
}

.category-name {
  font-size: 1rem;
  font-weight: 500;
  color: #2c3e50;
  margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .popular-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-icon {
    width: 6.25rem;
    height: 6.25rem;
  }
}

@media (max-width: 768px) {
  .elevate-hero {
    flex-direction: column;
    min-height: auto;
  }

  .elevate-hero__left,
  .elevate-hero__right {
    border-radius: 0;
    padding: 1.5rem;
  }

  .elevate-hero__center {
    padding: 2rem 1rem;
  }

  .elevate-title {
    font-size: 2.5rem;
    text-align: center;
  }

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

  .popular-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .popular-title {
    font-size: 2rem;
  }

  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .category-icon {
    width: 5rem;
    height: 5rem;
  }
}

@media (max-width: 480px) {
  .elevate-section {
    padding: 0;
  }

  .elevate-hero__image {
    max-width: 19.5625rem;
    max-height: 22.25rem;
  }
  .elevate-title {
    font-size: 2rem;
  }

  .elevate-subtitle {
    font-size: 0.9rem;
  }

  .popular-section {
    padding: 2rem 1rem;
  }

  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .category-icon {
    width: 9.375rem;
    height: 9.375rem;
  }

  .category-name {
    font-size: 0.9rem;
  }
}

/* Special Offers Section */
.special-offers {
  background: #f8f9fa;
  padding: 4rem 2rem;
}

.special-offers-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.special-offers-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #2c3e50;
  margin: 0;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}

#special-hero {
  block-size: 60vh;
  max-width: 75rem;
  margin: 0 auto;
  overflow-y: auto;
  position: relative;
  border-radius: 1.25rem;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);

  /* Hide scrollbar */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  scroll-behavior: smooth;
}

#special-hero::-webkit-scrollbar {
  display: none;
}

#special-hero figure {
  block-size: 60vh;
  inline-size: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

#special-hero :is(picture, img) {
  inline-size: 100%;
  block-size: 100%;
}

#special-hero img {
  object-position: center center;
  object-fit: cover;
}

#special-hero .special-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

#special-hero .special-content {
  max-width: 37.5rem;
  padding: 2rem;
}

#special-hero .special-offer-title {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
}

#special-hero .special-offer-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

#special-hero .special-offer-btn {
  font-family: "Inter", sans-serif;
  background: #e74c3c;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.3125rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  transition: all 0.3s ease;
}

#special-hero .special-offer-btn:hover {
  background: #c0392b;
  transform: translateY(-0.125rem);
}

#special-hero .special-controls {
  position: absolute;
  z-index: 1000;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  display: grid;
  align-items: center;
  gap: 1rem;
}

#special-hero .special-controls button {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem;
  border-radius: 50%;
  line-height: 1;
  transition: all 0.2s ease;
  cursor: pointer;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#special-hero .special-controls button:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

@media (max-width: 800px) {
  #special-hero .special-controls {
    bottom: 2rem;
    right: 50%;
    top: auto;
    transform: translateX(50%);
    flex-direction: row;
    display: flex;
  }
}

/* Responsive Design for Special Offers */
@media (max-width: 768px) {
  .special-offers {
    padding: 3rem 1rem;
  }

  .special-offers-title {
    font-size: 2rem;
  }

  #special-hero {
    block-size: 50vh;
  }

  #special-hero figure {
    block-size: 50vh;
  }

  .special-offer-title {
    font-size: 2rem;
  }

  .special-offer-subtitle {
    font-size: 1rem;
  }

  .special-content {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .special-offers {
    padding: 2rem 1rem;
  }

  .special-offers-title {
    font-size: 1.5rem;
  }

  #special-hero {
    block-size: 40vh;
  }

  #special-hero figure {
    block-size: 40vh;
  }

  .special-offer-title {
    font-size: 1.5rem;
  }

  .special-offer-subtitle {
    font-size: 0.9rem;
  }

  .special-offer-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}




.media-wrapper {
  position: relative;
  overflow: hidden;
}

.media {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: var(--image_ratio);
  background: rgba(0, 0, 0, 0);
}

.media img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}

.media-overlay:after {
  content: "";
  background: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.width-100 {
  width: 100%;
}

.height-100 {
  height: 100%;
}

.pos-relative {
  position: relative;
}

.heading-font {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
}

.h1 {
  font-size: 5.9375rem;
}

.h5 {
  font-size: 2.1875rem;
}

.text-medium {
  font-size: 1rem;
}

.button {
  text-decoration: none;
  text-align: center;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  min-width: 7.5rem;
  min-height: 2.875rem;
  padding: 0.75rem 1.25rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 3.125rem;
  background: #000000;
  border: 0.0625rem solid #000000;
  color: #ffffff;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: unset;
  overflow: hidden;
  transition: 0.2s ease-out;
  z-index: 0;
}

.button.animated {
  padding-left: 2.6875rem;
  justify-content: flex-start;
}

.btn-icon {
  width: 1.125rem;
  height: 1.125rem;
  background: transparent;
  border: 0.0625rem solid #ffffff;
  color: #ffffff;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0.9375rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.25s ease-out;
  opacity: 0;
  visibility: hidden;
}

.button.animated .btn-icon {
  opacity: 1;
  visibility: visible;
}

.btn-icon svg {
  width: 0.5rem;
  height: auto;
  display: block;
  transition: all 0.25s ease-out;
  position: absolute;
}

.button--hover-text {
  position: absolute;
  left: 0.9375rem;
  overflow: hidden;
  color: #030303;
  opacity: 0;
  display: flex;
  top: 50%;
  transform: translateY(-50%);
}

.button--hover-text span {
  transform: translateY(1.125rem);
  display: inline-flex;
}


@media (hover: hover) and (pointer: fine) {
  .animate-hover:hover img {
    transform: scale(1.1);
  }

  .button:hover {
    border-color: #93f149;
    background: #93f149;
    color: #030303;
  }

  .button.animated:hover .btn-icon {
    width: 100%;
    height: 100%;
    left: 0;
    color: #030303;
    border: 0;
  }

  .button.animated:hover .button--text {
    opacity: 0;
  }

  .button:hover .btn-icon svg {
    left: calc(100% - 1.75rem);
  }

  .button:hover .button--hover-text span {
    transform: translateY(0);
    transition: transform 0.25s ease-out;
  }

  .button:hover .button--hover-text {
    opacity: 1;
  }

  .btn-icon:before {
    content: "";
    width: 1.125rem;
    height: 1.125rem;
    background: transparent;
    border: 0.0625rem solid #030303;
    position: absolute;
    left: calc(100% - 2.0625rem);
    border-radius: 3.125rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease-out;
  }

  .button:hover .btn-icon:before {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 480px) {
  .button {
    font-size: 0.875rem;
    min-height: 2.5rem;
  }

  .btn-icon {
    width: 1rem;
    height: 1rem;
    left: 0.625rem;
  }

  .button.animated {
    padding-left: 2.1875rem;
  }
}

@media (max-width: 360px) {
  .button {
    font-size: 0.75rem;
    min-height: 2.375rem;
    padding: 0.4375rem 0.625rem;
  }
}
