/* ===== SHARMA-G SNACKS — PREMIUM DESIGN SYSTEM ===== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@400;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --cream: #FBF7F0;
  --cream-dark: #F5EFE4;
  --orange: #E8622A;
  --orange-light: #FF7A42;
  --orange-pale: #FFF0E8;
  --green: #2D6A4F;
  --green-light: #52B788;
  --green-pale: #E8F5EF;
  --brown: #6B4226;
  --brown-light: #9C6644;
  --white: #FFFFFF;
  --text-dark: #1A1008;
  --text-mid: #4A3728;
  --text-light: #8B7355;
  --border: #E8DDD0;
  --shadow-sm: 0 2px 8px rgba(107,66,38,0.08);
  --shadow-md: 0 8px 32px rgba(107,66,38,0.12);
  --shadow-lg: 0 20px 60px rgba(107,66,38,0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font-family: var(--font-body); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-mid); line-height: 1.75; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 { color: var(--text-dark); margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; color: var(--text-light); font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,98,42,0.3); }

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: white; transform: translateY(-2px); }

.btn-green {
  background: var(--green);
  color: white;
}
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,79,0.3); }

.btn-white {
  background: white;
  color: var(--orange);
}
.btn-white:hover { background: var(--orange-pale); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(251,247,240,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-logo .logo-mark {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-display);
}
.navbar-logo .logo-image-mark,
.footer-brand .logo-image-mark {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
}
.logo-image-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.navbar-logo .logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.1;
}
.navbar-logo .logo-tagline {
  font-size: 0.62rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 100px;
  transition: var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active { color: var(--orange); background: var(--orange-pale); }

.nav-user-greet {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 8px 14px;
  border-radius: 100px;
  display: inline-block;
  cursor: default;
}

.navbar-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative;
  padding: 10px 18px;
  background: var(--orange-pale);
  border: 1px solid rgba(232,98,42,0.2);
  border-radius: 100px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-btn:hover { background: var(--orange); color: white; }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FBF7F0 0%, #F5EFE4 50%, #FFF0E8 100%);
  padding-top: 80px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 25% 25%, var(--orange) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, var(--green) 0%, transparent 50%);
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  pointer-events: none;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: var(--green);
  bottom: -80px; left: -80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-headline .highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.hero-occasions span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; z-index: 1; }
.hero-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-card-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange-pale), var(--green-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.hero-stat {
  text-align: center;
  padding: 12px;
  background: var(--cream);
  border-radius: var(--radius-md);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--orange);
}
.hero-stat .lbl { font-size: 0.7rem; color: var(--text-light); font-weight: 500; }

.floating-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.floating-badge.top-left { top: -12px; left: 20px; animation-delay: 0.5s; }
.floating-badge.bottom-right { bottom: -12px; right: 20px; animation-delay: 1s; }
.floating-badge .icon { font-size: 1.2rem; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--text-dark);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-item .number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
}
.stat-item .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== WHO WE ARE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-stack {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--orange-pale) 0%, var(--green-pale) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 180px; height: 180px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  box-shadow: var(--shadow-lg);
}
.about-text .tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.about-text h2 { color: var(--text-dark); margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.about-chip {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--text-dark); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.why-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ===== PRODUCT CARDS ===== */
.products-section { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--orange-pale), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.product-card-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.product-badge.bestseller { background: var(--orange); }
.product-badge.new { background: var(--green); }
.product-badge.popular { background: var(--brown); }
.product-card-body { padding: 20px; }
.product-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.product-card-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.product-item-tag {
  background: var(--cream-dark);
  color: var(--text-mid);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
}
.product-price .per { font-size: 0.7rem; color: var(--text-light); font-weight: 400; font-family: var(--font-body); }

.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-dark);
  border-radius: 100px;
  padding: 4px;
}
.qty-btn {
  width: 30px; height: 30px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--orange); color: white; border-color: var(--orange); }
.qty-num {
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 24px;
  text-align: center;
  color: var(--text-dark);
}
.qty-input {
  width: 52px;
  height: 30px;
  border: 0;
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.add-cart-btn {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.add-cart-btn:hover { background: var(--orange-light); transform: scale(1.02); }
.add-cart-btn.added { background: var(--green); }

/* ===== OCCASIONS ===== */
.occasions-section { background: var(--cream-dark); }
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.occasion-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.occasion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.occasion-icon { font-size: 2.5rem; margin-bottom: 12px; }
.occasion-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-display);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--orange-pale);
  line-height: 1;
}
.testimonial-stars { color: #FFB800; font-size: 0.85rem; margin-bottom: 12px; }
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-family: var(--font-display);
}
.testimonial-role { font-size: 0.78rem; color: var(--text-light); }

/* ===== GALLERY ===== */
.gallery-section { background: var(--text-dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(232,98,42,0.2), rgba(45,106,79,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: white; font-size: 0.82rem; font-weight: 500; }

/* ===== BULK ORDER BANNER ===== */
.bulk-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #C8481A 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bulk-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.bulk-banner h2 { color: white; margin-bottom: 16px; position: relative; }
.bulk-banner p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 36px; font-size: 1.05rem; position: relative; }
.bulk-banner .btn-white { position: relative; }

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-item-text .value {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.contact-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-card h3 { margin-bottom: 28px; }

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(232,98,42,0.08);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238B7355' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== CART PAGE ===== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.cart-items-wrap {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.cart-item-price { font-size: 0.85rem; color: var(--text-light); }
.cart-item-controls { display: flex; align-items: center; gap: 12px; }
.cart-item-total { font-weight: 700; color: var(--orange); font-family: var(--font-display); font-size: 1.1rem; }
.remove-btn { background: none; border: none; color: var(--text-light); cursor: pointer; font-size: 1.1rem; padding: 4px; transition: var(--transition); }
.remove-btn:hover { color: #e53e3e; }

.order-summary {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.order-summary h3 { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
}
.summary-line.total {
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 16px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-family: var(--font-display);
}
.summary-label { color: var(--text-light); }
.summary-value { font-weight: 600; color: var(--text-dark); }
.summary-value.green { color: var(--green); }
.coupon-form { display: flex; gap: 8px; margin: 20px 0; }
.coupon-form input { flex: 1; }
.coupon-form button { white-space: nowrap; }

/* ===== EMPTY CART ===== */
.empty-state {
  text-align: center;
  padding: 80px 24px;
}
.empty-icon { font-size: 4rem; margin-bottom: 20px; }
.empty-state h3 { margin-bottom: 12px; color: var(--text-dark); }
.empty-state p { color: var(--text-light); margin-bottom: 32px; }

/* ===== CHECKOUT ===== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.checkout-form-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
}
.checkout-form-card h3 { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }

.payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px; }
.payment-option { position: relative; }
.payment-option input { position: absolute; opacity: 0; }
.payment-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 10px;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
}
.payment-option label .p-icon { font-size: 1.5rem; }
.payment-option input:checked + label {
  border-color: var(--orange);
  background: var(--orange-pale);
  color: var(--orange);
}

/* ===== ORDER SUCCESS ===== */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-card {
  max-width: 560px;
  width: 100%;
  background: white;
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.success-card h2 { color: var(--green); margin-bottom: 12px; }
.success-order-id {
  display: inline-block;
  background: var(--cream-dark);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.success-details {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 24px 0;
  text-align: left;
}
.success-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.success-detail-row:last-child { border-bottom: none; }

/* ===== MENU PAGE ===== */
.menu-header-section {
  background: linear-gradient(135deg, var(--text-dark) 0%, #2A1A0E 100%);
  padding: 120px 0 60px;
  text-align: center;
}
.menu-header-section h1 { color: white; }
.menu-header-section p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 12px auto 0; }

.menu-controls {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 100;
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
}
.menu-controls-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}
.category-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--cream);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.category-tab:hover { border-color: var(--orange); color: var(--orange); }
.category-tab.active { background: var(--orange); color: white; }
.search-box {
  position: relative;
  min-width: 220px;
}
.search-box input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}
.search-box input:focus { border-color: var(--orange); background: white; }
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.9rem;
}
.sort-select {
  padding: 10px 36px 10px 14px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--text-mid);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238B7355' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 40px 0;
}
.product-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange-pale), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
  max-height: 550px;
}
.product-detail-img img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: contain;
}
.product-detail-info {}
.product-detail-info .badge { margin-bottom: 16px; }
.product-detail-info h1 { font-size: 2.2rem; margin-bottom: 12px; }
.product-detail-info .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 20px;
}
.product-detail-info .desc { color: var(--text-light); margin-bottom: 28px; font-size: 0.95rem; }
.product-detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.meta-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.meta-item .meta-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); font-weight: 600; margin-bottom: 4px; }
.meta-item .meta-value { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); }

.items-included { margin-bottom: 28px; }
.items-included h4 { margin-bottom: 14px; color: var(--text-dark); }
.items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.item-chip {
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(45,106,79,0.2);
}

.add-to-cart-section {
  display: flex;
  align-items: center;
  gap: 16px;
}
.add-to-cart-section .qty-control {
  background: var(--cream-dark);
  padding: 6px;
}
.add-to-cart-section .qty-btn {
  width: 36px; height: 36px;
}

/* ===== BULK ORDER PAGE ===== */
.bulk-header {
  background: linear-gradient(135deg, var(--green) 0%, #1A4731 100%);
  padding: 120px 0 60px;
  text-align: center;
}
.bulk-header h1 { color: white; }
.bulk-header p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 12px auto 0; }

.bulk-form-card {
  max-width: 760px;
  margin: -40px auto 0;
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--orange-pale) 100%);
  padding: 120px 0 80px;
  text-align: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 10px; color: var(--text-dark); font-family: var(--font-display); }
.value-card p { font-size: 0.88rem; color: var(--text-light); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 28px;
  right: -10px;
  font-size: 1.2rem;
  color: var(--orange);
}
.step-num {
  width: 56px; height: 56px;
  background: var(--orange);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h4 { margin-bottom: 8px; color: var(--text-dark); }
.process-step p { font-size: 0.82rem; color: var(--text-light); }

/* ===== GALLERY PAGE ===== */
.gallery-page-header {
  background: var(--text-dark);
  padding: 120px 0 60px;
  text-align: center;
}
.gallery-page-header h1 { color: white; }
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 60px 0;
}
.gallery-page-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-page-item:hover img { transform: scale(1.05); }
.gallery-page-item:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

/* ===== FOOTER ===== */
.footer {
  background: #0F0905;
  color: rgba(255,255,255,0.7);
  padding: 72px 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.08);
}
.footer-brand .logo-mark {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-display);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--orange); }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; align-items: flex-start; }
.footer-contact-item .fi { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--orange); }

/* ===== ADMIN ===== */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #F0EDE8;
}
.admin-sidebar {
  width: 260px;
  background: var(--text-dark);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.sidebar-logo {
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar-logo .mark {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-family: var(--font-display);
  font-size: 0.9rem;
}
.sidebar-logo .name { font-weight: 700; color: white; font-size: 0.95rem; font-family: var(--font-display); }
.sidebar-logo .sub { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.sidebar-nav { padding: 16px 12px; flex: 1; }
.sidebar-section { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 16px 12px 8px; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  font-weight: 500;
  margin-bottom: 2px;
  transition: var(--transition);
  text-decoration: none;
}
.sidebar-link:hover, .sidebar-link.active {
  background: rgba(255,255,255,0.08);
  color: white;
}
.sidebar-link.active { background: rgba(232,98,42,0.2); color: var(--orange); }
.sidebar-link .icon { font-size: 1rem; width: 20px; text-align: center; }

.admin-main { flex: 1; overflow: hidden; }
.admin-topbar {
  background: white;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.admin-topbar h1 { font-size: 1.2rem; color: var(--text-dark); font-family: var(--font-display); }
.admin-topbar-right { display: flex; align-items: center; gap: 12px; }
.admin-content { padding: 32px; }

.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.dash-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.dash-card .label { font-size: 0.8rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.dash-card .value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--text-dark); }
.dash-card .sub { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }
.dash-card .icon { font-size: 1.8rem; float: right; margin-top: -4px; }
.dash-card.orange { border-left: 3px solid var(--orange); }
.dash-card.green { border-left: 3px solid var(--green); }
.dash-card.brown { border-left: 3px solid var(--brown); }

.admin-table-wrap {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.admin-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.admin-table-head h3 { font-family: var(--font-display); font-size: 1rem; }
table { width: 100%; border-collapse: collapse; }
th {
  background: var(--cream);
  padding: 12px 20px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--cream); }
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.status-pending { background: #FFF3CD; color: #856404; }
.status-confirmed { background: var(--green-pale); color: var(--green); }
.status-delivered { background: #D1FAE5; color: #065F46; }
.status-enquiry { background: var(--orange-pale); color: var(--orange); }
.status-cancelled { background: #FEE2E2; color: #991B1B; }

.admin-form-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  max-width: 800px;
}

.img-preview-wrap { position: relative; display: inline-block; }
.img-preview { width: 120px; height: 120px; object-fit: cover; border-radius: var(--radius-md); border: 1px solid var(--border); }
.img-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.img-upload-area:hover { border-color: var(--orange); background: var(--orange-pale); }
.img-upload-area input[type="file"] { display: none; }
.img-upload-icon { font-size: 2rem; margin-bottom: 8px; color: var(--text-light); }
.img-upload-text { font-size: 0.85rem; color: var(--text-light); }

.success-alert {
  background: var(--green-pale);
  border: 1px solid rgba(45,106,79,0.2);
  color: var(--green);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.error-alert {
  background: #FEE2E2;
  border: 1px solid rgba(153,27,27,0.2);
  color: #991B1B;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.auth-page {
  min-height: 100vh;
  background: var(--sg-green);
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 420px);
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}

.auth-brand-panel {
  color: white;
}

.auth-brand-panel h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 4rem);
  max-width: 620px;
}

.auth-brand-panel p:not(.sg-kicker) {
  color: rgba(255,255,255,0.72);
  max-width: 540px;
}

.auth-logo-tile {
  width: 74px;
  height: 60px;
  background: white;
  border: 1px solid rgba(18,61,34,0.12);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.auth-logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-card,
.customer-auth-card {
  background: white;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(18,20,15,0.22);
  padding: 32px;
}

.auth-card h2,
.customer-auth-card h1 {
  color: var(--sg-green);
}

.auth-muted {
  color: #75634d;
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.auth-back-link,
.auth-switch {
  display: block;
  margin-top: 18px;
  text-align: center;
  color: #75634d;
  font-size: 0.88rem;
}

.auth-back-link:hover,
.auth-switch a {
  color: var(--sg-orange);
  font-weight: 700;
}

.customer-auth-wrap {
  min-height: 80vh;
  padding: 132px 24px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(255,250,240,0.96), rgba(255,250,240,0.84)),
    url('/images/top-panel.png') center/cover no-repeat;
}

.customer-auth-card {
  width: min(100%, 480px);
}

.google-auth-btn {
  width: 100%;
  height: 52px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: white;
  color: var(--sg-green);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.google-auth-btn span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sg-orange);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: #9a8a73;
  font-size: 0.8rem;
  font-weight: 700;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: var(--sg-line);
  flex: 1;
}

.admin-note,
.admin-subtext {
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 600;
}

.admin-table-scroll {
  overflow-x: auto;
}

.admin-address-cell {
  max-width: 260px;
  white-space: pre-line;
  color: #4d4438;
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  background: var(--orange-pale);
  color: var(--orange);
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 800;
}

.empty-admin-state {
  padding: 44px;
  text-align: center;
  color: var(--text-light);
}

.admin-status-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.admin-status-filter a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: white;
  color: var(--sg-green);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-status-filter a.active,
.admin-status-filter a:hover {
  background: var(--sg-green);
  border-color: var(--sg-green);
  color: white;
}

.admin-status-filter span {
  min-width: 24px;
  height: 22px;
  border-radius: 100px;
  background: rgba(230,96,19,0.12);
  color: var(--sg-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

.admin-status-filter a.active span,
.admin-status-filter a:hover span {
  background: rgba(255,255,255,0.18);
  color: white;
}

.admin-order-list {
  display: grid;
  gap: 20px;
}

.admin-order-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.admin-order-head,
.admin-order-foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.admin-order-head h3 {
  color: var(--sg-green);
  font-size: 1.1rem;
  margin-top: 4px;
}

.admin-order-status {
  text-align: right;
}

.admin-order-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.admin-order-grid section {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}

.admin-order-grid section:last-child {
  border-right: 0;
}

.admin-order-grid h4,
.admin-items-table h4,
.admin-order-foot h4 {
  color: var(--sg-green);
  font-size: 0.82rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-order-grid p,
.admin-order-foot p {
  margin: 0 0 5px;
  color: #4d4438;
  font-size: 0.86rem;
  line-height: 1.55;
}

.admin-total-line {
  color: var(--sg-orange) !important;
  font-family: var(--font-display);
  font-size: 1.35rem !important;
  font-weight: 900;
}

.admin-items-table {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.admin-order-foot {
  align-items: flex-start;
  border-bottom: 0;
}

.admin-order-foot > div {
  max-width: 640px;
}

.admin-order-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-order-actions form {
  margin: 0;
}

.admin-danger-btn {
  border-color: #b42318;
  color: #b42318;
}

.admin-danger-btn:hover {
  background: #b42318;
  border-color: #b42318;
  color: white;
}

/* ===== GALLERY ADMIN ===== */
.gallery-admin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-admin-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.gallery-admin-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.gallery-admin-item .controls {
  padding: 10px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-admin-caption { font-size: 0.78rem; color: var(--text-light); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.del-btn {
  background: #FEE2E2;
  color: #991B1B;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.del-btn:hover { background: #991B1B; color: white; }

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--text-dark);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.3s ease, fadeOut 0.3s 2.7s forwards;
  min-width: 240px;
}
.toast.success { background: var(--green); }
.toast.error { background: #E53E3E; }
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeOut {
  to { opacity: 0; transform: translateX(100%); }
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--orange-pale) 100%);
  text-align: center;
}
.page-header .breadcrumb {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.page-header .breadcrumb a { color: var(--orange); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-stack { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-layout, .cart-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 20px; }
  .stat-item:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); border-right: none; }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); border-right: none; }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .navbar.menu-open .navbar-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .section { padding: 60px 0; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-item:first-child { grid-column: span 2; }
  .products-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 60px 1fr; }
  .cart-item-controls { grid-column: span 2; justify-content: flex-end; }
  .menu-controls-inner { flex-direction: column; align-items: stretch; }
  .category-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .bulk-form-card { padding: 28px 20px; margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: relative; }
  .sidebar-nav { display: none; }
}

@media (max-width: 480px) {
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-item:first-child { border-top: none; }
}

/* ===== 2026 SHARMA-G REFRESH ===== */
:root {
  --sg-ink: #12140f;
  --sg-green: #123d22;
  --sg-orange: #e66013;
  --sg-gold: #d99a26;
  --sg-paper: #fffaf0;
  --sg-line: #ead9bd;
}

body {
  background: var(--sg-paper);
}

.navbar {
  background: rgba(255,250,240,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(18,61,34,0.08);
}

.navbar-inner {
  padding: 12px 24px;
}

.navbar-logo .logo-mark,
.footer-brand .logo-mark {
  background: var(--sg-green);
  color: #fff6e6;
  border-radius: 8px;
  letter-spacing: 0;
}

.navbar-logo .logo-image-mark,
.footer-brand .logo-image-mark {
  background: white;
  color: var(--sg-green);
}

.navbar-logo .logo-text {
  color: var(--sg-green);
}

.navbar-nav a {
  color: #31513a;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  background: #f7ead5;
  color: var(--sg-orange);
}

.cart-btn {
  background: var(--sg-green);
  color: white;
  border: 0;
}

.cart-btn:hover {
  background: var(--sg-orange);
}

.btn {
  border-radius: 8px;
  box-shadow: none;
}

.btn-primary,
.add-cart-btn {
  background: var(--sg-orange);
  color: white;
}

.btn-primary:hover,
.add-cart-btn:hover {
  background: #c94f0d;
}

.btn-outline {
  border-color: var(--sg-green);
  color: var(--sg-green);
}

.btn-outline:hover,
.btn-green,
.btn-green:hover {
  background: var(--sg-green);
  border-color: var(--sg-green);
  color: white;
}

.sg-hero {
  min-height: 82vh;
  padding: 112px max(24px, calc((100vw - 1200px) / 2)) 48px;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,250,240,0.98) 0%, rgba(255,250,240,0.9) 42%, rgba(255,250,240,0.54) 70%, rgba(255,250,240,0.34) 100%),
    url('/images/top-panel.png') center/cover no-repeat;
}

.sg-hero-copy {
  max-width: 640px;
}

.sg-kicker {
  color: var(--sg-orange);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 12px;
}

.sg-hero h1 {
  font-size: clamp(2.35rem, 4.6vw, 4.5rem);
  color: var(--sg-green);
  letter-spacing: 0;
  max-width: 760px;
}

.sg-lead {
  color: #4d4438;
  font-size: 1.08rem;
  max-width: 560px;
  margin: 22px 0 30px;
}

.sg-hero-actions,
.sg-center {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sg-center {
  justify-content: center;
  margin-top: 36px;
}

.sg-home-card-footer .btn {
  flex-shrink: 0;
}

.sg-trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.sg-trust-row span {
  background: rgba(18,61,34,0.08);
  border: 1px solid rgba(18,61,34,0.12);
  color: var(--sg-green);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.sg-hero-media {
  position: relative;
  align-self: end;
}

.sg-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(18,20,15,0.22);
}

.sg-price-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(18,20,15,0.18);
}

.sg-price-card span {
  display: block;
  color: #75634d;
  font-size: 0.78rem;
  font-weight: 700;
}

.sg-price-card strong {
  color: var(--sg-orange);
  font-size: 2rem;
  font-family: var(--font-display);
  line-height: 1;
}

.sg-section {
  padding: 84px 0;
}

.sg-bulk-strip {
  background: #fff;
  border-bottom: 1px solid var(--sg-line);
  padding: 34px 0;
}

.sg-bulk-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.sg-bulk-strip h2 {
  color: var(--sg-green);
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-bottom: 6px;
}

.sg-bulk-strip p:not(.sg-kicker) {
  color: #695b49;
  margin: 0;
}

.sg-band {
  background: var(--sg-green);
  color: white;
  padding: 42px 24px;
}

.sg-band-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.sg-band h2,
.sg-cta h2 {
  color: white;
}

.sg-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sg-steps div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  padding: 18px;
}

.sg-steps strong {
  display: block;
  color: var(--sg-gold);
  font-size: 1.6rem;
  font-family: var(--font-display);
}

.sg-steps span {
  font-weight: 700;
}

.sg-section-head {
  max-width: 680px;
  margin: 0 auto 38px;
  text-align: center;
}

.sg-section-head h2,
.sg-showcase h2 {
  color: var(--sg-green);
}

.sg-section-head p {
  color: #695b49;
}

.sg-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.sg-card {
  border-radius: 8px;
  border: 1px solid var(--sg-line);
  box-shadow: 0 10px 30px rgba(18,20,15,0.08);
}

.sg-card:hover {
  transform: translateY(-4px);
}

.product-card-img {
  height: 230px;
  border-radius: 0;
}

.product-card-title {
  color: var(--sg-green);
  font-size: 1.1rem;
}

.product-item-tag {
  background: #f7ead5;
  color: #493a29;
  border-radius: 7px;
}

.product-card-footer {
  align-items: flex-end;
  gap: 16px;
}

.product-price {
  color: var(--sg-orange);
}

.sg-min,
.sg-result-line {
  font-size: 0.78rem;
  color: #75634d;
  font-weight: 600;
}

.sg-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.sg-card-actions .add-cart-btn {
  flex: 1 1 120px;
  justify-content: center;
  min-width: 0;
}

.sg-card-actions .qty-control {
  flex: 1 1 116px;
  justify-content: center;
}

.qty-control,
.qty-btn {
  border-radius: 8px;
}

.sg-showcase {
  background: #f7ead5;
}

.sg-showcase-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.sg-showcase-grid img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--sg-line);
  box-shadow: 0 20px 60px rgba(18,20,15,0.14);
}

.sg-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sg-feature-grid div {
  background: white;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  padding: 24px;
}

.sg-feature-grid h3 {
  color: var(--sg-green);
  font-size: 1rem;
  margin-bottom: 8px;
}

.sg-feature-grid p {
  font-size: 0.88rem;
  color: #695b49;
}

.sg-cta {
  padding: 76px 24px;
  background: linear-gradient(120deg, var(--sg-green), #071f12);
  text-align: center;
}

.sg-cta h2 {
  max-width: 780px;
  margin: 0 auto 26px;
}

.sg-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sg-cta-whatsapp {
  border-color: rgba(255,255,255,0.55);
  color: white;
}

.sg-cta-whatsapp:hover {
  background: white;
  color: var(--sg-green);
}

.sg-menu-hero {
  padding: 132px 0 68px;
  background:
    linear-gradient(90deg, rgba(18,61,34,0.94), rgba(18,61,34,0.72)),
    url('/images/packaging-panel.png') center/cover no-repeat;
  text-align: center;
}

.sg-menu-hero h1 {
  color: white;
  max-width: 780px;
  margin: 0 auto;
}

.sg-menu-hero p:not(.sg-kicker) {
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 16px auto 0;
}

.sg-menu-controls {
  top: 68px;
}

.sg-filter-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-icon {
  display: none;
}

.search-box input {
  padding-left: 16px;
  border-radius: 8px;
}

.category-tab,
.sort-select {
  border-radius: 8px;
}

.category-tab.active {
  background: var(--sg-green);
}

.sg-menu-list {
  background: var(--sg-paper);
}

.sg-menu-helper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: white;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(18,20,15,0.06);
}

.sg-menu-helper strong,
.sg-menu-helper span {
  display: block;
}

.sg-menu-helper strong {
  color: var(--sg-green);
  font-family: var(--font-display);
  margin-bottom: 3px;
}

.sg-menu-helper span {
  color: #695b49;
  font-size: 0.9rem;
}

.footer {
  background: #071f12;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 58px 1fr;
}

.footer-contact-item .fi {
  color: var(--sg-gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.whatsapp-float {
  border-radius: 8px;
  background: #1f9d55;
  color: white;
  font-size: 0.86rem;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .sg-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .auth-shell,
  .admin-order-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sg-band-grid,
  .sg-showcase-grid,
  .sg-bulk-strip-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .sg-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar.menu-open .navbar-nav {
    background: var(--sg-paper);
  }

  .sg-hero {
    padding-top: 104px;
    gap: 32px;
  }

  .sg-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .sg-steps,
  .sg-feature-grid {
    grid-template-columns: 1fr;
  }

  .sg-filter-form {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
  }

  .menu-controls-inner,
  .category-tabs,
  .search-box,
  .sort-select {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .category-tabs {
    overflow-x: auto;
  }

  .sg-menu-controls {
    top: 65px;
  }

  .product-card-footer,
  .sg-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sg-menu-helper {
    align-items: stretch;
    flex-direction: column;
  }

  .sg-menu-helper .btn {
    justify-content: center;
  }

  .add-cart-btn,
  .sg-card-actions .add-cart-btn {
    justify-content: center;
    width: 100%;
  }

  .auth-shell,
  .admin-order-grid {
    grid-template-columns: 1fr;
  }

  .auth-brand-panel {
    display: none;
  }

  .auth-card,
  .customer-auth-card {
    padding: 24px;
  }

  .admin-order-head,
  .admin-order-foot {
    flex-direction: column;
  }

  .admin-order-status {
    text-align: left;
  }

  .admin-order-grid section {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 520px) {
  .sg-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .sg-hero h1 {
    font-size: 2.35rem;
  }

  .sg-price-card {
    left: 12px;
    bottom: 12px;
  }

  .sg-section {
    padding: 58px 0;
  }
}

/* ===================================================================
   CUSTOMER AUTH PAGES — Login & Register
   =================================================================== */

/* Full-page wrapper — sits below the navbar */
.auth-main {
  min-height: 100vh;
  padding: 100px 24px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(232,98,42,0.09) 0%, transparent 70%),
    linear-gradient(160deg, #FBF7F0 0%, #FFF5EE 40%, #F0F7F4 100%);
  position: relative;
  overflow: hidden;
}

.auth-main::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,79,0.06) 0%, transparent 70%);
  top: -80px;
  right: -120px;
  pointer-events: none;
}

.auth-main::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,42,0.05) 0%, transparent 70%);
  bottom: -80px;
  left: -100px;
  pointer-events: none;
}

.auth-card-container {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.auth-card {
  background: white;
  border: 1px solid rgba(107,66,38,0.1);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow:
    0 4px 6px rgba(107,66,38,0.04),
    0 12px 40px rgba(107,66,38,0.10),
    0 40px 80px rgba(107,66,38,0.07);
  text-align: center;
}

.auth-card h1 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.auth-card > p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.65;
}

/* Google Sign-In Button */
.primary-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: white;
  border: 1.5px solid #dadce0;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.primary-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,98,42,0.04), rgba(45,106,79,0.04));
  opacity: 0;
  transition: opacity 0.3s;
}

.primary-btn:hover::before { opacity: 1; }

.primary-btn:hover {
  border-color: #bbbfc4;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

.primary-btn:active {
  transform: translateY(0);
}

.primary-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Register form — left-aligned inside the card */
#registerForm {
  text-align: left;
  margin-top: 4px;
}

/* Form groups */
.auth-card .form-group {
  margin-bottom: 16px;
}

.auth-card .form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  text-align: left;
}

.auth-card .form-group input,
.auth-card .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  box-sizing: border-box;
}

.auth-card .form-group input:focus,
.auth-card .form-group select:focus {
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(232,98,42,0.09);
}

.auth-card .form-group input[readonly] {
  background: var(--cream-dark);
  color: var(--text-light);
  cursor: not-allowed;
  border-color: var(--border);
}

.auth-card .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238B7355' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}

/* Phone row */
.phone-input-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

#countryCode {
  width: 68px !important;
  flex-shrink: 0;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-left: 8px !important;
  padding-right: 8px !important;
}

#phone {
  flex: 1;
}

/* Send / Verify OTP buttons */
#sendOtpBtn,
#verifyOtpBtn {
  padding: 11px 16px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

#sendOtpBtn:hover,
#verifyOtpBtn:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

#sendOtpBtn:disabled,
#verifyOtpBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* OTP input row */
.otp-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

#otp {
  width: 140px !important;
  letter-spacing: 4px;
  font-weight: 700;
  text-align: center;
  font-size: 1rem !important;
}

/* OTP status */
#otpStatus {
  font-size: 0.81rem;
  font-weight: 500;
  min-height: 18px;
  display: block;
  margin-top: 6px;
}

/* Register button */
#registerBtn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff7a42 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

#registerBtn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,98,42,0.35);
}

#registerBtn:disabled {
  background: linear-gradient(135deg, #c8b8a8, #b8a898);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Inline message areas */
#registerMessage,
#loginMessage {
  font-size: 0.87rem;
  font-weight: 500;
  min-height: 20px;
  text-align: center;
  padding: 4px 0;
  line-height: 1.4;
}

/* Profile photo */
#profilePhoto {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid white;
  box-shadow: 0 4px 16px rgba(107,66,38,0.15);
}

/* Privacy checkbox */
.privacy-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
}

.privacy-check-row input[type="checkbox"] {
  width: 18px !important;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
}

.privacy-check-row label {
  font-size: 0.82rem;
  color: var(--text-light);
  cursor: pointer;
  margin-bottom: 0 !important;
  text-align: left;
}

.privacy-check-row a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
}

/* reCAPTCHA visible widget wrapper */
#recaptcha-container {
  display: inline-block;
}

.recaptcha-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 8px;
}

/* First-time note */
.auth-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--green-pale);
  border: 1px solid rgba(45,106,79,0.15);
  border-radius: 12px;
  text-align: left;
}

.auth-note strong {
  display: block;
  font-size: 0.84rem;
  color: var(--green);
  margin-bottom: 4px;
  font-weight: 700;
}

.auth-note span {
  font-size: 0.81rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 540px) {
  .auth-main {
    padding: 90px 16px 48px;
  }

  .auth-card {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .auth-card h1 {
    font-size: 1.4rem;
  }

  #countryCode {
    width: 58px !important;
  }

  #sendOtpBtn,
  #verifyOtpBtn {
    padding: 9px 12px;
    font-size: 0.76rem;
  }

  #otp {
    width: 110px !important;
  }
}

/* ===== MOBILE/UI POLISH FIXES ===== */
.nav-admin-link {
  color: var(--sg-green) !important;
  background: rgba(18,61,34,0.08);
  font-weight: 800 !important;
}

.social-whatsapp,
.whatsapp-float {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #18a957;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.86);
  box-shadow: 0 14px 34px rgba(24,169,87,0.32);
}

.whatsapp-float svg,
.social-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(24,169,87,0.4);
}

.grecaptcha-badge,
#recaptcha-container,
.recaptcha-wrap {
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 768px) {
  .navbar {
    position: sticky;
  }

  .navbar-inner {
    padding: 7px 14px;
    gap: 10px;
  }

  .navbar-logo {
    min-width: 0;
    flex: 1;
  }

  .navbar-logo .logo-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .navbar-logo .logo-text {
    font-size: clamp(1rem, 5vw, 1.35rem);
    white-space: nowrap;
  }

  .navbar-actions {
    gap: 10px;
    flex-shrink: 0;
  }

  .cart-btn {
    padding: 9px 15px;
  }

  .navbar.menu-open .navbar-nav {
    padding: 14px 18px 18px;
    gap: 8px;
  }

  .navbar.menu-open .navbar-nav a {
    width: 100%;
    text-align: center;
  }

  .navbar.menu-open .nav-account-only {
    display: none !important;
  }

  .sg-menu-hero {
    padding: 108px 0 48px;
  }

  .sg-menu-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .sg-menu-controls {
    position: static;
    z-index: 20;
    padding: 10px 0;
  }

  .sg-product-grid {
    gap: 18px;
  }

  .product-card-body {
    padding: 16px;
  }

  .product-card-footer {
    align-items: stretch;
    gap: 12px;
  }

  .sg-card-actions {
    display: grid;
    grid-template-columns: minmax(120px, 0.9fr) minmax(132px, 1.1fr);
    align-items: center;
    gap: 10px;
  }

  .sg-card-actions .qty-control,
  .sg-card-actions .add-cart-btn {
    width: 100%;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    flex: none;
  }

  .sg-card-actions .qty-control {
    padding: 6px;
    justify-content: space-between;
  }

  .sg-card-actions .qty-btn {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .sg-card-actions .qty-input {
    width: 46px;
  }

  .sg-card-actions .add-cart-btn {
    border-radius: 10px;
    padding: 0 14px;
    font-size: 0.88rem;
    width: auto;
  }

  .contact-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
  }

  .contact-item-text,
  .contact-item-text .value {
    min-width: 0;
  }

  .contact-item-text .value {
    overflow-wrap: anywhere;
    font-size: 0.95rem;
  }

  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 0.82rem;
  }

  .admin-layout {
    min-width: 0;
  }

  .admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    height: auto;
  }

  .sidebar-logo {
    padding: 14px 18px;
  }

  .sidebar-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 12px 14px;
  }

  .sidebar-section {
    display: none;
  }

  .sidebar-link {
    flex: 0 0 auto;
    margin: 0;
    white-space: nowrap;
  }

  .admin-main {
    width: 100%;
    overflow: visible;
  }

  .admin-topbar {
    padding: 16px 18px;
    align-items: flex-start;
    gap: 10px;
  }

  .admin-topbar-right {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .admin-content {
    padding: 18px;
  }

  .admin-form-card,
  .admin-table-wrap,
  .admin-order-card {
    border-radius: 10px;
    max-width: 100%;
  }

  .admin-form-card {
    padding: 20px;
  }
}

.admin-order-time {
  color: var(--text-light);
  font-size: 0.82rem;
  margin-top: 4px;
}

.admin-message-list {
  display: grid;
  gap: 16px;
}

.admin-message-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.admin-message-head,
.admin-message-contact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-message-head h3 {
  color: var(--sg-green);
  font-size: 1.05rem;
}

.admin-message-time {
  text-align: right;
  color: var(--text-light);
  font-size: 0.76rem;
  flex-shrink: 0;
}

.admin-message-time strong,
.admin-message-time small {
  display: block;
}

.admin-message-contact {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 14px 0;
}

.admin-message-contact a {
  color: var(--sg-green);
  background: var(--green-pale);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.admin-message-body {
  color: #4d4438;
  white-space: pre-line;
}

@media (max-width: 768px) {
  .admin-message-head {
    flex-direction: column;
  }

  .admin-message-time {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .navbar-logo .logo-tagline {
    display: none;
  }

  .navbar-logo .logo-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .cart-btn {
    padding: 10px 16px;
  }

  .sg-card-actions {
    grid-template-columns: minmax(118px, 0.9fr) minmax(126px, 1.1fr);
  }
}

@media (max-width: 340px) {
  .sg-card-actions {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   UPI Payment, Image Uploader & Lightbox Styles
   ========================================================================== */

/* Payment Selection Radio Cards */
.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-option label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0 !important;
}

.payment-option label:hover {
  border-color: var(--orange);
  background: #fffcf9;
}

.payment-option input[type="radio"]:checked + label {
  border-color: var(--orange);
  background: #fff8f5;
  box-shadow: 0 4px 12px rgba(232, 98, 42, 0.08);
}

.payment-option label .p-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.payment-option label .p-text {
  display: flex;
  flex-direction: column;
}

.payment-option label .p-text strong {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
}

.payment-option label .p-text span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* UPI Payment Instruction Box */
.upi-payment-section {
  animation: slideDown 0.3s ease-out;
}

.upi-details-box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #fdfaf7;
  border: 1px solid #ffedd5;
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
  align-items: center;
}

.upi-details-box .qr-container {
  text-align: center;
  flex: 0 0 auto;
}

.upi-details-box .upi-text-details {
  flex: 1;
  min-width: 200px;
}

.upi-details-box .upi-text-details p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.upi-details-box .upi-text-details code {
  background: #ffedd5;
  color: #c2410c;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}

/* Screenshot File Uploader Dropzone */
.upload-dropzone {
  border: 2px dashed #cbd5e1;
  background: white;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  overflow: hidden;
}

.upload-dropzone:hover, .upload-dropzone.dragover {
  border-color: var(--orange);
  background: #fffaf5;
}

.upload-dropzone.dragover {
  transform: scale(1.01);
}

.upload-dropzone .dz-preview {
  position: relative;
  display: inline-block;
  max-width: 260px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.upload-dropzone .dz-preview img {
  max-width: 100%;
  max-height: 200px;
  display: block;
}

.upload-dropzone .dz-preview-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.upload-dropzone .dz-preview:hover .dz-preview-overlay {
  opacity: 1;
}

/* Lightbox Animation */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Layout for Customer Order Details page */
.order-details-layout {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.order-card-status {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.01);
}

@media (max-width: 991px) {
  .order-details-layout {
    grid-template-columns: 1fr;
  }
  .order-card-status {
    padding: 24px;
  }
}


