/* =============================================
   PMART.ONLINE — Global Stylesheet
   Brand: Warm Ivory × Deep Saffron × Charcoal
   Font: Playfair Display + DM Sans
   ============================================= */

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

:root {
  --ivory:       #FAF7F2;
  --cream:       #F2EDE4;
  --saffron:     #E8622A;
  --saffron-dk:  #C94E1E;
  --saffron-lt:  #F5956A;
  --gold:        #C9A84C;
  --gold-lt:     #E8C96E;
  --charcoal:    #1C1C1E;
  --ink:         #2D2D2F;
  --muted:       #7A7672;
  --border:      #E0D9CF;
  --white:       #FFFFFF;
  --success:     #2E7D52;
  --error:       #C0392B;
  --warning:     #E8622A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 4px rgba(28,28,30,0.08);
  --shadow-md:  0 4px 20px rgba(28,28,30,0.10);
  --shadow-lg:  0 12px 40px rgba(28,28,30,0.14);
  --shadow-xl:  0 24px 60px rgba(28,28,30,0.18);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:      1320px;
  --header-h:   72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--saffron); }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }
ul { list-style: none; }

/* =============================================
   CONTAINER
   ============================================= */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--muted); line-height: 1.7; }

.text-saffron  { color: var(--saffron); }
.text-gold     { color: var(--gold); }
.text-muted    { color: var(--muted); }
.text-center   { text-align: center; }
.font-display  { font-family: var(--font-display); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-md);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  transition: all var(--transition); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.08); opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--saffron); color: var(--white);
  box-shadow: 0 4px 16px rgba(232,98,42,0.35);
}
.btn-primary:hover { background: var(--saffron-dk); transform: translateY(-2px); color: var(--white);
  box-shadow: 0 8px 24px rgba(232,98,42,0.4); }

.btn-secondary {
  background: var(--charcoal); color: var(--white);
  box-shadow: 0 4px 16px rgba(28,28,30,0.2);
}
.btn-secondary:hover { background: var(--ink); transform: translateY(-2px); color: var(--white); }

.btn-outline {
  background: transparent; color: var(--saffron);
  border: 1.5px solid var(--saffron);
}
.btn-outline:hover { background: var(--saffron); color: var(--white); }

.btn-ghost {
  background: var(--cream); color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--border); }

.btn-gold {
  background: var(--gold); color: var(--white);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn-gold:hover { background: #b8963f; transform: translateY(-2px); color: var(--white); }

.btn-sm { padding: 9px 20px; font-size: 0.82rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  display: flex; align-items: center; height: var(--header-h);
  gap: 32px;
}

.header-logo {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--charcoal); flex-shrink: 0;
  letter-spacing: -0.02em;
}
.header-logo span { color: var(--saffron); }

.header-nav {
  display: flex; gap: 4px; flex: 1;
}
.header-nav a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--ink);
  transition: all var(--transition);
  position: relative;
}
.header-nav a:hover { color: var(--saffron); background: rgba(232,98,42,0.07); }
.header-nav a.active { color: var(--saffron); }

.header-nav .has-dropdown { position: relative; }
.header-nav .dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: all var(--transition); z-index: 999; padding: 8px;
}
.header-nav .has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.header-nav .dropdown a { display: block; padding: 9px 14px; border-radius: var(--radius-sm); font-size: 0.85rem; }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  color: var(--ink); transition: all var(--transition); position: relative;
}
.header-icon-btn:hover { background: var(--cream); color: var(--saffron); }
.header-icon-btn svg { width: 20px; height: 20px; }

.cart-badge {
  position: absolute; top: 5px; right: 5px;
  background: var(--saffron); color: var(--white);
  font-size: 0.6rem; font-weight: 700; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--ivory);
}

.search-bar {
  flex: 1; max-width: 420px;
  display: flex; align-items: center; gap: 10px;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 10px 18px;
  transition: border-color var(--transition);
}
.search-bar:focus-within { border-color: var(--saffron); }
.search-bar input { background: none; border: none; outline: none; flex: 1; font-size: 0.88rem; color: var(--ink); }
.search-bar input::placeholder { color: var(--muted); }
.search-bar svg { color: var(--muted); flex-shrink: 0; }

.hamburger { display: none; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--muted); padding: 16px 0;
}
.breadcrumb a:hover { color: var(--saffron); }
.breadcrumb span { color: var(--muted); }

/* =============================================
   PRODUCT CARD
   ============================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: all var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-img {
  aspect-ratio: 3/4; overflow: hidden; background: var(--cream);
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(8px);
  transition: all var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-card-action-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); box-shadow: var(--shadow-sm);
  transition: all var(--transition); border: 1px solid var(--border);
}
.product-card-action-btn:hover { background: var(--saffron); color: var(--white); border-color: var(--saffron); }
.product-card-action-btn svg { width: 16px; height: 16px; }

.badge-sale {
  position: absolute; top: 12px; left: 12px;
  background: var(--saffron); color: var(--white);
  font-size: 0.7rem; font-weight: 700; padding: 4px 10px;
  border-radius: var(--radius-xl); letter-spacing: 0.05em; text-transform: uppercase;
}
.badge-new { background: var(--success); }

.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-card-category { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.product-card-name { font-size: 0.9rem; font-weight: 500; color: var(--charcoal); line-height: 1.4; margin-bottom: 10px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-price { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.price-current { font-size: 1.05rem; font-weight: 700; color: var(--charcoal); }
.price-original { font-size: 0.85rem; color: var(--muted); text-decoration: line-through; }
.price-discount { font-size: 0.75rem; color: var(--success); font-weight: 600; }

.product-card-footer { padding: 0 16px 16px; }
.btn-atc {
  width: 100%; background: var(--charcoal); color: var(--white);
  padding: 11px; border-radius: var(--radius-md); font-size: 0.85rem; font-weight: 600;
  transition: all var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-atc:hover { background: var(--saffron); transform: none; }
.btn-atc svg { width: 16px; height: 16px; }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-header { margin-bottom: 48px; }
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--saffron); margin-bottom: 12px;
}
.section-title { margin-bottom: 12px; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 520px; }

/* =============================================
   HERO BANNER
   ============================================= */
.hero {
  background: var(--charcoal);
  min-height: 85vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,98,42,0.18) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 640px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--saffron-lt); margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--saffron-lt); }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.08; color: var(--white); margin-bottom: 20px; }
.hero-title em { color: var(--saffron-lt); font-style: italic; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img {
  position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
  pointer-events: none;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }

/* =============================================
   CATEGORY TILES
   ============================================= */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}
.cat-tile {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 16px; text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition); cursor: pointer;
}
.cat-tile:hover {
  border-color: var(--saffron); transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(232,98,42,0.12);
}
.cat-tile-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 14px; font-size: 1.8rem;
  transition: background var(--transition);
}
.cat-tile:hover .cat-tile-icon { background: rgba(232,98,42,0.1); }
.cat-tile-name { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }
.cat-tile-count { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--charcoal); color: var(--white); padding: 18px 0;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 500;
}
.trust-item svg { color: var(--saffron-lt); flex-shrink: 0; }

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); margin-bottom: 7px; }
.form-label .required { color: var(--saffron); }
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-size: 0.9rem; color: var(--ink); background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--saffron); }
.form-input::placeholder { color: var(--muted); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237A7672' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-error { font-size: 0.8rem; color: var(--error); margin-top: 5px; }
.form-hint { font-size: 0.8rem; color: var(--muted); margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =============================================
   ALERTS / FLASH
   ============================================= */
.alert {
  padding: 14px 18px; border-radius: var(--radius-md);
  font-size: 0.88rem; font-weight: 500; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.alert-success { background: #EAF4EE; color: var(--success); border: 1px solid #B8DEC5; }
.alert-error   { background: #FDECEA; color: var(--error);   border: 1px solid #F5C0BB; }
.alert-warning { background: #FEF3EA; color: #A84C1A; border: 1px solid #F5C69A; }
.alert-info    { background: #EAF0FE; color: #2D5BE3; border: 1px solid #B8CAF7; }

/* =============================================
   CART SIDEBAR
   ============================================= */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(28,28,30,0.5);
  z-index: 2000; opacity: 0; pointer-events: none; transition: opacity var(--transition);
  backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; height: 100vh; width: 420px; max-width: 95vw;
  background: var(--white); z-index: 2001; display: flex; flex-direction: column;
  transform: translateX(110%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-sidebar-header {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-sidebar-header h3 { font-family: var(--font-display); font-size: 1.3rem; }
.cart-sidebar-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-sidebar-footer { padding: 20px 24px; border-top: 1px solid var(--border); }

.cart-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 72px; height: 90px; border-radius: var(--radius-sm);
  object-fit: cover; background: var(--cream); flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.85rem; font-weight: 500; color: var(--charcoal); line-height: 1.4; margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-variant { font-size: 0.75rem; color: var(--muted); margin-bottom: 8px; }
.cart-item-price { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); }
.cart-qty {
  display: flex; align-items: center; gap: 10px; margin-top: 8px;
}
.cart-qty button {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 0.85rem; transition: all var(--transition);
}
.cart-qty button:hover { border-color: var(--saffron); color: var(--saffron); }
.cart-qty span { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-remove { color: var(--muted); font-size: 0.75rem; text-decoration: underline; cursor: pointer; margin-top: 4px; }
.cart-remove:hover { color: var(--error); }

.cart-totals { margin-bottom: 16px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 5px 0; }
.cart-total-row.grand { font-weight: 700; font-size: 1rem; padding-top: 12px; border-top: 1.5px solid var(--border); color: var(--charcoal); }
.free-shipping-bar { margin: 12px 0; }
.free-shipping-bar p { font-size: 0.78rem; color: var(--muted); margin-bottom: 6px; }
.shipping-progress { height: 4px; background: var(--cream); border-radius: 4px; overflow: hidden; }
.shipping-progress-fill { height: 100%; background: var(--success); border-radius: 4px; transition: width 0.5s; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination { display: flex; align-items: center; gap: 8px; justify-content: center; padding: 32px 0; }
.page-btn {
  width: 40px; height: 40px; border-radius: var(--radius-md); display: flex;
  align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--ink); transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--saffron); color: var(--white); border-color: var(--saffron); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin: 16px 0 24px; }
.footer-logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--white); }
.footer-logo span { color: var(--saffron-lt); }
.footer-col h5 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.6); padding: 5px 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--saffron-lt); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.footer-contact-item svg { color: var(--saffron-lt); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-socials { display: flex; gap: 12px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social-btn:hover { background: var(--saffron); border-color: var(--saffron); color: var(--white); }
.footer-social-btn svg { width: 16px; height: 16px; }

/* =============================================
   PAGE LAYOUT
   ============================================= */
.page-header { background: var(--cream); padding: 40px 0 32px; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: 2rem; }

.two-col-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.two-col-layout.reverse { grid-template-columns: 380px 1fr; }

.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 28px;
}
.card-sm { padding: 20px; border-radius: var(--radius-md); }

/* =============================================
   BADGE / TAGS
   ============================================= */
.tag {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-xl);
  font-size: 0.75rem; font-weight: 600;
}
.tag-saffron { background: rgba(232,98,42,0.1); color: var(--saffron); }
.tag-gold    { background: rgba(201,168,76,0.12); color: var(--gold); }
.tag-green   { background: rgba(46,125,82,0.1); color: var(--success); }
.tag-grey    { background: var(--cream); color: var(--muted); }

/* =============================================
   LOADING / SPINNER
   ============================================= */
.spinner {
  width: 24px; height: 24px; border: 2px solid var(--border);
  border-top-color: var(--saffron); border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   TOAST NOTIFICATIONS
   ============================================= */
#toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 12px;
}
.toast {
  background: var(--charcoal); color: var(--white);
  padding: 14px 20px; border-radius: var(--radius-md);
  font-size: 0.88rem; font-weight: 500; box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 12px; min-width: 280px;
  animation: slideInToast 0.3s ease; border-left: 4px solid var(--saffron);
}
.toast.success { border-left-color: var(--success); }
.toast.error   { border-left-color: var(--error); }
@keyframes slideInToast { from { transform: translateX(110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col-layout { grid-template-columns: 1fr 320px; gap: 24px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .header-nav, .search-bar { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 70vh; }
  .hero-img { display: none; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-items { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .two-col-layout, .two-col-layout.reverse { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100%; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card-body { padding: 10px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--saffron); }

/* =============================================
   MOBILE NAV DRAWER
   ============================================= */
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(28,28,30,0.6);
  z-index: 3000; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav {
  position: fixed; top: 0; left: 0; height: 100vh; width: 300px;
  background: var(--white); z-index: 3001;
  transform: translateX(-110%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto; padding: 24px 20px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 28px; }
.mobile-nav-logo span { color: var(--saffron); }
.mobile-nav a { display: block; padding: 12px 0; font-size: 0.95rem; font-weight: 500; border-bottom: 1px solid var(--border); }
