/* ============================================
   RAJASHREE FOODS — Premium Brand Stylesheet
   Palette matched to logo: Deep Maroon · Gold · Cream · Forest Green
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Outfit:wght@300;400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  /* Logo-matched brand colors */
  --primary: #5D0E11;
  --primary-dark: #3F080A;
  --primary-light: #7A1A1E;
  --accent: #B8860B;
  --accent-light: #E8C86A;
  --accent-dark: #8B6508;
  --green: #2E461A;
  --green-light: #3F5C28;
  --bg: #FEFBEA;
  --bg-soft: #FDF5E6;
  --bg-muted: #F0E6D2;
  --text: #2A0A0C;
  --text-muted: #5C3A2E;
  --text-light: #7A5A4A;
  --white: #FFFFFF;
  --success: #2E461A;
  --danger: #9B1C1C;
  --shadow: 0 8px 30px rgba(93, 14, 17, 0.10);
  --shadow-lg: 0 20px 50px rgba(93, 14, 17, 0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --nav-h: 78px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Lato', sans-serif;
  --font-num: 'Roboto', 'Lato', 'Courier New', monospace;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.num, .price, .phone-num, .stat-num, .cart-count, table .num-cell {
  font-family: var(--font-num);
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn:hover::after { transform: translateX(120%); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(93, 14, 17, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(93, 14, 17, 0.42);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #2A0A0C;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  color: #2A0A0C;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(254, 251, 234, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(93, 14, 17, 0.12);
  height: 68px;
}

.navbar .nav-inner {
  width: min(1180px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  z-index: 1001;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: var(--transition);
}

.brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 500;
  transition: var(--transition);
}

.navbar.scrolled .brand-name { color: var(--primary); }
.navbar.scrolled .brand-tag { color: var(--accent-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links > li { position: relative; }

.nav-links a.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  border-radius: 6px;
  transition: var(--transition);
}

.navbar.scrolled .nav-links a.nav-link { color: var(--text); }

.nav-links a.nav-link:hover,
.nav-links a.nav-link.active {
  color: var(--accent);
}

.navbar.scrolled .nav-links a.nav-link:hover,
.navbar.scrolled .nav-links a.nav-link.active {
  color: var(--primary);
  background: var(--bg-soft);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
}

.nav-links > li:hover > .dropdown,
.nav-links > li.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--text) !important;
  background: transparent !important;
}

.dropdown a:hover {
  background: var(--bg-soft) !important;
  color: var(--primary) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}

.navbar.scrolled .cart-btn {
  background: var(--bg-soft);
  color: var(--primary);
  border-color: var(--bg-muted);
}

.cart-btn:hover { transform: scale(1.08); }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.68rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--primary); }

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.hero-slider { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(63, 8, 10, 0.78) 0%,
    rgba(93, 14, 17, 0.62) 45%,
    rgba(63, 8, 10, 0.72) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 18px;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 820px;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  opacity: 0.92;
  max-width: 540px;
  margin-bottom: 36px;
  animation: fadeUp 1s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 6px;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.hero-nav:hover { background: rgba(255,255,255,0.25); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.sparks {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-light);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 3s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent);
}

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 120px 20px 70px;
  color: var(--white);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(63,8,10,0.82), rgba(93,14,17,0.65));
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 10px;
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.page-hero p { opacity: 0.95; font-size: 1.1rem; color: #FEFBEA; }

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.breadcrumb a:hover { color: var(--accent); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(93, 14, 17, 0.08);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  transition: transform 0.5s ease;
  background: linear-gradient(145deg, #FDF5E6, #FEFBEA);
}

.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.product-card-cat {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-price {
  font-family: var(--font-num);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.product-unit {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ---------- Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 36px 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(93, 14, 17, 0.07);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-soft), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.why-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Highlights ---------- */
.highlights {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.highlights::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.04'%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");
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.highlight-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--accent-light);
}

.highlight-item p { font-size: 0.9rem; opacity: 0.85; }

/* ---------- About ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.about-stat .stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.about-stat span:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- CTA ---------- */
.cta-banner {
  position: relative;
  padding: 90px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(63, 8, 10, 0.82);
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 28px;
  font-size: 1.1rem;
}

/* ---------- Info ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(93, 14, 17, 0.08);
  transition: var(--transition);
}

.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.info-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.info-card p, .info-card a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-card a:hover { color: var(--primary); }
.info-card .phone-num { color: var(--primary); font-weight: 600; display: block; margin: 4px 0; }

/* ---------- Cart ---------- */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cart-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-weight: 500;
  font-size: 0.9rem;
}

.cart-table td {
  padding: 16px;
  border-bottom: 1px solid var(--bg-muted);
  vertical-align: middle;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  padding: 4px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--bg-muted);
  border-radius: 8px;
  overflow: hidden;
}

.qty-control button {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-soft);
  cursor: pointer;
  font-size: 1rem;
  color: var(--primary);
}

.qty-control span {
  width: 40px;
  text-align: center;
  font-family: var(--font-num);
  font-weight: 600;
}

.cart-summary {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 1rem;
}

.cart-summary-row.total {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  border-top: 1px solid var(--bg-muted);
  padding-top: 14px;
  margin-top: 8px;
}

.checkout-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--bg-muted);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(93, 14, 17, 0.14);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(20, 8, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: zoomIn 0.35s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover { background: var(--primary); }

/* ---------- Floating ---------- */
.float-btns {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  animation: floatPulse 2.5s ease-in-out infinite;
}

.float-btn:hover {
  transform: scale(1.12);
  animation: none;
}

.float-btn.wa { background: #25D366; }
.float-btn.call { background: var(--primary); }
.float-btn.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.float-btn.fb { background: #1877F2; }
.float-btn.li { background: #0A66C2; }
.float-btn.yt { background: #FF0000; }

.float-label {
  font-size: 0.65rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.float-row {
  display: flex;
  align-items: center;
}

.float-row:hover .float-label { opacity: 1; }

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, #5D0E11, #3F080A);
  color: rgba(255,255,255,0.85);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.footer-brand .brand-tag { color: var(--accent); display: block; margin-bottom: 14px; }

.footer-brand p {
  font-size: 0.92rem;
  opacity: 0.8;
  margin-bottom: 16px;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent-light);
  margin-bottom: 18px;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-links a:hover { opacity: 1; color: var(--accent); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 500;
}

.footer-bottom a:hover { text-decoration: underline; }

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-row a:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

.avail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  text-align: center;
}

.avail-item {
  background: var(--white);
  padding: 24px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.avail-item:hover { transform: translateY(-4px); }

.avail-item .icon { font-size: 1.8rem; margin-bottom: 8px; color: var(--primary); }
.avail-item h4 { font-size: 0.95rem; color: var(--primary-dark); }

.qr-box {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

.qr-box img {
  width: 180px;
  height: 180px;
  margin: 16px auto;
  object-fit: contain;
}

/* ---------- Product detail ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.product-detail-img {
  aspect-ratio: 1;
  background: var(--bg-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-info h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.product-detail-info .price {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700;
  margin: 16px 0;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  flex-wrap: wrap;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--primary-dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  z-index: 6000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.22); }
  50% { box-shadow: 0 6px 28px rgba(0,0,0,0.35), 0 0 0 8px rgba(255,255,255,0.08); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card.reveal.visible,
.why-card.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .about-split,
  .product-detail,
  .checkout-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-nav { display: none; }
}

@media (max-width: 860px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 40px;
    gap: 4px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-links.open { right: 0; }

  .nav-links a.nav-link {
    color: var(--text) !important;
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: 1px solid var(--bg-muted);
  }

  .nav-links a.nav-link:hover,
  .nav-links a.nav-link.active {
    color: var(--primary) !important;
    background: var(--bg-soft) !important;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--bg-soft);
    display: none;
    min-width: 100%;
    border-radius: 0;
    padding: 0;
  }

  .nav-links > li.open > .dropdown { display: block; }

  .dropdown a { padding: 12px 24px; font-size: 0.9rem; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-overlay.show {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cart-table thead { display: none; }
  .cart-table tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid var(--bg-muted);
    border-radius: var(--radius-sm);
    padding: 12px;
  }
  .cart-table td {
    display: flex;
    justify-content: space-between;
    border: none;
    padding: 8px;
  }
  .cart-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-muted);
  }
  .float-btns { right: 12px; bottom: 12px; }
  .float-btn { width: 46px; height: 46px; font-size: 1.2rem; }
  .cta-banner { background-attachment: scroll; }
}
