/* ===== AYURVEDA CSS - Main Stylesheet ===== */
:root {
  --green-dark: #1a4731;
  --green-primary: #2D6A4F;
  --green-medium: #3d8b65;
  --green-light: #95D5B2;
  --green-pale: #d8f3dc;
  --gold: #D4A017;
  --gold-light: #f0c040;
  --cream: #FDF6E3;
  --cream-dark: #f5ead0;
  --text-dark: #1a1a1a;
  --text-medium: #444;
  --text-light: #777;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--green-primary);
  color: #fff;
  border-color: var(--green-primary);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.35);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: #b8880f;
  border-color: #b8880f;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border-color: var(--green-primary);
}

.btn-outline:hover {
  background: var(--green-primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--green-primary);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--cream);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1rem;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--green-primary), var(--gold));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}

.announcement-bar strong {
  color: var(--gold-light);
}

/* Navbar */
.navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  font-size: 2rem;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-primary);
  line-height: 1;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green-primary);
  background: var(--green-pale);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}

.dropdown li a {
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.87rem;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  background: transparent;
  border: none;
}

.nav-icon:hover {
  background: var(--green-pale);
  color: var(--green-primary);
}

.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.search-bar {
  display: none;
  border-top: 1px solid #eee;
  padding: 12px 20px;
  background: #fff;
}

.search-bar.active {
  display: block;
}

.search-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid var(--green-primary);
  border-radius: 50px;
  overflow: hidden;
}

.search-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 20px;
  font-size: 0.95rem;
}

.search-form button {
  background: var(--green-primary);
  color: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-size: 1rem;
}

.nav-dropdown-wrapper {
  position: relative;
}

.nav-user-dropdown {
  position: absolute;
  right: 0;
  top: 110%;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 200;
}

.nav-dropdown-wrapper:hover .nav-user-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-user-dropdown a,
.nav-user-dropdown button {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.87rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-user-dropdown a:hover,
.nav-user-dropdown button:hover {
  background: var(--green-pale);
  color: var(--green-primary);
}

.nav-user-dropdown .admin-link {
  color: var(--gold);
  font-weight: 700;
}

/* Alerts */
.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border-bottom: 2px solid #10b981;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border-bottom: 2px solid #ef4444;
}

.alert-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: inherit;
  opacity: 0.6;
}

.alert-close:hover {
  opacity: 1;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 90vh;
  min-height: 520px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 71, 49, 0.85) 0%, rgba(26, 71, 49, 0.5) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: #fff;
  padding: 80px 60px;
  animation: heroIn 0.8s ease;
}

@keyframes heroIn {
  from {
    transform: translateX(-40px);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  color: var(--gold-light);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 6px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

/* Features Bar */
.features-bar {
  background: var(--green-primary);
  padding: 24px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}

.feature-text span {
  font-size: 0.78rem;
  opacity: 0.8;
}

/* Category Grid */
.categories-section {
  background: var(--cream);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 220px;
  cursor: pointer;
  group;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card-bg {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 71, 49, 0.85) 0%, rgba(26, 71, 49, 0.3) 60%, transparent 100%);
}

.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: #fff;
}

.category-card-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.category-card-title {
  font-size: 1.15rem;
  font-weight: 700;
}

.category-card-count {
  font-size: 0.78rem;
  opacity: 0.8;
  margin-top: 2px;
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--cream);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-sale {
  background: var(--gold);
  color: #fff;
}

.badge-featured {
  background: var(--green-primary);
  color: #fff;
}

.badge-new {
  background: #7c3aed;
  color: #fff;
}

.product-actions {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: none;
  color: var(--text-medium);
  transition: var(--transition);
  font-size: 0.9rem;
}

.action-btn:hover {
  background: var(--green-primary);
  color: #fff;
}

.product-body {
  padding: 18px;
}

.product-category {
  font-size: 0.75rem;
  color: var(--green-primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.price-current {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-primary);
}

.price-original {
  font-size: 0.88rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-discount {
  font-size: 0.78rem;
  color: #ef4444;
  font-weight: 700;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.stars {
  color: var(--gold);
  font-size: 0.82rem;
}

.rating-count {
  font-size: 0.78rem;
  color: var(--text-light);
}

.add-to-cart-btn {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background: var(--green-primary);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-to-cart-btn:hover {
  background: var(--green-dark);
}

/* About Section */
.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 450px;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-badge-float .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-primary);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.about-badge-float .label {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}

.about-subtitle {
  color: var(--green-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.about-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.about-text {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0;
}

.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  flex-shrink: 0;
}

.about-feature-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.about-feature-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Testimonials */
.testimonials-section {
  background: var(--cream);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  margin: 0 8px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.testimonial-text {
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 0.92rem;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.92rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-light);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.t-dot.active {
  background: var(--green-primary);
  width: 28px;
  border-radius: 6px;
}

/* Blog Section */
.blog-section {
  background: #fff;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: #fff;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-body {
  padding: 22px;
}

.blog-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.blog-cat {
  background: var(--green-pale);
  color: var(--green-primary);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  color: var(--green-primary);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-read-more:hover {
  gap: 10px;
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  padding: 70px 0;
}

.newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.newsletter-inner h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.newsletter-inner p {
  opacity: 0.85;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 24px;
  font-size: 0.95rem;
}

.newsletter-form button {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0 28px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #b8880f;
}

/* ===== SHOP PAGE ===== */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

.shop-sidebar {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  height: fit-content;
  position: sticky;
  top: 90px;
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream-dark);
  color: var(--green-primary);
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-list a {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.87rem;
  transition: var(--transition);
  color: var(--text-medium);
}

.filter-list a:hover,
.filter-list a.active {
  background: var(--green-pale);
  color: var(--green-primary);
  font-weight: 700;
}

.filter-list .count {
  background: var(--green-pale);
  color: var(--green-primary);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 14px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.shop-count {
  font-size: 0.88rem;
  color: var(--text-light);
}

.shop-sort select {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.87rem;
  outline: none;
  color: var(--text-dark);
  cursor: pointer;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Cart Page */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 2px solid var(--cream-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
}

.cart-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--cream-dark);
  vertical-align: middle;
}

.cart-product-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-product-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream);
}

.cart-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-product-name {
  font-weight: 700;
  font-size: 0.92rem;
}

.cart-product-cat {
  font-size: 0.78rem;
  color: var(--text-light);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.qty-control button {
  width: 34px;
  height: 34px;
  border: none;
  background: var(--cream);
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.qty-control button:hover {
  background: var(--green-pale);
  color: var(--green-primary);
}

.qty-control input {
  width: 44px;
  height: 34px;
  border: none;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  outline: none;
}

.cart-summary {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  height: fit-content;
  position: sticky;
  top: 90px;
}

.cart-summary h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.9rem;
}

.summary-row.total {
  border-top: 2px solid var(--cream-dark);
  margin-top: 8px;
  padding-top: 14px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-primary);
}

.coupon-form {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.coupon-form input {
  flex: 1;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.87rem;
  outline: none;
}

.coupon-form button {
  padding: 10px 16px;
  background: var(--green-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.87rem;
  white-space: nowrap;
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  opacity: 0.3;
}

/* Checkout */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
}

.checkout-form-section {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.checkout-form-section h2 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--cream-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form-group .error {
  color: #ef4444;
  font-size: 0.78rem;
  margin-top: 4px;
}

/* Admin Panel */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
  background: #f8f9fa;
}

.admin-sidebar {
  width: 260px;
  background: linear-gradient(180deg, var(--green-dark) 0%, #0d3320 100%);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  transition: var(--transition);
}

.admin-sidebar::-webkit-scrollbar {
  width: 4px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.admin-brand {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.admin-brand span.icon {
  font-size: 1.6rem;
}

.admin-nav {
  padding: 16px 0;
}

.admin-nav-section {
  padding: 8px 20px 4px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  margin-top: 8px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.87rem;
  font-weight: 600;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.admin-nav a:hover,
.admin-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--gold);
}

.admin-nav a i {
  width: 18px;
  text-align: center;
  font-size: 0.95rem;
}

.admin-main {
  margin-left: 260px;
  flex: 1;
}

.admin-topbar {
  background: #fff;
  padding: 0 28px;
  height: 64px;
  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: 50;
}

.admin-topbar h1 {
  font-size: 1.15rem;
  color: var(--text-dark);
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
}

.admin-user strong {
  color: var(--green-primary);
}

.admin-content {
  padding: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 18px;
  border-left: 4px solid var(--green-primary);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.stat-card:nth-child(2) {
  border-color: var(--gold);
}

.stat-card:nth-child(3) {
  border-color: #7c3aed;
}

.stat-card:nth-child(4) {
  border-color: #ef4444;
}

.stat-card:nth-child(5) {
  border-color: #3b82f6;
}

.stat-card:nth-child(6) {
  border-color: #f97316;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.stat-icon.green {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green-primary);
}

.stat-icon.gold {
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold);
}

.stat-icon.purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.stat-icon.red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.stat-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.stat-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}

.admin-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 24px;
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid #f1f5f9;
}

.admin-card-header h3 {
  font-size: 1rem;
  color: var(--text-dark);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  background: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.87rem;
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: #f8f9fa;
}

.badge-status {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: capitalize;
}

.badge-pending {
  background: #fef9c3;
  color: #854d0e;
}

.badge-confirmed,
.badge-processing {
  background: #dbeafe;
  color: #1e40af;
}

.badge-shipped {
  background: #e0e7ff;
  color: #3730a3;
}

.badge-delivered {
  background: #dcfce7;
  color: #166534;
}

.badge-cancelled,
.badge-refunded {
  background: #fee2e2;
  color: #991b1b;
}

.badge-paid {
  background: #dcfce7;
  color: #166534;
}

.btn-action {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn-edit {
  background: #dbeafe;
  color: #1e40af;
}

.btn-edit:hover {
  background: #bfdbfe;
}

.btn-delete {
  background: #fee2e2;
  color: #991b1b;
}

.btn-delete:hover {
  background: #fecaca;
}

.btn-view {
  background: #dcfce7;
  color: #166534;
}

.btn-view:hover {
  background: #bbf7d0;
}

.admin-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.admin-form .form-group {
  margin-bottom: 20px;
}

.admin-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form input[type="email"],
.admin-form input[type="url"],
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
  color: var(--text-dark);
  background: #fff;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.08);
}

.admin-form textarea {
  min-height: 120px;
  resize: vertical;
}

.toggle-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toggle-switch input[type="checkbox"] {
  width: 40px;
  height: 22px;
  accent-color: var(--green-primary);
  cursor: pointer;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.page-header h1 {
  font-size: 1.5rem;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--green-primary);
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.pagination {
  display: flex;
  gap: 6px;
  align-items: center;
}

.pagination .page-item a,
.pagination .page-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid #e5e7eb;
  color: var(--text-dark);
}

.pagination .page-item a:hover {
  background: var(--green-pale);
  color: var(--green-primary);
  border-color: var(--green-primary);
}

.pagination .page-item.active span {
  background: var(--green-primary);
  color: #fff;
  border-color: var(--green-primary);
}

.pagination .page-item.disabled span {
  opacity: 0.4;
}

/* Misc */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-hero p {
  opacity: 0.85;
  font-size: 1.05rem;
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.breadcrumb-nav a {
  color: #fff;
}

.breadcrumb-nav span {
  opacity: 0.6;
}

.no-results {
  text-align: center;
  padding: 60px;
  color: var(--text-light);
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

/* Success Page */
.success-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  width: 90px;
  height: 90px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 24px;
}

.success-title {
  font-size: 2rem;
  color: var(--green-primary);
  margin-bottom: 12px;
}

.order-details-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  margin: 28px auto;
  text-align: left;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
}

.order-detail-row:last-child {
  border: none;
  font-weight: 800;
  font-size: 1rem;
  color: var(--green-primary);
}

/* Login/Register (Breeze) - override */
.guest-layout {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}

.auth-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 28px;
}

.auth-card h2 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 24px;
  color: var(--green-primary);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #0d2b1a 0%, #0a1f14 100%);
  color: rgba(255, 255, 255, 0.8);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand span:first-child {
  font-size: 1.8rem;
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer-contact li i {
  color: var(--gold);
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.85rem;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact li a:hover {
  color: var(--gold);
}

.newsletter-mini {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-mini p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.newsletter-mini-form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-mini-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 0.83rem;
  color: #fff;
  font-family: inherit;
}

.newsletter-mini-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-mini-form button {
  background: var(--gold);
  border: none;
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.newsletter-mini-form button:hover {
  background: #b8880f;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-trust span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--green-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 500;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

.back-to-top.show {
  display: flex;
}

/* Responsive */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 10px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-content {
    padding: 60px 30px;
  }

  .products-grid,
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .cart-layout,
  .checkout-grid,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    width: calc(100% - 16px);
  }

  .admin-sidebar {
    width: 220px;
  }

  .admin-main {
    margin-left: 220px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-trust {
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .products-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .admin-main {
    margin-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-top {
    padding: 40px 0 30px;
  }
}

/* ===== MISSING UTILITY CLASSES ===== */
.badge-yes {
  background: #d1fae5;
  color: #065f46;
}

.btn-admin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: inherit;
}

.btn-admin-primary {
  background: #2D6A4F;
  color: #fff;
}

.btn-admin-primary:hover {
  background: #1a4731;
}

.btn-admin-secondary {
  background: #f1f5f9;
  color: #475569;
}

.btn-admin-secondary:hover {
  background: #e2e8f0;
}

.btn-admin-danger {
  background: #fee2e2;
  color: #991b1b;
}

.btn-admin-danger:hover {
  background: #fecaca;
}

.btn-admin-sm {
  padding: 5px 12px;
  font-size: 0.76rem;
}

.img-preview {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  display: block;
}

.toggle-switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.toggle-switch input[type=checkbox] {
  display: none;
}

.toggle-slider {
  display: inline-block;
  width: 40px;
  height: 22px;
  background: #e5e7eb;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.toggle-switch input[type=checkbox]:checked+.toggle-slider {
  background: #2D6A4F;
}

.toggle-slider::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.toggle-switch input[type=checkbox]:checked+.toggle-slider::after {
  transform: translateX(18px);
}

.delete-form {
  display: inline;
}