@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --green-dark: #1a3c2e;
  --green-mid: #2d6a4f;
  --green-bright: #52b788;
  --green-light: #b7e4c7;
  --green-pale: #f0faf4;
  --gold: #e9c46a;
  --gold-dark: #c9a227;
  --red: #e63946;
  --white: #ffffff;
  --off-white: #fafaf8;
  --gray-light: #f4f4f0;
  --gray-mid: #c8c8be;
  --gray-dark: #5c5c52;
  --text: #1c1c18;
  --shadow: 0 4px 24px rgba(26,60,46,0.10);
  --shadow-lg: 0 8px 40px rgba(26,60,46,0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

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

img { max-width: 100%; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--green-dark);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--white);
}

.navbar-brand span { color: var(--gold); }

.navbar-brand .logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

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

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem; font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-actions {
  display: flex; align-items: center; gap: 0.6rem;
}

.btn-nav {
  background: none; border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white); padding: 0.4rem 1rem;
  border-radius: 100px; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); font-family: 'DM Sans', sans-serif;
}

.btn-nav:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }

.btn-nav-primary {
  background: var(--gold); border-color: var(--gold); color: var(--green-dark);
  font-weight: 600;
}

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

.cart-btn {
  position: relative;
  background: rgba(255,255,255,0.12); border: none;
  color: var(--white); width: 42px; height: 42px;
  border-radius: 50%; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}

.cart-btn:hover { background: rgba(255,255,255,0.2); }

.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--red); 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(--green-dark);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.65rem 1.5rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--green-mid); color: var(--white);
  box-shadow: 0 2px 12px rgba(45,106,79,0.3);
}

.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,106,79,0.4); }

.btn-gold {
  background: var(--gold); color: var(--green-dark);
  box-shadow: 0 2px 12px rgba(233,196,106,0.4);
}

.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--green-mid);
  border: 2px solid var(--green-mid);
}

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

.btn-danger { background: var(--red); color: white; }
.btn-danger:hover { background: #c1121f; }

.btn-sm { padding: 0.4rem 1rem; font-size: 0.82rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #2d5016 60%, var(--green-mid) 100%);
  min-height: 88vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 4rem 2rem;
}

.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(82,183,136,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(233,196,106,0.10) 0%, transparent 50%);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(233,196,106,0.15); color: var(--gold);
  border: 1px solid rgba(233,196,106,0.3);
  padding: 0.35rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white); line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 em { color: var(--gold); font-style: normal; }

.hero p {
  color: rgba(255,255,255,0.75); font-size: 1.08rem; line-height: 1.7;
  margin-bottom: 2.5rem; max-width: 460px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

.hero-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 1.5rem;
  transition: var(--transition);
}

.hero-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }

.hero-card:nth-child(2) { margin-top: 1.5rem; }
.hero-card:nth-child(3) { margin-top: -0.75rem; }

.hero-card .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.hero-card h3 { color: white; font-size: 1rem; margin-bottom: 0.4rem; }
.hero-card p { color: rgba(255,255,255,0.6); font-size: 0.82rem; line-height: 1.5; }

/* ── SECTION ── */
.section { padding: 5rem 2rem; }
.section-sm { padding: 3rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 0.75rem; color: var(--green-dark); }
.section-header p { color: var(--gray-dark); font-size: 1.02rem; max-width: 540px; margin: 0 auto; }
.section-header .label {
  display: inline-block; color: var(--green-mid);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 0.5rem;
}

/* ── CATEGORIES ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.category-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem 1rem; text-align: center;
  cursor: pointer; transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow);
}

.category-card:hover, .category-card.active {
  border-color: var(--green-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-card .cat-icon { font-size: 2.2rem; margin-bottom: 0.6rem; }
.category-card h3 { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--green-dark); }
.category-card .cat-count { font-size: 0.75rem; color: var(--gray-dark); margin-top: 0.2rem; }

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); position: relative;
}

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

.product-img {
  height: 180px; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: white;
  font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem;
  border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em;
}

.product-badge.wholesale {
  background: var(--green-mid);
}

.product-wishlist {
  position: absolute; top: 10px; right: 10px;
  background: white; border: none; width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12); transition: var(--transition); font-size: 0.9rem;
}

.product-wishlist:hover { background: var(--red); color: white; }

.product-info { padding: 1.1rem; }

.product-category {
  font-size: 0.72rem; font-weight: 600; color: var(--green-bright);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem;
}

.product-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; line-height: 1.4; }
.product-weight { font-size: 0.78rem; color: var(--gray-dark); margin-bottom: 0.75rem; }

.product-pricing { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.product-price { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); }
.product-old-price { font-size: 0.85rem; color: var(--gray-mid); text-decoration: line-through; }

.product-actions { display: flex; gap: 0.5rem; }

.btn-add-cart {
  flex: 1; background: var(--green-mid); color: white;
  border: none; padding: 0.55rem 0; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}

.btn-add-cart:hover { background: var(--green-dark); }

.qty-control {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--gray-light); border-radius: 100px; overflow: hidden;
}

.qty-btn {
  background: none; border: none; width: 28px; height: 28px;
  cursor: pointer; font-size: 1rem; color: var(--green-mid); font-weight: 700;
  transition: var(--transition);
}

.qty-btn:hover { background: var(--green-pale); }

.qty-num { font-size: 0.85rem; font-weight: 600; padding: 0 0.25rem; min-width: 20px; text-align: center; }

/* ── CART SIDEBAR ── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 2000; opacity: 0; pointer-events: none; transition: var(--transition);
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 420px; height: 100vh;
  background: var(--white); z-index: 2001;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}

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

.cart-header {
  padding: 1.5rem; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--gray-light);
}

.cart-header h2 { font-size: 1.2rem; }

.cart-close {
  background: none; border: none; font-size: 1.3rem; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--gray-dark);
}

.cart-close:hover { background: var(--gray-light); }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem; }

.cart-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.9rem; border-radius: var(--radius-sm);
  transition: var(--transition); margin-bottom: 0.5rem;
}

.cart-item:hover { background: var(--gray-light); }

.cart-item-img {
  width: 56px; height: 56px; background: var(--green-pale);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}

.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; }
.cart-item-price { color: var(--green-mid); font-weight: 700; font-size: 0.88rem; }

.cart-item-actions { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.4rem; }

.cart-remove { background: none; border: none; color: var(--red); cursor: pointer; font-size: 0.8rem; margin-left: auto; padding: 0.2rem; }

.cart-footer { padding: 1.5rem; border-top: 1px solid var(--gray-light); }

.cart-summary { margin-bottom: 1rem; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.9rem; }
.cart-summary-row.total { font-weight: 700; font-size: 1.05rem; padding-top: 0.5rem; border-top: 1px solid var(--gray-light); }

/* ── MODALS ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 3000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition);
  padding: 1rem;
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white); border-radius: var(--radius);
  width: 100%; max-width: 460px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transform: translateY(20px) scale(0.97);
  transition: var(--transition);
  max-height: 90vh; overflow-y: auto;
}

.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-header {
  padding: 1.5rem; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--gray-light);
}

.modal-body { padding: 1.5rem; }
.modal-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--gray-light); display: flex; gap: 0.75rem; justify-content: flex-end; }

/* ── FORMS ── */
.form-group { margin-bottom: 1.1rem; }

label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--gray-dark); margin-bottom: 0.4rem;
}

input, select, textarea {
  width: 100%; padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--text);
  background: var(--white); transition: var(--transition); outline: none;
}

input:focus, select:focus, textarea:focus { border-color: var(--green-bright); box-shadow: 0 0 0 3px rgba(82,183,136,0.15); }

textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-hint { font-size: 0.78rem; color: var(--gray-dark); margin-top: 0.3rem; }

/* ── CHECKOUT ── */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start; }

.checkout-section {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow); margin-bottom: 1.5rem;
}

.checkout-section h3 { font-size: 1.1rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-light); }

.order-summary { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); position: sticky; top: 90px; }

.payment-methods { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }

.payment-option {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 1rem; border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition);
}

.payment-option.active { border-color: var(--green-bright); background: var(--green-pale); }

.payment-option input[type=radio] { accent-color: var(--green-mid); }

.payment-icons { display: flex; gap: 0.4rem; margin-left: auto; }
.payment-icon-badge {
  background: var(--gray-light); border-radius: 4px;
  padding: 0.15rem 0.4rem; font-size: 0.72rem; font-weight: 700;
  color: var(--gray-dark);
}

.stripe-field {
  background: #f9f9f7; border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm);
  padding: 0.8rem 1rem; font-size: 0.92rem; color: #666; margin-bottom: 0.75rem;
}

/* ── ABOUT / SERVICES PAGES ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 5rem 2rem 4rem; text-align: center; color: white;
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }

.team-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--green-pale); display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}

.team-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-card p { font-size: 0.84rem; color: var(--gray-dark); }

.stats-bar {
  background: var(--green-dark); padding: 3rem 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center;
}

.stat-item h3 { font-size: 2.5rem; color: var(--gold); margin-bottom: 0.3rem; }
.stat-item p { color: rgba(255,255,255,0.7); font-size: 0.88rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.contact-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow); margin-bottom: 1rem;
}

.contact-icon {
  width: 44px; height: 44px; background: var(--green-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--green-dark); color: rgba(255,255,255,0.8);
  padding: 4rem 2rem 2rem;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }

.footer-brand .logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; margin-bottom: 0.75rem; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }

.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.82rem; }

.social-links { display: flex; gap: 0.6rem; }
.social-link {
  width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  transition: var(--transition); cursor: pointer;
}
.social-link:hover { background: var(--gold); color: var(--green-dark); }

/* ── TOAST ── */
.toast-container { position: fixed; bottom: 2rem; right: 2rem; z-index: 5000; display: flex; flex-direction: column; gap: 0.5rem; }

.toast {
  background: var(--green-dark); color: white;
  padding: 0.9rem 1.25rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); font-size: 0.88rem;
  display: flex; align-items: center; gap: 0.6rem;
  transform: translateX(120%); transition: 0.3s ease;
  max-width: 300px;
}

.toast.show { transform: translateX(0); }
.toast.success { background: var(--green-mid); }
.toast.error { background: var(--red); }
.toast.warning { background: var(--gold-dark); }

/* ── ADMIN ── */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 240px; background: var(--green-dark); color: white;
  padding: 1.5rem 0; display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}

.admin-logo { padding: 0 1.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 1rem; }
.admin-logo h2 { font-size: 1.1rem; color: white; }
.admin-logo span { color: var(--gold); }

.admin-nav { list-style: none; flex: 1; }

.admin-nav li a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem; color: rgba(255,255,255,0.7);
  font-size: 0.9rem; font-weight: 500; transition: var(--transition);
}

.admin-nav li a:hover, .admin-nav li a.active {
  background: rgba(255,255,255,0.1); color: white;
  border-right: 3px solid var(--gold);
}

.admin-main { flex: 1; background: var(--gray-light); overflow: hidden; }

.admin-topbar {
  background: white; padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 100;
}

.admin-topbar h1 { font-size: 1.25rem; }

.admin-content { padding: 2rem; }

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }

.stat-card {
  background: white; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
}

.stat-card .stat-label { font-size: 0.8rem; font-weight: 600; color: var(--gray-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.stat-card .stat-value { font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--green-dark); margin-bottom: 0.25rem; }
.stat-card .stat-change { font-size: 0.8rem; color: var(--green-bright); }

.data-table {
  background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}

.table-header {
  padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--gray-light);
}

.table-header h3 { font-size: 1rem; }

table { width: 100%; border-collapse: collapse; }

thead { background: var(--gray-light); }

th, td { padding: 0.85rem 1.25rem; text-align: left; font-size: 0.88rem; }

th { font-weight: 700; color: var(--gray-dark); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }

tbody tr { border-bottom: 1px solid var(--gray-light); transition: var(--transition); }
tbody tr:hover { background: var(--green-pale); }
tbody tr:last-child { border-bottom: none; }

.badge {
  display: inline-block; padding: 0.2rem 0.65rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}

.badge-green { background: rgba(82,183,136,0.15); color: var(--green-mid); }
.badge-gold { background: rgba(233,196,106,0.2); color: var(--gold-dark); }
.badge-red { background: rgba(230,57,70,0.1); color: var(--red); }
.badge-gray { background: var(--gray-light); color: var(--gray-dark); }

/* ── PAGE TRANSITIONS ── */
.page { display: none; }
.page.active { display: block; animation: fadeIn 0.3s ease; }

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

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-green { color: var(--green-mid); }
.text-gold { color: var(--gold-dark); }
.text-red { color: var(--red); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-1 { gap: 0.5rem; }
.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.empty-state { text-align: center; padding: 3rem 1rem; color: var(--gray-dark); }
.empty-state .icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .checkout-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .cart-sidebar { width: 100%; right: -100%; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── SERVICES PAGE ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

.service-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); transition: var(--transition); border-top: 4px solid transparent;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-top-color: var(--green-bright); }

.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--gray-dark); line-height: 1.6; }

/* ── SEARCH BAR ── */
.search-bar {
  display: flex; align-items: center; gap: 0;
  background: white; border-radius: 100px; overflow: hidden;
  box-shadow: var(--shadow); max-width: 500px;
  border: 2px solid var(--gray-light); transition: var(--transition);
}

.search-bar:focus-within { border-color: var(--green-bright); }

.search-bar input {
  border: none; box-shadow: none; flex: 1;
  padding: 0.7rem 1.25rem; background: transparent;
}

.search-bar input:focus { box-shadow: none; }

.search-bar button {
  background: var(--green-mid); border: none; padding: 0.65rem 1.25rem;
  color: white; cursor: pointer; transition: var(--transition); font-size: 1rem;
}

.search-bar button:hover { background: var(--green-dark); }

/* ── FILTER BAR ── */
.filter-bar {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1rem 0; margin-bottom: 1.5rem;
}

.filter-select {
  padding: 0.5rem 1rem; border-radius: 100px;
  border: 1.5px solid var(--gray-light); background: white;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; cursor: pointer;
}

.filter-select:focus { border-color: var(--green-bright); }
