:root {
    --green: #486f2a;
    --white: #ffffff;
    --ink: #1f2e41;
    --muted: #6a7583;
    --accent: #486f2a;
    --border: #e8e8e8;
    --panel: #efefef;
    --site-font: "Roboto", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--site-font);
    font-weight: 400;
    color: var(--ink);
    background: #fff;
}

button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

.container { width: min(1320px, 96vw); margin: 0 auto; }

.top-strip { background: var(--green); color: #fff; font-size: 15px; font-weight: 700; }
.top-strip-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.top-left, .top-right, .lang-switch, .question-group { display: flex; align-items: center; }
.top-left { gap: 18px; min-width: 0; }
.lang-switch { gap: 12px; padding-right: 14px; border-right: 1px solid rgba(255, 255, 255, 0.35); white-space: nowrap; }
.lang-switch form { display: inline; margin: 0; }
.lang-switch button { border: 0; background: transparent; color: inherit; font: inherit; font-weight: inherit; cursor: pointer; padding: 0; }
.lang-switch .lang-opt { color: #fff; opacity: 0.7; font-weight: 700; padding: 2px 10px; border-radius: 999px; line-height: 1.7; transition: opacity 0.15s ease, background 0.15s ease; }
.lang-switch .lang-opt:hover { opacity: 1; background: rgba(255, 255, 255, 0.18); }
.lang-switch .lang-opt.is-current { background: #fff; color: var(--green); opacity: 1; }
.question-group { gap: 12px; white-space: nowrap; padding-right: 14px; border-right: 1px solid rgba(255, 255, 255, 0.35); }
.question-label::before { content: "📞"; margin-right: 5px; }
.email-label::before { content: "✉"; margin-right: 5px; color: #e24c66; }
.top-right { gap: 12px; white-space: nowrap; }
.social-link { display: inline-flex; align-items: center; position: relative; }
.social-link + .social-link { margin-left: 10px; }
.social-link svg { width: 14px; height: 14px; display: block; }
.social-link::after { content: attr(data-tooltip); position: absolute; left: 50%; top: calc(100% + 6px); transform: translateX(-50%); background: rgba(20, 30, 40, 0.95); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 7px; border-radius: 4px; opacity: 0; pointer-events: none; transition: opacity 0.15s ease; z-index: 20; }
.social-link:hover::after { opacity: 1; }

.main-header { background: #fff; border-bottom: 1px solid var(--border); }
.main-header-inner { display: grid; grid-template-columns: 170px 1fr; align-items: start; gap: 20px; padding: 12px 0 12px; }
.brand { align-self: center; min-height: 108px; display: inline-flex; align-items: center; }
.brand img { display: block; height: 82px; width: auto; max-width: 100%; object-fit: contain; }
.header-right { min-width: 0; }
.search-actions-row { min-height: 56px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; }
.search-row { display: flex; align-items: center; min-width: 0; border: 1px solid var(--border); border-radius: 30px; overflow: hidden; height: 48px; }
.search-input { flex: 1; border: 0; padding: 0 18px; height: 100%; font-size: 16px; outline: none; min-width: 0; }
.search-btn { border: 0; background: var(--accent); color: #fff; width: 48px; height: 48px; font-size: 20px; cursor: pointer; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 20px; font-size: 15px; white-space: nowrap; min-width: max-content; }
.header-actions a { color: #2d3748; font-weight: 600; }
.account-link { display: inline-flex; align-items: center; gap: 8px; max-width: 240px; }
.account-name { overflow: hidden; text-overflow: ellipsis; }

.primary-nav { min-height: 58px; display: flex; align-items: center; gap: 0; justify-content: space-between; margin: 10px 0 0; padding: 0 10px; background: var(--green); border-radius: 999px; }
.nav-item { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: 6px; height: 58px; padding: 0 12px; font-size: 17px; font-weight: 700; text-transform: uppercase; color: #fff; white-space: nowrap; }
.nav-item-instock .nav-link { color: #ffe9a8; }
.nav-link.with-caret::after { content: "▾"; font-size: 16px; margin-top: 2px; }
.submenu { position: absolute; top: calc(100% + 2px); left: 0; min-width: 300px; background: #fff; border: 1px solid var(--border); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); display: none; z-index: 50; }
.submenu a { display: block; padding: 14px 18px; font-size: 16px; font-weight: 600; color: #243247; border-bottom: 1px solid #efefef; }
.submenu a:last-child { border-bottom: 0; }
.submenu--compact { min-width: 160px; width: max-content; }
.nav-item.is-open .submenu { display: block; }
.nav-item:hover .nav-link, .nav-item.is-open .nav-link { background: rgba(255, 255, 255, 0.12); }
.primary-nav .nav-item:first-child .nav-link { border-top-left-radius: 999px; border-bottom-left-radius: 999px; }
.primary-nav .nav-item:last-child .nav-link { border-top-right-radius: 999px; border-bottom-right-radius: 999px; }

.mobile-menu-toggle { display: none; border: 0; background: transparent; color: #2f2f2f; font-size: 30px; line-height: 1; cursor: pointer; padding: 0; }
.mobile-menu-panel { display: none; position: fixed; inset: 0; z-index: 999; background: var(--panel); padding: 12px 14px; }
.mobile-menu-open .mobile-menu-panel { display: block; }
.mobile-menu-open { overflow: hidden; }
.mobile-menu-close { border: 0; background: transparent; color: #0f6e40; font-size: 14px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; padding: 0; }
.mobile-menu-close .close-x { font-size: 22px; line-height: 1; }
.mobile-menu-nav { min-height: calc(100vh - 48px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--ink); }
.mobile-menu-nav a { color: var(--ink); }
.mobile-menu-sub { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: -2px; margin-bottom: 8px; font-size: 13px; color: #4b5563; text-align: center; text-transform: none; }
.mobile-menu-sub a { color: inherit; }

.site-footer { margin-top: 28px; background: #edf1f4; border-top: 1px solid #d7dde3; }
.footer-disclaimer { background: linear-gradient(90deg, #9bc26a 0%, #22b0b9 100%); color: #fff; }
.footer-disclaimer-inner { min-height: 70px; display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 24px; font-size: 16px; line-height: 1.3; }
.footer-disclaimer-label { font-weight: 700; text-transform: uppercase; }
.footer-main { padding: 44px 0 34px; }
.footer-whatsapp-anchor { display: block; scroll-margin-top: 24px; }
.footer-desktop { display: block; }
.footer-mobile { display: none; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr 0.9fr; gap: 56px; align-items: start; }
.footer-col h3 { margin: 0 0 20px; color: #0b6d42; font-size: 20px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; justify-self: start; }
.footer-brand img { width: 220px; height: auto; display: block; margin: 0; }
.footer-brand-link { display: block; line-height: 0; margin: 12px 0 18px; }
.footer-copy { margin: 16px 0 0; font-size: 14px; color: #3e4a58; text-align: left; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; font-size: 16px; color: #2b394b; }
.contact-line { display: inline-flex; align-items: center; gap: 8px; }
.contact-icon { color: #2f6ea5; font-size: 14px; line-height: 1; }
.contact-icon-email { color: #e24c66; }
.contact-icon-sms { color: #e24c66; }
.footer-qr { width: 130px; height: 130px; border: 1px solid #c8cfd7; object-fit: cover; display: block; margin-bottom: 20px; }
.footer-social { width: 48px; height: 48px; border-radius: 50%; background: #486f2a; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 22px; }
.footer-accordion details { background: #486f2a; border-bottom: 1px dashed rgba(255, 255, 255, 0.25); padding: 0 10px; }
.footer-accordion summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-size: 16px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 14px 0; color: #e3ebdb; }
.footer-accordion summary::-webkit-details-marker { display: none; }
.footer-accordion summary::after { content: "+"; width: 20px; height: 20px; border: 1px dashed rgba(255, 255, 255, 0.6); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; line-height: 1; }
.footer-accordion details[open] summary::after { content: "−"; }
.footer-accordion-content { padding: 0 0 12px; color: #e3ecd9; font-size: 14px; line-height: 1.45; }
.footer-accordion-content a { display: block; margin-bottom: 8px; }
.footer-mobile-panels { margin-top: 16px; display: grid; gap: 12px; }
.footer-mobile-panel { background: #486f2a; border-radius: 10px; padding: 14px 12px; color: #fff; text-align: center; }
.footer-mobile-panel h4 { margin: 0 0 10px; font-size: 15px; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-mobile-panel .footer-qr { margin: 0 auto 12px; }
.footer-mobile-socials { display: flex; justify-content: center; gap: 12px; }
.footer-mobile-socials a { width: 34px; height: 34px; border-radius: 50%; background: #fff; color: #22405f; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }

.hero-slider { position: relative; margin-top: 10px; border-radius: 0; overflow: hidden; background: #dfe6eb; }
.hero-track { position: relative; height: 570px; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.45s ease; }
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(16, 22, 30, 0.42); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; }
.hero-arrow.prev { left: 10px; }
.hero-arrow.next { right: 10px; }
.hero-dots { position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.52); cursor: pointer; }
.hero-dot.is-active { background: #fff; }

@media (max-width: 1180px) {
    .nav-link { font-size: 16px; padding: 0 8px; }
    .main-header-inner { grid-template-columns: 140px 1fr; }
    .brand { min-height: 104px; }
    .brand img { height: 70px; }
}

@media (max-width: 960px) {
    .top-strip { font-size: 12px; }
    .top-strip-inner { min-height: auto; padding: 8px 0; flex-direction: column; align-items: flex-start; }
    .top-left { flex-wrap: wrap; }
    .main-header-inner { min-height: 72px; grid-template-columns: 1fr auto; gap: 10px; padding: 8px 0; }
    .brand { min-height: auto; }
    .brand img { height: 58px; }
    .header-right { grid-column: 1 / -1; width: 100%; }
    .search-actions-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px; }
    .search-row { display: flex; height: 44px; }
    .search-input { font-size: 15px; padding: 0 10px; }
    .search-btn { width: 44px; height: 44px; font-size: 18px; }
    .header-actions { gap: 12px; font-size: 14px; }
    .account-link { max-width: 140px; }
    .mobile-menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .primary-nav { display: none; }
    .hero-slider { margin-top: 0; }
    .hero-track { height: 180px; }
    .hero-arrow { width: 32px; height: 32px; font-size: 20px; }
    .footer-disclaimer-inner { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; font-size: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-col h3 { font-size: 22px; margin-bottom: 10px; }
    .footer-brand img { width: 150px; }
    .footer-copy { font-size: 14px; }
    .footer-links { font-size: 18px; gap: 8px; }
    .footer-desktop { display: none; }
    .footer-mobile { display: block; background: #486f2a; border-radius: 0; padding: 0 12px 14px; }
}

/* ---- POC additions: product listing / detail (not in original inline CSS) ---- */
.page-wrap { padding: 26px 0 10px; }
.breadcrumbs { font-size: 13px; color: var(--muted); margin: 0 0 14px; }
.breadcrumbs a { color: var(--green); font-weight: 600; }
.page-title { font-size: 26px; color: #27384a; margin: 0 0 6px; }
.page-sub { color: var(--muted); margin: 0 0 20px; font-size: 15px; }
.toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 0 0 20px; }
.chip { display: inline-block; padding: 7px 14px; border: 1px solid var(--border); border-radius: 999px; font-size: 14px; font-weight: 600; color: #3a4656; background: #fafafa; }
.chip.is-active { background: var(--green); color: #fff; border-color: var(--green); }
.product-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; transition: box-shadow .18s ease, transform .18s ease; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: 0 10px 26px rgba(20,30,40,.10); transform: translateY(-2px); }
.product-card .thumb { aspect-ratio: 4/3; background: linear-gradient(135deg,#f3f6f0,#e7efe0); display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 34px; font-weight: 800; }
.product-card .body { padding: 14px 15px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card .cat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--green); }
.product-card .name { font-size: 16px; font-weight: 700; color: #27384a; line-height: 1.3; }
.product-card .fr { font-size: 13px; color: var(--muted); }
.pagination { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin: 26px 0 8px; justify-content: center; }
.pagination a, .pagination span { padding: 8px 13px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-weight: 600; color: #3a4656; }
.pagination .current { background: var(--green); color: #fff; border-color: var(--green); }
.pagination .disabled { opacity: .4; }
.detail-grid { display: grid; grid-template-columns: 360px 1fr; gap: 34px; align-items: start; }
.detail-media { aspect-ratio: 1/1; border-radius: 16px; background: linear-gradient(135deg,#f3f6f0,#e7efe0); display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 72px; font-weight: 800; }
.detail-body h1 { font-size: 30px; color: #22384c; margin: 0 0 6px; }
.detail-body .cat-tag { display: inline-block; background: #eef4e7; color: var(--green); font-weight: 700; font-size: 13px; padding: 5px 12px; border-radius: 999px; margin: 0 0 16px; }
.detail-section { margin: 20px 0; }
.detail-section h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .5px; color: #6a7583; margin: 0 0 8px; }
.detail-section p { margin: 0; line-height: 1.6; color: #2b394b; }
.cta-row { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 15px; cursor: pointer; border: 1px solid var(--green); }
.btn-primary { background: var(--green); color: #fff; }
.btn-ghost { background: #fff; color: var(--green); }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th, .spec-table td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--border); }
.spec-table th { width: 200px; color: #6a7583; font-weight: 600; }
.prose { line-height: 1.7; color: #2b394b; }
.prose h2 { color: #27384a; }
@media (max-width: 960px) {
    .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
    .detail-grid { grid-template-columns: 1fr; gap: 18px; }
    .detail-media { max-width: 280px; }
}
