/* ============================================================
   PATHBERIYA — SHARED PAGE STYLES
   Shared by all inner pages. Do not edit per-page CSS here.
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; font-weight: 300; color: #1D1D1D; background: #fff; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── TOKENS ── */
:root {
  --gold:        #CEBA70;
  --gold-dark:   #817444;
  --gold-light:  #F3E1A1;
  --black:       #1D1D1D;
  --grey-dark:   #3D3D3D;
  --grey-mid:    #8C8C8C;
  --grey-light:  #CBCBCB;
  --cream:       #F5F3EE;
  --border:      0.5px solid rgba(206,186,112,0.22);
  --border-mid:  0.5px solid rgba(206,186,112,0.4);
  --border-grey: 0.5px solid #CBCBCB;
}

/* ── HEADER ── */
.hdr { position: sticky; top: 0; z-index: 200; background: #fff; border-bottom: var(--border); transition: box-shadow .3s; }
.hdr.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem; height: 70px; max-width: 1400px; margin: 0 auto; }
.logo-text { display: inline-block; line-height: 0; }
.logo-text img { max-height: 38px; width: auto; display: block; margin-left: 20px; }
.nav-list { display: flex; align-items: center; }
.nav-link { font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--black); padding: .55rem 1.1rem; position: relative; transition: color .2s; }
.nav-link::after { content:''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.nav-link:hover::after, .nav-link.active::after { width: 55%; }
.nav-link:hover, .nav-link.active { color: var(--gold-dark); }
.hdr-icons { display: flex; align-items: center; gap: 2px; }
.icon-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: none; color: var(--black); position: relative; transition: color .2s; }
.icon-btn:hover { color: var(--gold); }
.icon-btn svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cart-badge { position: absolute; top: 5px; right: 5px; width: 15px; height: 15px; background: var(--gold); color: var(--black); font-size: .52rem; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ── UTILITY ── */
.pg-label { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }

/* ── FOOTER ── */
.footer { background: var(--black); border-top: var(--border); }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; max-width: 1400px; margin: 0 auto; padding: 4rem 2.5rem 3rem; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.4rem; color: var(--gold-light); display: block; margin-bottom: .2rem; }
.footer-brand-sub { font-size: .6rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.25); display: block; margin-bottom: 1rem; }
.footer-desc { font-size: .8rem; color: rgba(255,255,255,.38); line-height: 1.9; }
.footer-col h4 { font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: var(--border); }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a, .footer-col ul li span { font-size: .8rem; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bar { border-top: 0.5px solid rgba(206,186,112,.1); padding: 1.1rem 2.5rem; display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; }
.footer-copy { font-size: .62rem; color: rgba(255,255,255,.18); letter-spacing: .08em; }
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a { font-size: .62rem; color: rgba(255,255,255,.28); letter-spacing: .12em; text-transform: uppercase; transition: color .2s; }
.footer-social a:hover { color: var(--gold); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--black); color: var(--gold); font-size: .68rem; letter-spacing: .1em; padding: .9rem 1.4rem; border: var(--border); z-index: 999; transform: translateY(80px); opacity: 0; transition: all .35s; pointer-events: none; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .hdr-inner { padding: 0 1.2rem; }
  .nav-list { display: none; }
  .footer-main { grid-template-columns: 1fr; padding: 2.5rem 1.2rem 2rem; }
  .footer-bar { flex-direction: column; gap: .8rem; padding: 1rem 1.2rem; }
}
