/* ======================================================
   COMMON BRAND VARIABLES & THEME
====================================================== */
:root {
  --background: #FFFFFF;
  --foreground: #111111;
  --card: #FAFAFA;
  --card-foreground: #111111;
  --primary: #C8A96A; /* Gold Accent */
  --primary-foreground: #FFFFFF;
  --secondary: #F5F5F5;
  --secondary-foreground: #111111;
  --muted: #767676;
  --border: #E5E5E5;
  --input: #E5E5E5;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.05);
  --shadow-md: 0 4px 12px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 12px 32px rgba(17, 17, 17, 0.12);
  --shadow-elegant: 0 24px 80px rgba(200, 169, 106, 0.24);
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
}

/* Dark Theme Variables */
body.dark-mode {
  --background: #111111;
  --foreground: #FAFAFA;
  --card: #1A1105; /* Deep luxury dark card */
  --card-foreground: #FAFAFA;
  --secondary: #1C1C1C;
  --secondary-foreground: #FAFAFA;
  --border: #2D2D2D;
  --input: #2D2D2D;
  --muted: #A0A0A0;
}

/* Base resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
}
h1, h2, h3, h4, .serif-font {
  font-family: var(--font-serif);
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* Header Styling */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark-mode header {
  background-color: rgba(17, 17, 17, 0.95);
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.theme-toggle-btn, .menu-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  padding: 8px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.theme-toggle-btn:hover, .menu-toggle-btn:hover {
  background-color: var(--secondary);
}
.menu-toggle-btn {
  display: none;
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  background-color: var(--background);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav.open {
  display: block;
}

/* Footer Styling */
footer {
  background-color: #111111;
  color: #FFFFFF;
  padding: 64px 24px 24px;
  border-top: 1px solid #222222;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand .logo-img {
  height: 48px;
  width: auto;
  filter: brightness(1.2);
}
.footer-description {
  color: #CCCCCC;
  font-size: 14px;
  max-width: 400px;
}
.footer-column h3 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #CCCCCC;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #CCCCCC;
  font-size: 14px;
}
.footer-social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid #222222;
  text-align: center;
  font-size: 14px;
  color: #888888;
}
.footer-bottom a {
  color: var(--primary);
  text-decoration: underline;
}

/* ======================================================
   HOME PAGE BESPOKE STYLES
====================================================== */

/* Hero Slider Section */
.hero-slider-section {
  position: relative;
  height: calc(100vh - 64px);
  background-color: #222222;
  overflow: hidden;
}
.hero-track {
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide.active img {
  animation: kenburns 12s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.46);
  z-index: 1;
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  color: #FFFFFF;
}
.hero-brand {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 16px;
}
.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.85);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background-color 0.2s, color 0.2s;
  color: #111111;
}
.slider-arrow:hover {
  background-color: #FFFFFF;
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active {
  width: 32px;
  border-radius: 8px;
  background-color: var(--primary);
}

/* Sections Common layout */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-header {
  margin-bottom: 40px;
}
.section-subtitle {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

/* Stories Bubbles Row */
.stories-flex {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 12px;
}
.story-bubble-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  outline: none;
  flex-shrink: 0;
}
.story-bubble-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  padding: 4px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.story-bubble-btn:hover .story-bubble-img {
  transform: scale(1.05);
}
.story-bubble-title {
  font-size: 14px;
  font-weight: 500;
}

/* Category Grid Layout */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: block;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 106, 0.3);
  box-shadow: var(--shadow-md);
}
.category-img-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--secondary);
}
.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.category-card:hover .category-img {
  transform: scale(1.05);
}
.category-info {
  padding: 16px;
}
.category-title {
  font-size: 18px;
  font-weight: 600;
}
.category-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* Campaign collection panel */
.campaign-panel-section {
  background-color: var(--card);
  padding: 80px 24px;
  transition: background-color 0.3s;
}
.campaign-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.campaign-card {
  position: relative;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #FFFFFF;
}
.campaign-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.campaign-card:hover .campaign-card-img {
  transform: scale(1.03);
}
.campaign-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.42);
  z-index: 2;
}
.campaign-card-content {
  position: relative;
  z-index: 3;
}
.campaign-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}
.campaign-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 12px;
}

/* Trending Slider Row */
.trending-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 24px;
}
.trending-slider-item {
  width: 320px;
  flex-shrink: 0;
}

/* Product Card Grid (Shared across pages) */
.product-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-img-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: var(--secondary);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.product-img.alternate {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card:hover .product-img.primary {
  opacity: 0;
}
.product-card:hover .product-img.alternate {
  opacity: 1;
}
.badge-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
}
.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}
.product-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.product-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.product-price {
  font-size: 15px;
  font-weight: 600;
}
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.rating-star-icon {
  color: var(--primary);
  fill: var(--primary);
}
.product-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

/* Editorial banner section */
.editorial-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 80px 48px;
  color: #FFFFFF;
}
.editorial-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 1;
}
.editorial-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.65);
  z-index: 2;
}
.editorial-banner-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}
.editorial-banner-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}
.editorial-banner-content p {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

/* New Arrivals grid */
.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Shop the Look custom block */
.look-section {
  background-color: var(--card);
  padding: 80px 24px;
}
.look-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.look-img {
  aspect-ratio: 4/5;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.look-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.look-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Review slideshow section */
.review-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 24px;
}
.review-quote {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 24px;
  animation: quoteFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes quoteFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.review-author {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
}
.review-nav-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

/* Newsletter Subscription Form Box */
.newsletter-form {
  position: relative;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.newsletter-form:hover {
  border-color: rgba(200, 169, 106, 0.3);
  box-shadow: var(--shadow-elegant);
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 24px;
}
.newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsletter-input {
  width: 100%;
  border: 1px solid var(--input);
  background-color: var(--background);
  color: var(--foreground);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
}
.newsletter-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.15);
}
.newsletter-error {
  color: var(--primary);
  font-size: 12px;
  margin-top: 4px;
}

/* Button UI Primitives */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background-color: var(--border);
  transform: translateY(-1px);
}

/* Story Viewer Modal */
.story-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.story-overlay.open {
  display: flex;
}
.story-shell {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 16px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalScaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.story-progress-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.story-progress-track {
  height: 3px;
  background-color: var(--secondary);
  flex-grow: 1;
  border-radius: 4px;
  overflow: hidden;
}
.story-progress-fill {
  height: 100%;
  background-color: var(--primary);
  width: 0%;
  transition: width 0.1s linear;
}
.story-img-container {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--secondary);
  position: relative;
}
.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  color: #111111;
  z-index: 15;
}
.story-arrow.prev { left: 12px; }
.story-arrow.next { right: 12px; }
.story-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111111;
  z-index: 15;
}

/* Quick View Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.75);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open {
  display: flex;
}
.modal-shell {
  background-color: var(--background);
  color: var(--foreground);
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  animation: modalScaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 8px;
  border-radius: var(--radius);
  transition: background-color 0.2s;
  z-index: 10;
}
.modal-close-btn:hover {
  background-color: var(--secondary);
}
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-img-container {
  aspect-ratio: 3/4;
  background-color: var(--secondary);
}
.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-info-panel {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 80vh;
  overflow-y: auto;
}
.modal-badge {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.modal-title {
  font-size: 28px;
  font-weight: 700;
}
.modal-price {
  font-size: 20px;
  font-weight: 600;
}
.modal-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.modal-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.modal-sizes-header {
  font-size: 14px;
  font-weight: 600;
}
.modal-sizes-flex {
  display: flex;
  gap: 8px;
}
.modal-size-badge {
  border: 1px solid var(--border);
  padding: 8px 14px;
  font-size: 13px;
  border-radius: var(--radius);
}
.modal-material {
  font-size: 13px;
}
.modal-material strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

/* Toast Notification Popup */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  width: calc(100% - 48px);
}
.toast {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  animation: toastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes toastIn {
  from { transform: translateY(-12px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.toast.success {
  border-left: 4px solid #10B981;
}
.toast.error {
  border-left: 4px solid #EF4444;
}
.toast-content {
  flex-grow: 1;
}
.toast-title {
  font-size: 14px;
  font-weight: 600;
}
.toast-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
}

/* Back to Top button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background-color: var(--primary);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-2px);
}

/* Responsive Styling for layout */
@media (max-width: 1024px) {
  .categories-grid, .arrivals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .menu-toggle-btn {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-slider-section {
    height: 70vh;
  }
  .section {
    padding: 48px 24px;
  }
  .campaign-grid, .look-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
  }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .newsletter-form {
    padding: 24px;
  }
  .modal-grid {
    grid-template-columns: 1fr;
  }
  .modal-img-container {
    aspect-ratio: 16/9;
  }
  .modal-info-panel {
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .categories-grid, .arrivals-grid {
    grid-template-columns: 1fr;
  }
  .campaign-card {
    height: 320px;
    padding: 24px;
  }
  .campaign-title {
    font-size: 24px;
  }
}
