/* ============================================================
   ORGANIC FRESH THEME — Dedicated Self-Contained Stylesheet
   Design Language: Clean Supermarket, Farm-Fresh Green & Amber
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  /* Brand Tokens */
  --brand-primary: #2E8B57; /* Fresh Leaf Green */
  --brand-primary-hover: #236B43;
  --brand-yellow: #FFC107;  /* Sunshine Yellow */
  --brand-yellow-hover: #FFA000;
  --brand-earth: #6B4C2A;   /* Organic Earth Brown */
  --brand-light: #F0FDF4;
  
  /* Semantic Tokens */
  --color-bg: #F8FBF8;
  --color-surface: #FFFFFF;
  --color-surface-2: #F0FDF4;
  --color-surface-3: #DCFCE7;
  --color-text: #1E293B;
  --color-text-2: #475569;
  --color-text-3: #94A3B8;
  --color-border: #E2E8F0;
  --color-border-strong: #CBD5E1;
  --color-success: #16A34A;
  --color-warning: #D97706;
  --color-error: #DC2626;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Geometry */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-card: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(46, 139, 87, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(46, 139, 87, 0.12), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --max-w: 1360px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-primary);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

.btn-yellow {
  background: var(--brand-yellow);
  color: #1E293B;
  font-weight: 800;
}

.btn-yellow:hover {
  background: var(--brand-yellow-hover);
}

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

.btn-outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: var(--color-surface-2);
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.825rem;
}

.btn-lg {
  padding: 0.85rem 1.85rem;
  font-size: 1.05rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  font-size: 0.725rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-green { background: #DCFCE7; color: #15803D; border: 1px solid #BBF7D0; }
.badge-yellow { background: #FEF3C7; color: #B45309; border: 1px solid #FDE68A; }
.badge-earth { background: #EFEBE9; color: #5D4037; border: 1px solid #D7CCC8; }

/* Top Announcement Bar */
.announcement-bar {
  background: var(--brand-primary);
  color: #FFFFFF;
  font-size: 0.825rem;
  padding: 0.45rem 0;
}

.announcement-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.control-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

.control-switcher select {
  background: transparent;
  color: #FFFFFF;
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

.control-switcher select option {
  background: var(--brand-primary);
  color: #FFFFFF;
}

/* Header */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-main {
  padding: 0.9rem 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: -0.5px;
}

.brand-logo i {
  color: var(--brand-yellow);
}

.pincode-picker {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-surface-2);
  border: 1px solid #BBF7D0;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.search-bar-wrap {
  flex: 1;
  max-width: 520px;
  position: relative;
}

.search-form {
  display: flex;
  align-items: center;
  background: #F8FAFC;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.5rem 0.25rem 1.25rem;
  transition: var(--transition);
}

.search-form:focus-within {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.15);
  background: #FFF;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.9rem;
  color: var(--color-text);
}

.search-btn {
  background: var(--brand-primary);
  color: #FFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  position: relative;
  transition: var(--transition);
}

.action-btn:hover {
  background: var(--color-surface-2);
  color: var(--brand-primary);
}

.action-badge {
  position: absolute;
  top: 2px;
  right: 4px;
  background: var(--brand-primary);
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nav Bar */
.nav-bar {
  background: #FFFFFF;
  border-top: 1px solid var(--color-border);
}

.nav-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
}

.nav-item a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-item a:hover,
.nav-item.active a {
  color: var(--brand-primary);
  background: var(--color-surface-2);
}

/* Flash Deals Strip with Live Countdown */
.flash-deals-strip {
  background: linear-gradient(135deg, #15803D 0%, #2E8B57 100%);
  color: #FFFFFF;
  padding: 0.75rem 0;
}

.flash-deals-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.countdown-box {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.countdown-digit {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.85rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #064E3B 0%, #065F46 100%);
  color: #FFFFFF;
  padding: 4.5rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: #FDE047;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.825rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--brand-yellow);
}

.hero-desc {
  font-size: 1.125rem;
  color: #A7F3D0;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-height: 420px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.15);
}

/* Trust Strip */
.trust-strip {
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  padding: 2.25rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-surface-2);
  color: var(--brand-primary);
  border: 1px solid #BBF7D0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.trust-text p {
  font-size: 0.825rem;
  color: var(--color-text-2);
}

/* Section Common */
.section {
  padding: 4rem 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.25rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #064E3B;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-2);
  margin-top: 0.25rem;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.category-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-surface-2);
  color: var(--brand-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: var(--brand-primary);
  color: #FFF;
}

.category-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.category-count {
  font-size: 0.775rem;
  color: var(--color-text-3);
}

/* Product Cards Grid (12px Card Radius) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.product-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #F8FAFC;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-badge-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.product-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.product-wishlist-btn:hover,
.product-wishlist-btn.active {
  background: #FEE2E2;
  color: var(--color-error);
}

.product-body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 0.35rem;
}

.product-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: #064E3B;
  margin-bottom: 0.5rem;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.price-current {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--brand-primary);
}

.price-old {
  font-size: 0.85rem;
  color: var(--color-text-3);
  text-decoration: line-through;
}

.add-cart-btn {
  background: var(--brand-primary);
  color: #FFF;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.add-cart-btn:hover {
  background: var(--brand-primary-hover);
}

/* Footer */
.site-footer {
  background: #064E3B;
  color: #D1FAE5;
  margin-top: auto;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h5 {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #A7F3D0;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--brand-yellow);
  padding-left: 4px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 1rem 0 1.25rem;
  color: #A7F3D0;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--brand-yellow);
  color: #064E3B;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: #6EE7B7;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Slide-out Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 78, 59, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 999;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #064E3B;
  color: #FFF;
}

.drawer-close {
  color: #A7F3D0;
  font-size: 1.25rem;
}

.drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-surface-3);
}

.drawer-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.drawer-item-info {
  flex: 1;
}

.drawer-item-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #064E3B;
  margin-bottom: 0.25rem;
}

.drawer-item-price {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.drawer-qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: fit-content;
}

.drawer-qty-stepper button {
  padding: 0.15rem 0.5rem;
  color: var(--color-text-2);
}

.drawer-qty-stepper span {
  padding: 0 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.drawer-footer {
  padding: 1.5rem;
  border-top: 1.5px solid var(--color-border);
  background: var(--color-surface-2);
}

.drawer-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 900;
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #064E3B;
  color: #FFF;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 4px solid var(--brand-yellow);
  animation: slideInToast 0.3s ease forwards;
}

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Catalog Filter Layout */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

.filter-sidebar {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}

.filter-group {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: #064E3B;
}

.filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-2);
  cursor: pointer;
}

.filter-item input[type="checkbox"] {
  accent-color: var(--brand-primary);
}

/* PDP Layout */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.pdp-gallery {
  position: sticky;
  top: 90px;
}

.pdp-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-card);
  border: 1.5px solid var(--color-border);
  object-fit: cover;
  margin-bottom: 1rem;
}

.pdp-thumb-row {
  display: flex;
  gap: 0.75rem;
}

.pdp-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  object-fit: cover;
}

.pdp-thumb.active {
  border-color: var(--brand-primary);
}

.pdp-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.25;
  color: #064E3B;
  margin-bottom: 0.5rem;
}

.pdp-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1.25rem 0;
}

.pdp-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-primary);
}

/* Forms & Tables */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: #064E3B;
}

.form-control {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.925rem;
  color: var(--color-text);
  background: #FFF;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.15);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.data-table th {
  background: var(--color-surface-2);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: #064E3B;
  border-bottom: 1.5px solid var(--color-border);
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-layout { grid-template-columns: 1fr; }
  .pdp-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.25rem; }
  .header-main .container { flex-wrap: wrap; }
  .search-bar-wrap { order: 3; max-width: 100%; width: 100%; }
  .nav-bar { overflow-x: auto; white-space: nowrap; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
