:root {
  --primary: #059669;
  --primary-hover: #047857;
  --primary-dark: #064e3b;
  --primary-light: #ecfdf5;
  --gold: #d97706;
  --gold-hover: #b45309;
  --gold-bg: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --bg-main: #f8fafc;
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text-main: #334155;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --radius: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 30px rgba(0,0,0,0.1);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primary-hover);
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* TOP ANNOUNCEMENT BAR */
.announcement-bar {
  background: linear-gradient(90deg, #064e3b 0%, #059669 50%, #064e3b 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  padding: 0.45rem 1rem;
  letter-spacing: 0.02em;
}

/* HEADER & NAVBAR (CLEAN LIGHT THEME) */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--dark);
  flex-shrink: 0;
}
.logo-container:hover {
  color: var(--dark);
}
.logo-badge {
  background: #10b981;
  color: #fff;
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-link {
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.4rem 0.25rem;
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--dark);
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
}
.btn-phone:hover {
  background: var(--gray-200);
  color: var(--dark);
}
.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--whatsapp);
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp-header:hover {
  background: var(--whatsapp-dark);
  color: #fff;
}

/* HAMBURGER TOGGLE BUTTON */
.menu-toggle-btn {
  display: none;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--dark);
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle-btn svg {
  display: block;
}

/* MOBILE DRAWER OVERLAY */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 340px;
  height: 100%;
  background: #ffffff;
  box-shadow: -6px 0 25px rgba(0,0,0,0.15);
  z-index: 2000;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 1px solid var(--gray-200);
}
.mobile-nav-drawer.open {
  right: 0;
}
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  display: none;
}
.drawer-backdrop.show {
  display: block;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.drawer-close-btn {
  background: var(--gray-100);
  border: none;
  color: var(--dark);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 2rem;
}
.drawer-link {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
}
.drawer-link:hover, .drawer-link.active {
  background: var(--primary-light);
  color: var(--primary);
}

/* HERO SECTION (LIGHT & FRESH BANNER) */
.hero-section {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  color: var(--dark);
  padding: 4.5rem 0;
  position: relative;
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
}
.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  border: 1px solid #a7f3d0;
  color: var(--primary-dark);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: var(--dark);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title span {
  color: #059669;
  background: linear-gradient(90deg, #059669, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.2rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-features-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
  background: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.hero-feat-item svg {
  color: var(--primary);
  flex-shrink: 0;
}
.hero-cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
.btn-primary {
  background: #059669;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}
.btn-primary:hover {
  background: #047857;
  color: #fff !important;
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold-bg);
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: #ffffff;
  color: var(--dark) !important;
  border: 1px solid var(--gray-300);
}
.btn-outline-dark:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
  color: var(--dark) !important;
}
.btn-outline-primary {
  background: #ffffff;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary-light);
}
.btn-block {
  width: 100%;
}

/* TRUST BAR */
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--gray-200);
  padding: 2rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #a7f3d0;
}
.trust-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.15rem;
}
.trust-item p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.3;
}

/* SECTIONS */
.section {
  padding: 4.5rem 0;
}
.section-title-wrap {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}
.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  border: 1px solid #a7f3d0;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
}

/* PRODUCT CARDS (CLEAN LIGHT THEME) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.product-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-md);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: #34d399;
}
.product-image-wrap {
  position: relative;
  background: #f8fafc;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}
.product-image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image-wrap img {
  transform: scale(1.03);
}
.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.product-name a {
  color: var(--dark);
}
.product-name a:hover {
  color: var(--primary);
}
.product-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  flex-grow: 1;
}
.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.current-price {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.product-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0.75rem;
}

/* FORM STYLES */
.form-group {
  margin-bottom: 1rem;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: #ffffff;
  color: var(--dark);
  transition: var(--transition);
  font-family: inherit;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}
textarea.form-control {
  resize: vertical;
  min-height: 80px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.payment-option {
  border: 1px solid var(--gray-300);
  background: #ffffff;
  border-radius: 8px;
  padding: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}
.payment-option:hover, .payment-option.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* SEO CONTENT & FAQ BLOCKS */
.seo-content-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  margin-bottom: 3rem;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}
.seo-content-box h1, .seo-content-box h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}
.seo-content-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.5rem 0 0.75rem;
}
.seo-content-box p {
  margin-bottom: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.seo-content-box ul, .seo-content-box ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
  color: var(--gray-600);
}
.seo-content-box li {
  margin-bottom: 0.4rem;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 850px;
  margin: 0 auto;
}
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-question:hover {
  color: var(--primary);
}
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active {
  border-color: var(--primary);
}
.faq-toggle-icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: var(--transition);
}
.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

/* REVIEWS GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.review-author {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}
.review-city {
  font-size: 0.8rem;
  color: var(--gray-400);
}
.review-stars {
  color: #f59e0b;
  font-size: 0.95rem;
}
.review-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.75rem;
}

/* FOOTER */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--gray-300);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: #94a3b8;
}
.footer-links a:hover {
  color: #34d399;
}
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* MOBILE BOTTOM FLOATING BAR */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--gray-200);
  padding: 0.6rem 1rem;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}
.mobile-bar-actions {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0.75rem;
}
.btn-mobile-wa {
  background: var(--whatsapp);
  color: #fff;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.btn-mobile-order {
  background: var(--gold-bg);
  color: #fff;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* FLOATING DESKTOP BUTTONS */
.floating-contact-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.float-wa {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.float-wa:hover {
  transform: scale(1.1);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .menu-toggle-btn {
    display: flex;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .hero-title {
    font-size: 1.85rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .mobile-bottom-bar {
    display: block;
  }
  .floating-contact-btn {
    display: none;
  }
}
