/* ============================================================
   KEKONDANGANKU v3 — WARM LUXURY
   Palette  : Parchment · Deep Ink · Champagne Gold · Blush
   Feel     : High-end bridal magazine, warm & legible
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  /* Neutrals */
  --ink:         #1d1a17;
  --ink-soft:    #3b3630;
  --warm-700:    #6b6459;
  --warm-400:    #a89f96;
  --warm-200:    #e8e2da;
  --warm-100:    #f4f0eb;
  --parchment:   #faf7f3;
  --white:       #ffffff;

  /* Gold */
  --gold:        #c9a14a;
  --gold-light:  #e8cc82;
  --gold-pale:   #fdf4df;
  --gold-dark:   #9a7530;

  /* Blush accent */
  --blush:       #d4908a;
  --blush-pale:  #fcf0ee;

  /* Surfaces */
  --surface-1:   var(--white);
  --surface-2:   var(--parchment);
  --surface-3:   var(--warm-100);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Borders */
  --border:      var(--warm-200);
  --border-gold: rgba(201, 161, 74, 0.30);

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  /* Shadow */
  --shadow-xs:   0 1px 4px rgba(29,26,23,0.06);
  --shadow-sm:   0 2px 12px rgba(29,26,23,0.08);
  --shadow-md:   0 8px 32px rgba(29,26,23,0.10);
  --shadow-gold: 0 4px 24px rgba(201,161,74,0.22);

  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-body);
  background: var(--surface-2);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; }
.container { max-width:1160px; margin:0 auto; padding:0 28px; }

/* ────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */

/* Primary — gold filled */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  padding: 13px 30px;
  border: 1.5px solid var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Secondary — ink outlined */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink-soft);
  padding: 12px 26px;
  border: 1.5px solid var(--warm-200);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-pale);
}

/* Ghost — no border, text only with arrow */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--warm-700);
  padding: 10px 0;
  border: none;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.btn-ghost:hover { color: var(--gold-dark); }
.btn-ghost:hover::after { transform: scaleX(1); }

.btn-lg  { padding: 15px 36px; font-size: 0.88rem; }
.btn-full { width:100%; justify-content:center; }

/* ────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,247,243,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { font-size: 1.3rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.logo-text em { font-style:italic; color:var(--gold-dark); }

.nav-menu {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 7px 16px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--warm-700);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink); background: var(--warm-100); }
.nav-link.active { color: var(--gold-dark); background: var(--gold-pale); }

.nav-actions { display:flex; align-items:center; gap:10px; flex-shrink:0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  background: var(--white);
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Soft parchment gradient right panel */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 48%;
  height: 100%;
  background: linear-gradient(160deg, var(--parchment) 0%, var(--warm-100) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Left */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.eyebrow-line { width:32px; height:1px; background:var(--gold); }
.eyebrow-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.hero-title em { font-style:italic; color:var(--gold-dark); }

.hero-desc {
  font-size: 1rem;
  color: var(--warm-700);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-cta { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:48px; }

.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-item { display:flex; flex-direction:column; gap:3px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-400);
}

/* Right: Invitation Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.inv-card {
  width: 300px;
  background: var(--white);
  border: 1px solid var(--warm-200);
  box-shadow: var(--shadow-md), 0 0 0 8px rgba(232,226,218,0.4);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  animation: floatCard 5s ease-in-out infinite;
  border-radius: 2px;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0) rotate(-0.8deg); }
  50%      { transform: translateY(-12px) rotate(-0.8deg); }
}

/* Corner ornaments */
.inv-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}
.inv-corner-tl { top:14px; left:14px; border-width:1px 0 0 1px; }
.inv-corner-tr { top:14px; right:14px; border-width:1px 1px 0 0; }
.inv-corner-bl { bottom:14px; left:14px; border-width:0 0 1px 1px; }
.inv-corner-br { bottom:14px; right:14px; border-width:0 1px 1px 0; }

.inv-arab {
  font-size: 0.82rem;
  color: var(--warm-700);
  line-height: 2;
  margin-bottom: 16px;
}
.inv-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.75rem;
  margin: 12px 0;
}
.inv-divider::before, .inv-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}
.inv-names {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.25;
}
.inv-names em { font-style:italic; color:var(--gold-dark); }
.inv-sub {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-400);
  margin: 10px 0 4px;
}
.inv-date {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Floating chips */
.inv-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.chip-dot { width:8px; height:8px; background:var(--gold); border-radius:50%; flex-shrink:0; }
.chip-1 { top:10%; right:-34%; animation: floatCard 5.5s ease-in-out infinite 0.3s; }
.chip-2 { bottom:12%; left:-34%; animation: floatCard 6s ease-in-out infinite 1.2s; }

/* ────────────────────────────────────────
   SECTION COMMONS
───────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.section-label::before { content:''; width:22px; height:1px; background:var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title em { font-style:italic; color:var(--gold-dark); }

.section-desc {
  font-size: 0.93rem;
  color: var(--warm-700);
  max-width: 500px;
  line-height: 1.8;
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header .section-label { justify-content:center; }
.section-header .section-desc  { margin:0 auto; }
.section-cta { text-align:center; margin-top:44px; }

/* ────────────────────────────────────────
   THEMES GRID — HOME
───────────────────────────────────────── */
.section-themes {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.theme-card {
  background: var(--parchment);
  border: 1px solid var(--warm-200);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.theme-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.theme-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.theme-emoji { font-size: 2.8rem; transition: transform var(--transition); }
.theme-card:hover .theme-emoji { transform: scale(1.1); }

.theme-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29,26,23,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.theme-card:hover .theme-overlay { opacity:1; }
.btn-preview {
  background: var(--gold);
  color: var(--ink);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition);
}
.btn-preview:hover { transform: scale(1.05); }

.theme-info { padding: 14px 16px 16px; }
.theme-cat {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
.theme-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: 3px;
}

/* ────────────────────────────────────────
   QUOTE STRIP
───────────────────────────────────────── */
.section-quote {
  padding: 72px 0;
  background: var(--gold-pale);
  border-top: 1px solid rgba(201,161,74,0.25);
  border-bottom: 1px solid rgba(201,161,74,0.25);
  text-align: center;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--gold);
  display: block;
  line-height: 0.6;
  margin-bottom: 20px;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.55;
}
.quote-author {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-400);
}

/* ────────────────────────────────────────
   CATEGORIES
───────────────────────────────────────── */
.section-categories { padding: 100px 0; background: var(--parchment); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--transition);
}
.cat-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
  background: var(--gold-pale);
}
.cat-icon {
  font-size: 1.8rem;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-100);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  transition: background var(--transition);
}
.cat-card:hover .cat-icon { background: rgba(201,161,74,0.12); }
.cat-info h3 { font-size: 0.9rem; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.cat-info p  { font-size: 0.78rem; color: var(--warm-400); font-weight: 300; }

/* ────────────────────────────────────────
   WHY US
───────────────────────────────────────── */
.section-why {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.why-card {
  padding: 32px 28px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); background: var(--white); }
.why-card:hover::before { transform: scaleX(1); }

.why-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--warm-200);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
  transition: color var(--transition);
}
.why-card:hover .why-num { color: var(--gold-light); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.86rem; color: var(--warm-700); line-height: 1.75; font-weight: 300; }

/* ────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
.section-cta-banner { padding: 80px 0; background: var(--parchment); }

.cta-banner {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 56px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201,161,74,0.15);
  border-radius: calc(var(--r-xl) - 8px);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--parchment);
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-banner h2 em { font-style:italic; color:var(--gold-light); }
.cta-banner p { font-size: 0.9rem; color: rgba(250,247,243,0.5); font-weight: 300; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.btn-primary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  padding: 14px 32px;
  border: 1.5px solid var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-primary-light:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: rgba(250,247,243,0.6);
  padding: 12px 28px;
  border: 1px solid rgba(250,247,243,0.2);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); }

/* ────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
  background: var(--white);
  padding: 80px 28px 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-hero h1 em { font-style:italic; color:var(--gold-dark); }
.page-hero p {
  font-size: 0.93rem;
  color: var(--warm-700);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

/* Search */
.search-box {
  display: flex;
  max-width: 480px;
  margin: 28px auto 0;
  border: 1.5px solid var(--warm-200);
  border-radius: 100px;
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition);
  box-shadow: var(--shadow-xs);
}
.search-box:focus-within { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 22px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
}
.search-box input::placeholder { color: var(--warm-400); }
.search-btn {
  background: var(--gold);
  border: none;
  padding: 0 22px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  transition: background var(--transition);
}
.search-btn:hover { background: var(--gold-dark); color: var(--white); }

/* ────────────────────────────────────────
   TEMA PAGE
───────────────────────────────────────── */
.tema-section { padding: 60px 0 100px; background: var(--surface-2); }

/* Filter pills */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.filter-bar-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-400);
  display: flex;
  align-items: center;
  margin-right: 4px;
  align-self: center;
  white-space: nowrap;
}
.filter-accordion {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--transition);
}
.filter-accordion[open] { border-color: var(--gold); }
.filter-accordion summary {
  padding: 9px 16px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--warm-700);
  list-style: none;
  user-select: none;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.filter-accordion summary::-webkit-details-marker { display:none; }
.filter-accordion summary::after { content:'▾'; font-size:0.65rem; margin-left:auto; transition: transform var(--transition); }
.filter-accordion[open] summary::after { transform: rotate(180deg); }
.filter-accordion[open] summary { color: var(--gold-dark); }
.filter-options {
  padding: 14px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border);
  background: var(--warm-100);
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  transition: all var(--transition);
}
.filter-check:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-check input { accent-color: var(--gold); width:13px; height:13px; }
.color-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 300;
  cursor: pointer;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  transition: all var(--transition);
}
.color-chip:hover { border-color: var(--gold); }
.color-chip input { display:none; }
.chip-dot { width:10px; height:10px; border-radius:50%; flex-shrink:0; border: 1px solid rgba(0,0,0,0.1); }

.themes-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.theme-card-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.theme-card-full:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.theme-thumb-full {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.theme-emoji-lg { font-size: 3.5rem; transition: transform var(--transition); }
.theme-card-full:hover .theme-emoji-lg { transform: scale(1.08); }
.theme-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}
.theme-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}
.theme-name-text { font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: var(--ink); }
.btn-preview-sm {
  background: var(--warm-100);
  border: 1px solid var(--border);
  color: var(--warm-700);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-preview-sm:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ────────────────────────────────────────
   PORTOFOLIO PAGE
───────────────────────────────────────── */
.porto-section { padding: 60px 0 100px; background: var(--surface-2); }

.porto-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: var(--r-md);
  width: fit-content;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: calc(var(--r-md) - 4px);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border: none;
  color: var(--warm-700);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.filter-btn:hover { background: var(--warm-100); color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--parchment); }

.porto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.porto-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.porto-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.porto-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.porto-emoji { font-size: 3rem; }
.porto-info { padding: 12px 16px; border-top: 1px solid var(--border); }
.porto-cat-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); font-weight: 500; display:block; margin-bottom:3px; }
.porto-name { font-family: var(--font-display); font-size: 0.97rem; font-weight: 400; color: var(--ink); line-height: 1.3; }

/* ────────────────────────────────────────
   ORDER PAGE
───────────────────────────────────────── */
.order-section { padding: 60px 0 100px; background: var(--surface-2); }

.category-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}

.cat-order-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 16px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cat-order-btn .cat-order-icon { font-size: 1.8rem; display:block; }
.cat-order-btn:hover { border-color: var(--gold); background: var(--gold-pale); color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.order-form-wrap { max-width: 620px; margin: 0 auto; }

.form-page-header { margin-bottom: 40px; }
.form-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 10px;
}
.form-title em { font-style:italic; color:var(--gold-dark); }
.form-page-header p { font-size: 0.9rem; color: var(--warm-700); font-weight:300; line-height:1.7; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 32px;
}
.form-body { display:flex; flex-direction:column; gap:20px; }

.form-section-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-pale);
  margin-top: 8px;
}

.form-group { display:flex; flex-direction:column; gap:7px; }
.form-group label {
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.required { color: var(--blush); margin-left:2px; }
.optional { font-size: 0.72rem; color: var(--warm-400); font-weight:300; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--warm-200);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,161,74,0.12); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--warm-400); }

/* ────────────────────────────────────────
   PORTAL — LOGIN
───────────────────────────────────────── */
.portal-wrap {
  min-height: 100vh;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background-image: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201,161,74,0.06) 0%, transparent 70%);
}
.portal-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-md);
}
.portal-logo-wrap { text-align:center; margin-bottom:36px; }
.portal-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
}
.portal-logo-text em { font-style:italic; color:var(--gold-dark); }
.portal-subtitle {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-400);
  margin-top: 6px;
}
.portal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.portal-divider-line { flex:1; height:1px; background: var(--border); }
.portal-divider-text { font-size: 0.7rem; color: var(--warm-400); letter-spacing: 0.1em; white-space: nowrap; }
.portal-form { display:flex; flex-direction:column; gap:16px; }
.portal-note { text-align:center; font-size:0.8rem; color:var(--warm-400); font-weight:300; margin-top:6px; }
.portal-note a { color: var(--gold-dark); font-weight:500; }
.alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #b91c1c;
  margin-bottom: 16px;
}
.input-password { position:relative; }
.input-password input { padding-right: 48px; }
.toggle-pass {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--warm-400);
  transition: color var(--transition);
}
.toggle-pass:hover { color: var(--warm-700); }

/* ────────────────────────────────────────
   DASHBOARD
───────────────────────────────────────── */
.dash-body {
  background: var(--surface-2);
  min-height: 100vh;
  display: flex;
  font-family: var(--font-body);
}

.sidebar {
  width: 248px;
  background: var(--ink);
  min-height: 100vh;
  position: fixed;
  top: 0; left: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.sidebar-logo-wrap {
  padding: 28px 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sidebar-logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--parchment);
}
.sidebar-logo-name em { font-style:italic; color:var(--gold-light); }
.sidebar-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,243,0.25);
  margin-top: 4px;
}
.sidebar-section {
  font-size: 0.59rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,243,0.2);
  padding: 20px 24px 6px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(250,247,243,0.45);
  transition: all var(--transition);
  position: relative;
  letter-spacing: 0.01em;
}
.sidebar-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 0 2px 2px 0;
}
.sidebar-link:hover { color: var(--parchment); background: rgba(250,247,243,0.05); }
.sidebar-link.active { color: var(--gold-light); background: rgba(201,161,74,0.08); }
.sidebar-link.active::before { opacity: 1; }
.sidebar-icon { width: 18px; text-align: center; font-size: 0.95rem; opacity: 0.7; }

.dash-main { margin-left: 248px; flex: 1; }

.dash-topbar {
  background: var(--white);
  padding: 0 36px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.dash-topbar-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ink);
}
.account-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--warm-700);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--parchment);
}
.account-chip:hover { border-color: var(--gold); color: var(--gold-dark); }

.dash-content { padding: 36px; }

.dash-welcome { margin-bottom: 28px; }
.dash-welcome h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--ink);
}
.dash-welcome h2 em { font-style:italic; color:var(--gold-dark); }
.dash-welcome p { font-size: 0.85rem; color: var(--warm-400); font-weight:300; margin-top:4px; }

/* Countdown */
.countdown-card {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.countdown-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,161,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.countdown-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,247,243,0.35); margin-bottom: 8px; }
.countdown-value { font-family: var(--font-display); font-size: 1rem; font-weight: 300; color: var(--gold-light); letter-spacing: 0; text-transform: none; }
.countdown-timer { display:flex; gap:20px; flex-shrink:0; }
.time-block { text-align:center; }
.time-block span { display:block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--parchment); line-height:1; }
.time-block small { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,247,243,0.3); margin-top:4px; display:block; }

/* Stats */
.stats-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
}
.stat-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.stat-card-icon { font-size: 1.5rem; margin-bottom: 14px; opacity: 0.55; }
.stat-card-value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.stat-card-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-400); margin-top: 6px; font-weight: 500; }

/* ────────────────────────────────────────
   404
───────────────────────────────────────── */
.page-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: var(--parchment);
}
.page-404-num {
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 300;
  color: var(--warm-200);
  line-height: 1;
  letter-spacing: -4px;
  margin-bottom: 12px;
}
.page-404 h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--ink); margin-bottom: 12px; }
.page-404 p  { font-size: 0.93rem; color: var(--warm-700); margin-bottom: 32px; font-weight:300; }

/* ────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}
.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--parchment);
}
.footer-brand em { font-style:italic; color:var(--gold-light); }
.footer-copy { font-size: 0.75rem; color: rgba(250,247,243,0.28); margin-top: 4px; }
.footer-social { display:flex; gap:10px; }
.social-link {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(250,247,243,0.4);
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-links { display:flex; gap:20px; }
.footer-links a { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,247,243,0.28); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }

/* ────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fade-up { opacity:0; animation: fadeUp 0.65s ease forwards; }
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }
.delay-4 { animation-delay: 0.32s; }

/* ────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .themes-grid      { grid-template-columns: repeat(3,1fr); }
  .themes-grid-full { grid-template-columns: repeat(3,1fr); }
  .porto-grid       { grid-template-columns: repeat(3,1fr); }
  .why-grid         { grid-template-columns: repeat(2,1fr); }
  .cta-banner       { grid-template-columns: 1fr; gap: 28px; padding: 48px 40px; }
  .cta-actions      { flex-direction: row; }
  .category-list    { grid-template-columns: repeat(2,1fr); }
  .stats-grid       { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .hero-content     { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual      { order: -1; }
  .hero-cta         { justify-content: center; }
  .hero-eyebrow     { justify-content: center; }
  .hero-title, .hero-desc { text-align: center; }
  .hero-desc        { margin-left:auto; margin-right:auto; }
  .hero-stats       { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .chip-1, .chip-2  { display: none; }

  .categories-grid  { grid-template-columns: repeat(2,1fr); }
  .themes-grid      { grid-template-columns: repeat(2,1fr); }
  .themes-grid-full { grid-template-columns: repeat(2,1fr); }
  .porto-grid       { grid-template-columns: repeat(2,1fr); }
  .why-grid         { grid-template-columns: 1fr; }

  .nav-menu { display:none; position:fixed; top:68px; left:0; right:0; background:var(--white); border-bottom:1px solid var(--border); flex-direction:column; gap:2px; padding:10px; z-index:200; box-shadow:var(--shadow-md); }
  .nav-menu.open { display:flex; }
  .nav-actions { display:none; }
  .hamburger { display:flex; }

  .sidebar { display:none; }
  .dash-main { margin-left:0; }
  .stats-grid { grid-template-columns: 1fr; }
  .countdown-card { flex-direction:column; align-items:flex-start; }

  .cta-actions { flex-direction:column; }
  .section-header { margin-bottom: 36px; }
  .portal-box { padding: 40px 28px; }
  .form-card { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .themes-grid, .themes-grid-full, .porto-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .category-list   { grid-template-columns: 1fr; }
  .porto-tabs { flex-wrap: wrap; }
  .cta-banner { padding: 36px 24px; border-radius: var(--r-md); }
  .filter-bar { flex-direction:column; gap:6px; }
}

/* ════════════════════════════════════════════
   KATALOG TEMA — PUNAKAWAN-INSPIRED
   ════════════════════════════════════════════ */

/* Section wrapper */
.katalog-section {
  padding: 48px 0 100px;
  background: var(--surface-2);
}

/* ── Tab strip ── */
.kat-tabs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.kat-tabs-wrap::-webkit-scrollbar { display: none; }

.kat-tabs {
  display: flex;
  gap: 6px;
  min-width: max-content;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 6px;
  margin-bottom: 20px;
}

.kat-tab {
  padding: 10px 20px;
  border: none;
  border-radius: calc(var(--r-lg) - 4px);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--warm-700);
  background: transparent;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.kat-tab:hover { background: var(--warm-100); color: var(--ink); }
.kat-tab.active {
  background: var(--ink);
  color: var(--parchment);
  box-shadow: 0 2px 8px rgba(29,26,23,0.18);
}

/* ── Info strip ── */
.kat-info-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  padding: 12px 20px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,161,74,0.25);
  border-radius: var(--r-md);
  margin-bottom: 32px;
}
.kat-strip-item {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gold-dark);
  white-space: nowrap;
}
.kat-strip-sep {
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.6;
}

/* ── Theme grid ── */
.tema-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── Single card ── */
.tema-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  /* reveal animation state */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease,
              box-shadow 0.28s cubic-bezier(0.4,0,0.2,1),
              border-color 0.28s cubic-bezier(0.4,0,0.2,1);
}
.tema-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.tema-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

/* Thumbnail */
.tema-thumb {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tema-emoji {
  font-size: 3.5rem;
  transition: transform 0.35s ease;
  line-height: 1;
}
.tema-card:hover .tema-emoji { transform: scale(1.1); }

/* Badges */
.tema-badge-new {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--blush, #d4908a);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
}
.tema-badge-disc {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 100px;
}

/* Body */
.tema-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.tema-code {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.tema-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

/* Pricing */
.tema-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
}
.tema-price-ori {
  font-size: 0.78rem;
  color: var(--warm-400);
  text-decoration: line-through;
  font-weight: 300;
}
.tema-price-disc {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blush, #c0504d);
}

/* Feature list */
.tema-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 4px 0 6px;
}
.tema-features li {
  font-size: 0.76rem;
  color: var(--warm-700);
  font-weight: 300;
  line-height: 1.4;
}

/* Actions */
.tema-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}
.btn-tema-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 6px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--warm-700);
  background: var(--warm-100);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-tema-preview:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-pale);
}
.btn-tema-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 6px;
  border: 1.5px solid var(--gold);
  border-radius: var(--r-sm);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--gold);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-tema-order:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* ── CTA bottom strip ── */
.kat-cta-strip {
  background: var(--ink);
  padding: 48px 0;
}
.kat-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.kat-cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--parchment);
  margin-bottom: 4px;
}
.kat-cta-inner p {
  font-size: 0.88rem;
  color: rgba(250,247,243,0.5);
  font-weight: 300;
}
.kat-cta-inner p strong { color: var(--gold-light); font-weight: 500; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .tema-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .tema-grid { grid-template-columns: repeat(2, 1fr); }
  .kat-cta-inner { flex-direction: column; text-align: center; }
  .kat-info-strip { justify-content: center; }
}
@media (max-width: 480px) {
  .tema-grid { grid-template-columns: 1fr 1fr; }
  .tema-actions { grid-template-columns: 1fr; }
  .tema-thumb { height: 140px; }
  .tema-emoji { font-size: 2.8rem; }
}
