/* =============================================================================
   HOMEPAGE - CSS
   ============================================================================= */

/* =============================================================================
   1. CSS VARIABLES & RESET
   ============================================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Spacing - Desktop */
  --section-gap: 66px;
  /* Spacing - Mobile/Tablet */
  --section-gap-sm: 40px;
  
  /* Colors */
  --primary-gradient: linear-gradient(45deg, #ab21c1, #3f0e47);
  --primary-purple: #55246b;
  --accent-gold: #c29619;
  --text-white: #fff;
  --text-black: #000;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  background: #fff;
  color: #ab21c1 !important;
}

html {
  scroll-behavior: smooth;
}

/* Page Transitions */
[data-include] {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease;
}

[data-include].loaded {
  visibility: visible;
  opacity: 1;
}

body.fade-in {
  opacity: 0;
  transition: opacity 0.45s ease;
}

body.page-loaded {
  opacity: 1;
}

.fade-out {
  opacity: 0 !important;
}


/* =============================================================================
   2. NAVIGATION
   ============================================================================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1100;
  background: #55246b !important;
}

.navbar-brand img {
  border-radius: 50%;
}

.navbar-brand span {
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-left: 0.5rem;
}

.nav-link {
  color: #fff !important;
  margin: 0 10px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #FE968E !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

#search a {
  color: #fff;
  font-size: 1.2rem;
}

#search a:hover {
  color: #000;
}


/* =============================================================================
   3. HERO SECTION
   ============================================================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: 92px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 92px);
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}


/* Hero Content */
.content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.heading {
  font-size: 90px;
  color: black;
  font-weight: 700;
  letter-spacing: 2px;
  animation: slideIn 1s ease-out forwards;
}

.clr-chng {
  color: #000;
  padding-left: 30px;
  animation: fadeInColor 1.2s ease-in;
}

.sub-heading {
  color: #000;
  font-size: 24px;
  letter-spacing: 2px;
  margin-top: 10px;
  animation: fadeInUp 1s ease-in;
  font-weight: bold;
}

.shop-btn {
  background: #000;
  color: white;
  border: none;
  padding: 12px 35px;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.shop-btn:hover {
  background: #fff;
  color: #4b2f66;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(194, 150, 25, 0.6);
}

.hero-logo {
  width: 480px;
  height: auto;
  animation: float 3s ease-in-out infinite;
}


/* =============================================================================
   4. COLLECTION SECTION (Our New Collection)
   ============================================================================= */
.collection-bg {
  background: #fff;
  padding-top: 66px;
  padding-bottom: 66px;
}

.collection-heading {
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  position: relative;
  display: inline-block;
  width: 100%;
}

.collection-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #8a48c1, #c9b3e6);
  border-radius: 2px;
  transition: width 0.8s ease;
  animation: expandUnderline 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes expandUnderline {
  to {
    width: 180px;
  }
}

/* Collection Cards */
section .card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

section .card img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border: 2px solid #f5e7bb;
  outline-offset: -6px;
  border-radius: 24px;
}

section .card:hover {
  box-shadow: 0 10px 25px rgba(98, 28, 159, 0.2);
}

section .card-body p {
  font-weight: 500;
}

.card {
  background-color: transparent;
  border: 2px dotted black;
}

.new-coll-img-container {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.new-coll-img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.new-coll-img-container img:hover {
  filter: brightness(1.2);
  cursor: pointer;
  scale: calc(1.2);
  transition: ease-in 2s;
  transition: ease-out 2s;
}

/* Border Animation */
.border-anim {
  position: absolute;
  background: rebeccapurple;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
}

.border-anim.top {
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  animation: borderTop 4s linear infinite;
}

.border-anim.right {
  top: 0;
  right: 0;
  width: 2px;
  height: 0;
  animation: borderRight 4s linear infinite;
  animation-delay: 1s;
}

.border-anim.bottom {
  bottom: 0;
  right: 0;
  height: 2px;
  width: 0;
  animation: borderBottom 4s linear infinite;
  animation-delay: 2s;
}

.border-anim.left {
  bottom: 0;
  left: 0;
  width: 2px;
  height: 0;
  animation: borderLeft 4s linear infinite;
  animation-delay: 3s;
}


/* =============================================================================
   5. STYLE & STITCH SECTION
   ============================================================================= */
.style-stich-section {
  background: #fff;
  /* padding-block: var(--section-gap); */
}

.style-title {
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}

.style-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #8a48c1, #c9b3e6);
  border-radius: 2px;
  transition: width 0.8s ease;
  animation: expandUnderline 1s ease forwards;
  animation-delay: 0.3s;
}

.style-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.style-tabs .style-btn {
  background: transparent;
  border: 2px solid #000;
  padding: 6px 20px;
  font-size: 0.95rem;
  border-radius: 30px;
  transition: 0.3s ease;
}

.style-btn:hover,
.style-btn.active {
  background: #4b2f66;
  color: #fff;
  border-color: #4b2f66;
}

.style-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.style-card img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border-radius: 24px;
}

.style-card:hover {
  transform: scale(1.03);
  transform: translateY(-8px);
}

.img-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #55246b;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s ease;
  white-space: nowrap;
}

.img-btn:hover {
  background: #c29619;
}

.style-card.hide {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}


/* =============================================================================
   6. CUSTOMIZE SECTION
   ============================================================================= */
.customize-cards {
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  /* padding-top: var(--section-gap);
  padding-bottom: var(--section-gap); */
}

.customize-card-1 {
  flex: 1;
  max-width: 100%;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.customize-card-1 h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  position: relative;
  display: inline-block;
}

.customize-card-1 h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #8a48c1, #c9b3e6);
  border-radius: 2px;
  animation: expandUnderlineLeft 1s ease forwards;
  animation-delay: 0.5s;
}

@keyframes expandUnderlineLeft {
  to {
    width: 60%;
  }
}

.customize-card-1 p {
  font-size: 1.5rem;
  line-height: 1.6;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.customize-card-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.customize-card-2 img {
  max-width: 500px;
  width: 350px;
  height: auto;
  transition: transform 0.5s, box-shadow 0.5s;
  border-radius: 24px;
  opacity: 0;
}

/* First image pans in from the left */
.customize-card-2:nth-child(2) img {
  animation: panInFromLeft 1.2s ease forwards;
  animation-delay: 0.6s;
}

/* Second image pans in from the right */
.customize-card-2:nth-child(3) img {
  animation: panInFromRight 1.2s ease forwards;
  animation-delay: 0.8s;
}

@keyframes panInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes panInFromRight {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.customize-card-2 img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}


/* =============================================================================
   7. VIDEO SECTION
   ============================================================================= */
.video-section {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  background: #55246b;
  min-height: 100vh;
  padding-block: var(--section-gap);
}

/* Animated Background */
.video-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 0, 128, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(128, 0, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(0, 128, 255, 0.05) 0%,
      transparent 40%
    );
  animation: bgPulse 15s ease-in-out infinite;
  z-index: 0;
}

.style-title-video {
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
  opacity: 1;
  transform: translateY(0);
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #8a48c1, #c9b3e6);
  border-radius: 2px;
  animation: expandUnderline 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes expandUnderlineWhite {
  to {
    width: 200px;
  }
}

.section-header p {
  font-size: 1rem;
  color: #fff;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(20px);
  animation: headerFadeIn 1s ease forwards 0.3s;
}

/* Video Container & Slider */
.video-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

.video-slider-wrapper {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
  padding: 40px 10px;
  will-change: transform;
}

.video-card {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 2px double black;
  opacity: 0;
  transform: translateY(80px) scale(0.9);
  will-change: transform, opacity;
}

.video-card:hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 25px 60px rgba(255, 0, 128, 0.2);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play Button */
.video-card.animation-complete .play-btn {
  animation: pulseGlow 2s ease-in-out infinite;
}

.video-card.playing .play-btn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

/* Video Info */
.video-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.4s;
}

.video-card.animation-complete .video-info {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transition: all 0.3s;
  animation: btnFadeIn 0.6s ease forwards 1.2s;
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-btn:hover {
  background: linear-gradient(135deg, #ff0080, #7928ca);
  transform: translateY(-50%) scale(1.1);
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: scale(0);
  animation: dotPop 0.4s ease forwards;
}

.dot.active {
  width: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ff0080, #7928ca);
}

/* Video Card Entrance */
.video-card.animate-in {
  animation: cardSlideIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.video-card:nth-child(1).animate-in { animation-delay: 0.1s; }
.video-card:nth-child(2).animate-in { animation-delay: 0.25s; }
.video-card:nth-child(3).animate-in { animation-delay: 0.4s; }
.video-card:nth-child(4).animate-in { animation-delay: 0.55s; }
.video-card:nth-child(5).animate-in { animation-delay: 0.7s; }
.video-card:nth-child(6).animate-in { animation-delay: 0.85s; }

/* Floating Animation */
.video-card.animation-complete.float-active {
  animation: cardFloat 3.5s ease-in-out infinite;
}

.video-card.animation-complete:nth-child(even).float-active {
  animation: cardFloatAlt 4s ease-in-out infinite;
}


/* =============================================================================
   8. SHOP BY CATEGORY SECTION
   ============================================================================= */
.shop-by-category {
  padding: 0 20px;
  padding-block: var(--section-gap);
}

.small-title {
  font-weight: 600;
  letter-spacing: 2px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-align: center;
  margin-bottom: 1rem;
}

.main-title {
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}

.main-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #8a48c1, #c9b3e6);
  border-radius: 2px;
  animation: expandUnderline 1s ease forwards;
  animation-delay: 0.3s;
}

.category-grid {
  display: flex;
  gap: 20px;
}

.big {
  flex: 1;
  position: relative;
}

.big img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 24px;
}

.right-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.right-grid .category-item img {
  width: 100%;
  height: 242px;
  object-fit: cover;
  border-radius: 24px;
}

.category-item {
  position: relative;
  overflow: hidden;
}

.category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease-in-out;
  object-position: top;
}

.category-item:hover img {
  transform: scale(1.08);
}

.category-label {
  position: absolute;
  bottom: 20px;
  left: 15px;
  background: #55246b;
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.category-label:hover {
  background: #c29619;
}


/* =============================================================================
   9. PREMIUM COLLECTION (DRESSES)
   ============================================================================= */
.col-dresses-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-top: 75px;
  position: relative;
}

.col-dresses-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.col-dresses-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  animation: fadeInScale 1.2s ease-out;
}

.collection-header {
  text-align: center;
  margin-bottom: 45px;
  animation: fadeInDown 0.8s ease;
  /* padding-top: var(--section-gap); */
}

.collection-header h1 {
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}

.collection-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #8a48c1, #c9b3e6);
  border-radius: 2px;
  animation: expandUnderline 1s ease forwards;
  animation-delay: 0.3s;
}

.collection-header p {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-align: center;
    margin-bottom: 1rem;
}

.col-dress-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  padding: 0 20px;
  /* padding-bottom: var(--section-gap); */
}

.dress-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  animation: fadeInUp 0.6s ease backwards;
  border-radius: 24px;
}

.dress-card:nth-child(1) { animation-delay: 0.1s; }
.dress-card:nth-child(2) { animation-delay: 0.2s; }
.dress-card:nth-child(3) { animation-delay: 0.3s; }
.dress-card:nth-child(4) { animation-delay: 0.4s; }
.dress-card:nth-child(5) { animation-delay: 0.5s; }
.dress-card:nth-child(6) { animation-delay: 0.6s; }

.dress-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  border-radius: 24px !important;
}

.dress-card:hover::before {
  opacity: 0.15;
}

.dress-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
  transition: opacity 0.5s ease;
  border-radius: 24px !important;
}

.dress-card:hover::after {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.dress-card img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 0;
  border-radius: 24px !important;
}

.dress-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.dress-card:hover img {
  transform: scale(1.15);
}

.dress-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 3;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  /* color: #764ba2; */
  color: #fff;
}

.dress-card:hover .dress-overlay {
  transform: translateY(-10px);
}

.dress-overlay span {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  position: relative;
}

.dress-overlay span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #f093fb, #f5576c);
  border-radius: 2px;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.dress-card:hover .dress-overlay span::after {
  transform: translateX(-50%) scaleX(1);
}

.dress-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 4;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.dress-card:hover .dress-badge {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================================================
   10. REVIEWS SECTION
   ============================================================================= */
.reviews-container {
  padding-inline: 20px;
  padding-block: var(--section-gap);
}

.review-heading {
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}

.review-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #8a48c1, #c9b3e6);
  border-radius: 2px;
  animation: expandUnderline 1s ease forwards;
  animation-delay: 0.3s;
}

.review-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.review-card {
  background: #55246b !important;
  padding: 25px 20px;
  width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
  text-align: center;
  color: #fff !important;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.review-stars {
  margin-bottom: 10px;
  color: #d98200;
  font-size: 18px;
  color: #fff !important;
}

.review-comment {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
  color: #fff !important;
}

.review-card p {
  font-size: 14px;
  margin: 10px 0;
  color: #fff !important;
}

.reviewer-name {
  font-weight: bold;
  margin-top: 15px;
  font-size: 16px;
  color: #fff !important;
}


/* =============================================================================
   11. FOOTER
   ============================================================================= */
.footer {
  padding: 40px 60px 10px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInFooter 1.2s ease forwards;
}

.footer-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
  animation: slideUp 1.2s ease-out forwards;
}

.footer-item {
  flex: 1;
  min-width: 200px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  padding: 10px;
}

.footer-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(98, 28, 159, 0.1);
}

.footer-item i {
  font-size: 32px;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.footer-item:hover i {
  transform: rotate(10deg) scale(1.2);
}

.footer-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #7B188B;
}

.footer-item p {
  font-size: 14px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
  animation: fadeInFooter 1.5s ease-in;
}

.footer-about {
  flex: 1.5;
  min-width: 280px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
  width: 100%;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.social-icons {
  display: flex;
  align-items: center;
  margin-top: 10px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.social-icons a {
  text-decoration: none;
  font-size: 18px;
  margin-right: 15px;
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.social-icons a:hover {
  transform: scale(1.2) rotate(10deg);
}

.wp-icon {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.whatsapp-icon {
  font-size: 40px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-decoration: none;
}

.whatsapp-icon:hover {
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.whats-no {
  font-size: 20px !important;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin: 14px 0;
}

.whats-no a {
  text-decoration: none;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: bold;
}

.footer-policies {
  flex: 1;
  min-width: 180px;
}

.footer-policies h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  color: #7B188B;
  margin-bottom: 15px;
  position: relative;
}

.footer-policies h4::after,
.footer-contact h4::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background: #c19a6b;
  margin-top: 5px;
  border-radius: 2px;
}

.footer-contact a {
  text-decoration: none;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.footer-policies ul {
  list-style: none;
  padding-left: 0;
}

.footer-policies ul li {
  margin-bottom: 8px;
}

.footer-policies ul li a {
  text-decoration: none;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-policies ul li a:hover {
  color: #c19a6b;
  transform: translateX(4px);
}

.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-contact p {
  font-size: 14px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-contact i {
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #e2d4f4;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 13px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: fadeInFooter 1.5s ease-in;
}

.footer-bottom span {
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 600;
}


/* =============================================================================
   12. ANIMATIONS & KEYFRAMES
   ============================================================================= */

/* Hero Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInColor {
  0% { color: white; }
  100% { color: #000; }
}

/* Border Animations */
@keyframes borderTop {
  0% { opacity: 1; width: 0; left: 0; }
  25% { width: 100%; opacity: 1; }
  26% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes borderRight {
  0% { opacity: 1; height: 0; top: 0; }
  25% { height: 100%; opacity: 1; }
  26% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes borderBottom {
  0% { opacity: 1; width: 0; right: 0; }
  25% { width: 100%; opacity: 1; }
  26% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes borderLeft {
  0% { opacity: 1; height: 0; bottom: 0; }
  25% { height: 100%; opacity: 1; }
  26% { opacity: 0; }
  100% { opacity: 0; }
}

/* Video Section Animations */
@keyframes bgPulse {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, -2%) rotate(1deg); }
  66% { transform: translate(-1%, 1%) rotate(-1deg); }
}

@keyframes headerFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes btnFadeIn {
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes dotPop {
  70% { transform: scale(1.25); }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cardSlideIn {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.9);
  }
  80% { transform: translateY(-10px) scale(1.03); }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes cardFloatAlt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 128, 0.4); }
  50% { box-shadow: 0 0 20px 10px rgba(255, 0, 128, 0); }
}

/* Dress Section Animations */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Footer Animations */
@keyframes fadeInFooter {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}


/* =============================================================================
   13. RESPONSIVE BREAKPOINTS
   ============================================================================= */

/* ======================
   LARGE TABLETS (769px - 1024px)
   ====================== */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Navigation */
  .navbar-brand span {
    font-size: 1.1rem;
  }
  
  .nav-link {
    margin: 0 8px;
    font-size: 0.95rem;
  }
  
  /* Hero */
  .heading {
    font-size: 60px;
  }
  
  .sub-heading {
    font-size: 20px;
  }
  
  .shop-btn {
    padding: 10px 30px;
    font-size: 1rem;
  }
  
  .clr-chng {
    padding-left: 20px;
  }
  
  .hero-logo {
    width: 380px;
    display: block;
  }
  
  /* Video Section */
  .video-card {
    width: 240px;
    height: 400px;
  }
}

/* ======================
   TABLETS (481px - 768px)
   ====================== */
@media (min-width: 481px) and (max-width: 768px) {
  /* Hero */
  .heading {
    font-size: 52px;
  }
  
  .sub-heading {
    font-size: 19px;
  }
  
  .shop-btn {
    padding: 10px 28px;
    font-size: 1rem;
  }
  
  .clr-chng {
    padding-left: 18px;
  }
  
  .hero-logo {
    display: none;
  }
  
  /* Apply mobile spacing */
  .collection-bg {
    padding-top: var(--section-gap-sm);
    padding-bottom: var(--section-gap-sm);
  }
  
  /* .customize-cards {
    padding-top: var(--section-gap-sm);
    padding-bottom: var(--section-gap-sm);
  } */
  
  /* .style-stich-section {
    padding-block: var(--section-gap-sm);
  } */
  
  .video-section {
    padding-block: var(--section-gap-sm);
  }
  
  .shop-by-category {
    padding-block: var(--section-gap-sm);
  }
  
  /* .collection-header {
    padding-top: var(--section-gap-sm);
  } */
  
  /* .col-dress-section {
    padding-bottom: var(--section-gap-sm);
  } */
  
  .reviews-container {
    padding-block: var(--section-gap-sm);
  }
}

/* ======================
   MOBILE & TABLETS (max-width: 992px)
   ====================== */
@media (max-width: 992px) {
  /* Navigation */
  .bg-section {
    background: gray;
  }
  
  .navbar-brand span {
    font-size: 1rem;
  }
  
  .navbar-nav {
    padding: 1rem 0;
  }
  
  .nav-link {
    padding: 0.5rem 1rem;
    margin: 0.2rem 0;
  }
  
  /* Hero */
  .hero-section {
    height: 100vh;
  }
  
  /* Collection */
  .collection-header h1 {
    font-size: 2.5rem;
  }
  
  .col-dress-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .dress-card {
    height: 350px;
  }
  
  .dress-overlay span {
    font-size: 1.2rem;
  }
  
  /* Customize */
  .customize-cards {
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* padding-top: var(--section-gap-sm);
    padding-bottom: var(--section-gap-sm); */
  }
  
  /* Category */
  .category-grid {
    flex-direction: column;
  }
  
  .right-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .big {
    height: auto;
  }
  
  .big img {
    max-height: 400px;
  }
  
  /* Footer */
  .footer {
    padding: 40px 30px 10px;
  }
  
  .footer-icons {
    flex-direction: column;
    gap: 25px;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-policies {
    margin-left: 0 !important;
  }
  
  /* Apply mobile spacing */
  .collection-bg {
    padding-top: var(--section-gap-sm);
    padding-bottom: var(--section-gap-sm);
  }
  
  /* .style-stich-section {
    padding-block: var(--section-gap-sm);
  } */
  
  .video-section {
    padding-block: var(--section-gap-sm);
  }
  
  .shop-by-category {
    padding-block: var(--section-gap-sm);
  }
  
  /* .collection-header {
    padding-top: var(--section-gap-sm);
  } */
  
  /* .col-dress-section {
    padding-bottom: var(--section-gap-sm);
  } */
  
  .reviews-container {
    padding-block: var(--section-gap-sm);
  }
}

/* ======================
   MOBILE (max-width: 768px)
   ====================== */
@media (max-width: 768px) {
  /* Hero */
  .hero-section {
    height: 60vh;
    min-height: 420px;
  }
  
  .hero-img {
    object-position: center top;
  }
  
  .heading {
    font-size: 48px;
  }
  
  .sub-heading {
    font-size: 18px;
  }
  
  .shop-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
  
  .clr-chng {
    padding-left: 15px;
  }
  
  .hero-logo {
    display: none;
  }
  
  /* Collection */
  .collection-bg {
    padding-top: var(--section-gap-sm);
    padding-bottom: var(--section-gap-sm);
  }
  
  section .card img {
    height: 300px;
  }
  
  .border-anim.top,
  .border-anim.bottom {
    height: 2px;
  }
  
  .border-anim.left,
  .border-anim.right {
    width: 2px;
  }
  
  /* Style & Stitch */
  /* .style-stich-section {
    padding-block: var(--section-gap-sm);
  }
   */
  .style-title {
    font-size: 1.8rem;
  }
  
  .style-tabs .style-btn {
    padding: 5px 15px;
    font-size: 0.85rem;
  }
  
  .style-card img {
    height: 280px;
  }
  
  .img-btn {
    padding: 6px 16px;
    font-size: 0.7rem;
  }
  
  /* Customize */
  .customize-cards {
    padding-inline: 15px;
    /* padding-block: var(--section-gap-sm); */
  }
  
  .customize-card-1 h2 {
    font-size: 3rem;
  }
  
  .customize-card-1 p {
    font-size: 1.2rem;
  }
  
  /* Video Section */
  .video-section {
    padding-inline: 15px;
    padding-block: var(--section-gap-sm);
  }
  
  .video-section::before {
    animation-duration: 28s !important;
  }
  
  .video-card {
    width: 200px;
    height: 340px;
  }
  
  .video-card.animation-complete .play-btn {
    animation: none !important;
  }
  
  .video-card.animation-complete.float-active {
    animation: none !important;
  }
  
  .slider-btn {
    width: 44px;
    height: 44px;
  }
  
  /* Category */
  .shop-by-category {
    padding-inline: 20px;
    padding-block: var(--section-gap-sm);
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .small-title {
    font-size: 0.8rem;
  }
  
  .category-label {
    font-size: 0.8rem;
    padding: 5px 12px;
    bottom: 15px;
  }
  
  /* Premium Collection */
  /* .collection-header {
    padding-top: var(--section-gap-sm);
  } */
  
  /* .col-dress-section {
    padding-bottom: var(--section-gap-sm);
  } */
  
  /* Reviews */
  .reviews-container {
    padding-block: var(--section-gap-sm);
  }
  
  .review-card {
    width: 90%;
  }
  
  .review-heading {
    font-size: 1.6rem;
  }
  
  /* Recently Viewed */
  .recently-viewed-img-container {
    height: 150px;
  }
  
  /* Footer */
  .footer {
    padding: 40px 25px 10px;
  }
  
  .footer-item {
    width: 100%;
    min-width: auto;
  }
  
  .footer-item i {
    font-size: 28px;
  }
  
  .footer-item h4 {
    font-size: 15px;
  }
  
  .footer-item p {
    font-size: 13px;
  }
  
  .footer-about {
    min-width: 100%;
  }
  
  .footer-about p {
    font-size: 16px;
  }
  
  .social-icons a {
    font-size: 16px;
  }
  
  .wp-icon {
    justify-content: center;
  }
  
  .whatsapp-icon {
    font-size: 35px;
  }
  
  .whats-no {
    font-size: 18px !important;
  }
  
  .footer-policies,
  .footer-contact {
    width: 100%;
    min-width: 100%;
  }
  
  .footer-contact p,
  .footer-policies ul li a {
    font-size: 13px;
  }
}

/* ======================
   SMALL MOBILE (max-width: 600px)
   ====================== */
@media (max-width: 600px) {
  .new-coll-img-container {
    padding-top: 100%;
  }
  
  .new-coll-img-container img {
    height: 850px;
    border: 4px solid black;
  }
  
  .border-anim.top,
  .border-anim.bottom {
    height: 3px;
  }
  
  .border-anim.left,
  .border-anim.right {
    width: 3px;
  }
}

/* ======================
   SMALL MOBILE (max-width: 576px)
   ====================== */
@media (max-width: 576px) {
  /* Global */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .row > * {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  /* Collection */
  .collection-bg {
    padding-top: var(--section-gap-sm);
    padding-bottom: var(--section-gap-sm);
  }
  
  .collection-header h1 {
    font-size: 2rem;
  }
  
  .collection-header p {
    font-size: 1rem;
  }
  
  /* .collection-header {
    padding-top: var(--section-gap-sm);
  } */
  
  .col-dress-section {
    grid-template-columns: 1fr;
    gap: 25px;
    /* padding-bottom: var(--section-gap-sm); */
  }
  
  .dress-card {
    height: 320px;
  }
  
  .dress-overlay {
    padding: 20px;
  }
  
  .dress-overlay span {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  
  /* Category */
  .shop-by-category {
    padding-block: var(--section-gap-sm);
  }
  
  .main-title {
    font-size: 1.6rem;
  }
  
  .category-item img {
    height: auto;
    object-fit: cover;
  }
  
  .big img {
    max-height: 300px;
  }
  
  .category-label {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .category-label:hover {
    background: #c29619;
  }
  
  /* Carousel */
  .collection-header {
    margin-bottom: 40px;
  }
  
  .slide-section {
    gap: 20px;
    padding: 0 30px;
  }
  
  .slide-section img {
    height: 200px;
    width: 150px;
  }
  
  .slide-section img.active {
    height: 280px;
    width: 220px;
  }
  
  .slide-container {
    height: 320px;
    margin-bottom: 70px;
  }
  
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .carousel-controls {
    padding: 0 10px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .dot.active {
    width: 28px;
  }
}

/* ======================
   EXTRA SMALL MOBILE (max-width: 480px)
   ====================== */
@media (max-width: 480px) {
  /* Hero */
  .hero-section {
    height: 45vh;
    min-height: 480px;
  }
  
  .heading {
    font-size: 36px;
    letter-spacing: 1px;
  }
  
  .sub-heading {
    font-size: 16px;
  }
  
  .shop-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  /* Collection */
  .collection-bg {
    padding-top: var(--section-gap-sm);
    padding-bottom: var(--section-gap-sm);
  }
  
  section .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  section .card img {
    height: 400px;
  }
  
  .collection-heading {
    font-size: clamp(1.5rem, 5vw, 1.9rem);
    margin-bottom: 2rem;
  }
  
  section .card-body h5 {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }
  
  .border-anim {
    background: rebeccapurple;
  }
  
  .border-anim.top,
  .border-anim.bottom {
    height: 4px;
  }
  
  .border-anim.left,
  .border-anim.right {
    width: 4px;
  }
  
  /* Style & Stitch */
  /* .style-stich-section {
    padding-block: var(--section-gap-sm);
  } */
  
  .style-title {
    font-size: clamp(1.5rem, 5vw, 1.9rem);
    margin-bottom: 2rem;
  }
  
  .style-tabs .style-btn {
    padding: 4px 12px;
    font-size: 0.8rem;
  }
  
  .style-card img {
    height: 295px !important;
  }
  
  .img-btn {
    padding: 5px 12px;
    font-size: 0.65rem;
    bottom: 10px;
  }
  
  /* Customize */
  .customize-cards {
    /* padding-block: var(--section-gap-sm); */
  }
  
  .customize-card-1 h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1.5rem;
  }
  
  .customize-card-1 p {
    font-size: 1rem;
  }
  
  /* Video Section */
  .video-section {
    min-height: 65vh;
    padding-inline: 10px;
    padding-block: var(--section-gap-sm);
  }
  
  .video-card {
    width: 180px;
    height: 320px;
  }
  
  .slider-dots {
    gap: 8px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .dot.active {
    width: 28px;
  }
  
  /* Category */
  .shop-by-category {
    padding-block: var(--section-gap-sm);
  }
  
  .category-item {
    background-image: url('assets/gharara-image.jpg');
    background-size: cover;
    background-position: top center;
    height: auto;
  }
  
  /* Premium Collection */
  /* .collection-header {
    padding-top: var(--section-gap-sm);
  } */
  
  /* .col-dress-section {
    padding-bottom: var(--section-gap-sm);
  } */
  
  /* Reviews */
  .reviews-container {
    padding-block: var(--section-gap-sm);
  }
  
  .review-card {
    padding: 20px;
  }
  
  .review-heading {
    font-size: 1.2rem;
  }
  
  .review-comment {
    font-size: 16px;
  }
  
  /* Footer */
  .footer {
    padding: 30px 15px 10px;
  }
  
  .footer-icons {
    gap: 20px;
  }
  
  .footer-item i {
    font-size: 24px;
  }
  
  .footer-item h4 {
    font-size: 14px;
  }
  
  .footer-item p {
    font-size: 12px;
  }
  
  .footer-about p {
    font-size: 14px;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .social-icons a {
    font-size: 16px;
    margin-right: 12px;
  }
  
  .whatsapp-icon {
    font-size: 30px;
  }
  
  .whats-no {
    font-size: 16px !important;
  }
  
  .footer-policies h4,
  .footer-contact h4 {
    font-size: 15px;
  }
  
  .footer-contact p,
  .footer-policies ul li a {
    font-size: 12px;
  }
  
  .footer-bottom {
    font-size: 11px;
  }
}

/* ======================
   EXTRA SMALL DEVICES (max-width: 360px)
   ====================== */
@media (max-width: 360px) {
  .new-coll-img-container {
    padding-top: 100%;
  }
  
  .border-anim.top,
  .border-anim.bottom {
    height: 3px;
  }
  
  .border-anim.left,
  .border-anim.right {
    width: 3px;
  }
}