                        /* --- Base --- */
:root{
  --bg:#f6fbff;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --line: rgba(15,23,42,.10);
  --shadow: 0 14px 40px rgba(15,23,42,.08);
  --shadow-sm: 0 10px 22px rgba(15,23,42,.06);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 350px at 85% 10%, rgba(34,197,94,.10), transparent 60%),
    radial-gradient(900px 350px at 15% 10%, rgba(14,165,233,.12), transparent 60%),
    var(--bg);
}

a{color:inherit}
img{max-width:100%;display:block}
.small{font-size:12px}
.muted{color:var(--muted)}
.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

/* --- Topbar --- */
.topbar{
  background: rgba(255,255,255,.70);
  border-bottom: 1px solid rgba(15,23,42,.06);
  backdrop-filter: blur(10px);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 0;
  gap:14px;
  flex-wrap: wrap;
}
.topbar-left{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap: wrap;
  min-width: 0;
}
.topbar-right{
  display:flex;
  align-items:center;
  gap:10px;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius: 999px;
  background: rgba(14,165,233,.10);
  border: 1px solid rgba(14,165,233,.16);
  font-weight:600;
  font-size:12px;
}

.toplink{
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  padding:6px 10px;
  border-radius: 999px;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.7);
}

.lang{
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
  border-radius: 999px;
  padding:6px 10px;
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  font-weight:700;
}
.lang-dot{
  width:10px;height:10px;border-radius:999px;
  background: linear-gradient(135deg, rgba(14,165,233,1), rgba(34,197,94,1));
}

/* --- Header --- */
.header{
  position: sticky;
  top:0;
  z-index: 40;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(15,23,42,.06);
  backdrop-filter: blur(10px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.logo{
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
}
.brand-name{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 24px;
}
.brand-sub{font-weight:600;color:var(--muted)}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  text-decoration:none;
  font-weight:600;
  color: rgba(15,23,42,.84);
  font-size: 14px;
}
.nav a:hover{color: rgba(14,165,233,1)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(14,165,233,.22);
  background: rgba(14,165,233,.10);
  text-decoration:none;
  font-weight:700;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
}
.btn:hover{transform: translateY(-1px)}
.btn-small{padding:8px 12px;font-size:13px}
.btn-ghost{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(15,23,42,.10);
}
.btn-link{
  background: transparent;
  border: none;
  box-shadow:none;
  padding: 10px 0;
  color: rgba(14,165,233,1);
}
.btn-link:hover{text-decoration:underline;transform:none}

.hamburger{
  display:none;
  background: transparent;
  border:0;
  padding:10px;
  cursor:pointer;
}
.hamburger span{
  display:block;
  width:26px;
  height:2px;
  background: rgba(15,23,42,.75);
  margin:5px 0;
  border-radius: 4px;
}

.mobile-nav{
  display:none;
  padding: 0 0 12px;
}
.mobile-nav a{
  display:block;
  padding: 10px 0;
  text-decoration:none;
  font-weight:700;
}
.mobile-nav.show{display:block}

/* --- Hero --- */
.hero{padding: 36px 0 10px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:start;
}
.hero-copy h1{
  font-size: 46px;
  line-height: 1.06;
  margin:0 0 10px;
  letter-spacing: -0.02em;
}
.lead{font-size: 16px;line-height:1.6;margin:0 0 18px;color: rgba(15,23,42,.72)}

.hero-highlights{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin: 18px 0;
}
.card-mini{
  background: rgba(255,255,255,.86);
  border:1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow-sm);
}
.card-mini-title{font-weight:800;margin-bottom:4px}

.cta-row{display:flex;gap:12px;flex-wrap: wrap;align-items:center}
.btn-wa{border-color: rgba(34,197,94,.28);background: rgba(34,197,94,.10)}
.whatsapp-ico{
  width:18px;height:18px;
  fill: rgba(255,255,255,1);
}
.whatsapp-ico circle{fill: rgba(34,197,94,1)}
.whatsapp-ico path{fill:#fff}

.wa-png{
  width:18px;
  height:18px;
  object-fit:contain;
  display:inline-block;
}

.trust-row{display:flex;flex-wrap:wrap;gap:16px;margin-top:16px}
.trust-item{display:flex;align-items:center;gap:10px;color: rgba(15,23,42,.75);font-weight:600}
.dot{width:10px;height:10px;border-radius: 999px;background: rgba(34,197,94,1)}

.hero-media{display:flex;flex-direction:column;gap:14px}
.hero-image-wrap{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.9);
}
.hero-image{width:100%;height: 280px;object-fit:cover}
.hero-badge{
  position:absolute;
  left:12px;
  bottom:12px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding: 10px 12px;
  max-width: calc(100% - 24px);
}
.badge-title{font-weight:900}
.badge-sub{color: var(--muted);font-weight:600;font-size:12px}

.spec-card{
  background: rgba(255,255,255,.86);
  border:1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.spec-title{font-weight:900;font-size:18px;margin-bottom:10px}
.spec-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
.spec{
  background: rgba(255,255,255,.85);
  border:1px solid rgba(15,23,42,.08);
  border-radius: 14px;
  padding: 10px 12px;
}
.spec-k{font-size:12px;color: var(--muted);font-weight:700}
.spec-v{font-weight:900}
.spec-note{margin-top:10px;color: rgba(15,23,42,.70);font-weight:600}

/* --- Sections --- */
.section{padding: 44px 0}
.section-alt{
  background:
    radial-gradient(900px 350px at 80% 0%, rgba(14,165,233,.10), transparent 60%),
    radial-gradient(900px 350px at 20% 0%, rgba(34,197,94,.09), transparent 60%);
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.section-head{margin-bottom: 18px}
.section-head h2{margin:0;font-size: 28px;letter-spacing: -0.01em}
.section-head p{margin:8px 0 0}

.grid-2{display:grid;grid-template-columns: repeat(2, minmax(0, 1fr));gap:14px}
.grid-3{display:grid;grid-template-columns: repeat(3, minmax(0, 1fr));gap:14px}

.card{
  background: rgba(255,255,255,.86);
  border:1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.card h3{margin:0 0 8px;font-size:18px}
.card.soft{
  background: rgba(255,255,255,.78);
}

/* Product card gradients */
.product-card--water{
  background: linear-gradient(135deg, rgba(14,165,233,.10), rgba(59,130,246,.05), rgba(255,255,255,.85));
}
.product-card--soda,
.product-card--carbonated{
  background: linear-gradient(135deg, rgba(34,197,94,.10), rgba(16,185,129,.06), rgba(255,255,255,.85));
}

.list{margin:10px 0 0;padding-left: 18px;color: rgba(15,23,42,.78);font-weight:600}
.list li{margin: 6px 0}
.card-actions{margin-top: 14px}

/* Weights table card */
.weights-card{
  background: rgba(14,165,233,.06);
  border:1px solid rgba(14,165,233,.14);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.weights-card h3{
  margin:0 0 12px;
  font-size: 16px;
  font-weight: 900;
}
.weights-table-wrap{
  overflow:auto;
  border-radius: 14px;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.86);
}
.weights-table{
  width:100%;
  border-collapse: collapse;
  min-width: 520px;
}
.weights-table th{
  text-align:left;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(15,23,42,.68);
  padding: 12px 14px;
  background: rgba(14,165,233,.08);
}
.weights-table td{
  padding: 12px 14px;
  border-top: 1px solid rgba(15,23,42,.08);
  font-weight: 600;
}
.weights-table tbody tr:nth-child(even){
  background: rgba(15,23,42,.02);
}
.weights-footnote{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(15,23,42,.62);
  font-weight: 600;
}

/* Note strip */
.note-strip{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:14px;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(14,165,233,.08);
  border:1px solid rgba(14,165,233,.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.note-icon{font-size: 18px}
.note-title{font-weight:900}

/* Brand strip */
.brand-strip{
  margin-top: 18px;
  padding: 16px;
  background: rgba(255,255,255,.86);
  border:1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:14px;
}
.brand-strip h3{margin:0 0 6px}
.brand-strip p{margin:0}
.brand-strip-right{display:flex;gap:12px;flex-wrap:wrap}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}
.gallery a{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow-sm);
}
.gallery img{
  width:100%;
  height: 160px;
  object-fit: cover;
}

/* Chips */
.chips{display:flex;flex-wrap:wrap;gap:10px}
.chip{
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.86);
  font-weight:700;
  font-size: 12px;
}

/* FAQ */
.accordion details{
  background: rgba(255,255,255,.86);
  border:1px solid rgba(15,23,42,.08);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
  margin: 10px 0;
}
.accordion summary{cursor:pointer;font-weight:900}
.accordion details > div{margin-top: 8px}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.section-head.left{margin-bottom:14px}
.contact-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
.contact-cards .k{
  color: var(--muted);
  font-weight:800;
  font-size: 12px;
  text-transform: none;
  letter-spacing: .02em;
  margin-bottom: 6px;
}
.contact-cards .v{
  font-weight: 800;
  color: rgba(15,23,42,.90);
}

.phone-links a{
  text-decoration:none;
  font-weight:900;
  letter-spacing: .01em;
}
.wa-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:900;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(34,197,94,.22);
  background: rgba(34,197,94,.10);
}
.contact-actions{
  margin-top: 14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.meta-line{
  margin-top: 18px;
  padding-top: 6px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
}
.meta-line .sep{ opacity: .4; }

/* Ensure phone numbers always appear on separate lines */
.phone-link{display:block;white-space:nowrap}

.map-card{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
  min-height: 320px;
}
.map-card iframe{width:100%;height:100%;min-height: 360px;border:0}

/* Footer */
.footer{
  padding: 26px 0;
  border-top: 1px solid rgba(15,23,42,.06);
  background: rgba(255,255,255,.80);
}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}
.footer-brand{font-weight:900}
.footer-links{display:flex;gap:14px}
.footer-links a{text-decoration:none;font-weight:800}

/* Lightbox */
.lightbox{
  position: fixed;
  inset:0;
  background: rgba(2,6,23,.68);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 20px;
  z-index: 60;
}
.lightbox.show{display:flex}
.lightbox__img{
  max-width: min(980px, 92vw);
  max-height: 80vh;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}
.lightbox__caption{
  margin-top: 12px;
  text-align:center;
  color: rgba(255,255,255,.92);
  font-weight:700;
  max-width: min(980px, 92vw);
}
.lightbox__close,
.lightbox__nav{
  position: fixed;
  border: 0;
  width: 44px;height: 44px;
  border-radius: 999px;
  cursor:pointer;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 26px rgba(0,0,0,.25);
  font-size: 26px;
  display:flex;
  align-items:center;
  justify-content:center;
  user-select:none;
}
.lightbox__close{top:18px;right:18px}
.lightbox__prev{left:18px}
.lightbox__next{right:18px}
.lightbox {
  flex-direction: column;
}
.lightbox__caption {
  width: 100%;
  max-width: min(980px, 92vw);
  margin-top: 12px;
  text-align: center;
}
/*.lightbox { display: flex !important; flex-direction: column !important; }
/*.lightbox__caption { display: block !important; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .hero-image{height: 260px}
  .contact-grid{grid-template-columns: 1fr}
}
@media (max-width: 780px){
  .nav{display:none}
  .hamburger{display:block}
  .hero-copy h1{font-size: 38px}
  .hero-highlights{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .gallery{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .contact-cards{grid-template-columns: 1fr}
}
@media (max-width: 520px){
  .container{width: calc(100% - 28px)}
  .hero{padding-top: 28px}
  .hero-copy h1{font-size: 34px}
  .pill{font-size: 11px}
  .toplink{font-size: 12px}
  .lang{font-size: 12px}
  .hero-image{height: 220px}
  .gallery img{height: 150px}
}

/* Mobile top bar: prevent the pill text from overlapping location */
@media (max-width:520px){
  .topbar-inner{gap:10px}
  .topbar-left{gap:8px}
  .topbar-left .pill{max-width:100%;white-space:normal;line-height:1.25}
  .topbar-left .muted{line-height:1.25}
  .topbar-right{width:100%;justify-content:space-between}
}
            