/* ── Brand Tokens ──────────────────────────────────── */
:root {
  --maroon:      #5C0A1F;
  --maroon-dark: #3D0615;
  --maroon-mid:  #7A1030;
  --gold:        #C9933A;
  --gold-light:  #E8B96A;
  --gold-pale:   #F5E6C8;
  --cream:       #FAF3E8;
  --cream-dark:  #F0E6D2;
  --text:        #2C1B0E;
  --text-muted:  #7A5C42;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 12px rgba(92,10,31,0.10);
  --shadow:      0 6px 24px rgba(92,10,31,0.16);
  --shadow-lg:   0 12px 40px rgba(92,10,31,0.22);
  --radius:      14px;
  --radius-sm:   8px;
  --font-serif:  'Playfair Display', serif;
  --font-sans:   'Inter', sans-serif;
  --transition:  0.25s ease;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); }
.gold { color: var(--gold); }

/* ── Announce Bar ────────────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon), var(--maroon-dark));
  color: var(--gold-light);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.6px;
  font-weight: 500;
}
.announce-bar span { margin: 0 0.75rem; color: var(--gold); }

/* ── Navbar ──────────────────────────────────────── */
nav {
  background: var(--maroon);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  border-bottom: 2px solid var(--gold);
}
.nav-inner {
  max-width: 1200px; margin: auto;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.55rem 1.5rem;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 50px; width: auto; border-radius: 8px; }
.nav-links { display: flex; gap: 1.4rem; flex: 1; }
.nav-links a {
  color: var(--cream); font-size: 0.88rem; font-weight: 500;
  padding: 0.3rem 0; border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--gold-light); border-color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.search-form { display: flex; }
.search-input {
  padding: 0.4rem 0.9rem; border: 1.5px solid rgba(201,147,58,0.5);
  border-radius: 20px 0 0 20px;
  background: rgba(255,255,255,0.08); color: var(--white);
  font-size: 0.83rem; width: 155px; transition: border-color var(--transition);
}
.search-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.13); }
.search-input::placeholder { color: rgba(255,255,255,0.45); }
.search-btn {
  background: var(--gold); border: none; padding: 0.4rem 0.85rem;
  border-radius: 0 20px 20px 0; cursor: pointer; transition: background var(--transition);
}
.search-btn:hover { background: var(--gold-light); }
.cart-btn {
  color: var(--cream); font-size: 0.92rem; display: flex; align-items: center; gap: 0.35rem;
  background: rgba(255,255,255,0.08); padding: 0.4rem 0.9rem; border-radius: 20px;
  border: 1.5px solid rgba(201,147,58,0.4); transition: background var(--transition), border-color var(--transition);
}
.cart-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.cart-badge {
  background: var(--gold); color: var(--white); border-radius: 50%;
  width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
}

/* ── Buttons ─────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--maroon); color: var(--white);
  padding: 0.8rem 2rem; border-radius: 30px; font-weight: 600;
  border: none; cursor: pointer; transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
  font-size: 0.95rem; letter-spacing: 0.4px; box-shadow: 0 4px 16px rgba(92,10,31,0.3);
}
.btn-primary:hover { background: var(--maroon-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(92,10,31,0.4); }
.btn-outline {
  display: inline-block; border: 2px solid var(--maroon); color: var(--maroon);
  padding: 0.75rem 1.8rem; border-radius: 30px; font-weight: 600; cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  font-size: 0.93rem;
}
.btn-outline:hover { background: var(--maroon); color: var(--white); box-shadow: 0 4px 16px rgba(92,10,31,0.25); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #25D366; color: var(--white);
  padding: 0.8rem 2rem; border-radius: 30px; font-weight: 600;
  border: none; cursor: pointer; transition: background var(--transition), transform 0.15s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #1BA851; transform: translateY(-2px); }
.btn-add-cart {
  width: 100%; background: var(--maroon); color: var(--white); border: none;
  padding: 0.65rem; border-radius: 0 0 var(--radius) var(--radius); cursor: pointer;
  font-weight: 600; transition: background var(--transition); font-size: 0.88rem; letter-spacing: 0.3px;
}
.btn-add-cart:hover { background: var(--gold); }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-sm {
  padding: 0.38rem 0.85rem; border-radius: 6px; font-size: 0.82rem;
  background: var(--maroon); color: var(--white); border: none; cursor: pointer;
  transition: background var(--transition);
}
.btn-sm:hover { background: var(--maroon-dark); }
.btn-danger { background: #c0392b !important; }
.btn-remove { background: none; border: none; color: #c0392b; font-size: 1.1rem; cursor: pointer; }

/* ── Hero ────────────────────────────────────────── */
.hero-full {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-full::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,147,58,0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-content-wrap {
  max-width: 1200px; margin: auto;
  display: flex; align-items: center; gap: 3rem;
  padding: 3.5rem 2rem;
  position: relative;
}
.hero-text { flex: 1; }
.hero-label {
  display: inline-block;
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.hero-title {
  font-size: 3.2rem; line-height: 1.12; color: var(--maroon);
  margin-bottom: 1rem;
}
.hero-sub {
  color: var(--text-muted); margin-bottom: 2rem;
  font-size: 1.05rem; max-width: 440px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image-panel { flex-shrink: 0; }
.hero-img-ring {
  width: 300px; height: 300px;
  border-radius: 50%; overflow: hidden;
  border: 5px solid var(--gold);
  box-shadow: 0 0 0 10px var(--gold-pale), var(--shadow-lg);
  position: relative;
}
.hero-img-ring img { width: 100%; height: 100%; object-fit: cover; }

/* ── Trust Strip ─────────────────────────────────── */
.trust-strip {
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon), var(--maroon-dark));
  padding: 0.85rem 1.5rem;
  border-top: 1px solid rgba(201,147,58,0.3);
  border-bottom: 1px solid rgba(201,147,58,0.3);
}
.trust-inner {
  max-width: 1200px; margin: auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; flex-wrap: wrap;
}
.trust-item {
  color: var(--cream); font-size: 0.83rem; font-weight: 500;
  letter-spacing: 0.4px; padding: 0 0.75rem;
}
.trust-sep { color: var(--gold); font-size: 0.75rem; }

/* ── Section Divider Ornament ────────────────────── */
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; margin-bottom: 2.5rem; color: var(--gold);
  font-size: 1rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1; max-width: 100px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ── Sections ────────────────────────────────────── */
.section { max-width: 1200px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.bg-cream { background: var(--cream); max-width: 100%; padding: 3.5rem 0; }
.bg-cream .section { max-width: 1200px; margin: auto; padding-top: 0; padding-bottom: 0; }
.section-title {
  font-family: var(--font-serif); font-size: 2.1rem; color: var(--maroon);
  text-align: center; margin-bottom: 0.5rem;
}

/* ── Category Grid ───────────────────────────────── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: 1.25rem; }
.category-card {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius); padding: 1.75rem 1rem; text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.category-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(0); transition: transform var(--transition);
}
.category-card:hover {
  border-color: var(--gold); transform: translateY(-6px);
  box-shadow: var(--shadow); background: linear-gradient(145deg, var(--cream), var(--gold-pale));
}
.category-card:hover::after { transform: scaleX(1); }
.cat-emoji {
  font-size: 2.8rem; display: block; margin-bottom: 0.6rem;
  transition: transform var(--transition);
}
.category-card:hover .cat-emoji { transform: scale(1.15); }
.cat-name { font-weight: 600; color: var(--maroon); font-size: 0.93rem; letter-spacing: 0.3px; }

/* ── Product Grid ────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); gap: 1.5rem; }
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
  border: 1.5px solid var(--cream-dark);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: var(--gold-pale); }
.product-img-wrap {
  height: 210px; overflow: hidden;
  background: var(--cream);
  position: relative;
}
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img { transform: scale(1.06); }
.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(92,10,31,0.2), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-info { padding: 1rem 1rem 0.5rem; flex: 1; }
.product-category {
  font-size: 0.72rem; color: var(--gold); text-transform: uppercase;
  letter-spacing: 1.2px; font-weight: 700;
}
.product-name {
  font-family: var(--font-serif); font-size: 1rem; margin: 0.3rem 0 0.5rem;
  color: var(--maroon); line-height: 1.3;
}
.product-price {
  font-size: 1.15rem; font-weight: 700; color: var(--maroon);
}
.add-to-cart-form { margin-top: auto; }

/* ── Features ────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: 1.5rem; }
.feature-card {
  text-align: center; padding: 2rem 1rem; border-radius: var(--radius);
  background: var(--white); border: 1.5px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-pale); }
.feature-icon-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-mid));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.9rem;
  box-shadow: 0 4px 14px rgba(92,10,31,0.28);
}
.feature-icon { font-size: 1.7rem; }
.feature-card h3 { color: var(--maroon); font-size: 0.95rem; margin-bottom: 0.3rem; }
.feature-card p { color: var(--text-muted); font-size: 0.83rem; }

/* ── Page Header ─────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--white); text-align: center; padding: 2.75rem 1rem;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,147,58,0.1) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.page-header h1 { font-family: var(--font-serif); font-size: 2.3rem; position: relative; }
.page-header p { color: rgba(255,255,255,0.7); margin-top: 0.5rem; font-size: 0.95rem; position: relative; }
.page-header-gold { color: var(--gold-light); display: block; font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.4rem; }

/* ── Shop Layout ─────────────────────────────────── */
.shop-layout { display: flex; max-width: 1200px; margin: 2rem auto; gap: 2rem; padding: 0 1.5rem; }
.shop-sidebar { width: 225px; flex-shrink: 0; }
.shop-sidebar h3 { color: var(--maroon); font-family: var(--font-serif); margin-bottom: 1rem; font-size: 1.15rem; }
.filter-list a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.85rem; border-radius: var(--radius-sm);
  color: var(--text); font-size: 0.88rem; margin-bottom: 0.3rem;
  transition: background var(--transition), color var(--transition), transform 0.15s;
  border-left: 3px solid transparent;
}
.filter-list a:hover { background: var(--cream); color: var(--maroon); border-left-color: var(--gold); }
.filter-list a.active { background: var(--maroon); color: var(--white); border-left-color: var(--gold); }
.shop-main { flex: 1; }
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; padding: 0.75rem 1rem;
  background: var(--cream); border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dark);
}
.result-count { color: var(--text-muted); font-size: 0.88rem; }
.inline-search { display: flex; gap: 0.5rem; }
.inline-search input {
  padding: 0.4rem 0.85rem; border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm); font-size: 0.88rem;
  transition: border-color var(--transition);
}
.inline-search input:focus { outline: none; border-color: var(--gold); }

/* ── Product Detail ──────────────────────────────── */
.product-detail { display: flex; gap: 3rem; max-width: 1000px; margin: 2.5rem auto; padding: 0 1.5rem; }
.product-detail-img { flex: 1; }
.product-detail-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); border: 3px solid var(--gold-pale); }
.product-detail-info { flex: 1; }
.product-detail-price { font-size: 2.1rem; font-weight: 700; color: var(--maroon); margin: 0.75rem 0; }
.product-detail-desc { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.qty-input { width: 70px; padding: 0.5rem; border: 1.5px solid var(--cream-dark); border-radius: var(--radius-sm); text-align: center; font-size: 1rem; transition: border-color var(--transition); }
.qty-input:focus { outline: none; border-color: var(--gold); }
.detail-add-form { margin-bottom: 1rem; }

/* ── Cart ────────────────────────────────────────── */
.cart-layout { display: flex; gap: 2rem; max-width: 1100px; margin: 2rem auto; padding: 0 1.5rem; }
.cart-items { flex: 1; }
.cart-row { display: flex; align-items: center; gap: 1.2rem; padding: 1.1rem; border-bottom: 1px solid var(--cream-dark); transition: background var(--transition); border-radius: var(--radius-sm); }
.cart-row:hover { background: var(--cream); }
.cart-item-img { width: 82px; height: 82px; object-fit: cover; border-radius: var(--radius-sm); background: var(--cream); border: 1.5px solid var(--cream-dark); }
.cart-item-info { flex: 1; }
.cart-item-info h3 { font-size: 0.95rem; color: var(--maroon); }
.cart-item-price { color: var(--text-muted); font-size: 0.88rem; }
.cart-item-actions { display: flex; align-items: center; gap: 0.8rem; }
.cart-item-sub { font-weight: 700; color: var(--maroon); min-width: 70px; text-align: right; }
.qty-input-sm { width: 55px; padding: 0.3rem; border: 1.5px solid var(--cream-dark); border-radius: 6px; text-align: center; transition: border-color var(--transition); }
.qty-input-sm:focus { outline: none; border-color: var(--gold); }
.cart-summary { width: 305px; flex-shrink: 0; background: var(--cream); border-radius: var(--radius); padding: 1.6rem; height: fit-content; border: 1.5px solid var(--cream-dark); box-shadow: var(--shadow-sm); }
.cart-summary h3 { font-family: var(--font-serif); color: var(--maroon); margin-bottom: 1.2rem; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.93rem; }
.total-row { font-weight: 700; font-size: 1.12rem; border-top: 2px solid var(--gold-pale); padding-top: 0.75rem; margin-top: 0.5rem; color: var(--maroon); }

/* ── Checkout ────────────────────────────────────── */
.checkout-layout { display: flex; gap: 2rem; max-width: 1000px; margin: 2rem auto; padding: 0 1.5rem; }
.checkout-form-wrap { flex: 1; }
.checkout-form-wrap h2, .checkout-summary h2 { font-family: var(--font-serif); color: var(--maroon); margin-bottom: 1.2rem; }
.checkout-summary { width: 325px; flex-shrink: 0; background: var(--cream); border-radius: var(--radius); padding: 1.6rem; height: fit-content; border: 1.5px solid var(--cream-dark); box-shadow: var(--shadow-sm); }
.summary-item { display: flex; gap: 0.5rem; justify-content: space-between; font-size: 0.9rem; margin-bottom: 0.5rem; }
.summary-divider { border: none; border-top: 1.5px solid var(--cream-dark); margin: 0.75rem 0; }
.checkout-note { font-size: 0.84rem; color: var(--text-muted); margin-top: 1rem; background: var(--gold-pale); padding: 0.8rem 1rem; border-radius: var(--radius-sm); border-left: 3px solid var(--gold); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.4rem; color: var(--text); font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid var(--cream-dark); border-radius: var(--radius-sm); font-size: 0.93rem; transition: border-color var(--transition); font-family: inherit; background: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,147,58,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkbox-label { display: flex !important; align-items: center; gap: 0.5rem; cursor: pointer; }

/* ── Order Confirm ───────────────────────────────── */
.confirm-page { max-width: 680px; margin: 2.5rem auto; padding: 0 1.5rem; }
.confirm-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); text-align: center; border-top: 4px solid var(--gold); }
.confirm-icon { font-size: 4rem; margin-bottom: 1rem; }
.confirm-card h1 { font-family: var(--font-serif); color: var(--maroon); margin-bottom: 0.5rem; }
.confirm-items { background: var(--cream); border-radius: var(--radius-sm); padding: 1rem; margin: 1.5rem 0; text-align: left; border: 1px solid var(--cream-dark); }
.confirm-item { display: flex; gap: 0.5rem; justify-content: space-between; font-size: 0.9rem; margin-bottom: 0.4rem; }
.confirm-total { font-weight: 700; border-top: 1.5px solid var(--cream-dark); padding-top: 0.5rem; margin-top: 0.5rem; font-size: 1rem; color: var(--maroon); }
.payment-step { background: var(--cream); border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; text-align: left; border: 1.5px solid var(--cream-dark); }
.payment-step h2 { font-family: var(--font-serif); color: var(--maroon); font-size: 1.2rem; margin-bottom: 0.75rem; }
.upi-id { font-size: 1.1rem; background: var(--white); border: 1.5px dashed var(--gold); padding: 0.5rem 1rem; border-radius: var(--radius-sm); display: inline-block; margin: 0.5rem 0; }
.qr-wrap { text-align: center; margin: 1rem 0; }
.qr-img { margin: auto; border: 3px solid var(--gold); border-radius: var(--radius-sm); }
.qr-amount { color: var(--maroon); font-weight: 700; margin-top: 0.5rem; }
.payment-note { font-size: 0.84rem; color: var(--text-muted); background: var(--gold-pale); padding: 0.8rem 1rem; border-radius: var(--radius-sm); border-left: 3px solid var(--gold); margin-top: 0.75rem; }

/* ── Login ───────────────────────────────────────── */
.login-page { display: flex; align-items: center; justify-content: center; min-height: 70vh; padding: 2rem; }
.login-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); width: 100%; max-width: 400px; text-align: center; border-top: 4px solid var(--gold); }
.login-logo { height: 80px; margin: auto auto 1.5rem; border-radius: 8px; }
.login-card h2 { font-family: var(--font-serif); color: var(--maroon); margin-bottom: 1.5rem; }
.login-form { text-align: left; }
.alert-error { background: #ffeaea; border: 1px solid #e74c3c; color: #c0392b; padding: 0.75rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; }

/* ── Admin ───────────────────────────────────────── */
.admin-layout { display: flex; max-width: 1400px; margin: 0 auto; min-height: 80vh; }
.admin-sidebar { width: 225px; background: var(--maroon); color: var(--white); padding: 1.5rem 1rem; flex-shrink: 0; border-right: 2px solid var(--gold); }
.admin-sidebar h3 { font-family: var(--font-serif); color: var(--gold-light); margin-bottom: 1.5rem; }
.admin-sidebar ul { display: flex; flex-direction: column; gap: 0.5rem; }
.admin-sidebar a { color: rgba(255,255,255,0.82); padding: 0.55rem 0.85rem; border-radius: var(--radius-sm); font-size: 0.88rem; transition: background var(--transition), color var(--transition); }
.admin-sidebar a:hover { background: rgba(255,255,255,0.15); color: var(--gold-light); }
.admin-main { flex: 1; padding: 2rem; }
.admin-main h2 { font-family: var(--font-serif); color: var(--maroon); margin-bottom: 1rem; }
.admin-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
.admin-table th { background: var(--maroon); color: var(--white); padding: 0.8rem 1rem; text-align: left; }
.admin-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--cream-dark); vertical-align: middle; }
.admin-table tr:hover td { background: var(--cream); }
.admin-thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; border: 1px solid var(--cream-dark); }
.admin-thumb-lg { width: 120px; height: 120px; object-fit: cover; border-radius: var(--radius-sm); }
.admin-form-page { max-width: 700px; margin: 2rem auto; padding: 0 1.5rem; }
.admin-form-page h2 { font-family: var(--font-serif); color: var(--maroon); margin-bottom: 1rem; }
.admin-form { background: var(--white); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); border-top: 3px solid var(--gold); }
.select-sm { padding: 0.3rem 0.5rem; border-radius: 6px; border: 1px solid var(--cream-dark); font-size: 0.82rem; }
.current-image { margin-top: 0.75rem; }
.badge { padding: 0.25rem 0.65rem; border-radius: 20px; font-size: 0.77rem; font-weight: 600; }
.badge-orange { background: #fff3cd; color: #856404; }
.badge-green  { background: #d1fae5; color: #065f46; }
.badge-blue   { background: #dbeafe; color: #1e40af; }
.badge-gray   { background: #f3f4f6; color: #374151; }

/* ── Footer ──────────────────────────────────────── */
footer { background: var(--maroon-dark); color: rgba(255,255,255,0.85); margin-top: 5rem; border-top: 3px solid var(--gold); }
.footer-inner { max-width: 1200px; margin: auto; padding: 3rem 1.5rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.footer-brand p { font-size: 0.9rem; color: var(--gold-light); font-style: italic; margin-top: 0.5rem; }
.footer-logo { height: 62px; border-radius: 8px; margin-bottom: 0.75rem; }
.footer-links h4, .footer-contact h4 { color: var(--gold); margin-bottom: 0.9rem; font-family: var(--font-serif); font-size: 1rem; }
.footer-links a, .footer-contact a { display: block; font-size: 0.87rem; color: rgba(255,255,255,0.65); margin-bottom: 0.45rem; transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact p { font-size: 0.87rem; color: rgba(255,255,255,0.65); margin-bottom: 0.45rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding: 1.1rem; font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ── Hamburger Button ────────────────────────────── */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 6px; transition: background var(--transition); }
.hamburger:hover { background: rgba(255,255,255,0.12); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ── Mobile Drawer ───────────────────────────────── */
.mobile-drawer { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background: var(--white); z-index: 999; display: flex; flex-direction: column; box-shadow: 4px 0 30px rgba(0,0,0,0.2); transition: left 0.32s cubic-bezier(0.4,0,0.2,1); border-right: 3px solid var(--gold); }
.mobile-drawer.open { left: 0; }
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.2rem; background: linear-gradient(135deg, var(--maroon), var(--maroon-dark)); border-bottom: 2px solid var(--gold); }
.drawer-logo { height: 44px; border-radius: 6px; }
.drawer-close { background: none; border: none; color: var(--cream); font-size: 1.2rem; cursor: pointer; padding: 4px 8px; border-radius: 6px; transition: background var(--transition); }
.drawer-close:hover { background: rgba(255,255,255,0.15); }
.drawer-nav { flex: 1; padding: 1rem 0.75rem; display: flex; flex-direction: column; gap: 0.25rem; overflow-y: auto; }
.drawer-nav a { display: block; padding: 0.75rem 1rem; color: var(--text); font-size: 0.95rem; font-weight: 500; border-radius: var(--radius-sm); border-left: 3px solid transparent; transition: background var(--transition), color var(--transition), border-color var(--transition); }
.drawer-nav a:hover { background: var(--cream); color: var(--maroon); border-left-color: var(--gold); }
.drawer-footer { padding: 1rem 1.2rem; border-top: 1px solid var(--cream-dark); }
.drawer-wa { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: #25D366; color: var(--white); padding: 0.75rem 1rem; border-radius: 30px; font-weight: 600; font-size: 0.9rem; box-shadow: 0 4px 14px rgba(37,211,102,0.35); transition: background var(--transition); }
.drawer-wa:hover { background: #1BA851; }

/* ── WhatsApp FAB ────────────────────────────────── */
.wa-fab { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 500; display: flex; align-items: center; gap: 0.6rem; background: #25D366; color: var(--white); padding: 0.7rem 1.2rem 0.7rem 0.9rem; border-radius: 50px; box-shadow: 0 6px 24px rgba(37,211,102,0.45); font-weight: 600; font-size: 0.88rem; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; text-decoration: none; }
.wa-fab:hover { background: #1BA851; transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 30px rgba(37,211,102,0.55); }
.wa-fab-label { white-space: nowrap; }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); } 50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); } }
.wa-fab { animation: wa-pulse 2.5s ease-in-out infinite; }
.wa-fab:hover { animation: none; }

/* ── Testimonials ────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1.5px solid var(--cream-dark); display: flex; flex-direction: column; gap: 1rem; transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition); position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 1rem; right: 1.25rem; font-size: 4rem; color: var(--gold-pale); font-family: var(--font-serif); line-height: 1; }
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold-pale); }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; border-top: 1px solid var(--cream-dark); padding-top: 0.9rem; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--maroon), var(--maroon-mid)); color: var(--gold-light); font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 8px rgba(92,10,31,0.25); }
.testimonial-author strong { display: block; color: var(--maroon); font-size: 0.9rem; }
.testimonial-author span { color: var(--text-muted); font-size: 0.78rem; }

/* ── Utilities ───────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.75rem; }
.inline-form { display: inline; }
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--text-muted); font-size: 1.1rem; }
.empty-state a { color: var(--maroon); font-weight: 600; }

/* ── Animations ──────────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-text        { animation: fadeInUp 0.65s ease both; }
.hero-image-panel { animation: fadeInUp 0.65s 0.15s ease both; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content-wrap { flex-direction: column; text-align: center; padding: 2.5rem 1rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-img-ring { width: 200px; height: 200px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .trust-inner { gap: 0.25rem; }
  .trust-sep { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .search-input { width: 110px; }
  .shop-layout { flex-direction: column; }
  .shop-sidebar { width: 100%; }
  .cart-layout { flex-direction: column; }
  .cart-summary { width: 100%; }
  .checkout-layout { flex-direction: column; }
  .checkout-summary { width: 100%; }
  .product-detail { flex-direction: column; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }
  .wa-fab-label { display: none; }
  .wa-fab { padding: 0.85rem; border-radius: 50%; bottom: 1.25rem; right: 1.25rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
