/* ===== CSS Variables & Reset ===== */
:root {
  --forest: #1a3c34;
  --forest-dark: #0f2620;
  --cream: #f7f3ed;
  --amber: #c8956c;
  --text-dark: #2d2d2d;
  --text-light: #6b7280;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26, 60, 52, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 60, 52, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 60, 52, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease-out;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 243, 237, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 60, 52, 0.08);
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--amber);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--forest);
}

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

.nav-links a:hover::after {
  width: 100%;
}

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

.cart-btn {
  position: relative;
  background: var(--forest);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

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

.cart-count {
  background: var(--amber);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: var(--forest);
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 50%, #0a1e18 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 149, 108, 0.2);
  color: var(--amber);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 span {
  color: var(--amber);
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: #b8845c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 149, 108, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Section Common ===== */
.section {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: 2.2rem;
  color: var(--forest);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== Carousel ===== */
.carousel-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, #f0ebe3 100%);
}

.carousel-wrapper {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-out;
}

.carousel-card {
  min-width: calc(33.333% - 16px);
  margin: 0 8px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  cursor: pointer;
}

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

.carousel-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.carousel-card-body {
  padding: 24px;
}

.carousel-card-body h3 {
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.carousel-card-body .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--amber);
}

.carousel-card-body .desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
  border: none;
}

.carousel-btn:hover {
  background: var(--forest-dark);
  transform: scale(1.05);
}

/* ===== Categories ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.category-item {
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

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

.category-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 2rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.category-item:hover .category-icon {
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--amber) 0%, #d4a574 100%);
}

.category-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===== Product Grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

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

.product-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.product-card-img-wrapper {
  overflow: hidden;
  position: relative;
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--amber);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-card-body {
  padding: 20px;
}

.product-card-body h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.product-card-body .product-category {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

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

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
}

.add-to-cart-btn {
  background: var(--forest);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
}

.add-to-cart-btn:hover {
  background: var(--forest-dark);
  transform: scale(1.05);
}

/* ===== Trust Badges ===== */
.trust-section {
  background: var(--forest);
  padding: 60px 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  color: var(--white);
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.trust-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.trust-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ===== Footer ===== */
.footer {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 24px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 40px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* ===== Cart Sidebar ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

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

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  transition: right var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
}

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

.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(26, 60, 52, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  font-size: 1.3rem;
  color: var(--forest);
}

.cart-close {
  background: none;
  font-size: 1.5rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.cart-close:hover {
  color: var(--text-dark);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26, 60, 52, 0.06);
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
}

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

.cart-item-info h4 {
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.cart-item-info .cart-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
  transition: all var(--transition);
}

.qty-btn:hover {
  background: var(--forest);
  color: var(--white);
}

.cart-item-qty span {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  color: #ef4444;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
}

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

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(26, 60, 52, 0.08);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-total span:last-child {
  color: var(--forest);
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
}

.checkout-btn:hover {
  background: var(--forest-dark);
}

/* ===== Email Verification Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal h2 {
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.modal p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  font-size: 1.3rem;
  color: var(--text-light);
}

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

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

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(26, 60, 52, 0.12);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  background: var(--cream);
}

.form-group input:focus {
  border-color: var(--forest);
  outline: none;
}

.form-btn {
  width: 100%;
  padding: 14px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
  margin-top: 8px;
}

.form-btn:hover {
  background: var(--forest-dark);
}

.form-btn:disabled {
  background: var(--text-light);
  cursor: not-allowed;
}

.verification-code-group {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.verification-code-group input {
  width: 48px;
  height: 56px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0;
  border: 2px solid rgba(26, 60, 52, 0.12);
  border-radius: 10px;
  background: var(--cream);
  color: var(--text-dark);
}

.verification-code-group input:focus {
  border-color: var(--forest);
  outline: none;
}

.resend-btn {
  background: none;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
}

.resend-btn:disabled {
  color: var(--text-light);
  cursor: not-allowed;
}

/* ===== Payment Modal ===== */
.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.payment-method {
  border: 2px solid rgba(26, 60, 52, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--cream);
}

.payment-method:hover {
  border-color: var(--forest);
}

.payment-method.selected {
  border-color: var(--forest);
  background: rgba(26, 60, 52, 0.05);
}

.payment-method-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.payment-method-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
}

/* ===== Product Detail Page ===== */
.product-detail {
  padding: 40px 24px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-detail-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.product-detail-info h1 {
  font-size: 2.2rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.product-detail-category {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.product-detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 24px;
}

.product-detail-desc {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.product-detail-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 2px solid rgba(26, 60, 52, 0.12);
  border-radius: 50px;
  overflow: hidden;
}

.qty-selector button {
  width: 44px;
  height: 44px;
  background: var(--cream);
  color: var(--forest);
  font-size: 1.1rem;
  font-weight: 700;
  transition: all var(--transition);
}

.qty-selector button:hover {
  background: var(--forest);
  color: var(--white);
}

.qty-selector span {
  width: 44px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}

.product-detail-add-btn {
  flex: 1;
  padding: 14px 32px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
}

.product-detail-add-btn:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--forest);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== Policy Pages ===== */
.policy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.policy-page h1 {
  font-size: 2rem;
  color: var(--forest);
  margin-bottom: 32px;
  text-align: center;
}

.policy-page h2 {
  font-size: 1.3rem;
  color: var(--forest);
  margin: 28px 0 12px;
}

.policy-page p {
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.8;
}

.policy-page ul {
  margin: 12px 0 16px 24px;
  color: var(--text-dark);
}

.policy-page li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ===== Toast Notification ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--forest);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 5000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== Fade In Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .carousel-card {
    min-width: calc(50% - 16px);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .carousel-card {
    min-width: calc(100% - 16px);
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section {
    padding: 60px 16px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
}

/* ===== Mobile Nav ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(26, 60, 52, 0.08);
  padding: 16px 24px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(26, 60, 52, 0.06);
}

/* ===== Success State ===== */
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
}

.order-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(26, 60, 52, 0.06);
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
}
