@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #111827;
  --secondary: #334155;
  --accent: #2563EB;
  --soft-accent: #DBEAFE;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --text: #111827;
  --muted: #64748B;
  --border: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(17, 24, 39, 0.05);
  --shadow-md: 0 10px 25px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 20px 40px rgba(17, 24, 39, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 5rem;
}

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

.section-header {
  text-align: center;
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-subtitle {
  font-family: var(--font-heading);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
}

.section-description {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  margin-inline: auto;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--surface);
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--surface);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-accent:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.3);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--surface);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid var(--surface);
  color: var(--surface);
  background: transparent;
}

.btn-outline-white:hover {
  background-color: var(--surface);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-text span {
  color: var(--accent);
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--secondary);
  position: relative;
  padding-block: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  color: var(--primary);
  background-color: var(--bg);
  transition: var(--transition);
  position: relative;
}

.icon-btn:hover {
  background-color: var(--soft-accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--accent);
  color: var(--surface);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--surface);
}

.hamburger-btn {
  display: none;
  font-size: 1.35rem;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -50vw;
  width: 50vw;
  height: 100vh;
  background-color: var(--surface);
  z-index: 1100;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.5rem;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(-50vw);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
}

.close-menu-btn {
  font-size: 1.5rem;
  color: var(--primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: var(--bg);
  transition: var(--transition);
}

.close-menu-btn:hover {
  background-color: var(--soft-accent);
  color: var(--accent);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  width: 100%;
  padding-block: 0.4rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent);
}

.mobile-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  width: 100%;
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.search-box-container {
  width: 90%;
  max-width: 650px;
  background-color: var(--surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(-20px);
  transition: var(--transition);
}

.search-modal.active .search-box-container {
  transform: translateY(0);
}

.search-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.2rem;
  color: var(--muted);
}

.search-close-btn:hover {
  color: var(--primary);
}

.search-form {
  display: flex;
  align-items: center;
  border: 2px solid var(--accent);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.6rem 0.4rem 1.25rem;
  background-color: var(--surface);
  margin-top: 1rem;
}

.search-input {
  width: 100%;
  font-size: 1rem;
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #0f172a;
  background-image: radial-gradient(circle at 15% 50%, rgba(37, 99, 235, 0.25) 0%, transparent 45%),
                    radial-gradient(circle at 85% 30%, rgba(147, 51, 234, 0.2) 0%, transparent 50%),
                    linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(17, 24, 39, 0.98) 100%);
  color: var(--surface);
  padding-top: 5rem;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./images/clothing\ store.webp') center/cover no-repeat;
  opacity: 0.9;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}

/* Left Column */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #60a5fa;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -1.5px;
  color: #ffffff;
}

.text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(226, 232, 240, 0.85);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.btn-glow {
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.5);
}

.btn-glow:hover {
  box-shadow: 0 0 35px rgba(37, 99, 235, 0.75);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero Category Pills */
.hero-categories-pills {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 580px;
}

.pills-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.6);
  margin-right: 0.25rem;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.category-pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Stats Strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.star-icon {
  color: #fbbf24;
  font-size: 1.1rem;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.65);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
}

/* Right Column 3D Men & Women Fashion Showcase */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: flex-start;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-3d-stage {
  perspective: 1200px;
  perspective-origin: 50% 0%;
  width: 100%;
  max-width: 520px;
  height: 440px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  margin-inline: auto;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-3d-scene {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.card-3d {
  position: absolute;
  width: 260px;
  height: 380px;
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
  cursor: pointer;
}

.card-3d-inner {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.card-3d-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  transition: transform 0.5s ease;
}

.card-3d-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.15) 55%, transparent 100%);
  border-radius: calc(var(--radius-lg) - 6px);
}

/* Women's Card positioning in 3D Space */
.card-women {
  top: 0 !important;
  left: 20px;
  transform: rotateY(-18deg) rotateX(4deg) translateZ(40px);
  z-index: 2;
  animation: float3D1 6s ease-in-out infinite alternate;
}

.card-women:hover {
  transform: rotateY(0deg) rotateX(0deg) translateZ(95px) scale(1.06);
  z-index: 10;
  box-shadow: 0 40px 80px rgba(236, 72, 153, 0.45);
}

.card-women:hover .card-3d-img {
  transform: scale(1.08);
}

/* Men's Card positioning in 3D Space */
.card-men {
  bottom: 35px;
  right: 20px;
  transform: rotateY(16deg) rotateX(-6deg) translateZ(80px);
  z-index: 3;
  animation: float3D2 6.5s ease-in-out infinite alternate;
}

.card-men:hover {
  transform: rotateY(0deg) rotateX(0deg) translateZ(105px) scale(1.06);
  z-index: 10;
  box-shadow: 0 40px 80px rgba(37, 99, 235, 0.45);
}

.card-men:hover .card-3d-img {
  transform: scale(1.08);
}

@keyframes float3D1 {
  0% {
    transform: rotateY(-18deg) rotateX(8deg) translateZ(40px) translateY(0px);
  }
  100% {
    transform: rotateY(-14deg) rotateX(4deg) translateZ(55px) translateY(-18px);
  }
}

@keyframes float3D2 {
  0% {
    transform: rotateY(16deg) rotateX(-6deg) translateZ(80px) translateY(0px);
  }
  100% {
    transform: rotateY(20deg) rotateX(-2deg) translateZ(95px) translateY(-16px);
  }
}

/* Card 3D Badges & Details */
.card-3d-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  transform: translateZ(30px);
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #ffffff;
  flex-shrink: 0;
}

.card-women .badge-icon {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.card-men .badge-icon {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.card-3d-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
}

.card-3d-badge span {
  display: block;
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.75);
}

.card-3d-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(236, 72, 153, 0.9);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: translateZ(25px);
}

.card-3d-tag.tag-accent {
  background: rgba(37, 99, 235, 0.9);
}

/* Central Floating 3D Badge */
.hero-3d-center-badge {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(120px);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  z-index: 5;
  animation: pulseBadge 3s infinite alternate;
}

.hero-3d-center-badge i {
  color: #fbbf24;
}

@keyframes pulseBadge {
  0% { transform: translate(-50%, -50%) translateZ(120px) scale(1); }
  100% { transform: translate(-50%, -50%) translateZ(135px) scale(1.05); }
}

/* Background 3D Glow Orbs */
.glow-orb {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.glow-women {
  top: 10%;
  left: 10%;
  background: radial-gradient(circle, #ec4899 0%, transparent 70%);
}

.glow-men {
  bottom: 10%;
  right: 10%;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
}

.discount-badge {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.discount-subtext {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.75);
}

.rating-shield {
  font-size: 1.6rem;
  color: #60a5fa;
}

.rating-title {
  font-size: 0.85rem;
  color: #ffffff;
  display: block;
}

.stars {
  color: #fbbf24;
  font-size: 0.75rem;
  display: flex;
  gap: 2px;
}

/* Features Highlight Bar */
.hero-features-bar {
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.5rem;
  position: relative;
  z-index: 5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-inline: 0.5rem;
}

.feature-icon {
  font-size: 1.6rem;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text strong {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

.feature-text span {
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.65);
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-content: center;
  place-items: center;
}

.category-card {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.category-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-card-img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.85) 0%, rgba(17, 24, 39, 0.1) 60%, rgba(17, 24, 39, 0) 100%);
}

.category-card-content {
  position: relative;
  z-index: 2;
  padding: 2.25rem;
  text-align: center;
  color: var(--surface);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-card-count {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  place-items: center;
  width: 100%;
}

.product-card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 340px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  margin-inline: auto;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--soft-accent);
}

.product-card-img-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background-color: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-grow: 1;
}

.product-category-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-brand {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: #F59E0B;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.product-rating span {
  color: var(--muted);
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

.product-sizes-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.size-chip-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--secondary);
  background-color: var(--bg);
  transition: var(--transition);
}

.size-chip-btn:hover,
.size-chip-btn.selected {
  background-color: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.product-card-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: auto;
}

.style-spotlight {
  background-color: var(--surface);
  border-block: 1px solid var(--border);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  justify-content: center;
}

.spotlight-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 520px;
}

.spotlight-img-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.spotlight-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.lookbook-section {
  background-color: var(--primary);
  color: var(--surface);
}

.lookbook-section .section-title {
  color: var(--surface);
}

.lookbook-section .section-description {
  color: rgba(255, 255, 255, 0.7);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-content: center;
}

.lookbook-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
}

.lookbook-item:nth-child(2) {
  height: 440px;
  transform: translateY(-20px);
}

.lookbook-item:nth-child(4) {
  height: 420px;
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lookbook-item:hover img {
  transform: scale(1.08);
}

.lookbook-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.9) 0%, transparent 100%);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-content: center;
}

.testimonial-card {
  background-color: var(--surface);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-stars {
  color: #F59E0B;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted);
}

.brand-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-content: center;
}

.value-card {
  background-color: var(--surface);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background-color: var(--soft-accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--muted);
}

.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1E293B 100%);
  color: var(--surface);
  text-align: center;
  padding-block: 5rem;
}

.newsletter-box {
  max-width: 600px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin-top: 2rem;
}

.newsletter-input {
  flex-grow: 1;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--surface);
  font-size: 0.95rem;
}

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

.newsletter-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
}

.filter-wrapper {
  background-color: var(--surface);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
  width: 100%;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
}

.filter-select {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: var(--bg);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}

.filter-select:focus {
  border-color: var(--accent);
}

.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--surface);
  padding-block: 4rem;
  text-align: center;
  margin-bottom: 3rem;
}

.page-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--surface);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-main-img-box {
  width: 100%;
  height: 540px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #F1F5F9;
  box-shadow: var(--shadow-sm);
}

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

.product-thumbs {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.thumb-img {
  width: 90px;
  height: 100px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumb-img:hover,
.thumb-img.active {
  border-color: var(--accent);
}

.product-info-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.detail-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.detail-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.detail-desc {
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.detail-spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
  width: 100%;
}

.detail-spec-item {
  display: flex;
  gap: 0.75rem;
}

.detail-spec-label {
  font-weight: 600;
  color: var(--primary);
  min-width: 100px;
}

.selector-group {
  margin-bottom: 1.5rem;
  width: 100%;
}

.selector-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: var(--primary);
}

.size-selector-btn-grid {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.size-select-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
  background-color: var(--surface);
  transition: var(--transition);
}

.size-select-btn:hover,
.size-select-btn.active {
  background-color: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  width: 130px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  color: var(--primary);
  transition: var(--transition);
}

.qty-btn:hover {
  background-color: var(--soft-accent);
  color: var(--accent);
}

.qty-input {
  width: 50px;
  text-align: center;
  font-weight: 600;
  color: var(--primary);
}

.editorial-collection-block {
  margin-bottom: 5rem;
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.editorial-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

.editorial-img-box {
  height: 480px;
  overflow: hidden;
}

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

.editorial-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.editorial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block: 1.5rem;
}

.tag-badge {
  background-color: var(--bg);
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--secondary);
}

.cart-table-wrapper {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.cart-table th {
  background-color: var(--bg);
  padding: 1.25rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
}

.cart-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.cart-product-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.cart-thumb {
  width: 70px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-product-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

.cart-product-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.cart-summary-box {
  max-width: 450px;
  margin-left: auto;
  background-color: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.summary-row.total {
  border-bottom: none;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  padding-top: 1.25rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.checkout-form-box {
  background-color: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  background-color: var(--surface);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-info-card {
  background-color: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--soft-accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-info-text {
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 850px;
  margin-inline: auto;
}

.faq-item {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: left;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card {
  background-color: var(--surface);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
}

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

.team-card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.team-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.team-body {
  padding: 1.5rem;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer {
  background-color: var(--primary);
  color: var(--surface);
  padding-top: 5rem;
  padding-bottom: 2rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--surface);
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--accent);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 340px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--surface);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--surface);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
  gap: 1rem;
}

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast-message {
  background-color: var(--primary);
  color: var(--surface);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideInRight 0.3s ease forwards;
  border-left: 4px solid var(--accent);
}

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

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-grid {
    gap: 2.5rem;
  }
  .spotlight-grid,
  .product-detail-grid,
  .contact-grid,
  .checkout-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-left {
    align-items: center;
    text-align: center;
  }
  .hero-description {
    margin-inline: auto;
  }
  .hero-buttons,
  .hero-categories-pills,
  .hero-stats {
    justify-content: center;
    margin-inline: auto;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .category-cards-grid,
  .testimonials-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-values-grid,
  .about-stats-grid,
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spotlight-grid,
  .product-detail-grid,
  .editorial-grid,
  .editorial-grid.reverse,
  .contact-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .editorial-img-box {
    height: 360px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: 3.5rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-stats {
    gap: 1.25rem;
    padding: 0.85rem 1.25rem;
  }
  .hero-3d-stage {
    height: 440px;
    max-width: 400px;
  }
  .card-3d {
    width: 220px;
    height: 320px;
  }
  .card-women {
    left: 10px;
    top: 20px;
  }
  .card-men {
    right: 10px;
    bottom: 20px;
  }
  .category-cards-grid,
  .testimonials-grid,
  .brand-values-grid,
  .about-stats-grid,
  .team-grid,
  .lookbook-grid {
    grid-template-columns: 1fr;
  }
  .lookbook-item,
  .lookbook-item:nth-child(2),
  .lookbook-item:nth-child(4) {
    height: 320px;
    transform: none;
  }
  .form-group-grid {
    grid-template-columns: 1fr;
  }
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-group {
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-stats {
    flex-direction: column;
    width: 100%;
  }
  .stat-divider {
    width: 80%;
    height: 1px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-3d-stage {
    height: 360px;
    max-width: 310px;
  }
  .card-3d {
    width: 170px;
    height: 260px;
  }
  .card-women {
    left: 0;
    top: 15px;
  }
  .card-men {
    right: 0;
    bottom: 15px;
  }
  .card-3d-badge {
    padding: 0.4rem 0.6rem;
    bottom: 0.6rem;
    left: 0.6rem;
    right: 0.6rem;
  }
  .card-3d-badge strong {
    font-size: 0.76rem;
  }
  .card-3d-badge span {
    display: none;
  }
  .badge-icon {
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }
  
  /* -----------------------------------------------------------------------
     Cart Table 3-Row Phone Interface Layout
     ----------------------------------------------------------------------- */
  .cart-table-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  .cart-table {
    display: block;
    width: 100%;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table tbody {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .cart-table tr {
    display: grid;
    grid-template-areas:
      "product remove"
      "price quantity"
      "subtotal subtotal";
    grid-template-columns: 1fr auto;
    gap: 0.85rem;
    padding: 1.25rem;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: left;
  }

  /* Row 1: Product info (left) & Remove trash button (right) */
  .cart-table td:nth-child(1) {
    grid-area: product;
    padding: 0;
    border: none;
  }

  .cart-table td:nth-child(5) {
    grid-area: remove;
    padding: 0;
    border: none;
    justify-self: end;
    align-self: start;
  }

  /* Row 2: Price (left) & Quantity Controls (right) */
  .cart-table td:nth-child(2) {
    grid-area: price;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
  }

  .cart-table td:nth-child(2)::before {
    content: "Price:";
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
  }

  .cart-table td:nth-child(3) {
    grid-area: quantity;
    padding: 0;
    border: none;
    justify-self: end;
    display: block !important;
  }

  .cart-table td:nth-child(3) .qty-control {
    margin-inline: 0 !important;
  }

  /* Row 3: Subtotal (full width across bottom) */
  .cart-table td:nth-child(4) {
    grid-area: subtotal;
    padding: 0.75rem 0 0 0;
    border-bottom: none;
    border-top: 1px dashed var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
  }

  .cart-table td:nth-child(4)::before {
    content: "Item Subtotal:";
    font-size: 0.88rem;
    color: var(--secondary);
    font-weight: 600;
  }

  .detail-title {
    font-size: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .detail-title {
    font-size: 1.3rem;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
  }
}

/* Fix: Center category-card content vertically and horizontally */
.category-card {
  align-items: center !important;
  justify-content: center !important;
}

.category-card-overlay {
  background: rgba(17, 24, 39, 0.45) !important;
}

/* Fix: Product rating stars display in product-card */
.product-rating {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.25rem !important;
  color: #F59E0B !important;
  font-size: 0.85rem !important;
  margin-bottom: 0.6rem !important;
}

.product-rating i {
  color: #F59E0B !important;
  font-size: 0.85rem !important;
  display: inline-block !important;
  line-height: 1 !important;
}

.product-rating i.fa-solid,
.product-rating i.fa-regular,
.product-rating i.fa-star {
  font-family: "Font Awesome 6 Free", "FontAwesome", sans-serif !important;
  font-style: normal;
}

.product-rating i.fa-solid.fa-star {
  font-weight: 900 !important;
}

.product-rating i.fa-regular.fa-star {
  font-weight: 400 !important;
}

.product-rating i.fa-solid.fa-star::before {
  content: "\f005";
}

.product-rating i.fa-regular.fa-star::before {
  content: "\f005";
  opacity: 0.35;
}

/* Fix: Hide product brand name across the website */
.product-brand,
.detail-meta > span:first-child:not(.product-rating) {
  display: none !important;
}

/* Fix: Left-align spotlight-content anchor tag button */
.spotlight-content a,
.spotlight-content a.btn,
.spotlight-content .btn {
  margin-inline: 0 !important;
  margin-left: 0 !important;
  align-self: flex-start !important;
}

@media (max-width: 768px) {
  .spotlight-content {
    align-items: center !important;
    text-align: center !important;
  }
  .spotlight-content .section-description {
    text-align: center !important;
  }
  .spotlight-content a,
  .spotlight-content a.btn,
  .spotlight-content .btn {
    margin-inline: 0 !important;
    margin-left: 0 !important;
    align-self: flex-start !important;
  }
}

/* Fix: Center editorial-content elements */
.editorial-content {
  align-items: center !important;
  text-align: center !important;
}

.editorial-content .section-description {
  text-align: center !important;
}

.editorial-content .editorial-tags {
  justify-content: center !important;
}

.editorial-content .btn,
.editorial-content .btn-primary,
.editorial-content .btn-accent {
  margin-inline: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-self: center !important;
}

/* Fix: Place editorial-image above editorial-content in Women's section */
.editorial-grid.reverse .editorial-img-box {
  order: -1 !important;
}

.editorial-grid.reverse .editorial-content {
  order: 1 !important;
}

@media (max-width: 992px) {
  .editorial-grid.reverse {
    display: flex !important;
    flex-direction: column !important;
  }
  .editorial-grid.reverse .editorial-img-box {
    order: 1 !important;
  }
  .editorial-grid.reverse .editorial-content {
    order: 2 !important;
  }
}

/* Fix: Show full uncropped product image in product-card and product-details page */
.product-card-img-wrap {
  background-color: #F8FAFC !important;
  padding: 0.5rem !important;
}

.product-card-img {
  object-fit: contain !important;
}

.product-main-img-box {
  background-color: #F8FAFC !important;
  padding: 1rem !important;
}

.product-main-img-box img,
#mainProductImg {
  object-fit: contain !important;
}

/* Fix: Show full uncropped editorial image */
.editorial-img-box {
  background-color: #F8FAFC !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.editorial-img-box img {
  object-fit: contain !important;
}

/* Fix: Display stat-items in 2 row 2 col grid on phone interface */
@media (max-width: 768px) {
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem 1rem !important;
    padding: 1.25rem 1rem !important;
    justify-items: center !important;
    text-align: center !important;
  }
  .hero-stats .stat-divider {
    display: none !important;
  }
  .hero-stats .stat-item {
    align-items: center !important;
    text-align: center !important;
  }
  .about-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem 1rem !important;
  }
}

/* Fix: Stack newsletter input and submit button on different rows in phone interface */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column !important;
    gap: 1rem !important;
    width: 100% !important;
  }
  .newsletter-input {
    width: 100% !important;
  }
  .newsletter-form button,
  .newsletter-form .btn {
    width: 100% !important;
    margin-inline: auto !important;
    justify-content: center !important;
  }
}

/* Fix: Hide website logo from sidebar/mobile menu */
.mobile-menu-header .logo-text,
.mobile-menu-header .logo,
.mobile-menu .logo-text {
  display: none !important;
}

.mobile-menu-header {
  justify-content: flex-end !important;
  border-bottom: none !important;
  margin-bottom: 1.5rem !important;
  padding-bottom: 0 !important;
}

/* Fix: Position mobile-actions button directly below mobile-nav-links */
.mobile-nav-links {
  margin-bottom: 0 !important;
  order: 1 !important;
}

.mobile-actions {
  margin-top: 1.5rem !important;
  order: 2 !important;
}

/* Fix: Style cart-badge on mobile-actions button in sidebar menu */
.mobile-actions a,
.mobile-actions .btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-right: 2.75rem !important;
}

.mobile-actions .cart-badge {
  position: absolute !important;
  top: 50% !important;
  right: 12px !important;
  transform: translateY(-50%) !important;
  background-color: #EF4444 !important;
  color: #FFFFFF !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 9999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25) !important;
}

/* Fix: Center testimonial-card content across the website */
.testimonial-card {
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
}

.testimonial-card .testimonial-stars,
.testimonial-card .testimonial-text,
.testimonial-card .testimonial-author,
.testimonial-card .testimonial-role {
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
}
















