@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
  font-family: "Montserrat", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
}

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.navbar-upper {
  display: flex;
  align-items: center;
  justify-content: center;  
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  font-size: 14px;
}


.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height:63px;
}


.logo-icon {
  width: 42px;
  height: 42px;
  background: #4A7C2E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #2D5016;
  line-height: 1;
  letter-spacing: 1px;
}

.logo-subtitle {
  font-size: 0.65rem;
  color: #4A7C2E;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: #555;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #4A7C2E;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: #4A7C2E;
  border-radius: 2px;
}

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

.cart-btn {
  position: relative;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.3s;
}

.cart-btn:hover {
  background: rgba(74,124,46,0.1);
}

.cart-btn svg {
  width: 22px;
  height: 22px;
  color: #555;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #4A7C2E;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
  color: #555;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 157px;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #eee;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(74,124,46,0.08);
  color: #4A7C2E;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.btn-primary {
  background: #4A7C2E;
  color: white;
}

.btn-primary:hover {
  background: #3d6625;
}

.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.3);
}

.btn-outline {
  background: white;
  border: 2px solid #4A7C2E;
  color: #4A7C2E;
}

.btn-outline:hover {
  background: #4A7C2E;
  color: white;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  margin-top: 70px;
  overflow: hidden;
}

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

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 60px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: #8BC53F;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #8BC53F;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Section Titles */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 8px;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Features */
.features-section {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #f8faf5;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  background: #f0f5e8;
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #4A7C2E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Products */
.products-section {
  padding: 70px 0px 10px 0px;
}

.products-section-background {  
  background: #faf9f5;
}

.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.products-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2D5016;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #4A7C2E;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s;
}

.view-all:hover {
  gap: 8px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  max-height:200px;
}

.blog-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #e74c3c;
  color: white;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-title {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #0000006b;
    color: white;
    padding: 5px 14px;
    border-radius: 2px;
    font-size: 0.90rem;
    font-weight: 700;
}


.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  max-height:200px;
}

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #4A7C2E;
  color: white;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.product-badge.discount {
  background: #e74c3c;
  left: auto;
  right: 16px;
}

.product-info {
  padding: 24px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.product-rating svg {
  width: 16px;
  height: 16px;
  color: #f1c40f;
  fill: #f1c40f;
  flex-shrink: 0;
}

.product-rating .rating-value {
  font-weight: 600;
  font-size: 0.9rem;
}

.product-rating .rating-count {
  font-size: 0.85rem;
  color: #999;
}

.product-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 8px;
}

.product-info h3 a:hover {
  color: #4A7C2E;
}

.product-info .desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-current {
  font-size: 1.3rem;
  font-weight: 800;
  color: #4A7C2E;
}

.price-old {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: #2D5016;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
}

.cta-box h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.cta-box p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 163px 0 60px;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 12px;
}

.page-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Product Detail */
.product-detail {
  padding: 140px 0 60px;
}

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

.product-detail-grid-full {
  display: grid;
  grid-template-columns: 1fr;
  padding: 14px;
  margin-top: 20px;
  border-radius: 7px;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main-image {
  background: #f5f5f0;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
}

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

.thumbnail-list {
  display: flex;
  gap: 12px;
}

.thumbnail-list img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.thumbnail-list img.active,
.thumbnail-list img:hover {
  border-color: #4A7C2E;
}

.product-meta h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 16px;
}

.product-meta .rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.product-meta .price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.product-meta .price-row .current {
  font-size: 2rem;
  font-weight: 800;
  color: #4A7C2E;
}

.product-meta .price-row .old {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
}

.product-meta .price-row .discount-pill {
  background: #e74c3c;
  color: white;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-meta .description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.features-list {
  margin-bottom: 24px;
}

.features-list h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 12px;
}

.features-list ul {
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: #555;
}

.features-list li svg {
  width: 18px;
  height: 18px;
  color: #4A7C2E;
  flex-shrink: 0;
}

.mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f5e8;
  color: #4A7C2E;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
}

.mini-badge svg {
  width: 16px;
  height: 16px;
}

.quantity-cart {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 50px;
  overflow: hidden;
  max-width:130px;
}

.quantity-control button {
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.quantity-control button:hover {
  background: #f5f5f0;
}

.quantity-control button svg {
  width: 16px;
  height: 16px;
}

.quantity-control span {
  width: 40px;
  text-align: center;
  font-weight: 600;
}

/* Cart */
.cart-section {
  padding: 140px 0 60px;
  min-height: 60vh;
}

.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 20px;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}

.cart-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2D5016;
}

.cart-item-info .weight {
  font-size: 0.85rem;
  color: #999;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.cart-item-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #4A7C2E;
}

.remove-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e74c3c;
  transition: background 0.3s;
}

.remove-btn:hover {
  background: rgba(231,76,60,0.1);
}

.remove-btn svg {
  width: 18px;
  height: 18px;
}

.cart-summary {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  height: fit-content;
  position: sticky;
  top: 90px;
}

.cart-summary h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.95rem;
}

.summary-row .label {
  color: #666;
}

.summary-row .value {
  font-weight: 600;
}

.summary-row.free {
  color: #27ae60;
}

.summary-total {
  border-top: 2px solid #f0f0f0;
  margin-top: 12px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total .label {
  font-weight: 700;
  color: #2D5016;
  font-size: 1rem;
}

.summary-total .value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #4A7C2E;
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart-icon {
  width: 80px;
  height: 80px;
  background: #f0f5e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.empty-cart-icon svg {
  width: 40px;
  height: 40px;
  color: #4A7C2E;
}

.empty-cart h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 12px;
}

.empty-cart p {
  color: #666;
  margin-bottom: 24px;
}

/* Checkout */
.checkout-section {
  padding: 140px 0 60px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.checkout-form {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}

.checkout-form h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid-three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

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

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4A7C2E;
}

.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s;
  background: white;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group select:focus {
  outline: none;
  border-color: #4A7C2E;
}

/* Payment Options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.payment-option:hover {
  border-color: #4A7C2E;
}

.payment-option.active {
  border-color: #4A7C2E;
  background: #f8faf5;
}

.payment-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #4A7C2E;
  cursor: pointer;
}

.payment-option-label {
  flex: 1;
  font-weight: 600;
  color: #2D5016;
}

.payment-option-desc {
  font-size: 0.8rem;
  color: #999;
}

.payment-icon {
  width: 40px;
  height: 40px;
  background: #f0f5e8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icon svg {
  width: 22px;
  height: 22px;
  color: #4A7C2E;
}

.payment-form-area {
  display: none;
  margin-top: 16px;
  padding: 20px;
  background: #fafafa;
  border-radius: 12px;
}

.payment-form-area.active {
  display: block;
}

/* Order Number */
.order-number-box {
  background: #f0f5e8;
  border: 2px dashed #4A7C2E;
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.order-number-label {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
}

.order-number-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2D5016;
  letter-spacing: 2px;
}

/* Order Tracking / Lookup */
.lookup-section {
  padding: 140px 0 60px;
  min-height: 50vh;
}

.lookup-card {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.lookup-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 8px;
  text-align: center;
}

.lookup-card .subtitle {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.order-result {
  display: none;
  margin-top: 32px;
}

.order-result.active {
  display: block;
}

.tracking-timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 24px;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
}

.tracking-step {
  position: relative;
  padding-bottom: 24px;
}

.tracking-step:last-child {
  padding-bottom: 0;
}

.tracking-step-dot {
  position: absolute;
  left: -32px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  border: 3px solid #e0e0e0;
}

.tracking-step.completed .tracking-step-dot {
  border-color: #4A7C2E;
  background: #4A7C2E;
}

.tracking-step.completed .tracking-step-dot::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tracking-step.active .tracking-step-dot {
  border-color: #4A7C2E;
  background: white;
  box-shadow: 0 0 0 4px rgba(74,124,46,0.15);
}

.tracking-step-title {
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 4px;
}

.tracking-step.completed .tracking-step-title {
  color: #4A7C2E;
}

.tracking-step-desc {
  font-size: 0.85rem;
  color: #999;
}

.order-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.order-info-item {
  background: #f8faf5;
  border-radius: 12px;
  padding: 16px;
}

.order-info-item .label {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 4px;
}

.order-info-item .value {
  font-weight: 700;
  color: #2D5016;
}

/* Product card buttons row */
.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.product-actions .btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.85rem;
}

/* Detail rating fix */
.detail-rating svg {
  width: 18px;
  height: 18px;
}


.input-icon {
  position: relative;
}

.input-icon svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #999;
}

.input-icon input {
  padding-left: 48px;
}

/* Confirmation */
.confirmation-section {
  padding: 140px 0 60px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.confirmation-icon {
  width: 100px;
  height: 100px;
  background: #d4edda;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.confirmation-icon svg {
  width: 50px;
  height: 50px;
  color: #27ae60;
}

.confirmation-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 16px;
}

.confirmation-section p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.status-box {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  margin-bottom: 32px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.status-item {
  text-align: center;
}

.status-item-icon {
  width: 60px;
  height: 60px;
  background: #f0f5e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.status-item-icon svg {
  width: 28px;
  height: 28px;
  color: #4A7C2E;
}

.status-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 4px;
}

.status-item p {
  font-size: 0.85rem;
  color: #999;
  margin: 0;
}

/* About */
.about-section {
  padding: 140px 0 60px;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 48px;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.about-grid h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 16px;
}

.about-grid p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.value-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}

.value-icon {
  width: 56px;
  height: 56px;
  background: #f0f5e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-icon svg {
  width: 26px;
  height: 26px;
  color: #4A7C2E;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

.stats-box {
  background: #2D5016;
  border-radius: 24px;
  padding: 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
}

.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}

.contact-info-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: #f0f5e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: #4A7C2E;
}

.contact-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #2D5016;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}

.contact-form-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 24px;
}

/* Gallery */
.gallery-section {
  padding: 140px 0 60px;
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  display: block;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  break-inside: avoid;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.gallery-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
  width: 24px;
  height: 24px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
}

.lightbox-caption h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.lightbox-caption p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* Products Page */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: #f0f5e8;
  color: #4A7C2E;
  transition: all 0.3s;
}

.filter-pill.active,
.filter-pill:hover {
  background: #4A7C2E;
  color: white;
}

.sort-select {
  padding: 10px 36px 10px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  font-size: 0.9rem;
  background: white;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #999;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #4A7C2E;
}

.breadcrumb svg {
  width: 16px;
  height: 16px;
}

/* Footer */
.footer {
  background: #2D5016;
  color: white;
  padding: 60px 0 0;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.2);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 12px;
}

.footer a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.footer a:hover {
  color: white;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: #8BC53F;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Toast */
.toast-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  animation: toastSlide 0.3s ease;
  border-left: 4px solid #27ae60;
}

.toast svg {
  width: 20px;
  height: 20px;
  color: #27ae60;
  flex-shrink: 0;
}

.toast span {
  font-size: 0.9rem;
  font-weight: 500;
}

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

.toast.hiding {
  animation: toastHide 0.3s ease forwards;
}

@keyframes toastHide {
  to {
    opacity: 0;
    transform: translateX(30px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .products-grid,
  .features-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-masonry {
    columns: 2;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .about-grid,
  .product-detail-grid,
  .cart-grid,
  .checkout-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .products-grid,
  .features-grid,
  .values-grid,
  .status-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-masonry {
    columns: 1;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .quantity-cart {
    flex-direction: column;
    align-items: stretch;
  }
  .cart-item {
    flex-direction: column;
  }
  .cart-item img {
    width: 100%;
    height: 180px;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}



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

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

    opacity:0;
    transition:opacity 1s ease;

    transform:scale(1);
}

.hero-bg img.active{
    opacity:1;
    animation:heroZoom 8s linear;
}

@keyframes heroZoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.58);
    }
}


.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 16px;
}

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

.faq-item {
    background: #faf9f5;
    border-radius: 10px;
    border: 1px solid #ececec;
    overflow: hidden;
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question {
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-answer
 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding: 0 24px 18px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}