/* Chelesme - Static E-commerce Styles */
@import url('https://cdn.jsdelivr.net/npm/vazirmatn@33.0.2/Vazirmatn-font-face.css');

:root {
  --background: #ffffff;
  --foreground: #1d1d1f;
  --primary: #166534;
  --secondary: #f59e0b;
  --saffron: #f59e0b;
  --bg-light: #fbfbfd;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --green-800: #166534;
  --green-700: #15803d;
  --green-50: #f0fdf4;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

/* Base Polish */
html {
  scroll-behavior: smooth;
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.slide-up {
  animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--glass-border);
}

* {
  box-sizing: border-box;
}

body {
  color: var(--foreground);
  background: var(--gray-50);
  font-family: 'Vazirmatn', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 3rem;
  width: auto;
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
    color: var(--gray-700);
  }

  .nav-desktop a:hover {
    color: var(--green-800);
  }
}

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

.header-actions a,
.header-actions button {
  padding: 0.5rem;
  color: var(--gray-600);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.header-actions a:hover,
.header-actions button:hover {
  color: var(--green-800);
}

.cart-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background: #dc2626;
  color: white;
  font-size: 0.625rem;
  font-weight: bold;
  min-width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-badge.empty {
  display: none;
}

/* Search Modal */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5rem;
}

.search-modal.open {
  display: flex;
}

.search-container {
  width: 100%;
  max-width: 600px;
  padding: 1rem;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

#search-query {
  flex: 1;
  border: none;
  padding: 0.75rem 0;
  font-size: 1.25rem;
  outline: none;
  background: transparent;
}

.search-results {
  margin-top: 2rem;
  max-height: 60vh;
  overflow-y: auto;
  display: grid;
  gap: 1rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 1rem;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.search-result-item:hover {
  border-color: var(--primary);
  background: var(--bg-light);
}

.search-result-item img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  border-radius: 0.5rem;
  background: var(--gray-50);
}

.search-close {
  background: var(--gray-100);
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-close:hover {
  background: var(--gray-200);
}

.menu-btn {
  display: block;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--gray-100);
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}

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

.mobile-menu a {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-50);
  font-weight: 500;
  color: var(--gray-700);
}

/* Main content */
main {
  flex: 1;
}

/* Hero */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 30%, rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 1rem;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
  color: #fbbf24;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-800);
  color: white;
  border-radius: 9999px;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green-800);
  border-radius: 9999px;
  background: var(--green-50);
  color: var(--green-800);
  font-weight: 600;
  padding: 0.5rem 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
  cursor: pointer;
  font-family: inherit;
}

.add-to-cart-btn:hover {
  background: var(--green-800);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Stats section */
.stats-section {
  padding: 3rem 0;
  background: white;
  border-bottom: 1px solid var(--gray-100);
}

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

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.stat-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.stat-icon.green {
  background: var(--green-50);
}

.stat-icon.yellow {
  background: #fefce8;
}

.stat-icon.orange {
  background: #fff7ed;
}

.stat-icon.teal {
  background: #f0fdfa;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.stat-label {
  color: var(--gray-500);
  font-weight: 500;
}

/* Section titles */
.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-500);
}

/* Product cards */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-50);
}

.product-card-image {
  position: relative;
  height: 16rem;
  width: 100%;
  background: var(--gray-50);
  padding: 1.5rem;
}

.product-card img {
  width: 100%;
  height: 256px;
  min-height: 256px;
  object-fit: contain;
  transition: transform 0.5s;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.625rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  z-index: 10;
}

.product-badge.popular {
  background: #fbbf24;
  color: black;
}

.product-badge.new {
  background: #22c55e;
  color: white;
}

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

.product-card h3 {
  font-weight: bold;
  color: var(--gray-800);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.product-card h3:hover {
  color: var(--green-800);
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
}

.product-price {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--gray-900);
}

.product-price span {
  font-size: 0.75rem;
  font-weight: normal;
  color: var(--gray-500);
  margin-right: 0.25rem;
}

@media (max-width: 768px) {
  .product-card img {
    height: 200px;
    min-height: 200px;
  }
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--green-800);
  box-shadow: 0 0 0 2px rgba(22, 101, 52, 0.2);
}

/* Footer */
footer {
  background: var(--dark-green);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: auto;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 2.5rem;
  width: auto;
}

.footer-brand h3 {
  font-size: 1.25rem;
  font-weight: bold;
}

.footer-brand p,
.footer-contact {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact>div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact svg {
  color: #fbbf24;
  flex-shrink: 0;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #fbbf24;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-socials a {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials a:hover {
  background: #fbbf24;
  color: black;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom a:hover {
  color: white;
}

/* Shop page */
.shop-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .shop-layout {
    flex-direction: row;
  }
}

.shop-sidebar {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .shop-sidebar {
    width: 16rem;
  }
}

.shop-filters {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 6rem;
}

.shop-filters h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-800);
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list li {
  margin-bottom: 0.5rem;
}

.filter-list a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: var(--gray-600);
  transition: all 0.2s;
}

.filter-list a:hover,
.filter-list a.active {
  background: var(--green-50);
  color: var(--green-800);
  font-weight: bold;
}

.shop-main {
  flex: 1;
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.shop-header h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gray-900);
}

.shop-count {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* Cart page */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  min-height: 50vh;
  text-align: center;
}

.cart-empty-icon {
  width: 6rem;
  height: 6rem;
  background: var(--gray-100);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.cart-empty h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.cart-empty p {
  color: var(--gray-500);
  margin-bottom: 2rem;
  max-width: 24rem;
}

.cart-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .cart-layout {
    flex-direction: row;
  }
}

.cart-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cart-item-image {
  width: 6rem;
  height: 6rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

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

.cart-item-info h3 {
  font-weight: bold;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--green-700);
  font-weight: 500;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  height: 2.25rem;
}

.cart-item-qty button {
  width: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-600);
}

.cart-item-qty button:hover {
  background: var(--gray-50);
}

.cart-item-qty span {
  width: 2rem;
  text-align: center;
  font-weight: bold;
  font-size: 0.875rem;
}

.cart-item-remove {
  padding: 0.5rem;
  color: #dc2626;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
}

.cart-item-remove:hover {
  background: #fef2f2;
}

.cart-summary {
  width: 100%;
}

@media (min-width: 1024px) {
  .cart-summary {
    width: 33.333%;
  }
}

.cart-summary-box {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 6rem;
}

.cart-summary-box h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.cart-summary-total {
  border-top: 1px solid var(--gray-100);
  padding-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.125rem;
  color: var(--gray-900);
}

.cart-summary-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-whatsapp {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: #25D366;
  color: white;
  border-radius: 9999px;
  font-weight: bold;
  text-align: center;
  transition: background 0.2s;
}

.btn-whatsapp:hover {
  background: #20bd5a;
}

/* Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .checkout-layout {
    grid-template-columns: 2fr 1fr;
  }
}

.checkout-form-section {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
}

.checkout-form-section h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--gray-700);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .form-row-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Product detail page */
.product-detail {
  padding: 3rem 0;
}

.product-detail-layout {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
}

@media (min-width: 1024px) {
  .product-detail-layout {
    flex-direction: row;
  }
}

.product-detail-image {
  width: 100%;
  min-height: 400px;
  background: var(--gray-50);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .product-detail-image {
    width: 50%;
  }
}

.product-detail-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.product-detail-info {
  padding: 2rem;
}

@media (min-width: 1024px) {
  .product-detail-info {
    width: 50%;
    padding: 3rem;
  }
}

.product-detail-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-detail-badges span {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: bold;
}

.product-detail-badges .organic {
  background: var(--green-100);
  color: var(--green-800);
}

.product-detail-badges .new {
  background: #dbeafe;
  color: #1d4ed8;
}

.product-detail-info h1 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.product-detail-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--green-800);
  margin-bottom: 2rem;
}

.product-detail-price span {
  font-size: 0.875rem;
  font-weight: normal;
  color: var(--gray-500);
  margin-right: 0.5rem;
}

.product-detail-desc {
  color: var(--gray-600);
  line-height: 1.75;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 2px solid rgba(22, 101, 52, 0.2);
  border-radius: 9999px;
  background: white;
  height: 3rem;
}

.qty-stepper button {
  padding: 0 1rem;
  color: var(--green-800);
  background: none;
  border: none;
  cursor: pointer;
  height: 100%;
}

.qty-stepper button:hover {
  background: var(--green-50);
}

.qty-stepper span {
  width: 3rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
  color: var(--gray-800);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  position: relative;
  height: 14rem;
  width: 100%;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.blog-card h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  line-clamp: 2;
}

.blog-card h2:hover {
  color: var(--green-800);
}

.blog-excerpt {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-800);
  font-weight: bold;
  font-size: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-50);
}

.blog-link:hover {
  gap: 0.75rem;
}

/* Post page */
.post-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.post-hero-bg {
  position: absolute;
  inset: 0;
}

.post-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(0.5);
}

.post-hero-content {
  position: relative;
  z-index: 10;
  padding: 1rem;
}

.post-hero-content h1 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.post-content {
  max-width: 48rem;
  margin: -5rem auto 5rem;
  position: relative;
  z-index: 20;
  padding: 0 1rem;
}

.post-content-inner {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-100);
}

.post-content-inner h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content-inner h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.post-content-inner p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
}

/* Success screen */
.success-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.success-box {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 28rem;
  width: 100%;
  text-align: center;
}

.success-icon {
  width: 5rem;
  height: 5rem;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.success-box h1 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.success-box p {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Newsletter section */
.newsletter-section {
  padding: 5rem 0;
  background: var(--dark-green);
  position: relative;
}

.newsletter-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.newsletter-content h2 {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .newsletter-content h2 {
    font-size: 3rem;
  }
}

.newsletter-content>p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  border: none;
  font-size: 1rem;
}

.newsletter-form button {
  background: #fbbf24;
  color: black;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.newsletter-form button:hover {
  background: #fcd34d;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

/* About page */
.about-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.about-hero-content {
  position: relative;
  z-index: 10;
  padding: 1rem;
}

.about-hero-content h1 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.about-hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.about-section {
  padding: 5rem 1rem;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.about-section h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--gray-800);
  margin-bottom: 2rem;
}

.about-section p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-values {
  padding: 5rem 1rem;
  background: var(--green-50);
}

.about-values-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-values-inner {
    flex-direction: row;
  }
}

.about-values-image {
  width: 100%;
  height: 20rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .about-values-image {
    width: 50%;
    height: 20rem;
  }
}

.about-values-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
  background: white;
}

.about-values-content {
  width: 100%;
}

@media (min-width: 768px) {
  .about-values-content {
    width: 50%;
  }
}

.about-values-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.about-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.about-values-list span {
  color: var(--green-600);
  font-size: 1.25rem;
}

/* Contact page */
.contact-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
  padding: 4rem 1rem 0;
}

.contact-header h1 {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.contact-header p {
  font-size: 1.125rem;
  color: var(--gray-500);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-card-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}

.contact-card-icon.green {
  background: var(--green-50);
  color: var(--green-700);
}

.contact-card-icon.yellow {
  background: #fefce8;
  color: #ca8a04;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--gray-500);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.contact-form-section {
  max-width: 64rem;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.contact-form-box {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .contact-form-box {
    flex-direction: row;
  }
}

.contact-form-social {
  background: var(--dark-green);
  color: white;
  padding: 2.5rem;
}

.contact-form-social h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.contact-form-social>p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.contact-form-form {
  padding: 2.5rem;
  flex: 1;
}

.contact-form-form h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.contact-form-form .form-group {
  margin-bottom: 1rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.breadcrumb a:hover {
  color: var(--green-800);
}

/* Back button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.back-btn:hover {
  color: var(--green-800);
}

/* No scrollbar */
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}