@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Playfair+Display:wght@700&display=swap');

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

:root {
  --green-dark: #001600;
  --green-mid: #1a3a2a;
  --green-light: #2d5a3d;
  --green-pale: #d4e0d2;
  --orange: #f37968;
  --orange-light: #e8a090;
  --yellow: #c4964a;
  --cream: #f0e8d0;
  --brown: #5a3a1a;
  --text-dark: #001600;
  --text-light: #4a5a4a;
  --white: #faf8f2;
  --bg: #f0ede5;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  overflow-x: hidden;
}

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

/* === TOP BAR === */
.top-bar {
  background: var(--green-dark);
  color: white;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.top-bar span { color: var(--yellow); }

/* === HEADER / NAV === */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-svg {
  height: 52px;
  width: auto;
  border-radius: 8px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--green-dark);
}
.logo-sub {
  font-size: 11px;
  color: var(--text-light);
  margin-top: -2px;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
nav a:hover, nav a.active {
  color: var(--green-mid);
  border-bottom-color: var(--green-mid);
}

.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.search-box {
  background: var(--bg);
  border: 1px solid #ddd;
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 14px;
  width: 200px;
  outline: none;
  font-family: 'Nunito', sans-serif;
}
.search-box:focus { border-color: var(--green-mid); }

.cart-btn {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 24px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Nunito', sans-serif;
  transition: background 0.2s;
  text-decoration: none;
}
.cart-btn:hover { background: #d4604f; }
.cart-badge {
  background: var(--yellow);
  color: var(--text-dark);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
/* floral ornaments */
.hero .flor {
  position: absolute;
  width: 130px;
  height: 130px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23faf8f2'%3E%3Cellipse cx='50' cy='26' rx='11' ry='16'/%3E%3Cellipse cx='73' cy='43' rx='11' ry='16' transform='rotate(72 73 43)'/%3E%3Cellipse cx='64' cy='70' rx='11' ry='16' transform='rotate(144 64 70)'/%3E%3Cellipse cx='36' cy='70' rx='11' ry='16' transform='rotate(216 36 70)'/%3E%3Cellipse cx='27' cy='43' rx='11' ry='16' transform='rotate(288 27 43)'/%3E%3Ccircle cx='50' cy='50' r='9' fill='%23c4964a'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.10;
  pointer-events: none;
  animation: flor-float 9s ease-in-out infinite alternate;
}
.hero .flor.f1 { top: 20px; left: 4%; }
.hero .flor.f2 { bottom: 10px; right: 6%; width: 90px; height: 90px; animation-delay: -4s; }
.hero .flor.f3 { top: 55%; left: 16%; width: 55px; height: 55px; animation-delay: -7s; opacity: 0.08; }
@keyframes flor-float {
  from { transform: translateY(0) rotate(-6deg); }
  to   { transform: translateY(-16px) rotate(10deg); }
}
.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--brown);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: white;
  margin-bottom: 14px;
  line-height: 1.2;
}
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--orange);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: #d4604f; transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 12px 28px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); }

/* === BENEFITS BAR === */
.benefits-bar {
  background: var(--white);
  border-bottom: 1px solid #eee;
  padding: 18px 24px;
}
.benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.benefit-icon.green { background: var(--green-pale); }
.benefit-icon.orange { background: #fce4df; }
.benefit-icon.yellow { background: #f5e8cc; }

/* === SECTIONS === */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 150px;
  height: 18px;
  margin: 10px auto 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 18'%3E%3Cline x1='10' y1='9' x2='58' y2='9' stroke='%23c4964a' stroke-width='1.4' stroke-linecap='round'/%3E%3Cline x1='92' y1='9' x2='140' y2='9' stroke='%23c4964a' stroke-width='1.4' stroke-linecap='round'/%3E%3Cg fill='%23f37968'%3E%3Ccircle cx='75' cy='3.5' r='3'/%3E%3Ccircle cx='80.5' cy='9' r='3'/%3E%3Ccircle cx='75' cy='14.5' r='3'/%3E%3Ccircle cx='69.5' cy='9' r='3'/%3E%3Ccircle cx='75' cy='9' r='2.2' fill='%23c4964a'/%3E%3C/g%3E%3Cg fill='%232d5a3d'%3E%3Cellipse cx='62' cy='9' rx='4' ry='1.8'/%3E%3Cellipse cx='88' cy='9' rx='4' ry='1.8'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.section-header p {
  color: var(--text-light);
  font-size: 15px;
}

/* === CATEGORIES === */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat-card {
  background: linear-gradient(165deg, var(--white) 55%, #edf2ea 100%);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.cat-card:hover, .cat-card.active {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--green-light);
}
.cat-emoji {
  font-size: 34px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, var(--green-pale));
  box-shadow: inset 0 0 0 2px rgba(45,90,61,0.12);
}
.cat-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.cat-card span {
  font-size: 12px;
  color: var(--text-light);
}

/* === PRODUCTS === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
}
.product-card {
  border: 1px solid rgba(45,90,61,0.08);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(26,58,42,0.16);
  border-color: rgba(45,90,61,0.22);
}
.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  background: linear-gradient(135deg, #c8d9c5, #a8bfa5);
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-img img { transform: scale(1.07); }
/* soft floral backgrounds for products without photo */
.bg1 { background: linear-gradient(135deg, #dce8d8, #c3d6bd); }
.bg2 { background: linear-gradient(135deg, #fbe3dc, #f3c9bd); }
.bg3 { background: linear-gradient(135deg, #f5ecd4, #e8d9b0); }
.bg4 { background: linear-gradient(135deg, #d8e8e4, #b9d4cc); }
.bg5 { background: linear-gradient(135deg, #f3e2e8, #e5c4d0); }
.bg6 { background: linear-gradient(135deg, #e4e9d5, #cdd8b4); }
.bg7 { background: linear-gradient(135deg, #fbe9d0, #f2d3a7); }
.bg8 { background: linear-gradient(135deg, #dde4f0, #c2cde2); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  color: white;
}
.badge-new { background: var(--green-mid); }
.badge-sale { background: var(--orange); }
.badge-popular { background: var(--orange-light); }

.product-info {
  padding: 16px;
}
.product-info h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.product-cat {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-current {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-mid);
}
.price-old {
  font-size: 13px;
  color: #aaa;
  text-decoration: line-through;
}
.add-cart-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  background: var(--green-mid);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: background 0.2s;
}
.add-cart-btn:hover { background: var(--green-dark); }
.add-cart-btn:active { transform: scale(0.97); }
.add-cart-btn.added { background: var(--yellow); color: var(--green-dark); }
.consult-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  background: #eaf3ea;
  color: var(--green-mid);
  border: 1.5px solid var(--green-light);
  padding: 9px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}
.consult-btn:hover { background: var(--green-pale); }
.price-consult {
  font-size: 14px;
  font-weight: 700;
  color: var(--yellow);
}
.load-more-wrap { text-align: center; margin-top: 28px; }
.load-more-btn {
  background: var(--white);
  color: var(--green-mid);
  border: 2px solid var(--green-light);
  padding: 12px 36px;
  border-radius: 26px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: all 0.2s;
}
.load-more-btn:hover { background: var(--green-mid); color: white; }

/* === PROMO BANNER === */
.promo-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1152px;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 180px;
  height: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23ffffff'%3E%3Cellipse cx='50' cy='26' rx='11' ry='16'/%3E%3Cellipse cx='73' cy='43' rx='11' ry='16' transform='rotate(72 73 43)'/%3E%3Cellipse cx='64' cy='70' rx='11' ry='16' transform='rotate(144 64 70)'/%3E%3Cellipse cx='36' cy='70' rx='11' ry='16' transform='rotate(216 36 70)'/%3E%3Cellipse cx='27' cy='43' rx='11' ry='16' transform='rotate(288 27 43)'/%3E%3Ccircle cx='50' cy='50' r='9'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.14;
  pointer-events: none;
}
.promo-text, .promo-btn { position: relative; z-index: 1; }
.promo-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: white;
  margin-bottom: 8px;
}
.promo-text p {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}
.promo-btn {
  background: white;
  color: var(--orange);
  border: none;
  padding: 14px 32px;
  border-radius: 28px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  white-space: nowrap;
  transition: transform 0.2s;
}
.promo-btn:hover { transform: translateY(-2px); }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid var(--green-light);
  position: relative;
  overflow: hidden;
}
.testimonial-card::after {
  content: '❀';
  position: absolute;
  right: 14px;
  bottom: 6px;
  font-size: 44px;
  color: var(--green-pale);
  opacity: 0.55;
  pointer-events: none;
}
.stars { color: var(--yellow); font-size: 16px; margin-bottom: 10px; }
.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
}

/* === WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  cursor: pointer;
  z-index: 200;
  transition: transform 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* === FOOTER === */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 48px 24px 24px;
  margin-top: 50px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 14px;
}
.footer-col p, .footer-col a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: block;
}
.footer-col a:hover { color: var(--green-light); }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.payment-icons { font-size: 22px; letter-spacing: 8px; margin-top: 6px; }

/* === CART PAGE === */
.page-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 30px 24px;
  text-align: center;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: white;
}
.cart-container {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 24px;
}
.cart-item {
  background: white;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.cart-item-details {
  flex: 1;
}
.cart-item-details h3 { font-size: 15px; margin-bottom: 4px; }
.cart-item-details .price { color: var(--green-dark); font-weight: 800; }
.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  font-size: 16px;
  cursor: pointer;
  font-weight: 700;
}
.cart-qty span {
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}
.cart-remove {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-size: 18px;
  padding: 8px;
}
.cart-summary {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
}
.cart-summary-row.total {
  border-top: 2px solid #eee;
  margin-top: 8px;
  padding-top: 16px;
  font-size: 20px;
  font-weight: 800;
  color: var(--green-dark);
}
.checkout-btn {
  display: block;
  width: 100%;
  margin-top: 16px;
  background: var(--orange);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: background 0.2s;
}
.checkout-btn:hover { background: #d4604f; }
.empty-cart {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}
.empty-cart span { font-size: 64px; display: block; margin-bottom: 16px; }

/* === CHECKOUT === */
.checkout-container {
  max-width: 700px;
  margin: 30px auto;
  padding: 0 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--green-mid);
}
.form-group input[type="radio"],
.form-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--green-mid);
}
.form-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}
.form-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--green-dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* === PRODUCT DETAIL === */
.product-detail {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.product-detail-img {
  height: 400px;
  border-radius: 16px;
  background: linear-gradient(135deg, #c8d9c5, #a8bfa5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
}
.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.product-detail-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.product-detail-info .cat {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
}
.product-detail-info .price-big {
  font-size: 32px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.product-detail-info .price-big .old {
  font-size: 18px;
  color: #aaa;
  text-decoration: line-through;
  margin-left: 10px;
}
.product-detail-info .description {
  color: var(--text-light);
  line-height: 1.8;
  margin: 16px 0;
}
.stock-info {
  font-size: 14px;
  margin-bottom: 20px;
}
.stock-info.in-stock { color: var(--green-mid); }
.stock-info.low-stock { color: var(--orange); }
.stock-info.no-stock { color: #e74c3c; }
.detail-add-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: background 0.2s;
}
.detail-add-btn:hover { background: #d4604f; }

/* === ORDER RESULT === */
.result-container {
  max-width: 600px;
  margin: 60px auto;
  padding: 0 24px;
  text-align: center;
}
.result-icon { font-size: 80px; margin-bottom: 20px; }
.result-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.result-container p {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* === NOTIFICATION === */
.notification {
  position: fixed;
  top: 80px;
  right: 20px;
  background: var(--green-mid);
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  z-index: 300;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.notification.show { transform: translateX(0); }
.notification a {
  color: var(--cream);
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 800;
}

/* === MOBILE BOTTOM BAR === */
.mobile-bar { display: none; }
@media (max-width: 700px) {
  body { padding-bottom: 70px; }
  .whatsapp-float { display: none; }
  .mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--white);
    border-top: 1px solid #e2ddd2;
    box-shadow: 0 -4px 16px rgba(0,22,0,0.10);
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
    z-index: 250;
  }
  .mobile-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    font-weight: 700;
    color: var(--green-mid);
    text-decoration: none;
    position: relative;
    min-width: 64px;
  }
  .mobile-bar a .mb-icon { font-size: 20px; }
  .mobile-bar .cart-badge {
    position: absolute;
    top: -5px;
    right: 12px;
  }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .categories-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  nav { gap: 16px; }
  nav a { font-size: 14px; }
  .hero h1 { font-size: 30px; }
  .product-detail { grid-template-columns: 1fr; }
  .hero .flor { display: none; }
}
@media (max-width: 700px) {
  .header-inner { flex-wrap: wrap; gap: 10px; justify-content: center; }
  nav { order: 3; width: 100%; justify-content: center; }
  header { position: static; }
  .logo-svg { height: 44px; }
}
@media (max-width: 500px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-img { height: 150px; }
  .product-info { padding: 12px; }
  .product-info h3 { font-size: 13px; }
  .price-current { font-size: 15px; }
  .add-cart-btn, .consult-btn { font-size: 12px; padding: 8px; }
  .search-box { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
}
