/* ── Variables ── */
:root {
  --gold: #C9956C; --gold2: #E8C9A0; --rose: #B5485E;
  --blush: #E8B4B8; --dark: #1C0D10; --cream: #FDF8F5;
  --ivory: #F7F0EC; --pearl: #FAF5F0; --grey: #9A8A85;
  --muted: #7A6A65; --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --radius: 12px; --shadow: 0 4px 24px rgba(28,13,16,.08);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--dark); font-size: 15px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  background: rgba(253,248,245,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,149,108,.15);
}
.nav-brand { font-family: var(--font-serif); font-size: 1.5rem; }
.brand-allena { color: var(--dark); font-weight: 600; }
.brand-picks { color: var(--gold); font-weight: 300; font-style: italic; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: .05em; color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-mua { color: var(--rose) !important; border: 1px solid var(--rose); padding: 6px 14px; border-radius: 20px; }
.nav-mua:hover { background: var(--rose); color: var(--white) !important; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.3rem; cursor: pointer; }

/* ── Hero ── */
.hero {
  padding: 80px 32px 64px;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--pearl) 50%, var(--cream) 100%);
  text-align: center;
}
.hero-inner { max-width: 640px; margin: 0 auto; }
.hero-tag { font-size: 13px; font-weight: 500; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.hero h1 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; line-height: 1.2; margin-bottom: 16px; }
.hero h1 em { color: var(--rose); font-style: italic; }
.hero-sub { color: var(--muted); font-size: 15px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block; padding: 12px 28px;
  background: var(--gold); color: var(--white);
  border-radius: 30px; font-size: 14px; font-weight: 500;
  transition: background .2s, transform .1s;
}
.btn-primary:hover { background: var(--rose); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; padding: 12px 28px;
  border: 1.5px solid var(--gold); color: var(--gold);
  border-radius: 30px; font-size: 14px; font-weight: 500;
  transition: all .2s;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-shopee {
  display: inline-block; padding: 10px 18px;
  background: #EE4D2D; color: var(--white);
  border-radius: 8px; font-size: 13px; font-weight: 500;
  transition: opacity .2s; flex: 1; text-align: center;
}
.btn-shopee:hover { opacity: .88; }
.btn-yt {
  display: inline-block; padding: 10px 14px;
  background: #FF0000; color: var(--white);
  border-radius: 8px; font-size: 13px; font-weight: 500;
  transition: opacity .2s;
}
.btn-yt:hover { opacity: .88; }

/* ── Section ── */
.section { padding: 64px 32px; }
.section-alt { background: var(--ivory); }
.section-yt { background: linear-gradient(135deg, var(--dark) 0%, #3a1520 100%); color: var(--white); text-align: center; }
.section-yt h2 { font-family: var(--font-serif); font-size: 2rem; margin: 12px 0; color: var(--gold2); }
.section-yt p { color: rgba(255,255,255,.7); margin-bottom: 24px; }
.yt-tag { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--blush); }
.section-title { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 720px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* ── Category Grid ── */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.category-card {
  display: block; padding: 32px 24px; background: var(--white);
  border-radius: var(--radius); text-align: center; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.category-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(28,13,16,.12); }
.cat-icon { font-size: 2rem; margin-bottom: 12px; }
.category-card h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 6px; color: var(--dark); }
.category-card p { font-size: 13px; color: var(--muted); }

/* ── Product Grid ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card {
  position: relative; background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(28,13,16,.12); }
.badge {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  padding: 4px 10px; background: var(--rose); color: var(--white);
  border-radius: 20px; font-size: 11px; font-weight: 600;
}
.product-img-wrap { background: var(--ivory); height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-placeholder {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 2rem; color: var(--white); font-weight: 600;
}
.product-info { padding: 16px; }
.product-cat { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.product-info h3 { font-size: 14px; font-weight: 600; margin: 6px 0 4px; line-height: 1.3; }
.product-info h4 { font-size: 14px; font-weight: 600; margin: 6px 0 4px; }
.product-tagline { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.product-desc { font-size: 12px; color: var(--muted); margin-bottom: 10px; line-height: 1.5; }
.product-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.tag { font-size: 10px; padding: 2px 8px; background: var(--ivory); border-radius: 10px; color: var(--muted); }
.product-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.rating { font-size: 12px; color: var(--gold); font-weight: 600; }
.sold { font-size: 11px; color: var(--grey); }
.price { font-size: 14px; font-weight: 700; color: var(--rose); margin-left: auto; }
.product-actions { display: flex; gap: 8px; }
.product-card-inline { box-shadow: none; border: 1.5px solid var(--ivory); }

/* ── Articles ── */
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 32px; }
.article-grid-full .article-card { max-width: 100%; }
.article-card {
  display: block; padding: 28px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform .2s; border-left: 3px solid transparent;
}
.article-card:hover { transform: translateY(-3px); border-left-color: var(--gold); }
.article-cat { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.article-card h2, .article-card h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 8px; line-height: 1.4; }
.article-card p { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.article-footer { display: flex; justify-content: space-between; align-items: center; }
.article-meta { font-size: 11px; color: var(--grey); }
.read-more { font-size: 12px; color: var(--gold); font-weight: 500; }

/* ── Page Header ── */
.page-header { padding: 48px 32px 32px; background: var(--ivory); text-align: center; }
.page-header h1 { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; margin: 8px 0; }
.page-header p { color: var(--muted); }

/* ── Filter Tabs ── */
.filter-tabs { display: flex; gap: 8px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.tab { padding: 8px 20px; border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--muted); border: 1px solid rgba(201,149,108,.3); transition: all .2s; }
.tab.active, .tab:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ── Article Body ── */
.article-body { margin-bottom: 32px; }
.article-body p { color: var(--dark); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.article-body h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--rose); margin: 24px 0 8px; }
.article-yt-cta {
  background: var(--dark); color: var(--white);
  border-radius: var(--radius); padding: 24px; text-align: center; margin: 32px 0;
}
.article-yt-cta p { color: var(--blush); margin-bottom: 12px; }
.related-product { margin: 32px 0; }
.related-product h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 16px; }
.article-nav { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--ivory); margin-top: 32px; font-size: 13px; color: var(--gold); font-weight: 500; }

/* ── Footer ── */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 48px 32px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { margin-bottom: 24px; }
.footer-brand .brand-allena { color: var(--white); }
.footer-brand .brand-picks { color: var(--gold); }
.footer-brand p { font-size: 13px; margin-top: 8px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-note { font-size: 11px; color: rgba(255,255,255,.35); line-height: 1.6; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--cream); padding: 20px; box-shadow: var(--shadow); gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 48px 20px 40px; }
  .section { padding: 40px 20px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .page-header { padding: 32px 20px 24px; }
  .filter-tabs { gap: 6px; }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}
