/* ============================================
   NELLY JAYA – Shared Stylesheet
   ============================================ */

:root {
  --accent: #4d6dd6;
  --accent-dark: #2045a5;
  --accent-light: #f5ebe0;
  --off-white: #f8f6f3;
  --border: #e2ddd6;
  --text: #091349;
  --text-muted-custom: #9a9590;
}

body { font-family: 'DM Sans', sans-serif; color: var(--text); background: #fff; }
h1, h2, h3, .font-serif { font-family: 'Playfair Display', serif; }

/* ---- NAVBAR ---- */
.navbar { background: rgba(255,255,255,0.93) !important; backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.navbar-brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text) !important; }
.navbar-brand .dot { color: var(--accent); }
.nav-link { color: var(--text) !important; font-weight: 500; font-size: .9rem; }
.nav-link:hover, .nav-link.active-link { color: var(--accent) !important; }
.search-box { background: var(--off-white); border: 1px solid var(--border); border-radius: 24px; padding: 6px 16px; display: flex; align-items: center; gap: 8px; }
.search-box input { border: none; background: transparent; outline: none; font-size: .875rem; width: 180px; }

/* ---- BUTTONS ---- */
.btn-accent { background: var(--accent); color: #fff; border: none; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,118,58,.3); }
.btn-outline-accent { border: 1.5px solid var(--border); color: var(--text); background: transparent; }
.btn-outline-accent:hover { border-color: var(--accent); color: var(--accent); }

/* ---- PRODUCT CARD ---- */
.prod-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: .25s; background: #fff; }
.prod-card:hover { box-shadow: 0 12px 40px rgba(44,40,32,.12); transform: translateY(-4px); }
.prod-img { aspect-ratio: 4/3; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; }
.prod-badge { position: absolute; top: 10px; left: 10px; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.prod-cat-label { font-size: .75rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.prod-price { font-size: 1.05rem; font-weight: 700; }
.prod-unit { font-size: .78rem; color: var(--text-muted-custom); font-weight: 400; }

/* ---- WHY CARD ---- */
.why-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; height: 100%; }
.why-icon { font-size: 2rem; }

/* ---- FOOTER ---- */
footer { background: var(--text); color: rgba(255,255,255,.7); }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff; }
footer h5 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
footer a { color: var(--accent); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-divider { border-color: rgba(255,255,255,.1); }

/* ---- MISC ---- */
.section-bg { background: var(--off-white); }
.breadcrumb-item a { color: var(--accent); text-decoration: none; }
.breadcrumb-item.active { color: var(--text-muted-custom); }
