/* ============================================================
   D-MART MALL — Global Stylesheet
   Warm Tactile Archetype | Saffron-Orange + Deep Red Palette
   Typography: Montserrat (headings) + Open Sans (body)
   ============================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES — Design Tokens
   ============================================================ */
:root {
  /* Brand Colors */
  --primary:        #E07B00;
  --primary-dark:   #C56A00;
  --primary-light:  #FFF3E0;
  --secondary:      #8B0000;
  --secondary-dark: #6B0000;

  /* Backgrounds */
  --bg:             #FFFDF7;
  --surface:        #FFF8EE;
  --surface-alt:    #FFF0D8;
  --border-color:   #E8C97A;
  --border-light:   #F5E4B8;

  /* Text */
  --text:           #1A1A1A;
  --text-muted:     #555555;
  --text-light:     #8B6940;

  /* Spacing Scale — Fibonacci-inspired, 4/8/16/32/64px only */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  32px;
  --space-xl:  64px;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  /* Borders & Radius */
  --radius:    8px;
  --radius-sm: 4px;

  /* Shadows — none for cards, subtle for nav only */
  --nav-shadow: 0 2px 8px rgba(224, 123, 0, 0.08);

  /* Transitions */
  --transition: 200ms ease;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: var(--font-body);
  font-size: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.25;
  font-weight: 700;
}

/* Hero Headline — text-4xl md:text-5xl font-bold */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
}

/* Section Heading — text-xl md:text-2xl font-semibold */
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--text);
}

/* Body — text-sm md:text-base font-normal */
.body-text {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Section Label / Eyebrow */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-xl) 0;
}

.section-sm {
  padding: var(--space-lg) 0;
}

.section-alt {
  background-color: var(--surface);
}

/* Grid utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 var(--space-md); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--nav-shadow);
  transition: background var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.navbar-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.navbar-brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  color: var(--text);
}

.nav-toggle:hover { color: var(--primary); }

.mobile-menu {
  display: none;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: var(--space-md) var(--space-lg);
}

.mobile-menu.open { display: block; }

.mobile-menu .nav-link {
  display: block;
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu .nav-link:last-child { border-bottom: none; }

@media (max-width: 1023px) {
  .navbar-links { display: none; }
  .nav-toggle { display: flex; align-items: center; }
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

/* Primary Button — ONE per page */
.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  padding: var(--space-md) var(--space-lg);
}

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

/* Ghost / Outline Button */
.btn-ghost {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: var(--space-sm) var(--space-md);
}

.btn-ghost:hover {
  background-color: var(--primary-light);
}

/* Text Link Button */
.btn-text {
  background: none;
  color: var(--secondary);
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
}

.btn-text:hover {
  color: var(--primary);
}

/* Small button variant */
.btn-sm {
  font-size: 0.78rem;
  padding: var(--space-xs) var(--space-md);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #ffffff;
  border: 1px solid #FFE4B5;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.card:hover {
  border-color: var(--primary);
}

.card-body {
  padding: var(--space-lg);
}

.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #E07B00 0%, #8B0000 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224, 123, 0, 0.82) 0%, rgba(139, 0, 0, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-lg);
  max-width: 720px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.88);
  margin: var(--space-md) 0 var(--space-lg);
  line-height: 1.75;
  max-width: 56ch;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   SECTION DIVIDER — Traditional Indian Motif
   ============================================================ */
.section-divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border-color);
}

.section-divider-icon {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Horizontal rule divider */
.divider {
  border: none;
  border-top: 2px solid var(--border-color);
  margin: var(--space-lg) 0;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(224, 123, 0, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 128px;
}

.form-error {
  color: var(--secondary);
  font-size: 0.78rem;
  margin-top: var(--space-xs);
}

.form-success {
  background: #FFF3E0;
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  color: var(--primary-dark);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1A0A00;
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(224, 123, 0, 0.25);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.footer-brand-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-md);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.footer-link {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: var(--space-xs) 0;
  transition: color var(--transition);
}

.footer-link:hover { color: var(--primary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-admin-link {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-admin-link:hover { color: rgba(255, 255, 255, 0.5); }

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   GALLERY & LIGHTBOX
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #FFE4B5;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: #ffffff;
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(26, 10, 0, 0.93);
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: -var(--space-lg);
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  top: -40px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border: 1px solid #FFE4B5;
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: background-color var(--transition), color var(--transition);
}

.faq-question:hover,
.faq-item.open .faq-question {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--primary);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  background: var(--surface);
  border-top: 1px solid #FFE4B5;
}

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.review-card {
  background: #ffffff;
  border: 1px solid #FFE4B5;
  border-radius: var(--radius);
  padding: var(--space-lg);
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.25;
  position: absolute;
  top: var(--space-sm);
  left: var(--space-md);
  line-height: 1;
}

.review-stars {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.review-author-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.review-author-role {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-body {
  background: #F5F5F5;
  font-family: var(--font-body);
}

.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 240px;
  background: #1A0A00;
  padding: var(--space-lg) 0;
  overflow-y: auto;
  z-index: 500;
}

.admin-sidebar-brand {
  padding: 0 var(--space-lg) var(--space-lg);
  border-bottom: 1px solid rgba(224, 123, 0, 0.2);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.admin-nav-link {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition);
}

.admin-nav-link:hover,
.admin-nav-link.active {
  background: rgba(224, 123, 0, 0.15);
  color: var(--primary);
}

.admin-main {
  margin-left: 240px;
  padding: var(--space-lg);
  min-height: 100vh;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--border-color);
}

.admin-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.admin-card {
  background: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.admin-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-light);
}

/* Admin Table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.admin-table th {
  text-align: left;
  padding: var(--space-sm) var(--space-md);
  background: var(--surface);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border-color);
}

.admin-table td {
  padding: var(--space-sm) var(--space-md);
  color: var(--text-muted);
  border-bottom: 1px solid #F0F0F0;
  vertical-align: top;
}

.admin-table tr:hover td { background: #FAFAFA; }

/* Stat Cards */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.stat-card {
  background: #ffffff;
  border: 1px solid #E0E0E0;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: var(--space-md);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

/* Status badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px var(--space-sm);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge-pending  { background: #FFF3E0; color: #E07B00; }
.badge-confirmed { background: #E8F5E9; color: #2E7D32; }
.badge-cancelled { background: #FFEBEE; color: #C62828; }

@media (max-width: 767px) {
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: var(--space-md); }
  .stat-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8000;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-size: 1.6rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid var(--border-color);
  z-index: 2000;
  padding: var(--space-lg);
  overflow-y: auto;
  transition: right 200ms ease;
}

.cart-sidebar.open { right: 0; }

.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 10, 0, 0.5);
  z-index: 1999;
}

.cart-overlay.active { display: block; }

/* ============================================================
   DPDPA CONSENT BANNER
   ============================================================ */
#dpdpa-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1A0A00;
  color: #f1f5f9;
  padding: var(--space-md) var(--space-lg);
  border-top: 2px solid var(--primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }
.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Gradient placeholder for images */
.img-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
}

/* Ornamental top border accent for feature/highlighted cards */
.card-accent {
  border-top: 3px solid var(--primary);
}

/* Marquee / Offers strip */
.offers-strip {
  background: var(--primary);
  color: #ffffff;
  padding: var(--space-sm) 0;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}

.offers-marquee {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}