:root {
  --bg: #fffdfb;
  --white: #ffffff;
  --text: #221a18;
  --muted: #6e625d;
  --line: rgba(212, 180, 131, 0.25);
  --gold: #d4b483;
  --gold-deep: #b88b56;
  --pink: #f6e7eb;
  --shadow: 0 20px 60px rgba(60, 30, 20, 0.08);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(246, 231, 235, 0.6), transparent 28%),
    linear-gradient(180deg, #fffdfb 0%, #fffaf7 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p, li { color: var(--muted); line-height: 1.8; }
h1,h2,h3,h4 { margin: 0 0 14px; font-family: 'Cormorant Garamond', serif; line-height: 1.1; color: var(--text); }
h1 { font-size: clamp(2.6rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 3vw, 1.8rem); }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; position: relative; }
.alt-section { background: linear-gradient(180deg, rgba(246,231,235,0.35), rgba(255,255,255,0.85)); }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; color: var(--gold-deep); font-weight: 700; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 251, 0.84);
  border-bottom: 1px solid rgba(212, 180, 131, 0.15);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 82px; }
.brand-mark { display: inline-flex; flex-direction: column; gap: 2px; }
.brand-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: #2b1f1b; }
.brand-subtitle { font-size: .76rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-deep); }
.main-nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.main-nav a { color: var(--muted); font-weight: 600; position: relative; }
.main-nav a.active, .main-nav a:hover { color: var(--text); }
.main-nav a.active::after, .main-nav a:hover::after { content: ''; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold), #eacfd7); }
.header-cta, .btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 22px; font-weight: 700; transition: .25s ease; }
.btn-primary, .header-cta { background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: white; box-shadow: var(--shadow); }
.btn-secondary { background: white; border: 1px solid var(--line); }
.btn:hover, .header-cta:hover { transform: translateY(-2px); }
.hero-section { position: relative; overflow: hidden; padding: 110px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: center; }
.hero-subtitle { font-size: 1.2rem; color: #3b2d27; font-weight: 600; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-card .glass-card, .feature-card, .product-card, .article-card, .testimonial-card, .shipping-card, .seo-box, .admin-card, .admin-auth-card, .admin-table-wrap, .prose, .detail-image {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(212,180,131,0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card .glass-card { padding: 34px; }
.hero-points { padding-left: 18px; }
.hero-glow { position: absolute; right: -140px; top: -100px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(212,180,131,.2), transparent 70%); }
.section-heading { max-width: 720px; margin-bottom: 32px; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.card-media img { width: 100%; aspect-ratio: 1 / .8; object-fit: cover; border-radius: 24px 24px 0 0; }
.card-content { padding: 24px; }
.card-kicker { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--gold-deep); }
.card-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 18px; }
.text-link { color: var(--gold-deep); font-weight: 700; }
.feature-grid, .testimonial-grid, .shipping-grid, .admin-stat-grid { display: grid; gap: 22px; }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card, .shipping-card { padding: 24px; }
.testimonial-grid { grid-template-columns: repeat(2, 1fr); }
.testimonial-card { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 18px; align-items: center; }
.testimonial-card img { width: 120px; height: 120px; border-radius: 20px; object-fit: cover; }
.shipping-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.shipping-card { min-height: 150px; display: flex; align-items: center; justify-content: center; }
.shipping-card img { max-height: 70px; object-fit: contain; }
.site-footer { padding: 72px 0 28px; border-top: 1px solid rgba(212,180,131,0.16); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 32px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-bottom { border-top: 1px solid rgba(212,180,131,0.12); margin-top: 24px; padding-top: 24px; }
.floating-wa { position: fixed; right: 18px; bottom: 18px; z-index: 70; background: #1fad63; color: white; border-radius: 999px; padding: 14px 20px; font-weight: 700; box-shadow: var(--shadow); }
.page-hero.small { padding: 90px 0 28px; }
.search-form { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.search-form input, .admin-form-grid input, .admin-form-grid textarea, .admin-form-stack input, .admin-form-stack textarea {
  width: 100%; border: 1px solid rgba(212,180,131,0.28); border-radius: 16px; padding: 14px 16px; background: white; font: inherit;
}
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.detail-image { padding: 14px; }
.detail-image img { border-radius: 20px; aspect-ratio: 1/1; object-fit: cover; }
.price { font-size: 2rem; color: var(--gold-deep); font-weight: 800; }
.seo-box { padding: 24px; margin-top: 24px; }
.prose { padding: 34px; }
.prose a { color: var(--gold-deep); text-decoration: underline; }
.hero-article-image { margin: 22px 0; border-radius: 24px; width: 100%; max-height: 420px; object-fit: cover; }
.site-popup { position: fixed; inset: 0; background: rgba(33, 23, 20, 0.45); display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 80; }
.site-popup.hidden { display: none; }
.site-popup-box { position: relative; max-width: 460px; padding: 28px; }
.popup-close { position: absolute; right: 14px; top: 10px; background: transparent; border: 0; font-size: 1.8rem; cursor: pointer; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.parallax-panel { background-attachment: fixed; }
.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar { padding: 28px; border-right: 1px solid rgba(212,180,131,0.16); background: rgba(255,253,251,0.95); display: flex; flex-direction: column; gap: 20px; }
.admin-sidebar nav { display: grid; gap: 10px; }
.admin-sidebar nav a { padding: 12px 14px; border-radius: 14px; font-weight: 600; }
.admin-sidebar nav a:hover { background: rgba(212,180,131,0.14); }
.admin-main { padding: 32px; }
.admin-stat-grid { grid-template-columns: repeat(4, 1fr); margin-bottom: 22px; }
.admin-card { padding: 24px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { text-align: left; padding: 16px; border-bottom: 1px solid rgba(212,180,131,0.14); vertical-align: top; }
.table-actions { display: flex; gap: 12px; align-items: center; }
.danger-btn { background: transparent; border: 0; padding: 0; cursor: pointer; color: #b24a4a; font-weight: 700; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 20px; }
.admin-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.admin-form-grid label, .admin-form-stack label { display: grid; gap: 8px; font-weight: 600; color: var(--text); }
.admin-form-grid .full { grid-column: 1 / -1; }
.checkbox-label { display: flex !important; align-items: center; gap: 10px; }
.checkbox-label input { width: auto !important; }
.admin-auth-wrap { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.admin-auth-card { width: min(460px, 100%); padding: 34px; }
.center-brand { align-items: center; width: 100%; margin-bottom: 12px; }
.alert-error { color: #b24a4a; background: #fff2f2; padding: 12px 14px; border-radius: 14px; }
@media (max-width: 980px) {
  .hero-grid, .detail-grid, .footer-grid, .feature-grid, .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { border-right: 0; border-bottom: 1px solid rgba(212,180,131,0.16); }
  .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header-inner { flex-direction: column; padding: 16px 0; }
  .two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .testimonial-grid, .shipping-grid, .admin-form-grid { grid-template-columns: 1fr; }
  .testimonial-card { grid-template-columns: 1fr; }
  .card-media img { aspect-ratio: 1 / .95; }
  .card-content { padding: 16px; }
  .card-content h3 { font-size: 1.05rem; line-height: 1.25; }
  .card-content p { font-size: 0.92rem; line-height: 1.6; }
  .card-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-section { padding-top: 70px; }
}
==============================================================================================================
@media (max-width: 768px) {

  .site-header {
    padding: 6px 0;
  }

  .header-inner {
    min-height: auto;
    gap: 8px;
  }

  .brand-title {
    font-size: 1.5rem;
  }

  .brand-subtitle {
    font-size: .65rem;
    letter-spacing: .18em;
  }

  .main-nav {
    gap: 12px;
    font-size: 0.9rem;
  }

  .main-nav a {
    padding: 4px 0;
  }

  .header-cta {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

}
========================
@media (max-width: 768px) {

  .page-hero.small {
    padding-top: 40px;
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

}
