/* ============================================
   WEARCEISYA® — Premium Fashion Marketplace
   Design System & Styles
   ============================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Brand Colors from Palette */
  --rose: #d87a8e;
  --rose-light: #e8a0ae;
  --rose-lighter: #f3c7d0;
  --rose-pale: #fbe8ec;
  --mauve: #b47b8c;
  --mauve-dark: #9a6576;
  --crimson: #ce3b5e;
  --crimson-dark: #a72e4b;
  --maroon: #5c2434;
  --maroon-deep: #3d1823;
  --charcoal: #3e3839;
  --charcoal-light: #5a5556;

  /* Neutral Palette */
  --white: #ffffff;
  --off-white: #fafaf8;
  --cream: #f7f5f2;
  --light-gray: #edebe8;
  --gray: #b0adab;
  --dark-gray: #6b6867;
  --near-black: #1a1718;

  /* Functional */
  --bg-primary: var(--off-white);
  --bg-secondary: var(--cream);
  --bg-dark: var(--charcoal);
  --text-primary: var(--near-black);
  --text-secondary: var(--dark-gray);
  --text-light: var(--gray);
  --accent: var(--rose);
  --accent-hover: var(--mauve);
  --accent-dark: var(--maroon);

  /* Typography */
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: "Cormorant Garamond", "Georgia", serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(62, 56, 57, 0.06);
  --shadow-md: 0 4px 20px rgba(62, 56, 57, 0.08);
  --shadow-lg: 0 8px 40px rgba(62, 56, 57, 0.12);
  --shadow-xl: 0 16px 60px rgba(62, 56, 57, 0.16);
  --shadow-rose: 0 8px 30px rgba(216, 122, 142, 0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Layout */
  --container-max: 1280px;
  --container-padding: 2rem;
  --nav-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--rose) var(--cream);
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: var(--cream);
}

html::-webkit-scrollbar-thumb {
  background: var(--rose);
  border-radius: var(--radius-full);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

::selection {
  background: var(--rose);
  color: var(--white);
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.preloader-bar {
  width: 180px;
  height: 3px;
  background: var(--light-gray);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--crimson));
  border-radius: var(--radius-full);
  animation: preloaderBar 1.5s var(--ease-out) forwards;
}

@keyframes preloaderBar {
  to {
    width: 100%;
  }
}

/* --- Navigation (Dynamic Island Style) --- */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  height: var(--nav-height);
  z-index: 1000;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(216, 122, 142, 0.1);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* Scrolled: Same size, just more solid */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(216, 122, 142, 0.18);
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 10;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  transition: transform var(--transition-base);
}

.nav-logo:hover .logo-icon {
  transform: rotate(10deg) scale(1.1);
}

.logo-text {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.logo-text sup {
  font-size: 0.5em;
  color: var(--rose);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 20px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--crimson));
  transition: width var(--transition-base);
  border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active {
  color: var(--charcoal);
  background: rgba(216, 122, 142, 0.06);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: all var(--transition-fast);
  position: relative;
  font-size: 0.95rem;
}

.nav-btn:hover {
  background: var(--rose-pale);
  color: var(--rose);
  transform: scale(1.08);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--crimson);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark mode navbar */
body.dark-mode .navbar {
  background: rgba(30, 28, 29, 0.8);
  border-color: rgba(216, 122, 142, 0.12);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.dark-mode .navbar.scrolled {
  background: rgba(30, 28, 29, 0.95);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.dark-mode .logo-text {
  color: #f0eeec;
}

body.dark-mode .nav-link {
  color: rgba(240, 238, 236, 0.6);
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
  color: #f0eeec;
  background: rgba(216, 122, 142, 0.1);
}

body.dark-mode .nav-btn {
  color: #f0eeec;
}

body.dark-mode .nav-btn:hover {
  background: rgba(216, 122, 142, 0.15);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 23, 24, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  right: 0;
  top: 0;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: var(--white);
  padding: var(--space-xl);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.mobile-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: var(--space-xl);
}

.mobile-logo {
  width: 40px;
  height: 40px;
}

.mobile-close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: all var(--transition-fast);
  font-size: 1.2rem;
}

.mobile-close:hover {
  background: var(--rose-pale);
  color: var(--rose);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 1;
}

.mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  padding: var(--space-md) var(--space-md);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.mobile-link:hover {
  background: var(--rose-pale);
  color: var(--charcoal);
  padding-left: var(--space-lg);
}

.mobile-social {
  display: flex;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--light-gray);
}

.mobile-social a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.mobile-social a:hover {
  background: var(--rose);
  color: var(--white);
}

/* --- Search Overlay --- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(26, 23, 24, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-content {
  width: 90%;
  max-width: 560px;
  text-align: center;
  transform: translateY(-20px);
  transition: transform 0.35s ease;
}

.search-overlay.active .search-overlay-content {
  transform: translateY(0);
}

.search-overlay-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.search-overlay-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.search-overlay-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.search-input-wrap {
  position: relative;
  width: 100%;
}

.search-input-wrap i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1rem;
}

.search-input-wrap input {
  width: 100%;
  padding: 18px 20px 18px 52px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: all var(--transition-fast);
}

.search-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-input-wrap input:focus {
  border-color: var(--rose);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(216, 122, 142, 0.15);
}

.search-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.25rem;
}

.search-tags > span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.search-tag {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.search-tag:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

/* --- Button Styles --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--maroon), var(--crimson));
  transition: left var(--transition-base);
  z-index: 0;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary span,
.btn-primary i {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  box-shadow: var(--shadow-rose);
  transform: translateY(-2px);
}

.btn-primary i {
  transition: transform var(--transition-base);
}

.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Section Labels & Titles --- */
.section-label {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose);
}

.section-label.center {
  justify-content: center;
}

.label-line {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--rose-light));
  border-radius: var(--radius-full);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--near-black);
  margin-bottom: var(--space-lg);
}

.section-title.center {
  text-align: center;
}

.title-accent {
  color: var(--rose);
  font-style: italic;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-3xl);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- Hero Section — Fullscreen Editorial --- */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--near-black);
  padding: 0;
  margin: 0;
}

/* Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hide when no source */
.hero-bg-img[src=""],
.hero-bg-img:not([src]),
.hero-bg-video[src=""],
.hero-bg-video:not([src]) {
  display: none;
}

/* Empty State Placeholder */
.hero-empty-state {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(216, 122, 142, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(183, 110, 121, 0.1) 0%, transparent 50%),
    linear-gradient(160deg, #1a1214 0%, #2a1a1e 30%, #1e1418 60%, #151012 100%);
}

.hero-empty-state::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, transparent 0%, rgba(216,122,142,0.03) 50%, transparent 100%
  );
  animation: placeholderShimmer 4s ease-in-out infinite;
  transform: translateX(-100%);
}

.hero-empty-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-empty-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  border: 1.5px dashed rgba(216, 122, 142, 0.25);
  border-radius: 16px;
  background: rgba(216, 122, 142, 0.04);
  transition: all 0.3s ease;
}

.hero-empty-icon:hover {
  border-color: rgba(216, 122, 142, 0.45);
  background: rgba(216, 122, 142, 0.08);
  transform: translateY(-2px);
}

.hero-empty-icon i {
  font-size: 2rem;
  color: rgba(216, 122, 142, 0.4);
}

.hero-empty-icon span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(216, 122, 142, 0.5);
}

.hero-empty-divider {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.15);
}

.hero-empty-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.hero-empty-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
}

.hero-empty-badge {
  margin-top: 0.5rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}

.hero-empty-badge i {
  margin-right: 4px;
  font-size: 0.6rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.2) 0%,
      rgba(10, 10, 10, 0.05) 30%,
      rgba(10, 10, 10, 0.3) 60%,
      rgba(10, 10, 10, 0.75) 100%
    );
  z-index: 1;
}

/* Display Typography */
.hero-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 3;
  text-align: center;
  width: 95%;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  padding: 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.05);
  animation: heroFadeDown 1s ease 0.2s both;
}

.hero-mega-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
}

.mega-line {
  display: block;
  font-size: clamp(3.5rem, 11vw, 10rem);
  opacity: 0;
  animation: heroLineReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mega-line.line-1 { animation-delay: 0.4s; }
.mega-line.line-2 { animation-delay: 0.6s; }
.mega-line.line-3 { animation-delay: 0.8s; }

.mega-line em {
  font-style: italic;
  font-family: var(--font-accent);
  font-weight: 400;
  color: var(--rose-light);
  letter-spacing: 0.02em;
}

@keyframes heroLineReveal {
  from {
    opacity: 0;
    transform: translateY(60px) skewY(2deg);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
    filter: blur(0);
  }
}

@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Headline Typography (no-image hero) */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
  background: linear-gradient(135deg, #f7f5f2 0%, #e8a0ae 40%, #d87a8e 60%, #f3c7d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroLineReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-headline sup {
  font-size: 0.25em;
  -webkit-text-fill-color: var(--rose-light);
  vertical-align: super;
}

.hero-sub-headline {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  margin-top: 1rem;
  animation: heroFadeDown 1s ease 0.8s both;
}

/* Series Journey Cards */
.ceisya-series-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-base);
  cursor: default;
}

.ceisya-series-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-lighter);
}

.ceisya-series-card--active {
  background: linear-gradient(135deg, var(--maroon), var(--crimson));
  border-color: transparent;
  color: var(--white);
}

.ceisya-series-card--active:hover {
  border-color: transparent;
  box-shadow: var(--shadow-rose);
}

.series-num {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.ceisya-series-card--active .series-num {
  color: var(--rose-lighter);
}

.ceisya-series-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.ceisya-series-card p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.ceisya-series-card--active h4 {
  color: var(--white);
}

.ceisya-series-card--active p {
  color: var(--rose-lighter);
}

/* Dark mode for series cards */
body.dark-mode .ceisya-series-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .ceisya-series-card h4 {
  color: #f0eeec;
}

body.dark-mode .ceisya-series-card:hover {
  border-color: rgba(216, 122, 142, 0.3);
}

/* Bottom Bar */
.hero-bottom {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3rem;
  padding: 0 clamp(1.5rem, 4vw, 4rem) 1rem;
  animation: heroFadeUp 1s ease 1s both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Description Block */
.hero-desc-block {
  max-width: 280px;
  flex-shrink: 0;
}

.hero-mini-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-cta-link i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.hero-cta-link:hover {
  color: var(--rose-light);
}

.hero-cta-link:hover i {
  transform: translateX(5px);
}

/* Thumbnail Gallery Strip */
.hero-thumbs {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.hero-thumb {
  width: 120px;
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-thumb:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.hero-thumb img[src=""],
.hero-thumb img:not([src]) {
  display: none;
}

/* Placeholder state for empty thumbs */
.hero-thumb::before {
  content: '\f03e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.2);
  z-index: 0;
}

/* Hide placeholder when image is loaded */
.hero-thumb:has(img[src]:not([src=""])) ::before {
  display: none;
}

/* Year Badge */
.hero-meta {
  position: absolute;
  bottom: 1rem;
  right: clamp(1.5rem, 4vw, 4rem);
  z-index: 4;
}

.hero-year {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.hero-year sup {
  font-size: 0.55rem;
  vertical-align: super;
  margin-left: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 5;
  writing-mode: vertical-rl;
  animation: heroFadeUp 1s ease 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero { min-height: 100svh; }

  .hero-display { transform: translate(-50%, -50%); }

  .mega-line {
    font-size: clamp(2.5rem, 14vw, 5rem);
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 5rem;
  }

  .hero-desc-block { max-width: 100%; }

  .hero-thumbs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .hero-thumbs::-webkit-scrollbar { display: none; }

  .hero-thumb {
    width: 72px;
    height: 88px;
    flex-shrink: 0;
  }

  .hero-meta { display: none; }

  .scroll-indicator {
    left: 50%;
    transform: translateX(-50%);
    writing-mode: horizontal-tb;
    bottom: 16px;
  }
}

/* --- Marquee Section --- */
.marquee-section {
  padding: var(--space-xl) 0;
  background: var(--charcoal);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: var(--space-3xl);
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.04em;
  font-weight: 500;
  opacity: 0.85;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* --- About Section --- */
.about-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 550px;
}

.about-img-main {
  width: 70%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--bg-secondary);
}

.about-img-secondary img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-img-secondary:hover img {
  transform: scale(1.05);
}

.about-experience-badge {
  position: absolute;
  top: 40px;
  right: 60px;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--crimson), var(--rose));
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-rose);
  animation: floatUp 5s ease-in-out infinite;
  z-index: 5;
}

.exp-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.exp-text {
  font-size: 0.65rem;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  opacity: 0.9;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content {
  padding-right: var(--space-xl);
}

.about-text {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  font-size: 1.02rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--rose-pale), var(--rose-lighter));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ======= CEIDSYA COLLECTION SPOTLIGHT ======= */

/* --- Block 1: Intro Statement --- */
.ceidsya-intro {
  position: relative;
  padding: var(--space-5xl) 0;
  overflow: hidden;
  background: var(--near-black);
  color: var(--white);
}

.ceidsya-intro-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ceidsya-intro-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 160, 174, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(92, 36, 52, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #1a1214 0%, #2a1a1e 25%, #1e1418 50%, #1a1520 75%, #151012 100%);
}

.ceidsya-intro-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.ceidsya-intro-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose-light);
}

.ceidsya-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.ceidsya-intro-title {
  margin-bottom: var(--space-lg);
}

.ceidsya-title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #f7f5f2 0%, #e8a0ae 40%, #d87a8e 60%, #f3c7d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ceidsya-title-sub {
  display: block;
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(232, 160, 174, 0.7);
  margin-top: var(--space-xs);
  letter-spacing: 0.04em;
}

.ceidsya-intro-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xl);
}

.ceidsya-intro-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.ceidsya-diamond {
  color: var(--rose);
  font-size: 0.6rem;
  opacity: 0.7;
  animation: ceidsyaPulse 3s ease-in-out infinite;
}

@keyframes ceidsyaPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.ceidsya-intro-desc {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
}

.ceidsya-intro-desc em {
  color: var(--rose-light);
  font-style: italic;
}

.ceidsya-intro-desc--secondary {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
}

.ceidsya-intro-quote {
  margin-top: var(--space-2xl);
  padding: var(--space-xl) var(--space-2xl);
  border-left: 3px solid var(--rose);
  border-right: 3px solid var(--rose);
  display: inline-block;
}

.ceidsya-intro-quote span {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

/* --- Block 2 & 3: Showcase Sections --- */
.ceidsya-showcase {
  padding: var(--space-5xl) 0;
  overflow: hidden;
}

.ceidsya-elara {
  background: var(--cream);
}

.ceidsya-eidera {
  background: var(--near-black);
  color: var(--white);
}

.ceidsya-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

/* --- Showcase Visual (Image) --- */
.ceidsya-showcase-visual {
  position: relative;
}

.ceidsya-hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.ceidsya-hero-img img {
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease-out);
}

.ceidsya-hero-img:hover img {
  transform: scale(1.04);
}

.ceidsya-img-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ceidsya-badge--light {
  background: rgba(255, 255, 255, 0.85);
  color: var(--rose);
  border: 1px solid rgba(216, 122, 142, 0.2);
}

.ceidsya-badge--bold {
  background: rgba(26, 23, 24, 0.75);
  color: var(--rose-light);
  border: 1px solid rgba(232, 160, 174, 0.2);
}

/* --- Showcase Content --- */
.ceidsya-showcase-content {
  padding: var(--space-xl) 0;
}

.ceidsya-showcase-label {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.ceidsya-label-num {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rose);
}

.ceidsya-label-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--rose-light));
  border-radius: var(--radius-full);
}

.ceidsya-label-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose);
}

.ceidsya-showcase-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.ceidsya-elara .ceidsya-showcase-title {
  color: var(--near-black);
}

.ceidsya-eidera .ceidsya-showcase-title {
  background: linear-gradient(135deg, #f7f5f2, #e8a0ae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ceidsya-showcase-subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.ceidsya-elara .ceidsya-showcase-subtitle {
  color: var(--rose);
}

.ceidsya-eidera .ceidsya-showcase-subtitle {
  color: var(--rose-light);
}

.ceidsya-showcase-desc {
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.ceidsya-elara .ceidsya-showcase-desc {
  color: var(--text-secondary);
}

.ceidsya-eidera .ceidsya-showcase-desc {
  color: rgba(255, 255, 255, 0.65);
}

/* --- Detail Items --- */
.ceidsya-showcase-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.ceidsya-detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  transition: all var(--transition-fast);
}

.ceidsya-elara .ceidsya-detail-item {
  background: rgba(216, 122, 142, 0.06);
  color: var(--text-secondary);
}

.ceidsya-elara .ceidsya-detail-item:hover {
  background: rgba(216, 122, 142, 0.12);
  transform: translateX(4px);
}

.ceidsya-eidera .ceidsya-detail-item {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
}

.ceidsya-eidera .ceidsya-detail-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.ceidsya-detail-item i {
  width: 28px;
  text-align: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.ceidsya-elara .ceidsya-detail-item i {
  color: var(--rose);
}

.ceidsya-eidera .ceidsya-detail-item i {
  color: var(--rose-light);
}

/* --- Variant Cards --- */
.ceidsya-variants {
  margin-bottom: var(--space-2xl);
}

.ceidsya-variants-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.ceidsya-elara .ceidsya-variants-label {
  color: var(--text-light);
}

.ceidsya-eidera .ceidsya-variants-label {
  color: rgba(255, 255, 255, 0.4);
}

.ceidsya-variant-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.ceidsya-variant-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
}

.ceidsya-elara .ceidsya-variant-card {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}

.ceidsya-eidera .ceidsya-variant-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ceidsya-variant-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ceidsya-eidera .ceidsya-variant-card:hover {
  border-color: rgba(232, 160, 174, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.ceidsya-variant-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ceidsya-variant-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out);
}

.ceidsya-variant-card:hover .ceidsya-variant-img img {
  transform: scale(1.08);
}

.ceidsya-variant-info {
  padding: var(--space-sm) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ceidsya-variant-color {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--swatch);
  border: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 2px;
}

.ceidsya-variant-name {
  font-size: 0.82rem;
  font-weight: 600;
}

.ceidsya-elara .ceidsya-variant-name {
  color: var(--near-black);
}

.ceidsya-eidera .ceidsya-variant-name {
  color: rgba(255, 255, 255, 0.9);
}

.ceidsya-variant-mood {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-style: italic;
}

.ceidsya-elara .ceidsya-variant-mood {
  color: var(--text-light);
}

.ceidsya-eidera .ceidsya-variant-mood {
  color: rgba(255, 255, 255, 0.4);
}

/* --- CTA Buttons --- */
.ceidsya-cta {
  margin-top: var(--space-md);
}

.ceidsya-cta--light {
  background: var(--white);
  color: var(--near-black);
}

.ceidsya-cta--light::before {
  background: linear-gradient(90deg, var(--rose), var(--crimson));
}

.ceidsya-cta--light:hover {
  color: var(--white);
}

/* --- Dark Mode Overrides --- */
body.dark-mode .ceidsya-elara {
  background: #1e1a1b;
}

body.dark-mode .ceidsya-elara .ceidsya-showcase-title {
  color: #f0eeec;
}

body.dark-mode .ceidsya-elara .ceidsya-showcase-desc {
  color: rgba(240, 238, 236, 0.6);
}

body.dark-mode .ceidsya-elara .ceidsya-detail-item {
  background: rgba(216, 122, 142, 0.08);
  color: rgba(240, 238, 236, 0.7);
}

body.dark-mode .ceidsya-elara .ceidsya-variant-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .ceidsya-elara .ceidsya-variant-name {
  color: rgba(240, 238, 236, 0.9);
}

body.dark-mode .ceidsya-elara .ceidsya-variant-mood {
  color: rgba(240, 238, 236, 0.4);
}

body.dark-mode .ceidsya-elara .ceidsya-variants-label {
  color: rgba(240, 238, 236, 0.4);
}

body.dark-mode .ceidsya-elara .btn-outline {
  border-color: rgba(240, 238, 236, 0.3);
  color: rgba(240, 238, 236, 0.8);
}

body.dark-mode .ceidsya-elara .btn-outline:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

body.dark-mode .ceidsya-elara .ceidsya-showcase-subtitle {
  color: var(--rose-light);
}

/* Eidera dark mode — already dark, just refine contrast */
body.dark-mode .ceidsya-eidera {
  background: #111010;
}

body.dark-mode .ceidsya-eidera .ceidsya-showcase-desc {
  color: rgba(255, 255, 255, 0.55);
}

body.dark-mode .ceidsya-eidera .ceidsya-detail-item {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .ceidsya-eidera .ceidsya-variant-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .ceidsya-eidera .ceidsya-variant-card:hover {
  border-color: rgba(216, 122, 142, 0.25);
}

body.dark-mode .ceidsya-eidera .ceidsya-hero-img {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

body.dark-mode .ceidsya-eidera .ceidsya-cta--light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--rose-light);
  border: 1px solid rgba(232, 160, 174, 0.2);
}

body.dark-mode .ceidsya-eidera .ceidsya-cta--light:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

/* --- Responsive --- */
@media (max-width: 968px) {
  .ceidsya-showcase-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  /* On mobile, image always comes first */
  .ceidsya-showcase--right {
    display: flex;
    flex-direction: column;
  }

  .ceidsya-showcase--right .ceidsya-showcase-visual {
    order: -1;
  }

  .ceidsya-showcase-details {
    grid-template-columns: 1fr;
  }

  .ceidsya-hero-img img {
    min-height: 400px;
  }

  .ceidsya-intro-content {
    padding: var(--space-xl) 0;
  }

  .ceidsya-intro-quote {
    padding: var(--space-md) var(--space-lg);
  }
}

@media (max-width: 640px) {
  .ceidsya-intro {
    padding: var(--space-4xl) 0;
  }

  .ceidsya-showcase {
    padding: var(--space-3xl) 0;
  }

  .ceidsya-variant-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .ceidsya-variant-info {
    padding: var(--space-xs) var(--space-sm);
  }

  .ceidsya-variant-name {
    font-size: 0.72rem;
  }

  .ceidsya-variant-mood {
    font-size: 0.62rem;
  }

  .ceidsya-hero-img img {
    min-height: 350px;
  }

  .ceidsya-intro-quote {
    border-left: 2px solid var(--rose);
    border-right: 2px solid var(--rose);
    padding: var(--space-sm) var(--space-md);
  }

  .ceidsya-intro-quote span {
    font-size: 0.95rem;
  }

  .ceidsya-showcase-details {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }
}

/* --- Collections Section --- */
.collections-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-primary);
}

.section-header {
  margin-bottom: var(--space-3xl);
}

/* Filter Buttons */
.collection-filter {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
  align-items: center;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* More dropdown wrapper */
.filter-more-wrap {
  position: relative;
  display: none; /* Hidden on desktop when few categories */
}

.filter-more-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-more-btn i {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.filter-more-btn.open i {
  transform: rotate(180deg);
}

.filter-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xs);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--transition-fast);
}

.filter-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.filter-dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-dropdown-item:hover {
  background: var(--cream);
  color: var(--near-black);
}

.filter-dropdown-item.active {
  background: var(--charcoal);
  color: var(--white);
}

/* Desktop: overflow buttons visible, "More" hidden */
.filter-overflow {
  display: inline-flex;
}

/* Collection Grid */
.collection-view-more {
  display: none;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.collection-view-more .btn {
  gap: var(--space-xs);
}

.collection-view-more .btn i {
  transition: transform var(--transition-fast);
}

.collection-view-more .btn.expanded i {
  transform: rotate(180deg);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.collection-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.collection-card:hover .card-image img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(26, 23, 24, 0.7), transparent);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.collection-card:hover .card-overlay {
  transform: translateY(0);
}

.card-action {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.card-action:hover {
  background: var(--rose);
  color: var(--white);
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
}

.card-badge.hot {
  background: linear-gradient(135deg, var(--crimson), var(--rose));
}

.card-info {
  padding: var(--space-lg);
}

.card-category {
  font-size: 0.78rem;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--near-black);
  margin: 6px 0 8px;
}

.card-price {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.price-current {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.price-old {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.collection-cta {
  text-align: center;
}

/* --- Marketplace Section --- */
/* --- Marketplace Section — Minimalist Fashion --- */
.mp-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-primary);
}

/* Header */
.mp-header {
  margin-bottom: var(--space-4xl);
}

.mp-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3xl);
}

.mp-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--near-black);
  flex: 1;
}

.mp-title em {
  font-family: var(--font-accent);
  font-weight: 400;
  font-style: italic;
  color: var(--rose);
}

.mp-subtitle {
  max-width: 380px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  flex-shrink: 0;
}

/* Features Strip */
.mp-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--light-gray);
  margin-bottom: var(--space-4xl);
}

.mp-feature {
  padding: var(--space-2xl) var(--space-xl) var(--space-2xl) 0;
  border-right: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.mp-feature:last-child {
  border-right: none;
}

.mp-feature:hover {
  background: var(--bg-secondary);
}

.mp-feature-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: var(--space-md);
}

.mp-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 6px;
}

.mp-feature p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Visual Row */
.mp-visual-row {
  display: flex;
  gap: var(--space-2xl);
  align-items: stretch;
}

/* Gallery */
.mp-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-md);
}

.mp-gallery-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
}

.mp-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mp-gallery-img:hover img {
  transform: scale(1.04);
}

.mp-gallery-lg {
  min-height: 420px;
}

.mp-gallery-sm {
  min-height: 420px;
}

/* Stat Label on Image */
.mp-gallery-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mp-label-stat {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--near-black);
}

.mp-label-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 500;
}

/* CTA Block */
.mp-cta-block {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
}

.mp-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--near-black);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mp-cta-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.mp-cta-link:hover {
  background: var(--charcoal);
  transform: scale(1.08);
}

.mp-cta-link:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .mp-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }

  .mp-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .mp-feature {
    border-bottom: 1px solid var(--light-gray);
  }

  .mp-feature:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .mp-features {
    grid-template-columns: 1fr;
  }

  .mp-feature {
    border-right: none;
    padding: var(--space-lg) 0;
  }

  .mp-visual-row {
    flex-direction: column;
  }

  .mp-gallery {
    grid-template-columns: 1fr;
  }

  .mp-gallery-lg,
  .mp-gallery-sm {
    min-height: 280px;
  }

  .mp-cta-block {
    align-items: center;
    justify-content: center;
  }
}

/* --- Team Section --- */
.team-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 7/8;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(26, 23, 24, 0.7), transparent);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.team-card:hover .team-social {
  transform: translateY(0);
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.team-social a:hover {
  background: var(--rose);
  color: var(--white);
}

.team-info {
  padding: var(--space-lg);
  text-align: center;
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 4px;
}

.team-info span {
  font-size: 0.82rem;
  color: var(--rose);
  font-weight: 500;
}

/* --- Stats Section --- */
.stats-section {
  padding: var(--space-5xl) 0;
  background: var(--charcoal);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-4xl);
  align-items: center;
}

.stats-content .section-title {
  color: var(--white);
}

.stats-content p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

.stats-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.stat-block {
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.stat-block:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: var(--rose);
}

.stat-big-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  display: inline;
}

.stat-big-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose);
}

.stat-big-label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* --- Testimonial Section --- */
.testimonial-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-primary);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: var(--space-xl);
  transition: transform var(--transition-slow);
}

.testimonial-card {
  min-width: calc(33.333% - var(--space-xl) * 2 / 3);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--rose-lighter);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-lg);
  color: #f59e0b;
  font-size: 0.9rem;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--rose-lighter);
}

.testimonial-author h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--near-black);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--rose);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: all var(--transition-fast);
  font-size: 0.85rem;
}

.slider-btn:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.slider-dots {
  display: flex;
  gap: var(--space-sm);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--light-gray);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--rose);
  width: 28px;
}

/* --- Newsletter Section --- */
.newsletter-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-secondary);
}

.newsletter-card {
  position: relative;
  background: linear-gradient(135deg, var(--maroon), var(--charcoal));
  border-radius: var(--radius-xl);
  padding: var(--space-4xl);
  text-align: center;
  overflow: hidden;
}

.newsletter-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(216, 122, 142, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(206, 59, 94, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-xl);
  opacity: 0.9;
}

.newsletter-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.newsletter-card p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto var(--space-2xl);
  font-size: 1.02rem;
  line-height: 1.7;
}

.newsletter-form {
  max-width: 520px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 5px;
}

.form-group input {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn-primary {
  background: var(--rose);
  border-radius: var(--radius-full);
  padding: 14px 28px;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-form .btn-primary::before {
  background: linear-gradient(90deg, var(--crimson), var(--rose));
}

.newsletter-note {
  font-size: 0.78rem !important;
  margin-top: var(--space-lg) !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

/* --- Footer --- */
.footer {
  background: var(--near-black);
  color: var(--white);
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer-logo-img {
  width: 36px;
  height: 36px;
}

.footer-logo-text {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.footer-logo-text sup {
  font-size: 0.5em;
  color: var(--rose);
}

.footer-description {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-xl);
  color: var(--white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-links a {
  color: var(--gray);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--rose);
  transform: translateX(4px);
}

.footer-links a i {
  font-size: 0.8rem;
  width: 18px;
  color: var(--rose);
}

.footer-bottom {
  padding: var(--space-xl) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--dark-gray);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--dark-gray);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--rose);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 990;
  font-size: 0.9rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--crimson);
  transform: translateY(-4px);
}

/* --- Scroll Animations --- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}

[data-animate="fade-up"].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate="fade-left"].animated {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-right"].animated {
  opacity: 1;
  transform: translateX(0);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  :root {
    --container-padding: 1.5rem;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Dynamic Island on tablet */
  .navbar {
    width: calc(100% - 32px);
    max-width: 600px;
    top: 12px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .about-images {
    min-height: 400px;
  }

  .marketplace-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .marketplace-visual {
    order: -1;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --nav-height: 60px;
  }

  .navbar {
    width: calc(100% - 24px);
    top: 10px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .nav-actions {
    gap: 2px;
  }

  .hero-stats {
    gap: var(--space-lg);
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-plus {
    font-size: 1.4rem;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .card-info {
    padding: var(--space-md);
  }

  .card-title {
    font-size: 0.9rem;
    margin: 4px 0 6px;
  }

  .card-category {
    font-size: 0.7rem;
  }

  .price-current {
    font-size: 0.88rem;
  }

  .price-old {
    font-size: 0.75rem;
  }

  .card-badge {
    padding: 4px 12px;
    font-size: 0.68rem;
    top: 10px;
    left: 10px;
  }

  .card-action {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  /* Filter buttons: horizontal scroll on mobile */
  .collection-filter {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: var(--space-sm);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
  }

  .collection-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Hide overflow filter pills on mobile — use dropdown instead */
  .filter-overflow {
    display: none !important;
  }

  /* Show "More" dropdown on mobile */
  .filter-more-wrap {
    display: block;
    flex-shrink: 0;
  }

  /* Hide 5th and 6th card on mobile */
  .collection-grid .collection-card:nth-child(n+5) {
    display: none;
  }

  .collection-grid.show-all .collection-card:nth-child(n+5) {
    display: block;
  }

  /* View More button visible on mobile */
  .collection-view-more {
    display: flex !important;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .stats-numbers {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .testimonial-card {
    min-width: 100%;
  }

  .newsletter-card {
    padding: var(--space-2xl);
  }

  .form-group {
    flex-direction: column;
    border-radius: var(--radius-md);
    background: transparent;
    border: none;
    padding: 0;
    gap: var(--space-md);
  }

  .form-group input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .about-img-main img {
    height: 350px;
  }

  .about-img-secondary img {
    height: 220px;
  }

  .marketplace-img-grid {
    min-height: 380px;
  }

  .mp-img-1 {
    height: 340px;
  }

  .mp-img-2 {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .stat-divider {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .collection-filter {
    padding-bottom: var(--space-sm);
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.78rem;
  }

  .about-experience-badge {
    width: 90px;
    height: 90px;
    top: 20px;
    right: 20px;
  }

  .exp-number {
    font-size: 1.5rem;
  }

  .collection-grid {
    gap: 10px;
  }

  .card-info {
    padding: 10px;
  }

  .card-title {
    font-size: 0.82rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 2px 0 4px;
  }

  .card-category {
    font-size: 0.65rem;
  }

  .price-current {
    font-size: 0.82rem;
  }

  .price-old {
    font-size: 0.7rem;
  }
}

/* --- Print Styles --- */
@media print {
  .navbar,
  .back-to-top,
  #preloader,
  .scroll-indicator {
    display: none !important;
  }
}

/* ============================================
   NEW FEATURES — Dark Mode, WhatsApp, Modal,
   Cart Sidebar, Custom Cursor
   ============================================ */

/* --- Theme Toggle --- */
.theme-toggle i {
  transition: transform 0.4s var(--ease-out), color var(--transition-fast);
}

/* --- Dark Mode --- */
body.dark-mode {
  --bg-primary: #1a1718;
  --bg-secondary: #221f20;
  --bg-dark: #111010;
  --text-primary: #f0eeec;
  --text-secondary: #b0adab;
  --text-light: #7a7576;
  --white: #2a2627;
  --off-white: #1a1718;
  --cream: #221f20;
  --light-gray: #3a3637;
  --near-black: #f0eeec;
  --charcoal: #e8e6e4;
  --charcoal-light: #c8c5c3;
}

body.dark-mode .navbar.scrolled {
  background: rgba(26, 23, 24, 0.9);
  border-bottom-color: rgba(216, 122, 142, 0.15);
}

body.dark-mode .hero::before {
  background: radial-gradient(ellipse, rgba(216, 122, 142, 0.08) 0%, transparent 70%);
}

body.dark-mode .hero-img {
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.4);
}

body.dark-mode .float-1,
body.dark-mode .float-2 {
  background: #2a2627;
}

body.dark-mode .collection-card,
body.dark-mode .mp-card {
  background: #2a2627;
}

body.dark-mode .btn-primary {
  background: var(--rose);
}

body.dark-mode .btn-primary::before {
  background: linear-gradient(90deg, var(--crimson), var(--maroon));
}

body.dark-mode .btn-outline {
  border-color: var(--rose);
  color: var(--rose);
}

body.dark-mode .btn-outline:hover {
  background: var(--rose);
  color: #1a1718;
}

body.dark-mode .stats-section {
  background: #111010;
}

body.dark-mode .newsletter-card {
  background: linear-gradient(135deg, #3d1823, #1a1718);
}

body.dark-mode .footer {
  background: #111010;
}

body.dark-mode .mobile-menu-content {
  background: #221f20;
}

body.dark-mode .hamburger span {
  background: #e8e6e4;
}

body.dark-mode .nav-btn {
  color: #e8e6e4;
}

body.dark-mode .logo-text {
  color: #e8e6e4;
}

body.dark-mode .mp-search-bar {
  background: #2a2627;
  border-color: #3a3637;
}

body.dark-mode .mp-search-bar input {
  color: #f0eeec;
}

body.dark-mode .mp-search-btn {
  background: var(--rose);
}

body.dark-mode .marquee-section {
  background: #151213;
  border-top: 1px solid rgba(216, 122, 142, 0.1);
  border-bottom: 1px solid rgba(216, 122, 142, 0.1);
}

body.dark-mode .marquee-item {
  color: var(--rose-light);
  opacity: 0.7;
}

body.dark-mode .team-card {
  background: #2a2627;
}

body.dark-mode .testimonial-card {
  background: #2a2627;
  border-color: #3a3637;
}

body.dark-mode .modal-content {
  background: #2a2627;
}

body.dark-mode .cart-sidebar {
  background: #221f20;
}

body.dark-mode .service-item {
  background: #2a2627;
  border-color: #3a3637;
}

body.dark-mode ::selection {
  background: var(--crimson);
  color: #fff;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-base);
  transform: scale(0) translateY(20px);
  opacity: 0;
}

.whatsapp-float.show {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background: #25D366;
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.wa-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition-fast);
  pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--charcoal);
}

/* --- Product Quick View Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 23, 24, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--charcoal);
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--rose);
  color: var(--white);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.modal-category {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--near-black);
  line-height: 1.2;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.modal-stars {
  color: #F59E0B;
  font-size: 0.88rem;
}

.modal-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
}

.modal-price .price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--crimson);
}

.modal-price .price-old {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Size selector */
.modal-sizes,
.modal-colors,
.modal-qty {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.size-label,
.color-label,
.qty-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--near-black);
  min-width: 65px;
}

.size-options {
  display: flex;
  gap: var(--space-sm);
}

.size-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--light-gray);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.size-btn:hover,
.size-btn.active {
  border-color: var(--charcoal);
  color: var(--near-black);
  background: var(--cream);
}

/* Color selector */
.color-options {
  display: flex;
  gap: var(--space-sm);
}

.color-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--clr);
  border: 2px solid var(--light-gray);
  transition: all var(--transition-fast);
  position: relative;
}

.color-btn:hover {
  transform: scale(1.15);
}

.color-btn.active {
  border-color: var(--charcoal);
  box-shadow: 0 0 0 3px var(--rose-pale);
}

/* Quantity */
.qty-controls {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  background: var(--rose-pale);
  color: var(--rose);
}

.qty-value {
  min-width: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--near-black);
}

/* Modal actions */
.modal-actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.modal-add-cart {
  flex: 1;
  justify-content: center;
}

.modal-wishlist {
  width: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-wishlist:hover,
.modal-wishlist.wishlisted {
  border-color: #EF4444;
  color: #EF4444;
}

.modal-meta {
  margin-top: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.meta-item i {
  color: var(--rose);
  width: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  /* --- Modal as Mobile Bottom Sheet --- */
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal-content {
    max-width: 100%;
    max-height: 92vh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  }

  .modal-overlay.active .modal-content {
    transform: translateY(0);
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-image {
    aspect-ratio: 16/10;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    max-height: 240px;
  }

  .modal-info {
    padding: var(--space-lg) var(--space-xl) var(--space-2xl);
  }

  .modal-title {
    font-size: 1.25rem;
  }

  .modal-desc {
    font-size: 0.85rem;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.35);
    color: white;
  }

  /* Bottom sheet handle indicator */
  .modal-content::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--light-gray);
    border-radius: 4px;
    margin: 10px auto 0;
    flex-shrink: 0;
  }

  .modal-actions {
    position: sticky;
    bottom: 0;
    background: var(--white);
    padding: var(--space-md) 0 var(--space-sm);
    border-top: 1px solid var(--light-gray);
    margin-top: var(--space-md);
    z-index: 5;
  }

  .size-btn {
    width: 38px;
    height: 38px;
    font-size: 0.78rem;
  }

  .qty-btn {
    width: 34px;
    height: 34px;
  }

  .modal-meta {
    font-size: 0.78rem;
  }

  .meta-item {
    font-size: 0.78rem;
  }
}

/* --- Cart Sidebar --- */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 23, 24, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
  max-width: 90%;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}

.cart-overlay.active .cart-sidebar {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl);
  border-bottom: 1px solid var(--light-gray);
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--near-black);
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.cart-close:hover {
  background: var(--rose-pale);
  color: var(--rose);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  gap: var(--space-md);
  color: var(--text-light);
}

.cart-empty i {
  font-size: 3rem;
  opacity: 0.3;
}

.cart-empty p {
  font-size: 1rem;
  font-weight: 500;
}

.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--light-gray);
  align-items: center;
}

.cart-item-img {
  width: 70px;
  height: 88px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item-price {
  font-size: 0.82rem;
  color: var(--rose);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.cart-qty-btn:hover {
  background: var(--rose-pale);
  border-color: var(--rose);
  color: var(--rose);
}

.cart-item-qty span {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.cart-item-remove {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.78rem;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.cart-item-remove:hover {
  background: #FEE2E2;
  color: #EF4444;
}

.cart-footer {
  padding: var(--space-xl);
  border-top: 1px solid var(--light-gray);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--near-black);
}

.cart-total-price {
  font-size: 1.2rem;
  color: var(--crimson);
}

.cart-checkout {
  width: 100%;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.cart-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* --- Custom Cursor --- */
.custom-cursor,
.cursor-follower {
  position: fixed;
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 10001;
  mix-blend-mode: difference;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  transform: translate(-50%, -50%);
}

.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--rose);
  opacity: 0.9;
}

.cursor-follower {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--rose);
  opacity: 0.5;
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.3s;
}

.custom-cursor.cursor-hover {
  width: 0;
  opacity: 0;
}

.cursor-follower.cursor-hover {
  width: 56px;
  height: 56px;
  opacity: 0.3;
}

@media (max-width: 1024px) {
  .custom-cursor,
  .cursor-follower {
    display: none !important;
  }
}

@media (pointer: coarse) {
  .custom-cursor,
  .cursor-follower {
    display: none !important;
  }
}

/* ============================================
   AUTH MODAL, ADMIN MODE, NOTIFICATIONS
   ============================================ */

/* --- Auth Modal --- */
.auth-modal-content {
  max-width: 440px;
  padding: 0;
}

.auth-modal-body {
  padding: var(--space-2xl);
}

.auth-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.auth-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
}

.auth-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: var(--space-xs);
}

.auth-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--near-black);
}

.form-input-wrapper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 0 var(--space-md);
  transition: border-color var(--transition-fast);
  background: var(--bg-primary);
}

.form-input-wrapper:focus-within {
  border-color: var(--rose);
}

.form-input-wrapper i {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-right: var(--space-sm);
}

.form-input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 0;
  font-size: 0.9rem;
  background: transparent;
  color: var(--text-primary);
  font-family: inherit;
}

.form-input-wrapper input::placeholder {
  color: var(--text-light);
}

.password-toggle {
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 4px;
}

.password-toggle:hover {
  color: var(--rose);
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-checkbox input {
  accent-color: var(--rose);
}

.form-checkbox a {
  color: var(--rose);
  font-weight: 600;
}

.form-link {
  font-size: 0.82rem;
  color: var(--rose);
  font-weight: 500;
}

/* ===== Auth Demo Hint ===== */
.auth-demo-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 16px;
  background: rgba(216, 122, 142, 0.06);
  border: 1px solid rgba(216, 122, 142, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.auth-demo-hint i {
  color: var(--rose);
  font-size: 0.9rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.auth-demo-hint strong {
  color: var(--rose);
}

.auth-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  margin-top: var(--space-sm);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--text-light);
  font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light-gray);
}

.auth-social-btns {
  display: flex;
  gap: var(--space-md);
}

.auth-social-btn {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--light-gray);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: all var(--transition-fast);
}

.auth-social-btn:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: var(--rose-pale);
}

.auth-switch {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.auth-switch a {
  color: var(--rose);
  font-weight: 600;
}

.auth-success {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.success-icon {
  font-size: 3rem;
  color: #22C55E;
  margin-bottom: var(--space-md);
}

.auth-success h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--near-black);
  margin-bottom: var(--space-sm);
}

.form-error {
  padding: var(--space-sm) var(--space-md);
  background: #FEE2E2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-sm);
  color: #DC2626;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* --- Profile Dropdown --- */
.profile-dropdown {
  position: fixed;
  z-index: 2000;
  width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  animation: dropdownIn 0.2s var(--ease-out);
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.profile-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-bottom: 1px solid var(--light-gray);
}

.profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--rose-pale);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.profile-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--near-black);
}

.profile-email {
  font-size: 0.78rem;
  color: var(--text-light);
}

.profile-menu {
  padding: var(--space-sm);
}

.profile-menu hr {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: var(--space-sm) 0;
}

.profile-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.profile-item:hover {
  background: var(--rose-pale);
  color: var(--rose);
}

.profile-item i {
  width: 18px;
  text-align: center;
}

.profile-item.logout-btn:hover {
  background: #FEE2E2;
  color: #DC2626;
}

/* --- Admin Mode --- */
body.admin-mode .admin-editable {
  outline: 2px dashed rgba(216, 122, 142, 0.4);
  outline-offset: 4px;
  cursor: pointer;
  position: relative;
}

body.admin-mode .admin-editable:hover {
  outline-color: var(--rose);
  outline-style: solid;
}

body.admin-mode .admin-editable:hover::after {
  content: attr(data-editable);
  position: absolute;
  top: -28px;
  left: 0;
  background: var(--rose);
  color: var(--white);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1000;
  white-space: nowrap;
}

/* --- Notification Toasts --- */
.notification-container {
  position: fixed;
  top: calc(var(--nav-height) + 16px);
  right: 16px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 380px;
}

.notification-toast {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--rose);
  animation: toastIn 0.4s var(--ease-out);
  font-size: 0.88rem;
  color: var(--text-primary);
}

.notification-toast.success { border-left-color: #22C55E; }
.notification-toast.error { border-left-color: #EF4444; }
.notification-toast.warning { border-left-color: #F59E0B; }

.notification-toast.removing {
  animation: toastOut 0.3s var(--ease-out) forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100%); }
}

body.dark-mode .auth-modal-content,
body.dark-mode .profile-dropdown {
  background: #2a2627;
}

body.dark-mode .form-input-wrapper {
  border-color: #3a3637;
  background: #1a1718;
}

body.dark-mode .form-input-wrapper input {
  color: #f0eeec;
}

body.dark-mode .auth-social-btn {
  border-color: #3a3637;
  color: #b0adab;
}

body.dark-mode .notification-toast {
  background: #2a2627;
}

/* ============================================
   Footer Payment Methods
   ============================================ */
.footer-payments {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.payments-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.payments-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  flex-shrink: 0;
}

.payments-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.pay-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.25s ease;
  cursor: default;
}

.pay-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(216, 122, 142, 0.3);
  color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

.pay-badge i {
  font-size: 13px;
  color: var(--rose);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.pay-badge:hover i {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .payments-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .payments-badges {
    gap: 6px;
  }

  .pay-badge {
    padding: 6px 10px;
    font-size: 10px;
  }
}

/* ============================================
   IMAGE PLACEHOLDER / EMPTY STATE
   ============================================ */

/* Fallback for images that fail to load or are empty */
img.img-placeholder,
img[src=""],
img:not([src]) {
  position: relative;
}

.img-placeholder-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fbe8ec 0%, #f3c7d0 50%, #e8b4c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  min-height: 120px;
}

/* Fill card image containers fully */
.mp-card-image .img-placeholder-wrap,
.card-image .img-placeholder-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: unset;
  border-radius: inherit;
}

/* Constrain placeholders inside hero thumbs */
.hero-thumb .img-placeholder-wrap {
  width: 100%;
  height: 100%;
  min-height: unset;
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.hero-thumb .img-placeholder-icon {
  width: 28px;
  height: 28px;
}

.hero-thumb .img-placeholder-text,
.hero-thumb .img-placeholder-label {
  font-size: 0.55rem;
}

.img-placeholder-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.25) 50%,
    transparent 100%
  );
  animation: placeholderShimmer 2.5s ease-in-out infinite;
  transform: translateX(-100%);
}

@keyframes placeholderShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.img-placeholder-icon {
  width: 48px;
  height: 48px;
  opacity: 0.4;
  color: var(--rose);
  animation: placeholderFloat 3s ease-in-out infinite;
}

@keyframes placeholderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.img-placeholder-text {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--rose);
  opacity: 0.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.img-placeholder-label {
  font-size: 0.62rem;
  color: var(--mauve);
  opacity: 0.35;
  font-style: italic;
}

/* --- Hero placeholder --- */
.hero-image-wrapper .img-placeholder-wrap {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
}

/* --- Product card placeholder --- */
.product-image .img-placeholder-wrap,
.mp-product-img .img-placeholder-wrap {
  width: 100%;
  aspect-ratio: 3/4;
}

/* --- Collection card placeholder --- */
.collection-image .img-placeholder-wrap {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

/* --- Team member placeholder --- */
.team-image .img-placeholder-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-full);
}

/* --- Testimonial avatar placeholder --- */
.testimonial-avatar .img-placeholder-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
}

.testimonial-avatar .img-placeholder-wrap .img-placeholder-icon {
  width: 22px;
  height: 22px;
}

.testimonial-avatar .img-placeholder-wrap .img-placeholder-text {
  display: none;
}

/* --- Modal image placeholder --- */
.modal-image .img-placeholder-wrap {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

/* --- About image placeholder --- */
.about-images .img-placeholder-wrap {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: var(--radius-md);
}

/* --- Dark mode placeholder adjustments --- */
body.dark-mode .img-placeholder-wrap {
  background: linear-gradient(135deg, #3a2630 0%, #2e1d26 50%, #251820 100%);
}

body.dark-mode .img-placeholder-icon,
body.dark-mode .img-placeholder-text {
  color: #D87A8E;
  opacity: 0.35;
}

/* --- Admin edit mode placeholder --- */
body.admin-mode .img-placeholder-wrap {
  cursor: pointer;
  outline: 2px dashed rgba(216, 122, 142, 0.3);
  outline-offset: -2px;
}

body.admin-mode .img-placeholder-wrap:hover {
  outline-color: var(--rose);
  outline-style: solid;
}

body.admin-mode .img-placeholder-wrap:hover::after {
  content: 'Click to upload';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 5;
}

/* ============================================
   TOAST NOTIFICATION SYSTEM
   ============================================ */
.toast-container {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: 380px;
  width: calc(100% - 48px);
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--rose);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.hiding {
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.3s ease-in;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.toast.success { border-left-color: #22C55E; }
.toast.success .toast-icon { background: rgba(34, 197, 94, 0.12); color: #22C55E; }

.toast.error { border-left-color: #EF4444; }
.toast.error .toast-icon { background: rgba(239, 68, 68, 0.12); color: #EF4444; }

.toast.info { border-left-color: var(--rose); }
.toast.info .toast-icon { background: var(--rose-pale); color: var(--rose); }

.toast.warning { border-left-color: #F59E0B; }
.toast.warning .toast-icon { background: rgba(245, 158, 11, 0.12); color: #F59E0B; }

.toast-body {
  flex: 1;
  min-width: 0;
}

.toast-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 2px;
}

.toast-message {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 4px;
  opacity: 0.5;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.toast-close:hover { opacity: 1; }

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--rose);
  border-radius: 0 0 0 var(--radius-md);
  animation: toastProgress var(--toast-duration, 3s) linear forwards;
}

.toast.success .toast-progress { background: #22C55E; }
.toast.error .toast-progress { background: #EF4444; }
.toast.warning .toast-progress { background: #F59E0B; }

@keyframes toastProgress {
  from { width: 100%; }
  to { width: 0%; }
}

body.dark-mode .toast {
  background: #2a2a2a;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
body.dark-mode .toast-title { color: #f0f0f0; }
body.dark-mode .toast-message { color: #aaa; }

@media (max-width: 640px) {
  .toast-container {
    top: auto;
    bottom: 90px;
    right: 12px;
    left: 12px;
    max-width: 100%;
    width: auto;
  }
}

/* ============================================
   SKELETON LOADING SHIMMER
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, var(--bg-secondary) 25%, rgba(216,122,142,0.06) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.skeleton-card .skeleton-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(90deg, var(--bg-secondary) 25%, rgba(216,122,142,0.06) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-card .skeleton-text { padding: 16px; }

.skeleton-card .skeleton-line {
  height: 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--bg-secondary) 25%, rgba(216,122,142,0.06) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-card .skeleton-line:first-child { width: 40%; }
.skeleton-card .skeleton-line:nth-child(2) { width: 80%; height: 14px; }
.skeleton-card .skeleton-line:nth-child(3) { width: 60%; }
.skeleton-card .skeleton-line:last-child { width: 35%; height: 16px; margin-top: 14px; }

/* ============================================
   STICKY MOBILE ADD TO CART BAR
   ============================================ */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: 12px 20px;
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cart-bar.visible { transform: translateY(0); }

.sticky-cart-bar .sticky-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--near-black);
  flex: 1;
}

.sticky-cart-bar .sticky-btn {
  flex: 1;
  height: 46px;
  background: var(--near-black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.sticky-cart-bar .sticky-btn:hover { background: var(--charcoal); }

@media (min-width: 769px) {
  .sticky-cart-bar { display: none !important; }
}

@media (max-width: 768px) {
  .sticky-cart-bar {
    display: flex;
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ============================================
   MOBILE RESPONSIVE QC FIXES
   ============================================ */

/* --- Prevent iOS input zoom --- */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* --- Nav buttons tap target improvement --- */
@media (max-width: 768px) {
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  .nav-actions {
    gap: 4px;
  }
}

/* --- Mobile menu overlay full-width on small screens --- */
@media (max-width: 480px) {
  .mobile-menu-content {
    width: 100vw;
    max-width: 100vw;
  }
}

/* --- Toast / notification container mobile --- */
@media (max-width: 480px) {
  .wcs-toast-container {
    left: 12px;
    right: 12px;
    max-width: 100%;
    bottom: 80px;
  }
}

/* --- WhatsApp & Back-to-top mobile spacing --- */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
}

/* --- Touch device adjustments --- */
@media (hover: none) and (pointer: coarse) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
  .mp-card-wishlist {
    opacity: 1 !important;
  }
  .mp-card-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(26, 23, 24, 0.5), transparent);
  }
}
