/* ===========================
   MONO PATISSERIE — Luxury Design System
   =========================== */

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

:root {
  /* White — primary surfaces */
  --cream:     #FFFFFF;
  --cream-100: #FFF0F6;
  --cream-200: #FFD6E8;

  /* Pink / Rose */
  --blush-50:   #FFF7FA;
  --blush-100:  #FFE4EF;
  --blush-200:  #FFB8D4;
  --blush-300:  #F07AAE;
  --blush-dark: #C42D6A;
  --blush-mid:  #D94478;

  /* Deep rose (replaces chocolate for dark surfaces) */
  --choc:       #3B0A20;
  --choc-mid:   #5A1535;
  --text-dark:  #280818;
  --text-mid:   #7A3050;
  --text-light: #B06888;

  /* Rose accent (replaces gold) */
  --gold:       #D94478;
  --gold-light: #E8769A;

  --white: #FFFFFF;

  /* Shadows */
  --shadow-card:       0 4px 28px rgba(196,45,106,0.08);
  --shadow-card-hover: 0 12px 48px rgba(196,45,106,0.16);
  --shadow-nav:        0 2px 24px rgba(196,45,106,0.08);
  --shadow-hero-slider:0 40px 80px rgba(59,10,32,0.18), 0 16px 32px rgba(59,10,32,0.10);

  --radius-card: 20px;
  --radius-btn:  9999px;
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; }

::selection { background: var(--blush-100); color: var(--text-dark); }
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream-100); }
::-webkit-scrollbar-thumb { background: var(--blush-200); border-radius: 4px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-nav);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--text-dark); text-decoration: none; letter-spacing: 0.03em;
}
.nav-logo span { color: var(--blush-dark); font-style: italic; font-weight: 400; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text-mid);
  text-decoration: none; transition: color 0.2s; cursor: pointer;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--blush-dark);
  transform: scaleX(0); transition: transform 0.25s ease; transform-origin: center;
}
.nav-links a:hover { color: var(--text-dark); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-menu-btn span {
  width: 22px; height: 1.5px; background: var(--text-dark);
  display: block; transition: var(--transition);
}

@media (max-width: 1024px) {
  .nav-menu-btn { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.99); flex-direction: column;
    justify-content: center; align-items: center; gap: 36px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; letter-spacing: 0.08em; }
}

/* ===== HERO — luxury split layout ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 42% 58%;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* ─── Animated gradient blobs ─── */
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform;
}
.hero-blob-1 {
  width: 680px; height: 680px; top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(245,190,210,0.52) 0%, rgba(230,150,175,0.2) 55%, transparent 80%);
  animation: blobDrift1 14s ease-in-out infinite;
}
.hero-blob-2 {
  width: 520px; height: 520px; bottom: -140px; left: 15%;
  background: radial-gradient(circle, rgba(252,218,230,0.4) 0%, rgba(238,178,200,0.16) 55%, transparent 80%);
  animation: blobDrift2 17s ease-in-out infinite;
}
.hero-blob-3 {
  width: 400px; height: 400px; top: 25%; right: 50%;
  background: radial-gradient(circle, rgba(255,228,238,0.38) 0%, rgba(244,194,212,0.12) 55%, transparent 80%);
  animation: blobDrift3 11s ease-in-out infinite;
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(35px, -30px); }
  66% { transform: translate(-18px, 22px); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-28px, -24px); }
}
@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0); }
  40% { transform: translate(22px, 28px); }
  80% { transform: translate(-12px, -12px); }
}

/* ─── Floating decorations ─── */
.hero-deco {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.deco-el {
  position: absolute;
  animation: decoFloat 7s ease-in-out infinite;
}
.deco-el:nth-child(1) { animation-delay: 0s; animation-duration: 6.5s; }
.deco-el:nth-child(2) { animation-delay: -2.5s; animation-duration: 8.5s; }
.deco-el:nth-child(3) { animation-delay: -4.2s; animation-duration: 7.2s; }
.deco-el:nth-child(4) { animation-delay: -1.2s; animation-duration: 9s; }
.deco-el:nth-child(5) { animation-delay: -3.4s; animation-duration: 6s; }
.deco-el:nth-child(6) { animation-delay: -5.1s; animation-duration: 10s; }
.deco-el:nth-child(7) { animation-delay: -0.8s; animation-duration: 8s; }
.deco-el:nth-child(8) { animation-delay: -6.3s; animation-duration: 11s; }
@keyframes decoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  35% { transform: translateY(-11px) rotate(4deg); }
  70% { transform: translateY(6px) rotate(-2.5deg); }
}

/* ─── LEFT side ─── */
.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 52px 80px 72px;
}
.hero-left > * {
  opacity: 0;
  animation: heroFadeUp 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.hero-left > *:nth-child(1) { animation-delay: 0.05s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.35s; }
.hero-left > *:nth-child(4) { animation-delay: 0.5s; }
.hero-left > *:nth-child(5) { animation-delay: 0.65s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 9999px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blush-dark);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(168,85,104,0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(168,85,104,0.1);
  margin-bottom: 30px; width: fit-content;
}
.hero-badge svg { flex-shrink: 0; }

.hero-title {
  display: flex; flex-direction: column; line-height: 0.95;
  letter-spacing: -0.025em; margin-bottom: 28px;
}
.title-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(4rem, 6.5vw, 7.4rem);
  font-weight: 900; color: var(--text-dark); display: block;
}
.title-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.4rem, 5.6vw, 6.4rem);
  font-weight: 400; font-style: italic;
  color: var(--blush-dark); display: block;
}

.hero-subtitle {
  font-size: 1rem; font-weight: 300; line-height: 1.88;
  color: var(--text-mid); max-width: 420px; margin-bottom: 44px;
}

.hero-ctas {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 52px;
}

/* Secondary / ghost button (hero only) */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-btn);
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.04em;
  color: var(--blush-dark);
  background: rgba(255,255,255,0.68);
  border: 1.5px solid rgba(168,85,104,0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 14px rgba(168,85,104,0.08);
  cursor: pointer; transition: var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.96);
  border-color: var(--blush-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168,85,104,0.18);
}

/* Scroll indicator */
.hero-scroll {
  display: flex; align-items: center; gap: 12px; opacity: 0.55;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--text-light); border-radius: 11px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--blush-dark); border-radius: 2px;
  animation: scrollWheel 2.3s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(10px); opacity: 0.15; }
  100% { transform: translateY(0); opacity: 0.9; }
}
.hero-scroll span {
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-light);
}

/* ─── RIGHT side ─── */
.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 64px 40px 64px 16px;
  height: 100vh;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.25s forwards;
  will-change: transform;
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Levitating glass frame — compact portrait to show full cake without heavy zoom */
.hero-slider-frame {
  position: relative;
  height: min(560px, calc(100vh - 200px));
  aspect-ratio: 4/5;
  max-width: 100%;
  flex-shrink: 0;
  animation: sliderLevitate 6.5s ease-in-out infinite;
  will-change: transform;
}
@keyframes sliderLevitate {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  width: 100%; height: 100%; position: relative; overflow: hidden;
  border-radius: 32px;
  background: transparent;
  box-shadow:
    0 56px 128px rgba(196, 45, 106, 0.22),
    0 24px 56px rgba(59, 10, 32, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.75);
}

.slider-track {
  display: flex; height: 100%;
  transition: transform 0.75s cubic-bezier(0.77,0,0.175,1);
}
.slider-slide {
  min-width: 100%; height: 100%; position: relative; flex-shrink: 0;
  overflow: hidden;
}
.slider-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform 7s ease;
}
.slider-slide.active img { transform: scale(1.03); }
.slider-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 32px 26px;
  background: linear-gradient(to top, rgba(59,10,32,0.62) 0%, transparent 100%);
  color: #fff;
}
.slider-slide-caption h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.slider-slide-caption p { font-size: 0.82rem; opacity: 0.85; }

/* Elegant placeholder */
.slider-placeholder {
  position: absolute; inset: 0; z-index: 5;
  background: linear-gradient(145deg, #5A1535 0%, var(--choc) 55%, #3B0A20 100%);
  display: flex; align-items: center; justify-content: center;
}
.slider-placeholder-inner { text-align: center; padding: 40px; }
.placeholder-tagline {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.placeholder-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem); font-weight: 900; line-height: 1.05;
  color: var(--cream); margin-bottom: 14px;
}
.placeholder-sub { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* Slider arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.4);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22); backdrop-filter: blur(12px);
}
.slider-arrow:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 36px rgba(0,0,0,0.3);
}
.slider-prev { left: 18px; }
.slider-next { right: 18px; }

/* Slider dots */
.slider-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 10;
}
.slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; transition: var(--transition);
}
.slider-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* Glass shine overlay */
.frame-shine {
  position: absolute; inset: 0; border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%, transparent 65%, rgba(255,255,255,0.05) 100%);
  pointer-events: none; z-index: 11;
}

/* ===== SHOP GALLERY SECTION ===== */
.shop-gallery-section {
  background: var(--choc);
  padding: 90px 0 80px;
}
.shop-gallery-section .section-header { margin-bottom: 48px; }
.label-line-gold { background: var(--gold) !important; opacity: 0.4; }
.label-text-gold { color: var(--gold) !important; }
.heading-light { color: var(--cream) !important; }
.subtext-light { color: rgba(255,220,234,0.8) !important; }

/* Slider shell — landscape frame to match wide shop interior photos */
.shop-gallery-wrap { display: flex; flex-direction: column; align-items: center; }
.shop-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: transparent;
  width: min(820px, 100%);
  aspect-ratio: 4/3;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.25);
}

.shop-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77,0,0.175,1);
}

/* Single full-width image slide */
.shop-slide-full {
  min-width: 100%; height: 100%; position: relative; flex-shrink: 0;
  overflow: hidden;
}
.shop-slide-full img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform 7s ease;
}
.shop-slide-full.active img { transform: scale(1.03); }
.shop-slide-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  color: #fff; font-size: 0.88rem; font-weight: 600;
}

/* Placeholder */
.shop-slider-placeholder {
  width: min(820px, 100%); aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  color: rgba(255,182,212,0.45); text-align: center;
  border-radius: 20px; border: 1px dashed rgba(255,182,212,0.2);
}
.shop-slider-placeholder svg { opacity: 0.3; }
.shop-slider-placeholder p { font-size: 0.875rem; }

/* Shop arrows */
.shop-prev { left: 16px; }
.shop-next { right: 16px; }

/* Shop dots — below the slider */
.shop-slider-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.shop-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,182,212,0.28); border: 1px solid rgba(255,182,212,0.18);
  cursor: pointer; transition: var(--transition);
}
.shop-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius-btn);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em;
  color: #fff; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--blush-mid) 0%, var(--blush-dark) 100%);
  box-shadow: 0 4px 24px rgba(168,85,104,0.28);
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(168,85,104,0.38); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius-btn);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em;
  color: var(--text-dark); border: 1.5px solid var(--cream-200);
  background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
  cursor: pointer; transition: var(--transition);
}
.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--blush-200);
  background: rgba(255,255,255,0.95);
  color: var(--blush-dark);
}
.btn-outline:active { transform: translateY(0); }

.btn-full { width: 100%; justify-content: center; }
.btn-sm   { padding: 8px 18px; font-size: 0.82rem; }

/* ===== SECTIONS ===== */
.section { padding: 96px 32px; }
.section-cream { background: var(--cream-100); }
.container { max-width: 1320px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark);
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.section-header p { font-size: 1rem; color: var(--text-light); max-width: 560px; margin: 0 auto; line-height: 1.7; }

.section-label-row {
  display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 16px;
}
.section-label-row .label-line { width: 48px; height: 1px; background: var(--gold); opacity: 0.6; }
.section-label-row .label-text {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}

/* Section label (left-aligned, in about/contact) */
.section-label { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.section-label .label-line { width: 40px; height: 1.5px; background: var(--gold); }
.section-label span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); }

/* ===== CATALOG SECTIONS ===== */
.cat-section { padding: 80px 32px; }
.cat-section:nth-child(even) { background: var(--cream-100); }
.cat-section:nth-child(odd)  { background: var(--white); }

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--white); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
  display: flex; flex-direction: column;
  border: 1.5px solid transparent;
}
.product-card:hover {
  box-shadow: var(--shadow-card-hover); transform: translateY(-6px);
  border-color: var(--blush-100);
}

.product-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: var(--cream-100);
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }

.product-img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--blush-200);
}
.product-img-placeholder svg { width: 44px; height: 44px; }
.product-img-placeholder span { font-size: 0.68rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; }

.unavail-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(59,10,32,0.72); color: #fff;
  font-size: 0.68rem; font-weight: 700; padding: 4px 10px;
  border-radius: 9999px; letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}

.product-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--text-dark);
  margin-bottom: 6px; line-height: 1.3;
}
.product-name.empty { color: var(--cream-200); font-style: italic; font-size: 0.875rem; font-family: 'Lato',sans-serif; }
.product-desc {
  font-size: 0.83rem; color: var(--text-light); line-height: 1.6;
  margin-bottom: 18px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-desc.empty { color: var(--cream-200); font-style: italic; }

.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--cream-100);
  margin-top: auto;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--text-dark);
}
.product-price.empty { font-family: 'Lato',sans-serif; font-size: 0.8rem; font-weight: 400; color: var(--cream-200); font-style: italic; }

.product-avail {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: 9999px;
  display: flex; align-items: center; gap: 5px;
}
.avail-yes { background: rgba(46,125,50,0.08); color: #2E7D32; }
.avail-no  { background: var(--cream-100); color: var(--text-light); }
.avail-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* Skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--cream-100) 25%, var(--cream-200) 50%, var(--cream-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ===== CATALOG OVERVIEW / CATEGORY CARDS ===== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 640px) { .catalog-grid { grid-template-columns: repeat(4, 1fr); } }

.cat-card {
  background: var(--white); border-radius: var(--radius-card);
  padding: 32px 24px; text-align: left;
  box-shadow: var(--shadow-card); cursor: pointer;
  border: 1.5px solid transparent; transition: var(--transition); width: 100%;
  display: flex; flex-direction: column; align-items: flex-start;
}
.cat-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
  border-color: var(--blush-200);
  background: var(--blush-50);
}
.cat-card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--cream-100); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--blush-dark);
  transition: var(--transition);
}
.cat-card:hover .cat-card-icon { background: var(--blush-50); transform: scale(1.08); }
.cat-card-icon svg { width: 28px; height: 28px; }
.cat-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px;
}
.cat-card-count { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.04em; }

/* ===== ABOUT ===== */
.about-section { background: var(--white); }
.about-grid {
  display: grid; gap: 64px; margin-bottom: 56px;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: center; } }

/* Visual / photo side */
.about-visual { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: 28px; overflow: visible;
}
.about-img-inner {
  border-radius: 28px; overflow: hidden;
  aspect-ratio: 3/4; background: var(--cream-100);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card-hover);
}
.about-photo-placeholder {
  text-align: center; color: var(--text-light); padding: 32px;
}
.about-photo-placeholder svg { width: 80px; height: 80px; margin: 0 auto 16px; display: block; }
.about-photo-placeholder p { font-size: 0.85rem; line-height: 1.6; }
.about-img-badge {
  position: absolute; bottom: 24px; right: -20px;
  background: var(--white); border-radius: 14px;
  padding: 14px 20px; box-shadow: var(--shadow-card-hover);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; color: var(--text-dark);
}
.about-img-badge svg { color: var(--blush-dark); }
@media (max-width: 1023px) { .about-img-badge { right: 16px; } }

/* Text side */
.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--text-dark); margin-bottom: 24px; line-height: 1.15;
}
.accent-text { color: var(--blush-dark); }
.about-text p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }

.about-stats {
  display: flex; align-items: center; gap: 24px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid var(--cream-200);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--text-dark); line-height: 1;
}
.stat-label { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.08em; margin-top: 5px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: var(--cream-200); }

/* Value cards row */
.about-values {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (min-width: 768px) { .about-values { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: var(--cream-100); border-radius: 20px; padding: 28px 24px;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); background: var(--white); }
.value-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--blush-dark);
  box-shadow: 0 2px 10px rgba(196,45,106,0.08);
}
.value-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.value-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; gap: 28px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-box {
  padding: 36px; border-radius: 24px;
  background: var(--white); box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
}
.contact-info-box h3, .contact-form-box h3 {
  font-size: 1.4rem; color: var(--text-dark); margin-bottom: 28px;
}

.contact-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--cream-100); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--blush-dark);
}
.ci-label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); margin-bottom: 3px;
}
.ci-value { font-size: 0.9rem; color: var(--text-mid); }

.social-links p {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--text-dark); margin-bottom: 12px;
}
.social-btns { display: flex; gap: 10px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 9999px;
  font-size: 0.82rem; font-weight: 600;
  background: var(--cream-100); color: var(--text-mid);
  border: 1.5px solid var(--cream-200); cursor: pointer;
  transition: var(--transition);
}
.social-btn:hover { background: var(--white); border-color: var(--blush-200); color: var(--blush-dark); transform: translateY(-2px); }
.social-btn svg { flex-shrink: 0; }

.contact-form-box {
  background: var(--white); border-radius: 24px; padding: 36px;
  box-shadow: var(--shadow-card); border-top: 3px solid var(--blush-200);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1.5px solid var(--cream-200); font-size: 0.9rem;
  color: var(--text-dark); background: var(--cream);
  outline: none; transition: border-color 0.2s;
  font-family: 'Lato', sans-serif;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--blush-dark); background: #fff; }
.form-group textarea { resize: none; }

/* ===== FOOTER ===== */
footer {
  background: #3B0A20;
  color: #FFD6E8;
  padding: 60px 32px 0;
}
.footer-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; gap: 40px; padding-bottom: 48px;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: #FFD6E8; margin-bottom: 14px;
}
.footer-brand p { font-size: 0.875rem; opacity: 0.6; line-height: 1.7; max-width: 280px; color: #FFB8D4; }

.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-socials button {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(255,182,212,0.18);
  background: rgba(255,182,212,0.08);
  color: rgba(255,182,212,0.7); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.footer-socials button:hover { background: rgba(255,182,212,0.18); color: #FFD6E8; }

.footer-links h4 {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: #FFB8D4; margin-bottom: 20px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,182,212,0.65);
  text-decoration: none; cursor: pointer; transition: color 0.2s;
}
.footer-links a:hover { color: #FFD6E8; }

.footer-bottom {
  max-width: 1320px; margin: 0 auto;
  border-top: 1px solid rgba(255,182,212,0.12);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p, .footer-bottom div { font-size: 0.75rem; color: rgba(255,182,212,0.4); }
.footer-bottom span { cursor: pointer; }
.footer-bottom span:hover { color: rgba(255,182,212,0.8); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 24px; right: 24px; left: 24px;
  z-index: 9999; max-width: 380px; margin-left: auto;
}
.cookie-inner {
  background: rgba(255,255,255,0.97); border-radius: 20px;
  padding: 20px; box-shadow: 0 20px 60px rgba(59,10,32,0.12);
  border: 1.5px solid var(--cream-200); backdrop-filter: blur(20px);
}
.cookie-top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px;
}
.cookie-title { display: flex; align-items: center; gap: 8px; color: var(--blush-dark); }
.cookie-title strong { font-size: 0.9rem; color: var(--text-dark); }
.cookie-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-light); padding: 4px 6px; border-radius: 8px;
  transition: background 0.2s; display: flex; align-items: center;
}
.cookie-close:hover { background: var(--cream-100); }
.cookie-inner p { font-size: 0.78rem; color: var(--text-light); line-height: 1.55; margin-bottom: 14px; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btns button { flex: 1; }

/* ===== ANIMATIONS ===== */
.fade-in-0 { opacity: 0; transform: translateY(18px); animation: fadeUp 0.65s ease forwards 0.1s; }
.fade-in-1 { opacity: 0; transform: translateY(22px); animation: fadeUp 0.7s ease forwards 0.25s; }
.fade-in-2 { opacity: 0; transform: translateY(18px); animation: fadeUp 0.65s ease forwards 0.45s; }
.fade-in-3 { opacity: 0; transform: translateY(16px); animation: fadeUp 0.6s ease forwards 0.65s; }
.fade-in-4 { opacity: 0; transform: translateY(14px); animation: fadeUp 0.6s ease forwards 0.8s; }
.fade-in-5 { opacity: 0; transform: translateX(24px); animation: fadeLeft 0.75s ease forwards 0.35s; }

@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { to { opacity: 1; transform: translateX(0); } }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-left { padding: 130px 44px 70px 52px; }
}
@media (max-width: 1100px) {
  .hero-left { padding: 130px 36px 60px 44px; }
  .title-main  { font-size: clamp(3.4rem, 5.5vw, 6rem); }
  .title-italic { font-size: clamp(2.8rem, 4.8vw, 5.2rem); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .hero-left {
    padding: 130px 32px 40px;
    text-align: center; align-items: center;
  }
  .hero-subtitle { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-scroll { justify-content: center; }
  .hero-right {
    height: auto; padding: 0 24px 56px;
    display: block;
  }
  .hero-slider-frame { height: auto; width: min(380px, 100%); aspect-ratio: 4/5; animation: none; }
  .hero-slider { border-radius: 20px; }
  .frame-shine { border-radius: 20px; }
  .shop-slider { width: 100%; border-radius: 16px; }
  .shop-slider-placeholder { width: 100%; }
}

@media (max-width: 640px) {
  .section { padding: 64px 20px; }
  .shop-gallery-section { padding: 64px 0; }
  .hero-left { padding: 110px 20px 32px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas button { width: 100%; }
  .hero-right { padding: 0 16px 48px; }
  .hero-slider-frame { width: min(300px, 100%); }
  .hero-slider { border-radius: 16px; }
  .frame-shine { border-radius: 16px; }
  .shop-slider { width: 100%; border-radius: 12px; }
  .shop-slider-placeholder { width: 100%; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: 100%; }
  .cat-section { padding: 56px 20px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-inner { padding: 0 0 40px; }
  .hero-scroll { display: none; }
}

@media (max-width: 400px) {
  .product-grid { grid-template-columns: 1fr; }
}
