@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #451a46;
  --primary-light: #5a2c5a;
  --secondary: #d28fbd;
  --secondary-light: #e0b8d3;
  --accent: #d28fbd;
  --accent-light: #e6c5db;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --cream: #f5f5dc;
  --text-dark: #222222;
  --text-light: #6d6e71;
  --gold: #d28fbd;
  --gold-light: #e6c5db;
  --pink: #d28fbd;
  --purple: #451a46;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
  position: relative;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--secondary), var(--accent));
  transition: var(--transition-slow);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-gold {
  background: linear-gradient(45deg, var(--gold), var(--secondary-light));
  color: var(--primary);
}

.btn-pink {
  background: linear-gradient(45deg, var(--accent), var(--accent-light));
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-subtitle {
  display: inline-block;
  font-size: 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  position: relative;
  animation: fadeInDown 1s ease;
}

.section-title {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 2px;
}

.diamond {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.diamond::after {
  content: "💎";
  position: absolute;
  top: -15px;
  right: -25px;
  font-size: 24px;
  animation: spin 4s linear infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HEADER & NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  animation: slideInDown 1s ease;
}

header.scrolled {
  padding: 15px 5%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  animation: fadeInLeft 1s ease;
}

.logo-img {
  height: 60px;
  width: auto;
  animation: pulse 2s infinite;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-domain {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 1px;
}

nav {
  animation: fadeInRight 1s ease;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-weight: 500;
  font-size: 16px;
  color: var(--primary);
  position: relative;
  padding: 5px 0;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--accent);
}

nav ul li a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fadeInRight 1s ease;
}

.header-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--off-white), var(--white));
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.header-icon:hover {
  background: linear-gradient(45deg, var(--gold), var(--accent));
  color: var(--white);
  transform: translateY(-5px) rotate(10deg);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      rgba(69, 26, 70, 0.9) 0%,
      rgba(138, 43, 226, 0.7) 100%
    ),
    url("../images/Screenshot 2025-12-18 155848.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 150px 5% 100px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: cover;
  animation: float 20s infinite linear;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.5s ease;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 25px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 82px;
  margin-bottom: 30px;
  line-height: 1.1;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  background: linear-gradient(45deg, var(--gold), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-description {
  font-size: 20px;
  margin-bottom: 50px;
  color: var(--cream);
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.floating-diamonds {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.diamond-shape {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--gold);
  transform: rotate(45deg);
  animation: float 6s infinite ease-in-out;
  opacity: 0.7;
}

.diamond-shape:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.diamond-shape:nth-child(2) {
  top: 40%;
  right: 15%;
  animation-delay: 1s;
}
.diamond-shape:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}
.diamond-shape:nth-child(4) {
  top: 60%;
  right: 25%;
  animation-delay: 3s;
}

/* ===== SHOP PHOTOS SECTION ===== */
.shop-photos-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  padding: 100px 0;
}

.shop-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.shop-photo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition-slow);
  cursor: pointer;
  height: 350px;
}

.shop-photo-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.shop-photo-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.shop-photo-card:hover .shop-photo-img {
  transform: scale(1.1);
}

.shop-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(69, 26, 70, 0.95));
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.6s ease;
}

.shop-photo-card:hover .shop-photo-overlay {
  transform: translateY(0);
}

.shop-photo-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--white);
}

.shop-photo-desc {
  color: var(--gold-light);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== ABOUT SHOP SECTION ===== */
.about-shop-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-shop-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(210,143,189,0.1)"/></svg>');
  background-size: cover;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-content h3 {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-content p {
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(210, 143, 189, 0.2);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(210, 143, 189, 0.4);
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 14px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid var(--gold);
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(210, 143, 189, 0.2), transparent);
  z-index: 1;
}

/* ===== MEASUREMENT SECTION ===== */
.measurement-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  padding: 100px 0;
}

.measurement-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.measurement-chart {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
  border: 2px solid var(--gold-light);
}

.measurement-chart h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 28px;
}

.measurement-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.measurement-table th {
  background: linear-gradient(45deg, var(--gold), var(--secondary-light));
  color: var(--primary);
  padding: 15px;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--gold-light);
}

.measurement-table td {
  padding: 12px 15px;
  border: 1px solid var(--gold-light);
  color: var(--text-dark);
}

.measurement-table tr:nth-child(even) {
  background: rgba(210, 143, 189, 0.05);
}

.measurement-table tr:hover {
  background: rgba(210, 143, 189, 0.1);
}

.measurement-guide {
  padding: 30px;
}

.measurement-guide h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 32px;
}

.measurement-list {
  margin-top: 20px;
}

.measurement-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
}

.measurement-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 18px;
}

.measurement-icon {
  font-size: 60px;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}

/* ===== FEATURES SECTION (UPDATED) ===== */
.features {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(210, 143, 189, 0.1),
    transparent
  );
  transition: var(--transition-slow);
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(45deg, var(--gold), var(--accent));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: var(--white);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: rotate(360deg) scale(1.1);
}

.feature-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
  flex-grow: 1;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background-color: var(--off-white);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 60px;
}

.gallery-item {
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition-slow);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-15px) rotate(2deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.gallery-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.2);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(69, 26, 70, 0.9));
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-title {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--white);
}

.gallery-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
}

/* ===== CATEGORIES SECTION ===== */
.categories {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition-slow);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: var(--shadow-heavy);
}

.category-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  position: relative;
}

.category-card:hover .category-img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  background: linear-gradient(transparent, rgba(69, 26, 70, 0.95));
  color: white;
  transform: translateY(100%);
  transition: transform 0.6s ease;
}

.category-card:hover .category-overlay {
  transform: translateY(0);
}

.category-name {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--white);
}

.category-stats {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gold);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
}

.footer-description {
  color: var(--cream);
  margin-bottom: 30px;
  line-height: 1.8;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 18px;
}

.social-icon:hover {
  background: linear-gradient(45deg, var(--gold), var(--accent));
  transform: translateY(-5px) rotate(10deg);
}

.footer-heading {
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--cream);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 10px;
}

.footer-links a i {
  color: var(--gold);
  width: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  font-size: 14px;
}

.footer-bottom p {
  margin-bottom: 10px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 62px;
  }

  .section-title {
    font-size: 36px;
  }

  .category-grid,
  .features-grid,
  .shop-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-placeholder {
    height: 400px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .measurement-container,
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-img {
    height: 50px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 20px;
    padding: 15px 5%;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero {
    padding: 120px 5% 80px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 32px;
  }

  .category-grid,
  .features-grid,
  .gallery-grid,
  .shop-photos-grid {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    height: 300px;
  }

  .video-play-btn {
    width: 80px;
    height: 80px;
    font-size: 30px;
  }

  .measurement-chart {
    padding: 20px;
  }

  .measurement-table {
    font-size: 14px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .shop-photo-card {
    height: 300px;
  }

  .logo-img {
    height: 40px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: 28px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .video-placeholder {
    height: 250px;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .measurement-table th,
  .measurement-table td {
    padding: 8px 10px;
    font-size: 12px;
  }

  .stat-number {
    font-size: 32px;
  }

  .shop-photo-card {
    height: 250px;
  }

  .logo-img {
    height: 35px;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LOADING ANIMATION ===== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.diamond-loader {
  width: 100px;
  height: 100px;
  position: relative;
  animation: spin 2s linear infinite;
}

.diamond-loader span {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--gold);
  transform: rotate(45deg);
  animation: pulse 1.5s infinite;
}

.diamond-loader span:nth-child(1) {
  top: 0;
  left: 25px;
  animation-delay: 0s;
}
.diamond-loader span:nth-child(2) {
  top: 25px;
  left: 0;
  animation-delay: 0.2s;
}
.diamond-loader span:nth-child(3) {
  top: 25px;
  left: 50px;
  animation-delay: 0.4s;
}
.diamond-loader span:nth-child(4) {
  top: 50px;
  left: 25px;
  animation-delay: 0.6s;
}
/* ===== MEN'S WEAR SECTION STYLES ===== */
.mens-wear-section {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
  padding: 100px 0;
}

.mens-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 60px;
}

.mens-gallery-item {
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition-slow);
  cursor: pointer;
  border: 2px solid transparent;
}

.mens-gallery-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(69, 26, 70, 0.2);
  border-color: var(--primary);
}

.mens-gallery-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
  background-color: #f0f0f0;
}

.mens-gallery-item:hover .mens-gallery-img {
  transform: scale(1.1);
}

.mens-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(transparent, rgba(69, 26, 70, 0.95));
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.mens-gallery-item:hover .mens-gallery-overlay {
  transform: translateY(0);
}

.mens-gallery-title {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--white);
}

.mens-gallery-desc {
  color: var(--gold);
  font-size: 14px;
  opacity: 0.9;
}

/* Men's Measurement Section */
.mens-measurement-section {
  margin-top: 100px;
}

.mens-measurement-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.mens-measurement-chart {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
  border: 2px solid var(--primary);
}

.mens-measurement-chart h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 24px;
}

.mens-measurement-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}

.mens-measurement-table th {
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 15px 12px;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--primary-light);
}

.mens-measurement-table td {
  padding: 12px;
  border: 1px solid var(--gold-light);
  color: var(--text-dark);
}

.mens-measurement-table tr:nth-child(even) {
  background: rgba(69, 26, 70, 0.05);
}

.mens-measurement-table tr:hover {
  background: rgba(69, 26, 70, 0.1);
}

/* Men's Measurement Guide */
.mens-measurement-guide {
  padding: 30px;
}

.mens-measurement-guide h3 {
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 28px;
}

.mens-measurement-points {
  margin-top: 30px;
}

.measurement-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(210, 143, 189, 0.2);
}

.measurement-point:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.point-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 20px;
}

.point-content h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 18px;
}

.point-content p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 14px;
}

.measurement-tips {
  background: rgba(210, 143, 189, 0.1);
  padding: 25px;
  border-radius: 15px;
  margin-top: 40px;
  border-left: 4px solid var(--gold);
}

.measurement-tips h4 {
  color: var(--primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.measurement-tips h4 i {
  color: var(--gold);
}

.measurement-tips ul {
  list-style: disc;
  padding-left: 20px;
}

.measurement-tips li {
  color: var(--text-light);
  margin-bottom: 8px;
  font-size: 14px;
}

/* Responsive Design for Men's Section */
@media (max-width: 1024px) {
  .mens-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mens-measurement-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .mens-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mens-measurement-chart {
    padding: 20px;
  }

  .mens-measurement-table {
    font-size: 13px;
  }

  .mens-measurement-table th,
  .mens-measurement-table td {
    padding: 10px 8px;
  }

  .measurement-point {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .mens-gallery-grid {
    grid-template-columns: 1fr;
  }

  .mens-measurement-table {
    font-size: 12px;
  }

  .mens-measurement-table th,
  .mens-measurement-table td {
    padding: 8px 6px;
  }
}
/* ===== BIG GHAGRA SECTION STYLES ===== */
.ghagra-section {
  background: linear-gradient(135deg, #f8f4f9 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ghagra-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(210,143,189,0.05)"/></svg>');
  background-size: cover;
  z-index: 0;
}

/* Big Ghagra Container */
.big-ghagra-container {
  margin: 80px auto;
  max-width: 1200px;
}

.big-ghagra-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition-slow);
  border: 3px solid var(--gold-light);
}

.big-ghagra-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(210, 143, 189, 0.25);
}

.big-ghagra-card.reverse {
  direction: rtl;
}

.big-ghagra-card.reverse .big-ghagra-content {
  direction: ltr;
}

.big-ghagra-img {
  height: 600px;
  background-size: cover;
  background-position: center;
  background-color: #f0f0f0;
  transition: transform 1.5s ease;
  height: 100%;
  width: 100%;
}

.big-ghagra-card:hover .big-ghagra-img {
  transform: scale(1.05);
}

.big-ghagra-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.big-ghagra-content h3 {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 30px;
  line-height: 1.3;
}

.ghagra-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.ghagra-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(210, 143, 189, 0.08);
  border-radius: 15px;
  transition: var(--transition);
}

.ghagra-detail-item:hover {
  background: rgba(210, 143, 189, 0.15);
  transform: translateY(-5px);
}

.ghagra-detail-item i {
  font-size: 24px;
  color: var(--gold);
  min-width: 40px;
}

.detail-label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.detail-value {
  display: block;
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}

.ghagra-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 16px;
}

.ghagra-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(45deg, var(--primary-light), var(--primary));
  color: var(--white);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.feature-tag i {
  font-size: 12px;
}

/* Ghagra Types Section */
.ghagra-types-section {
  margin-top: 120px;
}

.types-title {
  text-align: center;
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 60px;
  position: relative;
}

.types-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 2px;
}

.ghagra-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.ghagra-type-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.ghagra-type-card:hover {
  transform: translateY(-15px);
  border-color: var(--gold);
  box-shadow: var(--shadow-heavy);
}

.type-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(45deg, var(--gold), var(--accent));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 32px;
  transition: var(--transition);
}

.ghagra-type-card:hover .type-icon {
  transform: rotate(360deg) scale(1.1);
}

.ghagra-type-card h4 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 20px;
}

.type-features {
  list-style: none;
  text-align: left;
}

.type-features li {
  color: var(--text-light);
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
}

.type-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* CTA Section */
.ghagra-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 30px;
  padding: 50px;
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  box-shadow: var(--shadow-heavy);
  border: 3px solid var(--gold);
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.cta-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 36px;
  backdrop-filter: blur(10px);
}

.cta-text h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 15px;
}

.cta-text p {
  color: var(--cream);
  line-height: 1.7;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design for Ghagra Section */
@media (max-width: 1024px) {
  .big-ghagra-card {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
  }

  .big-ghagra-img {
    height: 400px;
  }

  .ghagra-details {
    grid-template-columns: 1fr;
  }

  .ghagra-cta {
    flex-direction: column;
    text-align: center;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .big-ghagra-content {
    padding: 30px;
  }

  .big-ghagra-content h3 {
    font-size: 26px;
  }

  .ghagra-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .big-ghagra-img {
    height: 300px;
  }

  .ghagra-types-grid {
    grid-template-columns: 1fr;
  }

  .ghagra-cta {
    padding: 30px;
  }

  .cta-text h3 {
    font-size: 24px;
  }

  .big-ghagra-content h3 {
    font-size: 22px;
  }
}

/* ===== STITCHED LOOKBOOK SECTION STYLES ===== */
.stitched-lookbook-section {
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
}

.stitched-lookbook-grid {
  max-width: 1200px;
  margin: 60px auto 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.stitched-lookbook-item.big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition-slow);
  border: 3px solid transparent;
}

.stitched-lookbook-item.big:hover {
  transform: translateY(-15px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(69, 26, 70, 0.25);
}

.stitched-lookbook-item.big.reverse {
  direction: rtl;
}

.stitched-lookbook-item.big.reverse .stitched-lookbook-content {
  direction: ltr;
}

.stitched-lookbook-img {
  height: 550px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.stitched-lookbook-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(69, 26, 70, 0.1), transparent);
}

.stitched-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stitched-lookbook-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stitched-lookbook-content h3 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.stitched-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.stitched-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(210, 143, 189, 0.08);
  border-radius: 10px;
  transition: var(--transition);
}

.stitched-detail:hover {
  background: rgba(210, 143, 189, 0.15);
  transform: translateY(-3px);
}

.stitched-detail i {
  color: var(--gold);
  font-size: 18px;
  min-width: 25px;
}

.stitched-detail span {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.stitched-description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 15px;
  flex-grow: 1;
}

.stitched-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: linear-gradient(45deg, var(--gold-light), var(--accent-light));
  color: var(--primary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.feature-badge i {
  font-size: 12px;
}

.stitched-actions {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.stitched-actions .btn {
  flex: 1;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
}

/* Additional Info Section */
.stitched-info-section {
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  border-radius: 25px;
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 50px;
  border: 2px solid var(--gold-light);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, var(--gold), var(--accent));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 28px;
  margin: 0 auto 30px;
}

.info-content h4 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
  font-size: 24px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-item {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  transition: var(--transition);
}

.info-item:hover {
  transform: translateY(-10px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-item i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 15px;
}

.info-item h5 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 18px;
}

.info-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.lookbook-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 25px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: var(--shadow-heavy);
}

.lookbook-cta .cta-content h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 10px;
}

.lookbook-cta .cta-content p {
  color: var(--cream);
  font-size: 15px;
  max-width: 500px;
}

.lookbook-cta .cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stitched-lookbook-item.big {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
  }

  .stitched-lookbook-img {
    height: 400px;
  }

  .stitched-details {
    grid-template-columns: 1fr;
  }

  .lookbook-cta {
    flex-direction: column;
    text-align: center;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stitched-lookbook-content {
    padding: 30px;
  }

  .stitched-lookbook-content h3 {
    font-size: 24px;
  }

  .stitched-actions {
    flex-direction: column;
  }

  .lookbook-cta .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .lookbook-cta .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .stitched-lookbook-img {
    height: 300px;
  }

  .stitched-lookbook-content h3 {
    font-size: 22px;
  }

  .stitched-details {
    gap: 10px;
  }

  .stitched-detail {
    padding: 10px;
  }

  .info-card {
    padding: 25px;
  }

  .lookbook-cta {
    padding: 30px;
  }
}
