/* =====================================================
   Klisu — Luxury Beauty Center
   Pixel-perfect adaptation of the v1 design
   ===================================================== */

:root {
  --bg: #fbf4ef;
  --bg-soft: #fcf6f1;
  --bg-rose: #eccdc0;
  --bg-rose-deep: #d8a596;
  --hero-overlay: rgba(107, 66, 58, 0.45);
  --rose-100: #f7e7de;
  --rose-200: #edd4c6;
  --rose-300: #dfb3a0;
  --rose-400: #c59182;
  --rose-500: #9a6b60;
  --rose-600: #7a4c44;
  --ink: #0c0c0c;
  --ink-2: #1a1a1a;
  --muted: #8d8d8d;
  --line: #ececec;
}

/* Page-level pinkish gradient backdrop that mirrors the design */
html, body { min-height: 100%; }
body {
  background:
    radial-gradient(1200px 600px at 85% 8%, #efc8ba 0%, transparent 55%),
    radial-gradient(1200px 700px at 0% 35%, #f3d2c2 0%, transparent 60%),
    radial-gradient(1000px 700px at 50% 120%, #e8bdac 0%, transparent 60%),
    linear-gradient(180deg, #faf1ea 0%, #f6e6dc 100%);
  background-attachment: fixed;
}

/* =====================================================
   HERO
   ===================================================== */
.hero-wrap { position: relative; }
.hero-card {
  min-height: 640px;
  display: flex;
  flex-direction: column;
  color: #fff;
  box-shadow: 0 30px 80px -40px rgba(90, 40, 30, .35);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    url('../../stock/ai-images/02-korean-model-applying-cream.jpg');
  background-size: cover;
  background-position: center 20%;
  filter: saturate(1.02) brightness(.95);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(96,52,44,.78) 0%, rgba(110,62,54,.52) 42%, rgba(128,72,62,.20) 72%, rgba(148,92,78,.05) 100%),
    linear-gradient(180deg, rgba(80,40,32,.35) 0%, rgba(80,40,32,.20) 50%, rgba(80,40,32,.55) 100%);
}

/* Nav pills and icons */
.nav-pill {
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  transition: .2s ease;
  font-weight: 500;
}
.nav-pill:hover { background: rgba(255,255,255,.22); }
.nav-pill-active {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 0 8px 30px -12px rgba(0,0,0,.25);
}
.nav-icon-btn {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-icon-btn:hover { background: rgba(255,255,255,.22); }
.nav-icon-btn-white {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 30px -14px rgba(0,0,0,.35);
  position: relative;
}
.cart-dot {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: #111; color: #fff;
  border-radius: 999px;
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

/* Hero typography */
.hero-title {
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 30px rgba(40, 10, 6, .25);
}
.hero-soft {
  font-weight: 300;
  font-style: normal;
  color: rgba(255,255,255,.88);
}
.hero-sub {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  font-weight: 400;
}

/* Gallery play button */
.gallery-btn {
  display: inline-flex; align-items: center; gap: 14px;
  color: #fff;
  background: transparent;
}
.gallery-play {
  width: 56px; height: 56px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,.45);
  position: relative;
}
.gallery-play::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
}
.gallery-label {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,.85);
}

/* Chips */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}
.chip-active { background: rgba(255,255,255,.18); }
.chip-x {
  display: inline-block;
  font-weight: 700;
  transform: rotate(45deg);
  font-size: 11px;
  color: #fff;
}

/* Overlay mini cards (glassmorphic) */
.overlay-cards {
  position: absolute;
  right: 3.5rem; bottom: 7rem;
  display: flex; gap: 14px;
  z-index: 15;
}
.mini-card {
  position: relative;
  width: 160px; height: 180px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 20px 50px -20px rgba(40, 10, 6, .45);
  padding: 14px;
  color: #fff;
  transition: transform .25s ease;
}
.mini-card:hover { transform: translateY(-4px); }
.mini-card--image {
  background-size: cover;
  background-position: center;
  width: 140px;
}
.mini-card--label { background: rgba(255, 230, 220, .12); }
.mini-card--cream {
  background:
    linear-gradient(180deg, rgba(230, 150, 130, .5), rgba(180, 90, 70, .4)),
    rgba(255,255,255,.10);
}
.mini-arrow {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px;
  background: #fff; color: #111;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.mini-text { position: absolute; left: 14px; right: 14px; bottom: 14px; }
.mini-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.mini-text p { font-size: 10.5px; line-height: 1.35; color: rgba(255,255,255,.82); }

/* Progress bar */
.hero-progress {
  position: relative; z-index: 15;
  margin-top: auto;
  padding: 20px 2.5rem 26px;
  display: flex; align-items: center; gap: 18px;
}
.hero-progress-num { color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 1px; }
.hero-progress-track {
  flex: 1; height: 2px;
  background: rgba(255,255,255,.25);
  position: relative;
}
.hero-progress-fill { position: absolute; inset: 0; width: 25%; background: #fff; }
.hero-arrows { display: inline-flex; gap: 6px; }
.hero-arrow {
  width: 42px; height: 42px;
  border-radius: 999px 0 0 999px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: .2s ease;
}
.hero-arrow--ghost {
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.hero-arrow--dark {
  background: #0e0e0e;
  color: #fff;
  border-radius: 0 999px 999px 0;
}
.hero-arrow:hover { transform: translateX(2px); }

/* =====================================================
   SECTIONS — light
   ===================================================== */
.section { position: relative; }
.section-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.section-title strong { font-weight: 800; }
.sub-title {
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.muted { color: var(--muted); font-size: 14px; font-weight: 400; }
.caption { color: #3a3a3a; font-size: 15px; max-width: 320px; }

/* Circle CTA with rose background */
.circle-cta {
  width: 96px; height: 96px;
  border-radius: 999px;
  background: #f4d9cd;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  font-size: 12px; color: var(--ink);
  position: relative;
  flex-shrink: 0;
}
.circle-cta svg {
  position: absolute; top: 18px; right: 24px;
}
.circle-cta span { margin-top: 16px; font-weight: 500; }
.circle-cta:hover { background: #eec7b6; }

/* Pill button - outlined */
.pill-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  font-size: 13px;
  font-weight: 500;
  transition: .2s ease;
  cursor: pointer;
}
.pill-btn:hover { background: var(--ink); color: #fff; }

/* Photo cards */
.photo-card {
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.photo-card--landscape { aspect-ratio: 4/3; }
.photo-card--tall { aspect-ratio: 3/5; height: 100%; }
.photo-card--wide { aspect-ratio: 16/10; }
.photo-card--feature { aspect-ratio: 16/11; min-height: 320px; }
.photo-card--portrait { aspect-ratio: 3/5; min-height: 320px; }
.photo-card--portraitTall { aspect-ratio: 2/3; min-height: 380px; }

/* "More Details" glass circle over image */
.more-details {
  position: absolute; top: 22px; right: 22px;
  width: 92px; height: 92px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  color: #fff;
  font-size: 11px;
  border: 1px solid rgba(255,255,255,.15);
}
.more-details svg { margin-bottom: 2px; }
.more-details--lg { width: 100px; height: 100px; font-size: 12px; }

/* Service list */
.service-list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
}
.service-item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: .2s ease;
  position: relative;
}
.service-avatar {
  width: 46px; height: 46px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.service-name { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; flex: 1; }
.service-go {
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: .2s ease;
}
.service-item.active .service-go {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.service-item.active .service-name { font-weight: 700; }
.service-item:hover { padding-left: 14px; }

/* =====================================================
   PRODUCT LAUNCH
   ===================================================== */
.tab-pill {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: .2s ease;
}
.tab-pill.tab-active { background: var(--ink); color: #fff; }
.tab-pill:hover { background: var(--ink); color: #fff; }

.capsule-thumb {
  width: 92px; height: 136px;
  border-radius: 999px;
  background-size: 78%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f2e3d7;
  box-shadow: 0 20px 40px -22px rgba(100, 60, 40, .3);
  border: 1px solid rgba(255,255,255,.6);
}

.product-disc {
  position: relative;
  width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.product-disc__ring {
  position: absolute; inset: 0;
  border-radius: 999px;
  border: 1px solid #e8d3c5;
}
.product-disc__ring svg {
  position: absolute; inset: 20px;
  width: calc(100% - 40px); height: calc(100% - 40px);
  animation: spin 40s linear infinite;
}
.spin-slow { animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.product-disc__image {
  position: absolute; inset: 40px;
  border-radius: 999px;
  background-size: 78%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f5e5d8;
  background-image-rendering: crisp-edges;
  box-shadow: inset 0 0 80px rgba(170, 110, 85, .25), 0 30px 60px -30px rgba(120, 70, 50, .35);
  transition: background-image .4s ease;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.product-title span { font-weight: 400; color: var(--muted); font-size: 18px; }
.product-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
}
.add-to-cart {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: .2s ease;
}
.add-to-cart:hover { background: var(--rose-600); }

/* =====================================================
   TRANSFORMATION
   ===================================================== */
.transform-card {
  position: relative;
  min-height: 480px;
  border-radius: 32px;
  background-size: cover;
  background-position: center 25%;
  overflow: hidden;
  color: #fff;
}
.transform-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(120,50,40,.10) 0%, rgba(90,30,25,.70) 100%);
}
.transform-card__content {
  position: absolute; left: 32px; bottom: 100px;
  z-index: 2;
  max-width: 60%;
}
.transform-card__content h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.transform-card__content p {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  max-width: 280px;
}
.transform-card__chip {
  position: absolute; right: 32px; bottom: 32px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 13px; font-weight: 500;
}

/* =====================================================
   CATALOGUE
   ===================================================== */
.search-bar {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--muted);
  min-width: 280px;
}
.search-bar input {
  background: transparent;
  border: none; outline: none;
  font-size: 14px;
  width: 100%;
  color: var(--ink);
}
.search-bar input::placeholder { color: #bdbdbd; }

.catalog-card {
  position: relative;
  background: transparent;
  border-radius: 28px;
}
/* Klisu heart dot — single colored accent per SKU */
.catalog-heart {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  z-index: 4;
  background: #f2c8a8;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .85), 0 4px 10px rgba(0, 0, 0, .12);
}
.catalog-heart--peach    { background: #f2c8a8; }
.catalog-heart--midnight { background: #6878a0; }
.catalog-heart--gold     { background: #d9b36a; }
.catalog-heart--aqua     { background: #7ecec8; }
.catalog-heart--blush    { background: #ebcfc8; }
.catalog-img {
  aspect-ratio: 1/1;
  width: 100%;
  background-size: 72%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f4e1d1;
  border-radius: 28px;
  position: relative;
  transition: transform .35s ease;
}
.catalog-card:hover .catalog-img { transform: translateY(-4px); }
.fav-btn {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  border: none;
  z-index: 2;
  cursor: pointer;
}
.fav-btn:hover { background: #fff; color: var(--rose-500); }
.catalog-body {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6px 0;
}
.catalog-body h4 { font-size: 20px; font-weight: 600; color: var(--ink); }
.product-price-sm { font-size: 14px; color: var(--muted); margin-top: 4px; }
.round-arrow {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line);
  color: var(--ink);
  transition: .2s ease;
}
.round-arrow--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.round-arrow:hover { transform: translate(2px,-2px); }

/* =====================================================
   REVIEWS
   ===================================================== */
.avatar-stack { display: inline-flex; align-items: center; }
.av {
  width: 48px; height: 48px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  border: 3px solid #fff;
  margin-left: -12px;
  flex-shrink: 0;
}
.av:first-child { margin-left: 0; }
.av--count {
  background: var(--ink);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.review-card {
  padding: 24px;
  border-radius: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 20px;
  min-height: 180px;
}
.review-card--light { background: #f8f2ed; }
.review-card--tint { background: #f1dbcc; }
.review-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  font-weight: 500;
}
.review-footer { display: flex; align-items: center; gap: 14px; }
.review-footer .av { width: 42px; height: 42px; border-width: 2px; margin: 0; }
.review-footer h5 { font-size: 14px; font-weight: 600; }
.stars { font-size: 12px; color: var(--muted); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer-wrap {
  background: linear-gradient(180deg, rgba(247,231,222,0) 0%, #efd2c1 100%);
  margin-top: 40px;
  color: var(--ink);
}
.footer-lead { color: #5a5a5a; font-size: 15px; line-height: 1.6; }
.footer-wrap h5 { font-size: 14px; color: var(--ink); font-weight: 600; margin-bottom: 18px; }
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a { color: #555; font-size: 14px; }
.footer-list a:hover { color: var(--ink); }
.social {
  width: 38px; height: 38px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,.15);
  color: var(--ink);
  transition: .2s ease;
}
.social--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.social:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(0,0,0,.12);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 13px; color: #5a5a5a;
}
.footer-bottom a { color: var(--ink); font-weight: 500; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .hero-card { min-height: 520px; }
  .overlay-cards { display: none !important; }
  .product-disc { width: 300px; height: 300px; }
  .circle-cta { width: 80px; height: 80px; }
  .circle-cta svg { top: 14px; right: 20px; }
  .transform-card__content { left: 24px; bottom: 80px; max-width: 75%; }
  .transform-card__chip { right: 24px; bottom: 24px; }
}
@media (max-width: 640px) {
  .section { padding-left: 1rem; padding-right: 1rem; }
  .hero-title { font-size: 32px; }
  .product-title { font-size: 22px; }
  .product-price { font-size: 30px; }
}

/* =====================================================
   mainv4 — Wellness Digest · variant-only additions
   ===================================================== */
.catalog-tile-band { background: var(--rose-100); border-radius: 40px; padding: 56px 44px; }
.catalog-tile-band .ctb-head { display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 20px; margin-bottom: 32px; }
.catalog-tile-band h2 { font-size: clamp(34px, 4vw, 56px); font-weight: 400; letter-spacing: -0.02em; line-height: 1; color: var(--ink); }
.catalog-tile-band h2 strong { font-weight: 800; }
.catalog-grid6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ct-card { position: relative; background: #fff; border-radius: 26px; padding: 22px 22px 24px; box-shadow: 0 12px 30px -22px rgba(122,76,68,.22); transition: transform .3s ease; cursor: pointer; }
.ct-card:hover { transform: translateY(-4px); }
.ct-card .heart { position: absolute; top: 22px; left: 22px; width: 14px; height: 14px; border-radius: 50%; background: var(--color); box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(0,0,0,.08); z-index: 2; }
.ct-card .fav { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--ink); font-size: 15px; z-index: 2; cursor: pointer; }
.ct-card .fav:hover { color: var(--rose-500); }
.ct-img { aspect-ratio: 1/1; border-radius: 20px; background: radial-gradient(circle at 50% 65%, var(--rose-100), #fff 72%); display: grid; place-items: center; padding: 20px; }
.ct-img img { max-height: 80%; max-width: 78%; object-fit: contain; filter: drop-shadow(0 16px 18px rgba(120,70,50,.18)); }
.ct-foot { display: flex; justify-content: space-between; align-items: end; margin-top: 16px; gap: 8px; }
.ct-foot h4 { font-size: 17px; font-weight: 700; }
.ct-foot .price { font-size: 13px; color: var(--muted); margin-top: 3px; font-weight: 500; }
.ct-arrow { width: 40px; height: 40px; border-radius: 999px; background: var(--ink); color: #fff; display: grid; place-items: center; flex-shrink: 0; transition: .2s; }
.ct-card:hover .ct-arrow { background: var(--rose-600); transform: rotate(-45deg); }

.ct-poster { background: var(--ink); color: #fff; border-radius: 26px; padding: 28px 28px 22px; display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; position: relative; overflow: hidden; }
.ct-poster::before { content: ''; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px; background: radial-gradient(circle, rgba(232, 173, 152, 0.35), transparent 70%); border-radius: 50%; }
.ct-poster .kicker { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--rose-300); font-weight: 600; }
.ct-poster h3 { font-size: clamp(24px, 2.3vw, 34px); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; margin-top: 14px; }
.ct-poster h3 strong { font-weight: 800; }
.ct-poster p { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 10px; line-height: 1.55; }
.ct-poster form { display: flex; margin-top: 18px; background: rgba(255,255,255,.1); border-radius: 999px; padding: 4px; }
.ct-poster input { flex: 1; background: transparent; border: 0; outline: none; color: #fff; padding: 10px 16px; font-size: 13px; }
.ct-poster input::placeholder { color: rgba(255,255,255,.5); }
.ct-poster button { background: #fff; color: var(--ink); padding: 10px 18px; border-radius: 999px; border: 0; font-size: 12px; font-weight: 600; cursor: pointer; transition: .2s; }
.ct-poster button:hover { background: var(--rose-200); }

.morning-strip { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: stretch; }
.morning-strip .ms-img { border-radius: 36px; overflow: hidden; background-size: cover; background-position: center; min-height: 420px; position: relative; }
.morning-strip .ms-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(12,12,12,.55)); }
.morning-strip .ms-img .tag { position: absolute; left: 24px; bottom: 24px; color: #fff; z-index: 2; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; }
.morning-strip .ms-steps { background: #fff; border-radius: 36px; padding: 40px 36px; display: flex; flex-direction: column; gap: 14px; box-shadow: 0 18px 40px -28px rgba(122,76,68,.2); }
.morning-strip .ms-steps .kicker { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--rose-600); font-weight: 600; }
.morning-strip .ms-steps h3 { font-size: clamp(28px, 2.8vw, 40px); font-weight: 400; letter-spacing: -0.02em; line-height: 1; margin-top: 6px; margin-bottom: 18px; }
.morning-strip .ms-steps h3 strong { font-weight: 800; }
.morning-strip .ms-steps ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.morning-strip .ms-steps li { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 14px; padding: 14px 16px; background: var(--rose-100); border-radius: 14px; font-size: 14px; }
.morning-strip .ms-steps li .nm { font-size: 11px; letter-spacing: .2em; color: var(--rose-600); font-weight: 700; }
.morning-strip .ms-steps li .t { font-size: 11px; color: var(--muted); font-weight: 500; }

.hero-quote-band { background: var(--rose-200); border-radius: 40px; padding: 80px 60px; text-align: center; position: relative; overflow: hidden; }
.hero-quote-band::before, .hero-quote-band::after { content: '"'; position: absolute; font-family: 'Dancing Script', cursive; font-size: 320px; line-height: 1; color: rgba(255,255,255,.5); font-weight: 700; }
.hero-quote-band::before { top: 20px; left: 40px; }
.hero-quote-band::after { bottom: -100px; right: 40px; }
.hero-quote-band .q { font-size: clamp(24px, 3.2vw, 44px); font-weight: 400; line-height: 1.25; letter-spacing: -0.015em; color: var(--ink); max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.hero-quote-band .who { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--rose-700, #6E443E); font-weight: 600; margin-top: 28px; position: relative; z-index: 2; }
.hero-quote-band .who b { color: var(--ink); text-transform: none; letter-spacing: 0; font-size: 15px; font-weight: 700; }

.collections-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.coll-tile { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 3/4; background-size: cover; background-position: center; transition: transform .4s ease; cursor: pointer; }
.coll-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(12,12,12,.55)); }
.coll-tile:hover { transform: translateY(-5px); }
.coll-tile .label { position: absolute; left: 22px; right: 22px; bottom: 20px; color: #fff; z-index: 2; }
.coll-tile .label .k { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.8); font-weight: 600; }
.coll-tile .label h4 { font-size: 22px; font-weight: 700; margin-top: 6px; letter-spacing: -0.01em; }
.coll-tile .label .arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; margin-top: 10px; font-weight: 500; }

@media (max-width: 900px) {
  .catalog-grid6 { grid-template-columns: 1fr 1fr; }
  .morning-strip { grid-template-columns: 1fr; }
  .collections-row { grid-template-columns: 1fr 1fr; }
  .hero-quote-band { padding: 56px 28px; }
}
