/* ============================================================
   KIRA — Brand stylesheet
   v1 · Static site · Brand System v1 tokens
   ============================================================ */

/* ---- 1. Tokens --------------------------------------------- */
:root {
  /* Colours */
  --c-primary:        #FF6B35;
  --c-primary-hover:  #E04E1A;
  --c-secondary:      #16697A;
  --c-accent:         #FFA62B;
  --c-text:           #0A2540;
  --c-text-soft:      #5A6B7E;
  --c-bg:             #FFFFFF;
  --c-surface:        #FFF8F3;
  --c-border:         #E8E2DA;
  --c-success:        #2D9D78;
  --c-error:          #D64545;
  --c-sky-wash:       #EAF4F6;
  --c-cream-deep:     #F5EBE0;
  --c-whatsapp:       #25D366;

  /* Typography */
  --f-head: 'Fraunces', 'Noto Serif Sinhala', Georgia, serif;
  --f-body: 'Inter', 'Noto Sans Sinhala', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 48px;
  --s-2xl: 96px;

  /* Layout */
  --container: 1280px;
  --container-pad: 32px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --shadow-card: 0 1px 3px rgba(10, 37, 64, 0.06), 0 4px 12px rgba(10, 37, 64, 0.04);
  --shadow-card-hover: 0 8px 24px rgba(10, 37, 64, 0.10);
}

/* ---- 2. Reset ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: var(--c-secondary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 600; margin: 0 0 var(--s-md); letter-spacing: -0.01em; line-height: 1.15; color: var(--c-text); }
p { margin: 0 0 var(--s-md); }

/* ---- 3. Typography scale ----------------------------------- */
.h1, h1 { font-size: 36px; line-height: 1.15; }
.h2, h2 { font-size: 28px; line-height: 1.2; }
.h3, h3 { font-size: 22px; line-height: 1.3; font-weight: 500; }
.h4, h4 { font-size: 18px; line-height: 1.35; font-family: var(--f-body); font-weight: 600; }
.body-lg { font-size: 17px; line-height: 1.6; }
.small  { font-size: 14px; line-height: 1.5; color: var(--c-text-soft); }
.caption {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-text-soft);
}

@media (min-width: 768px) {
  .h1, h1 { font-size: 56px; line-height: 1.1; }
  .h2, h2 { font-size: 40px; line-height: 1.15; }
  .h3, h3 { font-size: 28px; line-height: 1.25; }
  .h4, h4 { font-size: 20px; }
  body { font-size: 17px; }
  .small { font-size: 15px; }
  .caption { font-size: 13px; }
}

/* ---- 4. Layout utilities ----------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) { .container { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 1280px) { .container { padding-left: 32px; padding-right: 32px; } }

.section { padding-top: 48px; padding-bottom: 48px; }
@media (min-width: 768px) { .section { padding-top: 64px; padding-bottom: 64px; } }
@media (min-width: 1024px) { .section { padding-top: 96px; padding-bottom: 96px; } }
.section--sm { padding-top: 32px; padding-bottom: 32px; }
.section--surface { background: var(--c-surface); }
.section--cream-deep { background: var(--c-cream-deep); }
.section--sky { background: var(--c-sky-wash); }
.section--dark { background: var(--c-text); color: var(--c-surface); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--c-surface); }

.grid { display: grid; gap: var(--s-lg); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }
.grid--5 { grid-template-columns: 1fr 1fr; gap: var(--s-md); }
@media (min-width: 768px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--5 { grid-template-columns: repeat(5, 1fr); }
}

.eyebrow { display: inline-block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; color: var(--c-text-soft); margin-bottom: var(--s-md); }
.text-soft { color: var(--c-text-soft); }
.text-center { text-align: center; }

/* ---- 5. Buttons -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  padding: 14px 24px;
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
@media (min-width: 768px) { .btn { padding: 16px 32px; } }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--c-primary); color: #fff; }
.btn--primary:hover { background: var(--c-primary-hover); color: #fff; }
.btn--secondary { background: transparent; color: var(--c-text); border: 1.5px solid var(--c-text); }
.btn--secondary:hover { background: var(--c-text); color: #fff; }
.btn--whatsapp { background: var(--c-whatsapp); color: #fff; }
.btn--whatsapp:hover { background: #1FB955; color: #fff; }
.btn--text { background: none; color: var(--c-primary); padding: 8px 0; border-radius: 0; }
.btn--text:hover { transform: none; text-decoration: underline; }
.btn--full { width: 100%; }
.btn-row { display: flex; flex-direction: column; gap: var(--s-md); }
@media (min-width: 768px) { .btn-row { flex-direction: row; } }

/* ---- 6. Header --------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: var(--s-md); }
.header__logo {
  display: inline-block;
  width: 132px; height: 30px;
  background-image: url('/assets/images/kira-logo.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  text-indent: -9999px; overflow: hidden; white-space: nowrap;
}
.header__logo:hover { text-decoration: none; }
.header__logo .dot { display: none; }
.header__nav { display: none; }
@media (min-width: 1024px) {
  .header__nav { display: flex; gap: var(--s-xl); }
}
.header__nav a { color: var(--c-text); font-size: 15px; font-weight: 500; }
.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: flex; gap: var(--s-md); align-items: center; } }
.header__cta a { color: var(--c-text); font-size: 14px; font-weight: 500; }

.menu-toggle { background: none; border: none; padding: 8px; display: flex; flex-direction: column; gap: 5px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--c-text); border-radius: 1px; transition: all 0.2s; }

.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99; background: var(--c-bg); padding: 80px var(--s-lg) var(--s-lg); flex-direction: column; gap: var(--s-md); }
.mobile-menu.is-open { display: flex; }
.mobile-menu a { font-family: var(--f-head); font-size: 28px; font-weight: 500; color: var(--c-text); padding: 8px 0; border-bottom: 1px solid var(--c-border); }
.mobile-menu .btn { margin-top: var(--s-md); }

/* ---- 7. Announcement bar ----------------------------------- */
.announcement {
  background: var(--c-text);
  color: var(--c-surface);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  line-height: 1.4;
}
.announcement a { color: var(--c-accent); font-weight: 500; }

/* ---- 8. Hero ----------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1fr; gap: 0; min-height: 80vh; align-items: stretch; }
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 5fr 6fr; min-height: 88vh; } }
.hero__text { padding: 48px 16px; display: flex; flex-direction: column; justify-content: center; background: var(--c-surface); }
@media (min-width: 768px) { .hero__text { padding: 64px 24px; } }
@media (min-width: 1024px) { .hero__text { padding: 96px 64px; background: var(--c-bg); } }
.hero__text .eyebrow { margin-bottom: var(--s-md); }
.hero__text h1 { margin-bottom: var(--s-md); }
.hero__text .subhead { font-size: 18px; color: var(--c-text-soft); margin-bottom: var(--s-xl); max-width: 36em; }
@media (min-width: 768px) { .hero__text .subhead { font-size: 20px; } }
.hero__image { position: relative; min-height: 320px; background: var(--c-cream-deep); }
@media (min-width: 1024px) { .hero__image { min-height: auto; } }
.hero__image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero__cta-tertiary { margin-top: var(--s-md); display: inline-block; font-weight: 500; color: var(--c-primary); }

/* ---- 9. Trust strip ---------------------------------------- */
.trust { background: var(--c-surface); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.trust__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-md); padding: var(--s-lg) 0; }
@media (min-width: 768px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }
.trust__item { display: flex; align-items: center; gap: var(--s-md); padding: 0 var(--s-sm); }
@media (min-width: 768px) { .trust__item:not(:last-child) { border-right: 1px solid var(--c-border); } }
.trust__icon { width: 28px; height: 28px; color: var(--c-text); flex-shrink: 0; }
.trust__text strong { display: block; font-size: 14px; font-weight: 600; color: var(--c-text); line-height: 1.2; }
.trust__text span { font-size: 12px; color: var(--c-text-soft); line-height: 1.3; }
@media (min-width: 768px) {
  .trust__text strong { font-size: 15px; }
  .trust__text span { font-size: 13px; }
}

/* ---- 10. Section heading ----------------------------------- */
.section-head { display: flex; flex-direction: column; gap: var(--s-sm); margin-bottom: var(--s-xl); }
.section-head__row { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-md); flex-wrap: wrap; }
.section-head__row .h2 { margin-bottom: 0; }
.section-head__link { font-size: 15px; font-weight: 500; color: var(--c-primary); }
.section-head__subhead { color: var(--c-text-soft); max-width: 50em; margin: 0; }

/* ---- 11. Cards (universal) --------------------------------- */
.card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}
.card--clickable:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.card__media { aspect-ratio: 1; background: var(--c-cream-deep); position: relative; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__badge { position: absolute; top: 12px; left: 12px; background: var(--c-accent); color: var(--c-text); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.04em; text-transform: uppercase; }
.card__body { padding: var(--s-lg); }
.card__eyebrow { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; color: var(--c-text-soft); margin-bottom: var(--s-sm); }
.card__title { font-family: var(--f-body); font-size: 17px; font-weight: 600; color: var(--c-text); margin-bottom: var(--s-xs); }
.card__hint { font-size: 14px; color: var(--c-text-soft); margin-bottom: var(--s-sm); }
.card__price { font-size: 17px; font-weight: 600; color: var(--c-text); }

/* Large feature card (used on homepage Shop by Category) */
.feature-card { display: block; background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; transition: all 0.25s ease; color: var(--c-text); }
.feature-card:hover { text-decoration: none; box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.feature-card__media { aspect-ratio: 4 / 5; background: var(--c-cream-deep); position: relative; overflow: hidden; }
.feature-card__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-card__body { padding: var(--s-lg); }
.feature-card__eyebrow { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; color: var(--c-text-soft); margin-bottom: var(--s-sm); }
.feature-card__title { font-family: var(--f-head); font-size: 28px; font-weight: 600; margin-bottom: var(--s-sm); }
.feature-card__sub { color: var(--c-text-soft); margin-bottom: var(--s-md); }
.feature-card__cta { color: var(--c-primary); font-weight: 600; font-size: 15px; }

/* Coming-soon tile */
.coming-tile { display: block; background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; opacity: 0.7; transition: opacity 0.2s; }
.coming-tile:hover { opacity: 1; text-decoration: none; }
.coming-tile__media { aspect-ratio: 1; background: var(--c-cream-deep); }
.coming-tile__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
.coming-tile__body { padding: var(--s-md); text-align: center; }
.coming-tile__eyebrow { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-text-soft); margin-bottom: 2px; }
.coming-tile__title { font-family: var(--f-body); font-size: 14px; font-weight: 600; color: var(--c-text); margin: 0; }

/* ---- 12. Product feature (D, E on homepage) ---------------- */
.product-feature__inner { display: grid; grid-template-columns: 1fr; gap: var(--s-xl); align-items: center; }
@media (min-width: 1024px) { .product-feature__inner { grid-template-columns: 1fr 1fr; gap: var(--s-2xl); } }
.product-feature--reverse .product-feature__inner > :first-child { order: 2; }
@media (min-width: 1024px) { .product-feature--reverse .product-feature__inner > :first-child { order: 0; } }
.product-feature__media { aspect-ratio: 1; background: var(--c-cream-deep); border-radius: var(--radius-md); overflow: hidden; }
.product-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.product-feature__price { font-family: var(--f-head); font-size: 22px; font-weight: 500; margin: var(--s-md) 0; }

.callouts { display: grid; grid-template-columns: 1fr; gap: var(--s-md); margin: var(--s-lg) 0; }
@media (min-width: 768px) { .callouts { grid-template-columns: 1fr 1fr; } }
.callout { display: flex; gap: var(--s-md); padding: var(--s-md); background: var(--c-surface); border-radius: var(--radius-sm); }
.callout__icon { width: 28px; height: 28px; color: var(--c-secondary); flex-shrink: 0; }
.callout__title { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.callout__body { font-size: 14px; color: var(--c-text-soft); margin: 0; line-height: 1.4; }

/* Finish swatch strip (Beds) */
.swatches { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--s-md); margin-top: var(--s-md); }
.swatch { display: block; text-align: center; }
.swatch__img { aspect-ratio: 1; background: var(--c-cream-deep); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: var(--s-sm); }
.swatch__img img { width: 100%; height: 100%; object-fit: cover; }
.swatch__label { font-size: 13px; font-weight: 500; color: var(--c-text); }

/* ---- 13. Pillars (Why Kira) -------------------------------- */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-lg); }
@media (min-width: 1024px) { .pillars { grid-template-columns: repeat(4, 1fr); gap: var(--s-xl); } }
.pillar { text-align: left; }
.pillar__icon { width: 36px; height: 36px; color: var(--c-primary); margin-bottom: var(--s-md); }
.pillar__title { font-size: 17px; font-weight: 600; margin-bottom: var(--s-xs); font-family: var(--f-body); }
.pillar__body { font-size: 15px; color: var(--c-text-soft); margin: 0; line-height: 1.5; }

/* ---- 14. Editorial (Cooling story) ------------------------- */
.editorial__inner { display: grid; grid-template-columns: 1fr; gap: var(--s-xl); align-items: center; }
@media (min-width: 1024px) { .editorial__inner { grid-template-columns: 6fr 5fr; gap: var(--s-2xl); } }
.editorial__media { aspect-ratio: 4 / 3; background: var(--c-cream-deep); border-radius: var(--radius-md); overflow: hidden; }
.editorial__media img { width: 100%; height: 100%; object-fit: cover; }
.editorial__text p { font-size: 17px; line-height: 1.7; color: var(--c-text); }

/* ---- 15. How to order -------------------------------------- */
.how-cards { display: grid; grid-template-columns: 1fr; gap: var(--s-lg); }
@media (min-width: 768px) { .how-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .how-cards { grid-template-columns: repeat(4, 1fr); } }
.how-card { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: var(--s-lg); display: flex; flex-direction: column; }
.how-card__icon { width: 32px; height: 32px; color: var(--c-secondary); margin-bottom: var(--s-md); }
.how-card__title { font-size: 17px; font-weight: 600; margin-bottom: var(--s-sm); }
.how-card__body { font-size: 14px; color: var(--c-text-soft); line-height: 1.5; flex-grow: 1; }
.how-card__cta { margin-top: var(--s-md); font-size: 14px; font-weight: 600; color: var(--c-primary); }

/* ---- 16. Reviews ------------------------------------------- */
.reviews { display: grid; grid-template-columns: 1fr; gap: var(--s-lg); }
@media (min-width: 768px) { .reviews { grid-template-columns: 1fr 1fr 1fr; } }
.review { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: var(--s-lg); }
.review__stars { color: var(--c-accent); margin-bottom: var(--s-md); font-size: 16px; letter-spacing: 2px; }
.review__quote { font-size: 17px; line-height: 1.55; color: var(--c-text); margin-bottom: var(--s-md); }
.review__author { font-size: 14px; color: var(--c-text-soft); margin-bottom: var(--s-xs); }
.review__tag { display: inline-block; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 100px; padding: 3px 10px; color: var(--c-text-soft); }

/* ---- 17. Editorial (journal) cards ------------------------- */
.journal-cards { display: grid; grid-template-columns: 1fr; gap: var(--s-lg); }
@media (min-width: 768px) { .journal-cards { grid-template-columns: 1fr 1fr 1fr; } }
.journal-card { display: block; background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; color: var(--c-text); transition: all 0.25s; }
.journal-card:hover { text-decoration: none; box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.journal-card__media { aspect-ratio: 16 / 10; background: var(--c-cream-deep); overflow: hidden; }
.journal-card__media img { width: 100%; height: 100%; object-fit: cover; }
.journal-card__body { padding: var(--s-lg); }
.journal-card__eyebrow { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-text-soft); margin-bottom: var(--s-sm); }
.journal-card__title { font-family: var(--f-head); font-size: 22px; font-weight: 500; margin-bottom: var(--s-sm); }
.journal-card__excerpt { font-size: 15px; color: var(--c-text-soft); margin-bottom: var(--s-md); line-height: 1.5; }
.journal-card__meta { font-size: 12px; color: var(--c-text-soft); letter-spacing: 0.04em; text-transform: uppercase; }

/* ---- 18. Newsletter / WhatsApp opt-in ---------------------- */
.optins { display: grid; grid-template-columns: 1fr; gap: var(--s-xl); }
@media (min-width: 1024px) { .optins { grid-template-columns: 1fr 1fr; gap: var(--s-2xl); position: relative; }
  .optins::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--c-border); }
}
.optin h3 { font-size: 22px; margin-bottom: var(--s-sm); }
.optin p { color: var(--c-text-soft); margin-bottom: var(--s-md); }
.input-row { display: flex; flex-direction: column; gap: var(--s-sm); margin-bottom: var(--s-sm); }
@media (min-width: 600px) { .input-row { flex-direction: row; } }
.input {
  flex: 1;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--c-text);
  outline: none;
  transition: all 0.2s;
}
.input:focus { border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15); }
.input::placeholder { color: var(--c-text-soft); }
.micro { font-size: 13px; color: var(--c-text-soft); }

/* ---- 19. FAQ ----------------------------------------------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item:first-child { border-top: 1px solid var(--c-border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: var(--s-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-md);
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  cursor: pointer;
}
.faq-q__icon { flex-shrink: 0; width: 20px; height: 20px; transition: transform 0.25s; }
.faq-item.is-open .faq-q__icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.25s; }
.faq-item.is-open .faq-a { max-height: 600px; padding-bottom: var(--s-lg); }
.faq-a p { color: var(--c-text-soft); margin: 0; line-height: 1.6; }
.faq-a p + p { margin-top: var(--s-sm); }

/* ---- 20. Footer -------------------------------------------- */
.footer { background: var(--c-text); color: var(--c-surface); }
.footer__inner { padding: 64px 0 32px; display: grid; grid-template-columns: 1fr; gap: var(--s-xl); }
@media (min-width: 768px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer__inner { grid-template-columns: 2.4fr 1fr 1fr 1fr 1.4fr; } }
.footer__brand .footer__logo {
  display: inline-block;
  width: 160px; height: 36px;
  background-image: url('/assets/images/kira-logo.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  filter: brightness(0) invert(1);
  text-indent: -9999px; overflow: hidden; white-space: nowrap;
  margin-bottom: var(--s-sm);
}
.footer__brand .footer__logo .dot { display: none; }
.footer__tagline { font-family: var(--f-head); font-size: 16px; color: var(--c-border); margin-bottom: var(--s-md); }
.footer__about { font-size: 14px; color: var(--c-border); line-height: 1.5; max-width: 36ch; margin-bottom: var(--s-md); }
.footer__social { display: flex; gap: var(--s-md); }
.footer__social a { color: var(--c-border); }
.footer__social a:hover { color: var(--c-primary); text-decoration: none; }
.footer__col h5 { font-family: var(--f-body); font-size: 13px; font-weight: 600; color: var(--c-surface); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--s-md); }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-sm); }
.footer__col a { color: var(--c-border); font-size: 14px; }
.footer__col a:hover { color: var(--c-primary); text-decoration: none; }
.footer__col li span.muted { color: var(--c-text-soft); font-size: 12px; font-style: italic; }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: var(--s-lg) 0; display: flex; flex-direction: column; gap: var(--s-md); align-items: center; text-align: center; font-size: 13px; color: var(--c-border); }
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__legal a { color: var(--c-border); margin: 0 var(--s-sm); }

/* ---- 21. Sticky WhatsApp ----------------------------------- */
.wa-fab {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  animation: wa-pulse 4s ease infinite;
}
.wa-fab:hover { text-decoration: none; }
.wa-fab svg { width: 28px; height: 28px; }
@media (min-width: 768px) { .wa-fab { width: 60px; height: 60px; bottom: 24px; right: 24px; } }
@keyframes wa-pulse {
  0%, 90%, 100% { transform: scale(1); }
  95% { transform: scale(1.05); }
}

/* ---- 22. Sticky "Browse range" pill (mobile) --------------- */
.browse-pill { display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 70; background: var(--c-surface); border-bottom: 1px solid var(--c-border); padding: 12px 16px; font-size: 14px; font-weight: 600; color: var(--c-text); align-items: center; justify-content: space-between; }
.browse-pill.is-visible { display: flex; }
.browse-pill .arrow { color: var(--c-primary); }
@media (min-width: 1024px) { .browse-pill { display: none !important; } }

/* ---- 23. Promo banner -------------------------------------- */
.promo {
  border-radius: var(--radius-md);
  padding: var(--s-xl) var(--s-lg);
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
  align-items: center;
}
@media (min-width: 768px) { .promo { grid-template-columns: 2fr 1fr; padding: var(--s-2xl) var(--s-xl); } }
.promo h2 { color: #fff; margin-bottom: var(--s-sm); }
.promo p { color: rgba(255, 255, 255, 0.92); margin-bottom: 0; }
.promo .btn--primary { background: #fff; color: var(--c-primary); }
.promo .btn--primary:hover { background: var(--c-surface); color: var(--c-primary-hover); }

/* ---- 24. PDP-specific -------------------------------------- */
.pdp__head { display: grid; grid-template-columns: 1fr; gap: var(--s-xl); padding-top: var(--s-xl); padding-bottom: var(--s-xl); }
@media (min-width: 1024px) { .pdp__head { grid-template-columns: 7fr 5fr; gap: var(--s-2xl); padding-top: var(--s-2xl); padding-bottom: var(--s-2xl); } }
.pdp__gallery { display: grid; gap: var(--s-md); }
.pdp__gallery-main { aspect-ratio: 1; background: var(--c-cream-deep); border-radius: var(--radius-md); overflow: hidden; }
.pdp__gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp__gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-sm); }
.pdp__thumb { aspect-ratio: 1; background: var(--c-cream-deep); border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__sidebar { position: relative; }
@media (min-width: 1024px) { .pdp__sidebar { position: sticky; top: 96px; align-self: start; } }
.pdp__title { margin-bottom: var(--s-sm); }
.pdp__short { font-size: 17px; color: var(--c-text-soft); margin-bottom: var(--s-lg); }
.pdp__price { font-family: var(--f-head); font-size: 32px; font-weight: 500; margin-bottom: var(--s-xs); }
.pdp__variant-note { font-size: 14px; color: var(--c-text-soft); margin-bottom: var(--s-lg); }
.wtb { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: var(--s-lg); }
.wtb__cta-stack { display: flex; flex-direction: column; gap: var(--s-md); margin-bottom: var(--s-md); }
.wtb__trust { border-top: 1px solid var(--c-border); padding-top: var(--s-md); display: flex; flex-direction: column; gap: var(--s-sm); }
.wtb__trust-row { display: flex; align-items: center; gap: var(--s-sm); font-size: 14px; color: var(--c-text-soft); }
.wtb__trust-row svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--c-success); }
.wtb__future { margin-top: var(--s-md); padding-top: var(--s-md); border-top: 1px solid var(--c-border); font-size: 13px; color: var(--c-text-soft); font-style: italic; }

.pdp__body { padding-top: var(--s-xl); padding-bottom: var(--s-2xl); display: grid; grid-template-columns: 1fr; gap: var(--s-2xl); }
@media (min-width: 1024px) { .pdp__body { grid-template-columns: 7fr 5fr; gap: var(--s-2xl); } }
.pdp__long h3 { font-size: 22px; margin-top: var(--s-xl); margin-bottom: var(--s-md); }
.pdp__long h3:first-child { margin-top: 0; }
.pdp__long p { font-size: 17px; line-height: 1.7; }
.pdp__long ul { padding-left: 1.25em; }
.pdp__long ul li { margin-bottom: var(--s-sm); line-height: 1.6; }

.specs { background: var(--c-surface); border-radius: var(--radius-md); padding: var(--s-lg); }
.specs h3 { font-size: 18px; font-family: var(--f-body); margin-bottom: var(--s-md); }
.specs table { width: 100%; border-collapse: collapse; }
.specs th, .specs td { text-align: left; padding: 12px 0; font-size: 14px; border-bottom: 1px solid var(--c-border); vertical-align: top; }
.specs th { font-weight: 500; color: var(--c-text-soft); width: 42%; }
.specs tr:last-child th, .specs tr:last-child td { border-bottom: none; }

/* ---- 25. Page header (non-home pages) ---------------------- */
.page-head { padding: var(--s-2xl) 0 var(--s-xl); background: var(--c-surface); border-bottom: 1px solid var(--c-border); }
.page-head h1 { margin-bottom: var(--s-sm); }
.page-head__sub { font-size: 18px; color: var(--c-text-soft); max-width: 50em; }
.breadcrumbs { font-size: 13px; color: var(--c-text-soft); margin-bottom: var(--s-md); letter-spacing: 0.02em; }
.breadcrumbs a { color: var(--c-text-soft); }
.breadcrumbs a:hover { color: var(--c-primary); }

/* ---- 26. Category page ------------------------------------- */
.cat-filterbar { display: flex; gap: var(--s-md); flex-wrap: wrap; padding: var(--s-md) 0; border-bottom: 1px solid var(--c-border); margin-bottom: var(--s-xl); align-items: center; justify-content: space-between; }
.cat-filterbar__chips { display: flex; gap: var(--s-sm); flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--c-bg); border: 1px solid var(--c-border); border-radius: 100px; font-size: 13px; color: var(--c-text); cursor: pointer; }
.chip:hover { border-color: var(--c-text); }
.chip--active { background: var(--c-text); color: #fff; border-color: var(--c-text); }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-md); }
@media (min-width: 768px) { .product-grid { grid-template-columns: 1fr 1fr 1fr; gap: var(--s-lg); } }

/* Category Story */
.cat-story { background: var(--c-surface); padding: var(--s-2xl) 0; }
.cat-story__inner { display: grid; grid-template-columns: 1fr; gap: var(--s-xl); align-items: center; }
@media (min-width: 1024px) { .cat-story__inner { grid-template-columns: 1fr 1fr; gap: var(--s-2xl); } }
.cat-story__media { aspect-ratio: 4 / 3; background: var(--c-cream-deep); border-radius: var(--radius-md); overflow: hidden; }
.cat-story__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---- 27. About page ---------------------------------------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { font-size: 17px; line-height: 1.7; }
.prose h2 { margin-top: var(--s-2xl); }
.prose h2:first-child { margin-top: 0; }
.prose .lead { font-size: 21px; line-height: 1.5; color: var(--c-text); margin-bottom: var(--s-xl); font-family: var(--f-head); font-weight: 500; }

/* ---- 28. Image placeholders -------------------------------- */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-cream-deep) 0%, var(--c-surface) 100%);
  color: var(--c-text-soft);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: var(--s-md);
  width: 100%;
  height: 100%;
}

/* ---- 29. Utilities ----------------------------------------- */
.mt-0 { margin-top: 0; } .mt-md { margin-top: var(--s-md); } .mt-lg { margin-top: var(--s-lg); } .mt-xl { margin-top: var(--s-xl); }
.mb-0 { margin-bottom: 0; } .mb-md { margin-bottom: var(--s-md); } .mb-lg { margin-bottom: var(--s-lg); } .mb-xl { margin-bottom: var(--s-xl); }
.hidden { display: none; }

/* ---- 30. Print --------------------------------------------- */
@media print {
  .header, .footer, .wa-fab, .browse-pill, .announcement { display: none; }
  body { color: #000; background: #fff; }
}
