:root{--accent:#ff6b6b;--accent-2:#ff8a66;--dark:#0f1724;--muted:#6b7280;--bg:#fbfbfd;--card:#ffffff;--glass:rgba(15,23,36,0.04);--radius:12px;--max-w:1200px;--shadow:0 10px 30px rgba(15,23,36,0.06);--shadow-strong:0 12px 40px rgba(15,23,36,0.06);--font-sans:Inter,system-ui,Roboto,Arial,sans-serif;}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:var(--font-sans);background:linear-gradient(180deg,var(--bg),#f6f7fb);color:var(--dark);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.container{width:100%;max-width:var(--max-w);padding:18px;margin:0 auto}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.top-ticker{width:100%;background:linear-gradient(90deg,var(--accent),var(--accent-2));color:#fff;padding:6px 0;font-size:14px;font-weight:700;overflow:hidden;white-space:nowrap;position:fixed;top:0;left:0;z-index:2200;border-bottom:1px solid rgba(255,255,255,0.3)}
.ticker-track{display:inline-block;padding-left:100%;animation:tickerMove 12s linear infinite}
@keyframes tickerMove{0%{transform:translateX(0)}100%{transform:translateX(-100%)}}
header{display:flex;margin-top:0px;align-items:center;justify-content:space-between;gap:8px;padding:12px;border-radius:14px;background:rgba(255,255,255,0.95);box-shadow:var(--shadow);position:fixed;left:50%;transform:translateX(-50%);width:100%;max-width:var(--max-w);z-index:2100;transition:box-shadow .18s ease,transform .18s;box-sizing:border-box}
header.scrolled{box-shadow:var(--shadow-strong)}
.logo{display:flex;align-items:center;gap:12px}
.logo .mark{width:52px;height:52px;border-radius:12px;background:linear-gradient(135deg,var(--accent),var(--accent-2));display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:18px}
.brand{line-height:1}
.brand h1{margin:0;font-size:18px}
.brand p{margin:0;font-size:12px;color:var(--muted)}
nav{flex:1;display:flex;justify-content:center}
.nav-inner{display:flex;gap:14px;align-items:center}
.nav-item{position:relative}
.nav-link{padding:10px ; color: #303030 14px;border-radius:10px;background:transparent;border:0;cursor:pointer;font-weight:700}
.nav-link:hover{background:var(--glass)}
.dropdown{position:absolute;left:50%;transform:translateX(-50%);top:calc(100% + 0px);min-width:220px;background:var(--card);border-radius:10px;padding:8px;border:1px solid rgba(15,23,36,0.06);box-shadow:0 12px 30px rgba(15,23,36,0.06);display:none;z-index:2500;box-sizing:border-box}
.nav-item:hover .dropdown{display:block}
.dropdown a{display:block;padding:8px 10px;color:var(--dark);text-decoration:none;border-radius:8px;font-weight:600}
.dropdown a:hover{background:var(--glass)}
.utils{display:flex;align-items:center;gap:12px}
.search{display:flex;align-items:center;gap:8px;padding:8px 10px;border-radius:10px;background:var(--glass);min-width:220px}
.search input{border:0;background:transparent;outline:none;font-size:14px;width:220px}
.cart{display:flex;align-items:center;gap:10px}
.cart-btn{display:flex;align-items:center;gap:8px;padding:10px 12px;border-radius:12px;border:0;background:linear-gradient(90deg,var(--accent),var(--accent-2));color:#fff;font-weight:800;cursor:pointer}
.cart-count{background:rgba(255,255,255,0.18);padding:4px 8px;border-radius:999px;font-weight:800;min-width:28px;text-align:center;display:inline-block;transition:transform .18s}
.cart-pulse{animation:cartPulse .42s ease}
@keyframes cartPulse{0%{transform:scale(1)}50%{transform:scale(1.18)}100%{transform:scale(1)}}
.hero{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:120px}
.hero-card{position:relative;height:420px;border-radius:10px;overflow:hidden;box-shadow:0 8px 28px rgba(15,23,36,0.06);display:flex;align-items:flex-end}
.hero-card img{position:absolute;inset:0;cursor:pointer;width:100%;height:100%;object-fit:cover;transition:transform .6s}


.hero-card:hover img{transform:scale(1.08)}
.hero-meta{opacity:0;visibility:hidden;transform:translateY(20px);transition:.35s ease}
.hero-card:hover .hero-meta{opacity:1;visibility:visible;transform:translateY(0)}
.hero-meta{position:relative;z-index:2;padding:24px;color:#fff}
/* Ensure hero card is a positioned container for absolute CTA */
.hero-card {
  position: relative; /* required so .hero-cta absolute positioning is inside the card */
}

/* Make the anchor look & behave exactly like a button and ensure full hit area */
.hero-cta {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(255,255,255,0.95);
  padding: 10px 14px;
  border-radius: 10px;
  border: 0;
  font-weight: 800;
  cursor: pointer;

  /* KEY: make the whole rectangle clickable */
  display: inline-flex;         /* or inline-block — inline-flex helps centering contents */
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  line-height: 1;

  /* make sure nothing sits on top of the CTA */
  z-index: 3;
}

/* Product thumb: make the entire thumbnail area clickable (image + padding) */
.prod-thumb {
  display: block;       /* block-level so padding/area becomes clickable */
  width: 100%;
  cursor: pointer;
  position: relative;   /* allow overlays inside */
  z-index: 1;
}

/* Ensure the image fills the thumb and does not leave invisible inline gaps */
.prod-thumb img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none; /* image itself won't swallow pointer events (thumb handles clicks) */
}

/* If you use a discount badge or overlay, it should not block clicks */
.badge-discount, .prod-thumb > .badge-discount {
  pointer-events: none; /* allow clicks through badge to the thumb */
  z-index: 2;
}

.section-title{text-align:center;cursor:pointer;margin:28px 0}
.products{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.product{background:var(--card);border-radius:12px;padding:10px;border:1px solid rgba(15,23,36,0.04);box-shadow:0 8px 24px rgba(15,23,36,0.04);display:flex;flex-direction:column;position:relative}
.product:hover .prod-thumb img{transform:scale(1.08);filter:blur(0px) brightness(0.9);transition:transform .4s}
.prod-thumb{height:360px;border-radius:10px;overflow:hidden;cursor:pointer;background:#f6f6f7;position:relative}
.prod-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.prod-thumb:hover img{filter:saturate(1.4)}
.badge-discount{position:absolute;left:12px;top:12px;background:linear-gradient(90deg,#ff6b6b,#ff8a66);color:#fff;padding:6px 10px;border-radius:999px;font-weight:800;font-size:13px;box-shadow:0 6px 18px rgba(0,0,0,0.16);z-index:4}
.prod-body{padding-top:10px;display:flex;flex-direction:column;gap:8px}
.meta-row{display:flex;justify-content:space-between;align-items:center;color:var(--muted);font-size:13px}
.title{font-weight:500;font-size:16px;color:#484848;cursor:pointer;margin:2px 0}
.desc{margin:0;color:var(--muted);font-size:13px}
.price-block{display:flex;align-items:center;justify-content:center;gap:10px;margin-top:12px;text-align:center}
.orig-price{color:var(--muted);text-decoration:line-through;font-weight:100;font-size:14px}
.sale-price{font-weight:400;color:var(--accent);font-size:16px}
.footer{margin-top:30px;background:linear-gradient(180deg,#ffffff 0%,#f7f8fb 100%);padding:36px;border-radius:14px;box-shadow:var(--shadow-strong)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:24px;max-width:var(--max-w);margin:0 auto;align-items:start}
.footer-brand{display:flex;gap:14px;align-items:flex-start;min-width:0}
.footer-brand .mark{width:62px;height:62px;border-radius:12px;background:linear-gradient(135deg,var(--accent),var(--accent-2));display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:20px;flex:0 0 62px}
.footer-brand .brand-content{display:flex;flex-direction:column;gap:8px;min-width:0}
.footer-brand h3{margin:6px 0 4px 0;font-size:18px;line-height:1.1}
.footer-brand p{margin:0;color:var(--muted);font-size:14px;max-width:420px;line-height:1.4}
.social-icons{display:flex;gap:10px;margin-top:12px}
.social-icons a{width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;border-radius:10px;background:var(--glass);text-decoration:none;transition:transform .18s,background .18s}
.social-icons a:hover{transform:translateY(-3px);background:linear-gradient(90deg,var(--accent),var(--accent-2));color:#fff}
.footer-links h4{margin:0 0 8px 0;font-size:15px}
.footer-links ul{list-style:none;padding:0;margin:0}
.footer-links li{margin:8px 0}
.footer-links a{text-decoration:none;color:var(--muted);font-size:14px;transition:color .12s;display:inline-block}
.footer-links a:hover{color:var(--dark)}
.payment-icons{display:flex;gap:8px;margin-top:12px;align-items:center;flex-wrap:wrap}
.payment-icons svg{width:44px;height:26px;border-radius:6px;background:#f1f5f9;padding:4px;display:block}
/* Ensure footer-bottom always centered (add to your stylesheet) */
.footer-bottom{
  width:100%;
  box-sizing:border-box;
  margin-top:18px;
  border-top:1px solid rgba(15,23,36,0.04);
  padding-top:18px;
  display:flex;
  justify-content:center;   /* center horizontally */
  align-items:center;
  text-align:center;
  gap:8px;
  flex-direction:column;
  grid-column: 1 / -1;      /* ensure it spans whole grid if still inside .footer-grid */
}

.footer-bottom p{margin:0;color:var(--muted);font-size:13px;}

@media(max-width:1100px){.products{grid-template-columns:repeat(3,1fr)}}
@media(max-width:520px){.hero{grid-template-columns:1fr;margin-top:220px}.products{grid-template-columns:repeat(2,1fr)}.search input{width:140px}}
@media(max-width:520px){header{flex-direction:column;align-items:stretch;gap:12px;padding:10px}.nav-inner{overflow:auto;padding:6px}.products{grid-template-columns:repeat(2,1fr);gap:12px}.prod-thumb{height:220px}.product{padding:2px;border-radius:10px}.hero-card{height:260px}.hero-meta h2{font-size:20px;margin:-90px 0 6px}.search{min-width:140px}.search input{width:180px;font-size:12px}.footer-grid{grid-template-columns:1fr;gap:12px}.footer{padding:20px}.container{padding:12px}}
@media(max-width:360px){.products{grid-template-columns:1fr;gap:10px}.prod-thumb{height:220px}.utils{gap:2px}.search{min-width:120px}.search input{width:140px;font-size:10px}.brand{font-size:16px}}
@media(max-width:420px){.footer{padding:18px;border-radius:12px}.footer-grid{grid-template-columns:1fr;gap:14px;align-items:start;padding:0}}
@media(max-width:720px){.footer{padding:28px;border-radius:12px}.footer-grid{grid-template-columns:1fr;gap:16px;align-items:start}.footer-brand{align-items:flex-start;gap:12px}.footer-brand .mark{width:56px;height:56px;flex:0 0 56px}.footer-brand p{font-size:13px;max-width:100%}.payment-icons svg{width:40px;height:24px}}
@media(max-width:420px){.footer{padding:18px;border-radius:10px;box-shadow:none}.footer-grid{display:flex;flex-direction:column;gap:12px;align-items:stretch;max-width:100%;margin:0}.footer-brand{display:flex;flex-direction:row;gap:10px;align-items:flex-start;width:100%}.footer-brand .mark{width:52px;height:52px;flex:0 0 52px;border-radius:10px}.footer-brand .brand-content{flex:1 1 auto;min-width:0}.footer-brand h3{font-size:15px;margin:0}.footer-brand p{font-size:13px;margin:0;color:var(--muted);line-height:1.3}.social-icons{margin-top:8px;justify-content:flex-start;gap:8px}.footer-links h4{font-size:14px;margin-bottom:6px}.footer-links a{font-size:13px;padding:6px 0;display:block}.payment-icons{gap:8px;margin-top:10px;justify-content:flex-start;flex-wrap:wrap}.payment-icons svg{width:38px;height:22px}.footer-bottom{padding-top:12px;gap:6px}.footer-bottom p{font-size:12px;color:var(--muted);margin:0}.footer-links a,.social-icons a,.cart-btn,.checkout-btn{min-height:36px;padding:8px 10px;border-radius:8px}.footer-brand--stack{flex-direction:column;align-items:center;text-align:center}.footer .widget{width:100%}.social-icons a{width:36px;height:36px}}
@media(max-width:360px){.footer{padding-left:12px;padding-right:12px}.footer-brand{flex-direction:column;align-items:center;text-align:center;gap:8px}.footer-brand .mark{width:48px;height:48px;min-width:48px}.footer-brand h3{font-size:15px}.footer-brand p{font-size:12px;max-width:100%}.social-icons{justify-content:center;margin-top:6px}.footer-links a{font-size:12px;padding:6px 0;display:block}.payment-icons svg{width:36px;height:20px}}
@media(max-width:320px){.footer{padding-left:10px;padding-right:10px;padding-top:14px;padding-bottom:14px}.footer-brand .mark{width:44px;height:44px}.footer-brand p{font-size:12px}.social-icons a{width:34px;height:34px}.footer-links a{font-size:12px;padding:6px 0}.payment-icons svg{width:32px;height:18px}}
/* WhatsApp floating contact (left side, ~75% from top) */
.whatsapp-contact{
  position:fixed;
  left:16px;                     /* distance from left edge */
  top:75vh;                      /* 75% down the viewport */
  transform:translateY(-50%);    /* center around that point */
  z-index:4000;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  text-decoration:none;
  pointer-events:auto;
  -webkit-tap-highlight-color: transparent;
}

/* image styling */
.whatsapp-contact img{
  width:52px;
  height:52px;
  border-radius:999px;
  box-shadow:0 8px 20px rgba(2,6,23,0.12);
  transition:transform .18s ease, box-shadow .18s ease;
  display:block;
  object-fit:cover;
  background:#fff;
}

/* label hidden by default; only visible on hover/focus */
.whatsapp-contact .whatsapp-label{
  display:block;
  font-weight:700;
  font-size:13px;
  color: #00885b;               /* green */
  opacity:0;
  transform:translateY(6px);
  transition:opacity .18s ease, transform .18s ease;
  pointer-events:none;
  user-select:none;
  white-space:nowrap;
}

/* hover & focus visual state */
.whatsapp-contact:hover img,
.whatsapp-contact:focus img{
  transform:scale(1.06);
  box-shadow:0 14px 36px rgba(2,6,23,0.14);
}

.whatsapp-contact:hover .whatsapp-label,
.whatsapp-contact:focus .whatsapp-label{
  opacity:1;
  transform:translateY(0);
}

/* keep label accessible with keyboard */
.whatsapp-contact:focus { outline: none; }
.whatsapp-contact:focus .whatsapp-label { opacity:1; transform:translateY(0); }

/* reduce size on very small screens */
@media (max-width:520px){
  .whatsapp-contact{ left:10px; top:72vh; }
  .whatsapp-contact img{ width:44px; height:44px; }
  .whatsapp-contact .whatsapp-label{ font-size:12px; }
}

/* hide on very narrow screens if desired (optional) */
/* @media (max-width:360px){ .whatsapp-contact{ display:none } } */
/* Mobile: position WhatsApp button ~85% down the viewport (use bottom) */
@media (max-width:520px){
  .whatsapp-contact {
    top: auto !important;
    bottom: 10vh !important; /* 15vh from bottom -> element sits at ~85% from top */
    left: 10px;
    transform: none; /* remove translateY centering */
  }
}




/* Navigation bar container */
.nav-inner {
  display: flex;
  gap: 18px;
  align-items: center;
}

/* Each nav item wrapper */
.nav-item {
  position: relative;
}

/* Nav links styling */
.nav-link {
  text-decoration: none;
  font-weight: 700;
  color: #111;
  padding: 8px 4px;
  display: inline-block;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* Hover effect */
.nav-link:hover {
  color: #ff6b6b;        /* your accent color */
  transform: translateY(-2px);  /* small lift animation */
}

/* Active page underline */
.nav-link.active {
  color: #ff6b6b;
  border-bottom: 2px solid #ff6b6b;
}




