/* ===== NATURA NATUURWINKEL — Custom Theme ===== */
:root {
  --natura-green: #388e3c;
  --natura-green-dark: #1b5e20;
  --natura-green-light: #66bb6a;
  --natura-lime: #8bc34a;
  --natura-cream: #faf8f0;
  --natura-warm: #f5f0e6;
  --natura-brown: #5d4037;
  --natura-brown-light: #8d6e63;
  --natura-text: #2c2c2c;
  --natura-text-light: #666;
  --natura-gold: #c8a951;
  --natura-sale: #e53935;
  --natura-bio: #43a047;
  --natura-shadow: 0 2px 20px rgba(45,122,58,.12);
  --natura-radius: 12px;
  --natura-transition: .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--natura-text);
  background: var(--natura-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.w { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

a { color: var(--natura-green); text-decoration: none; transition: var(--natura-transition); }
a:hover { color: var(--natura-green-dark); }

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

/* ===== TOPBAR ===== */
.topbar {
  background: var(--natura-green-dark);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a, .topbar span { color: rgba(255,255,255,.9); }
.topbar a:hover { color: #fff; }
.topbar i { margin-right: 6px; opacity: .8; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar .free-ship { background: var(--natura-lime); color: #1a3a1a; padding: 2px 12px; border-radius: 20px; font-weight: 600; font-size: 12px; }

/* ===== NAV ===== */
nav {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--natura-text);
  font-size: 15px;
  transition: var(--natura-transition);
}
.nav-links a:hover, .nav-links a.active { background: var(--natura-green); color: #fff !important; }
.nav-cta {
  background: var(--natura-green) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--natura-green-dark) !important; transform: translateY(-1px); }
.nav-cart { position: relative; font-size: 20px; cursor: pointer; color: var(--natura-text); padding: 8px; }
.nav-cart .cart-count {
  position: absolute; top: 0; right: -2px;
  background: var(--natura-sale);
  color: #fff;
  font-size: 11px; font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--natura-text); margin: 6px 0; transition: var(--natura-transition); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--natura-green-dark) 0%, var(--natura-green) 50%, var(--natura-lime) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.hero .w { position: relative; z-index: 2; color: #fff; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero p { font-size: 1.15rem; max-width: 560px; opacity: .95; margin-bottom: 28px; line-height: 1.7; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.2);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  color: var(--natura-green) !important;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: var(--natura-transition);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.15); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--natura-transition);
  text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ===== SECTIONS ===== */
.sec { padding: 80px 0; }
.sec-alt { background: #fff; }
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--natura-text);
}
.sec-sub {
  text-align: center;
  color: var(--natura-text-light);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ===== CATEGORIES GRID ===== */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.cat-card {
  background: #fff;
  border-radius: var(--natura-radius);
  overflow: hidden;
  box-shadow: var(--natura-shadow);
  transition: var(--natura-transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--natura-text);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(45,122,58,.18); }
.cat-card img { width: 100%; height: 160px; object-fit: cover; }
.cat-card-body { padding: 16px; text-align: center; }
.cat-card-body h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.cat-card-body p { font-size: .85rem; color: var(--natura-text-light); }

/* ===== PRODUCT GRID ===== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card {
  background: #fff;
  border-radius: var(--natura-radius);
  overflow: hidden;
  box-shadow: var(--natura-shadow);
  transition: var(--natura-transition);
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(45,122,58,.18); }
.product-img-wrap { position: relative; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 240px; object-fit: cover; transition: var(--natura-transition); }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-sale { background: var(--natura-sale); color: #fff; }
.badge-bio { background: var(--natura-bio); color: #fff; }
.badge-bestseller { background: var(--natura-gold); color: #fff; }
.badge-vegan { background: #7b1fa2; color: #fff; }
.badge-premium { background: var(--natura-brown); color: #fff; }
.badge-populair { background: #1565c0; color: #fff; }
.badge-eco { background: #00897b; color: #fff; }
.badge-nl { background: #ff6f00; color: #fff; }
.product-body { padding: 16px; }
.product-body h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; color: var(--natura-text); }
.product-body .product-desc { font-size: .85rem; color: var(--natura-text-light); margin-bottom: 10px; line-height: 1.5; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; font-size: 13px; }
.product-rating .stars { color: #ffc107; }
.product-rating .count { color: var(--natura-text-light); }
.product-footer { display: flex; align-items: center; justify-content: space-between; padding: 0 16px 16px; }
.product-price { display: flex; align-items: baseline; gap: 8px; }
.product-price .current { font-size: 1.3rem; font-weight: 700; color: var(--natura-green); }
.product-price .original { font-size: .9rem; color: #999; text-decoration: line-through; }
.btn-cart {
  background: var(--natura-green);
  color: #fff !important;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--natura-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-cart:hover { background: var(--natura-green-dark); transform: translateY(-1px); }

/* ===== SHOP TOOLBAR ===== */
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.shop-search {
  display: flex; align-items: center;
  background: #fff;
  border: 2px solid #e8e0d0;
  border-radius: 30px;
  padding: 10px 20px;
  gap: 10px;
  flex: 1;
  max-width: 400px;
}
.shop-search i { color: var(--natura-text-light); }
.shop-search input {
  border: none;
  outline: none;
  font-size: 15px;
  width: 100%;
  background: transparent;
  font-family: inherit;
}
.shop-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px;
  border: 2px solid #e8e0d0;
  border-radius: 25px;
  background: #fff;
  color: var(--natura-text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--natura-transition);
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active { background: var(--natura-green); color: #fff !important; border-color: var(--natura-green); }

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--natura-transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed; top: 0; right: -440px;
  width: 420px; max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  box-shadow: -4px 0 30px rgba(0,0,0,.15);
  transition: var(--natura-transition);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}
.cart-header h2 { font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.cart-close { background: none; border: none; font-size: 24px; cursor: pointer; color: #666; padding: 4px; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: .9rem; font-weight: 600; margin-bottom: 2px; }
.cart-item-info .cart-item-price { color: var(--natura-green); font-weight: 700; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.cart-item-qty button {
  width: 28px; height: 28px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #f9f9f9;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.cart-item-qty span { font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove { color: #999; cursor: pointer; font-size: 18px; padding: 4px; }
.cart-item-remove:hover { color: var(--natura-sale); }
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #eee;
  background: var(--natura-warm);
}
.cart-total { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 15px; }
.cart-total.grand { font-size: 1.15rem; font-weight: 700; padding-top: 10px; border-top: 1px solid #ddd; margin-top: 8px; }
.cart-checkout {
  display: block; width: 100%;
  background: var(--natura-green);
  color: #fff !important;
  text-align: center;
  padding: 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  margin-top: 16px;
  transition: var(--natura-transition);
}
.cart-checkout:hover { background: var(--natura-green-dark); }
.cart-empty { text-align: center; padding: 60px 20px; color: #999; }
.cart-empty i { font-size: 48px; margin-bottom: 16px; display: block; opacity: .4; }

/* ===== USP BAR ===== */
.usp-bar { background: #fff; padding: 32px 0; border-bottom: 1px solid #eee; }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; text-align: center; }
.usp-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.usp-item i { font-size: 28px; color: var(--natura-green); }
.usp-item strong { font-size: .95rem; }
.usp-item span { font-size: .82rem; color: var(--natura-text-light); }

/* ===== FEATURED SECTION ===== */
.featured-scroll { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.featured-scroll::-webkit-scrollbar { height: 4px; }
.featured-scroll::-webkit-scrollbar-thumb { background: var(--natura-green); border-radius: 4px; }
.featured-scroll .product-card { min-width: 280px; scroll-snap-align: start; flex-shrink: 0; }

/* ===== ABOUT / CTA ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-img { border-radius: var(--natura-radius); overflow: hidden; box-shadow: var(--natura-shadow); }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 16px; }
.about-text p { color: var(--natura-text-light); margin-bottom: 16px; line-height: 1.8; }
.about-features { list-style: none; margin: 20px 0; }
.about-features li {
  padding: 8px 0;
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.about-features li i { color: var(--natura-green); font-size: 18px; }

.cta-banner {
  background: linear-gradient(135deg, var(--natura-green-dark), var(--natura-green), var(--natura-lime));
  padding: 64px 0;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 12px; }
.cta-banner p { opacity: .9; max-width: 500px; margin: 0 auto 28px; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--natura-warm);
  padding: 48px 0;
  text-align: center;
}
.newsletter h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 8px; }
.newsletter p { color: var(--natura-text-light); margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid #e0d8c8;
  border-radius: 30px;
  font-size: 15px;
  outline: none;
  font-family: inherit;
}
.newsletter-form input:focus { border-color: var(--natura-green); }
.newsletter-form button {
  background: var(--natura-green);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--natura-transition);
  font-family: inherit;
}
.newsletter-form button:hover { background: var(--natura-green-dark); }

/* ===== FOOTER ===== */
footer {
  background: var(--natura-green-dark);
  color: rgba(255,255,255,.85);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { opacity: .8; font-size: .9rem; line-height: 1.7; margin-top: 12px; }
.footer-brand img { height: 36px; margin-bottom: 8px; }
footer h4 { font-weight: 700; margin-bottom: 16px; font-size: 1rem; color: #fff; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: rgba(255,255,255,.7); font-size: .9rem; }
footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; opacity: .7;
  flex-wrap: wrap; gap: 8px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: rgba(255,255,255,.7); font-size: 18px; }
.footer-social a:hover { color: #fff; }
.footer-payments { display: flex; gap: 12px; align-items: center; }
.footer-payments i { font-size: 28px; opacity: .7; }

/* ===== CHECKOUT ===== */
.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.checkout-card {
  background: #fff;
  border-radius: var(--natura-radius);
  padding: 32px;
  box-shadow: var(--natura-shadow);
}
.checkout-card h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--natura-green); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--natura-text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0d8c8;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: var(--natura-transition);
}
.form-group input:focus, .form-group select:focus { border-color: var(--natura-green); }
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: 2px solid #e0d8c8;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--natura-transition);
}
.payment-option:hover, .payment-option.selected { border-color: var(--natura-green); background: rgba(45,122,58,.04); }
.payment-option input[type="radio"] { accent-color: var(--natura-green); }
.order-summary-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.order-place-btn {
  width: 100%;
  background: var(--natura-green);
  color: #fff !important;
  border: none;
  padding: 16px;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: var(--natura-transition);
  font-family: inherit;
}
.order-place-btn:hover { background: var(--natura-green-dark); transform: translateY(-1px); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--natura-radius);
  box-shadow: var(--natura-shadow);
  display: flex; align-items: center; gap: 16px;
}
.contact-info-card i { font-size: 24px; color: var(--natura-green); width: 50px; height: 50px; background: rgba(45,122,58,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { padding: 16px 0; font-size: 14px; color: var(--natura-text-light); }
.breadcrumbs a { color: var(--natura-green); }
.breadcrumbs span { margin: 0 8px; opacity: .5; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--natura-green);
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  z-index: 10001;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--natura-transition);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar-right { display: none; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0,0,0,.1);
    z-index: 999;
    transition: var(--natura-transition);
    align-items: stretch;
  }
  .nav-links.open { right: 0; }
  .nav-links a { padding: 12px 16px !important; }
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
    opacity: 0; visibility: hidden;
    transition: var(--natura-transition);
  }
  .nav-overlay.open { opacity: 1; visibility: visible; }
  .hamburger { display: block; }
  .nav-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none;
    font-size: 24px; cursor: pointer;
  }
  .hero { min-height: 400px; }
  .hero h1 { font-size: 1.8rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .shop-toolbar { flex-direction: column; }
  .shop-search { max-width: 100%; }
}
@media (max-width: 480px) {
  .w { padding: 0 16px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-img-wrap img { height: 160px; }
  .product-body { padding: 10px; }
  .product-footer { padding: 0 10px 10px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .btn-cart { width: 100%; justify-content: center; }
  .cart-sidebar { width: 100vw; }
}

/* ===== BLOG GRID ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.blog-card {
  background: #fff;
  border-radius: var(--natura-radius);
  overflow: hidden;
  box-shadow: var(--natura-shadow);
  transition: var(--natura-transition);
  text-decoration: none;
  color: var(--natura-text);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(45,122,58,.18); }
.blog-card-img { overflow: hidden; }
.blog-card-img img { width: 100%; height: 220px; object-fit: cover; transition: var(--natura-transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; gap: 14px; align-items: center; font-size: 13px; color: var(--natura-text-light); margin-bottom: 10px; flex-wrap: wrap; }
.blog-cat {
  background: var(--natura-green);
  color: #fff;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.blog-card-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { font-size: .9rem; color: var(--natura-text-light); line-height: 1.6; flex: 1; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid #f0ebe0; }
.blog-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.blog-tag { font-size: 12px; color: var(--natura-green); font-weight: 500; }
.blog-read-more { font-size: 14px; font-weight: 600; color: var(--natura-green); white-space: nowrap; }

/* ===== ARTICLE LAYOUT ===== */
.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.article-main {}
.article-hero { border-radius: var(--natura-radius); overflow: hidden; margin-bottom: 24px; box-shadow: var(--natura-shadow); }
.article-hero img { width: 100%; height: 400px; object-fit: cover; }
.article-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; font-size: 14px; color: var(--natura-text-light); margin-bottom: 16px; }
.article-main h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--natura-text);
}
.article-content { font-size: 1.05rem; line-height: 1.9; color: #333; }
.article-content h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin: 32px 0 12px; color: var(--natura-text); }
.article-content h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--natura-green-dark); }
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol { margin: 12px 0 20px 24px; }
.article-content li { margin-bottom: 8px; line-height: 1.7; }
.article-content strong { color: var(--natura-text); }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; padding: 20px 0; border-top: 1px solid #e8e0d0; margin-top: 28px; }
.article-share { display: flex; gap: 14px; align-items: center; padding: 16px 0; }
.article-share a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--natura-warm); border-radius: 50%; color: var(--natura-text); font-size: 18px; transition: var(--natura-transition); }
.article-share a:hover { background: var(--natura-green); color: #fff !important; }

/* Sidebar */
.article-sidebar {}
.sidebar-card {
  background: #fff;
  border-radius: var(--natura-radius);
  padding: 20px;
  box-shadow: var(--natura-shadow);
  margin-bottom: 20px;
}
.sidebar-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; color: var(--natura-text); }
.sidebar-product { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; align-items: center; }
.sidebar-product:last-child { border: none; }
.sidebar-product img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.sidebar-product strong { font-size: .85rem; display: block; margin-bottom: 2px; }
.sidebar-article { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; align-items: center; text-decoration: none; color: var(--natura-text); transition: var(--natura-transition); }
.sidebar-article:last-child { border: none; }
.sidebar-article:hover { color: var(--natura-green); }
.sidebar-article img { width: 70px; height: 50px; object-fit: cover; border-radius: 6px; }
.sidebar-article strong { font-size: .85rem; display: block; line-height: 1.3; }
.sidebar-article small { color: var(--natura-text-light); }

/* ===== COMMENTS ===== */
.comments-section { margin-top: 48px; padding-top: 32px; border-top: 2px solid #e8e0d0; }
.comments-section h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.comments-section h2 span { font-size: .9rem; color: var(--natura-text-light); font-weight: 400; }
.comment { display: flex; gap: 14px; padding: 20px 0; border-bottom: 1px solid #f0ebe0; }
.comment-avatar {
  width: 44px; height: 44px;
  background: var(--natura-green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.comment-body { flex: 1; }
.comment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.comment-header strong { font-size: .95rem; }
.comment-header span { font-size: .8rem; color: var(--natura-text-light); }
.comment-body p { font-size: .95rem; line-height: 1.6; color: #444; margin: 0; }
.comment-actions { margin-top: 8px; }
.comment-actions button {
  background: none; border: none;
  color: var(--natura-text-light);
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--natura-transition);
}
.comment-actions button:hover { color: var(--natura-sale); background: rgba(229,57,53,.06); }
.comment-form { background: var(--natura-warm); border-radius: var(--natura-radius); padding: 24px; margin-top: 24px; }
.comment-form h3 { font-size: 1.1rem; margin-bottom: 16px; }

/* ===== WISHLIST BUTTON ===== */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.9);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #ccc;
  transition: var(--natura-transition);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.wishlist-btn:hover { color: var(--natura-sale); transform: scale(1.1); }
.wishlist-btn.active { color: var(--natura-sale); }
.wishlist-btn.active i { font-weight: 900; }

/* ===== REVIEW STARS INTERACTIVE ===== */
.review-form { background: var(--natura-warm); border-radius: var(--natura-radius); padding: 20px; margin-top: 16px; }
.review-stars-input { display: flex; gap: 4px; margin-bottom: 12px; }
.review-stars-input i { font-size: 24px; color: #ddd; cursor: pointer; transition: var(--natura-transition); }
.review-stars-input i.active, .review-stars-input i:hover { color: #ffc107; }

/* ===== WISHLIST PAGE STYLES ===== */
.wishlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.wishlist-empty { text-align: center; padding: 80px 20px; color: #999; }
.wishlist-empty i { font-size: 64px; display: block; margin-bottom: 16px; opacity: .3; }

/* ===== ARTICLE LOADING ===== */
.article-loading { text-align: center; padding: 80px 20px; color: var(--natura-text-light); font-size: 1.1rem; }

/* ===== RESPONSIVE BLOG & ARTICLE ===== */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { order: -1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-hero img { height: 240px; }
  .article-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .blog-card-body h3 { font-size: 1rem; }
  .comment { gap: 10px; }
  .comment-avatar { width: 36px; height: 36px; font-size: 15px; }
}
