/* ==========================================================================
   KPPharmacy — Static site stylesheet
   Recreated from the original "grosi" WordPress/WooCommerce theme.
   Brand: green UI accent (#26901b), red headings/logo, Poppins + Satisfy.
   ========================================================================== */

/* ---- Fonts (self-hosted) ---- */
@import url("../fonts/fonts.css");

/* ---- Design tokens ---- */
:root {
  --green: #26901b;
  --green-dark: #1d7214;
  --red: #ee1c24;          /* logo / section-title red */
  --blue: #2b3990;         /* logo blue accent */
  --text: #545454;
  --heading: #333333;
  --link: #212121;
  --muted: #777777;
  --line: #e9e9e9;
  --bg: #ffffff;
  --bg-soft: #f8f8f8;
  --container: 1200px;
  --radius: 4px;
  --font: "Poppins", Arial, Helvetica, sans-serif;
  --font-script: "Satisfy", "Poppins", cursive;
  --shadow: 0 6px 24px rgba(0, 0, 0, .08);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .06);
  --topbar-h: 42px;
  --header-h: 92px;
  --nav-h: 44px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--heading);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 .6em;
}
h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }
p { margin: 0 0 1rem; }
a { color: var(--link); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--green); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }
button { font-family: inherit; cursor: pointer; }
strong, b { font-weight: 600; }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}
.section { padding: 70px 0; }
.section--soft { background: var(--bg-soft); }
.text-center { text-align: center; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col { padding: 0 15px; flex: 1 1 0; min-width: 0; }
.col-2 { flex: 0 0 50%; max-width: 50%; }
.col-3 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-4 { flex: 0 0 66.667%; max-width: 66.667%; }
.gap-y > * { margin-bottom: 30px; }

/* ---- Section titles ---- */
.section-title {
  text-align: center;
  margin-bottom: 14px;
}
.section-title h2 {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0;
}
.section-title.left h2 { text-align: left; }
.section-subtitle {
  text-align: center;
  font-weight: 600;
  color: #000;
  max-width: 760px;
  margin: 0 auto 30px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 12px 28px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.btn--outline { background: transparent; color: var(--green); }
.btn--outline:hover { background: var(--green); color: #fff; }
.btn--red { background: var(--red); border-color: var(--red); }
.btn--red:hover { background: #c81017; border-color: #c81017; }

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--text);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: var(--topbar-h); }
.topbar__welcome { display: flex; align-items: center; gap: 8px; }
.topbar__welcome svg { fill: var(--green); width: 16px; height: 16px; }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__right a { color: var(--text); display: inline-flex; align-items: center; gap: 6px; }
.topbar__right a:hover { color: var(--green); }
.topbar__social { display: flex; gap: 10px; }
.topbar__social a { font-size: 14px; }

/* ==========================================================================
   HEADER (main bar: logo / search / actions)
   ========================================================================== */
.header { background: #fff; position: relative; z-index: 50; }
.header__main .container {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header-h);
}
.header__logo img { width: 170px; max-width: 60vw; height: auto; }
.header__search { flex: 1 1 auto; max-width: 560px; }
.search-form {
  display: flex;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  overflow: hidden;
}
.search-form input {
  flex: 1 1 auto;
  border: 0;
  padding: 11px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  outline: none;
}
.search-form button {
  background: var(--green);
  border: 0;
  color: #fff;
  padding: 0 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.search-form button:hover { background: var(--green-dark); }
.header__actions { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.header-action {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--link);
  font-size: 11px;
  line-height: 1.2;
  gap: 3px;
}
.header-action:hover { color: var(--green); }
.header-action .ico { font-size: 22px; }
.header-action .count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* burger (mobile) */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  margin-left: 6px;
}
.burger span { display: block; height: 2px; width: 24px; background: var(--green); transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   NAVIGATION BAR (green)
   ========================================================================== */
.navbar { background: var(--green); }
.navbar .container { display: flex; align-items: stretch; min-height: var(--nav-h); }
.nav-cats {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, .12);
  color: #fff;
  padding: 0 22px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.nav-cats .ico { font-size: 18px; }
.nav-cats-wrap { position: relative; }
.nav-cats-wrap > .nav-cats { cursor: pointer; height: 100%; }
.nav-cats-menu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0; padding: 6px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: .25s ease;
  z-index: 60;
}
.nav-cats-wrap:hover .nav-cats-menu { opacity: 1; visibility: visible; transform: none; }
.nav-cats-menu li a {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 18px; color: var(--link); font-size: 14px;
}
.nav-cats-menu li a:hover { background: var(--bg-soft); color: var(--green); }
.nav-cats-menu li a img { width: 24px; height: 24px; }
.nav-cats svg.ico { width: 18px; height: 18px; fill: currentColor; }
.main-menu {
  list-style: none;
  display: flex;
  margin: 0 auto;
  padding: 0;
  align-items: center;
}
.main-menu > li > a {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding: 0 18px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  position: relative;
}
.main-menu > li > a::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 8px;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-menu > li > a:hover,
.main-menu > li > a.active { color: #fff; }
.main-menu > li > a:hover::after,
.main-menu > li > a.active::after { transform: scaleX(1); }

/* ==========================================================================
   HERO / SLIDER
   ========================================================================== */
.hero {
  position: relative;
  background: #e9efe7 url("../images/hero.jpg") center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .85) 0%, rgba(255, 255, 255, .55) 35%, rgba(255, 255, 255, 0) 65%);
}
.hero__inner { position: relative; z-index: 2; padding: 60px 0; }
.hero__welcome {
  font-family: var(--font-script);
  font-size: 38px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__title {
  font-size: 62px;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 18px;
  line-height: 1.05;
}
.hero__title span { color: var(--blue); }
.hero__text { max-width: 460px; color: #333; margin-bottom: 26px; font-size: 15px; }
.hero .btn { font-size: 14px; }

/* reveal animation (progressive enhancement: only hidden when JS is active) */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about__content h2 { color: var(--red); font-weight: 700; margin-bottom: 18px; }
.about__img img { width: 100%; border-radius: 6px; box-shadow: var(--shadow); }

/* ==========================================================================
   WE DEAL IN (category cards)
   ========================================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 20px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 20px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green); }
.cat-card__icon {
  width: 84px; height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(38, 144, 27, .08);
  display: flex; align-items: center; justify-content: center;
}
.cat-card__icon img { width: 46px; height: 46px; }
.cat-card h4 { margin: 0; color: #000; font-size: 18px; }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 45px; align-items: center; }
.why__img img { width: 100%; border-radius: 6px; box-shadow: var(--shadow); }
.why-item { margin-bottom: 26px; }
.why-item:last-child { margin-bottom: 0; }
.why-item h4 { color: #000; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.why-item h4 .dot { width: 10px; height: 10px; background: var(--green); border-radius: 50%; flex: none; }

/* ==========================================================================
   MISSION / VISION / VALUES
   ========================================================================== */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mvv-card {
  background: #fff;
  border-radius: 8px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green);
}
.mvv-card h4 { color: #000; }
.mvv-card .mvv-ico { font-size: 38px; color: var(--green); margin-bottom: 12px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; align-items: stretch; }
.contact__img img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow); }
.contact-form .field { margin-bottom: 16px; }
.contact-form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--green); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .file-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-note { font-size: 12px; color: var(--muted); margin-top: 4px; }
.form-msg { margin-top: 14px; font-weight: 600; display: none; }
.form-msg.ok { display: block; color: var(--green); }
.form-msg.err { display: block; color: var(--red); }

.contact-info-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-info-list li { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.contact-info-list .ico {
  width: 42px; height: 42px; flex: none;
  border-radius: 50%; background: rgba(38,144,27,.1); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-info-list a { color: var(--text); }
.contact-info-list a:hover { color: var(--green); }

/* ==========================================================================
   PAGE TITLE / BREADCRUMB
   ========================================================================== */
.page-title {
  background: var(--bg-soft);
  text-align: center;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}
.page-title h1 { margin: 0 0 8px; color: var(--heading); font-size: 30px; }
.breadcrumb { font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--text); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 6px; }

/* ==========================================================================
   CONTENT / POLICY PAGES
   ========================================================================== */
.content-page { padding: 60px 0; }
.content-page h2 { color: var(--red); margin-bottom: 20px; }
.content-page h4 { color: var(--heading); margin-top: 26px; }
.content-page ul, .content-page ol { margin-bottom: 1rem; }
.content-page li { margin-bottom: 8px; }

/* ==========================================================================
   SHOP / PRODUCTS
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .3s ease, transform .3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.product-card__media { position: relative; background: #fafafa; }
.product-card__media img { width: 100%; aspect-ratio: 1/1; object-fit: contain; padding: 12px; }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: #fff; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 3px;
}
.product-card__body { padding: 16px 16px 20px; text-align: center; display: flex; flex-direction: column; flex: 1 1 auto; }
.product-card__title { font-size: 15px; color: var(--heading); font-weight: 600; margin: 0 0 8px; flex: 1 1 auto; }
.product-card__title a:hover { color: var(--green); }
.product-card__price { margin-bottom: 14px; font-weight: 600; color: var(--heading); }
.product-card__price del { color: var(--muted); font-weight: 400; margin-right: 8px; }
.product-card__price ins { color: var(--green); text-decoration: none; }
.product-card .btn { width: 100%; }

.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; }
.shop-sidebar h4 { font-size: 16px; border-bottom: 2px solid var(--green); padding-bottom: 8px; margin-bottom: 14px; }
.shop-sidebar ul { list-style: none; padding: 0; }
.shop-sidebar li { padding: 7px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; color: var(--muted); font-size: 13px; }

/* single product / cart / account */
.notice-box {
  background: #fff8e6;
  border: 1px solid #f3d98b;
  color: #8a6d1b;
  padding: 16px 20px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 13px;
}
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.cart-table th, .cart-table td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.cart-table th { font-weight: 600; color: var(--heading); }
.cart-table img { width: 60px; }
.cart-empty { text-align: center; padding: 50px 0; color: var(--muted); }
.qty-input { width: 64px; padding: 8px; border: 1px solid var(--line); border-radius: 4px; text-align: center; }
.cart-remove { color: var(--red); background: none; border: 0; font-size: 18px; }
.account-grid { display: grid; grid-template-columns: 240px 1fr; gap: 30px; }
.account-tabs { list-style: none; padding: 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.account-tabs li a { display: block; padding: 12px 18px; border-bottom: 1px solid var(--line); color: var(--link); }
.account-tabs li a:hover, .account-tabs li a.active { background: var(--green); color: #fff; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--bg-soft); color: var(--text); padding: 60px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer h4 { color: var(--heading); font-size: 17px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--green); }
.footer__about img { width: 180px; margin-bottom: 16px; }
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a { color: var(--text); position: relative; padding-left: 16px; }
.footer-menu a::before { content: "\203A"; position: absolute; left: 0; color: var(--green); }
.footer-menu a:hover { color: var(--green); padding-left: 20px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact .ico { color: var(--green); font-size: 16px; margin-top: 3px; flex: none; }
.footer-contact a { color: var(--text); }
.footer-contact a:hover { color: var(--green); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid #d9d9d9; color: var(--text);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  transition: .25s ease;
}
.footer-social a:hover { background: var(--green); border-color: var(--green); color: #fff; }
.copyright { border-top: 1px solid var(--line); padding: 20px 0; font-size: 13px; }
.copyright .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.copyright a { color: var(--link); }
.copyright a:hover { color: var(--green); }

/* ==========================================================================
   FLOATING: WhatsApp + back to top
   ========================================================================== */
.whatsapp-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  font-weight: 600;
  font-size: 14px;
}
.whatsapp-btn:hover { color: #fff; background: #1fc15c; }
.whatsapp-btn svg { width: 26px; height: 26px; fill: #fff; }
.whatsapp-btn .label { white-space: nowrap; }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 86px;
  z-index: 880;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: 0;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .3s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--green-dark); }

/* ==========================================================================
   MOBILE NAV PANEL
   ========================================================================== */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #fff;
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform .35s ease;
  box-shadow: 0 0 40px rgba(0, 0, 0, .2);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { transform: none; }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.mobile-nav__head img { width: 130px; }
.mobile-nav__close { background: none; border: 0; font-size: 26px; line-height: 1; color: var(--heading); }
.mobile-nav ul { list-style: none; margin: 0; padding: 10px 0; }
.mobile-nav ul li a { display: block; padding: 13px 22px; color: var(--link); font-weight: 500; border-bottom: 1px solid #f2f2f2; }
.mobile-nav ul li a:hover { color: var(--green); background: var(--bg-soft); }
.mobile-nav__cta { padding: 18px 22px; margin-top: auto; }
.overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, .5);
  z-index: 1050; opacity: 0; visibility: hidden; transition: .3s ease;
}
.overlay.show { opacity: 1; visibility: visible; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__title { font-size: 50px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .header__search { display: none; }
  .navbar { display: none; }
  .burger { display: flex; }
  .header__actions { gap: 18px; }
  .shop-layout { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 50px 0; }
  h2 { font-size: 24px; }
  .about__grid, .why__grid, .contact__grid { grid-template-columns: 1fr; gap: 30px; }
  .why__grid .why__img { order: -1; }
  .mvv-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { min-height: 440px; }
  .hero__title { font-size: 42px; }
  .hero::before { background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.75) 60%, rgba(255,255,255,.4) 100%); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .header__main .container { gap: 12px; min-height: 70px; }
  .header__logo img { width: 130px; }
  .topbar__right { display: none; }
  .contact-form .two { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 34px; }
  .hero__welcome { font-size: 30px; }
  .whatsapp-btn .label { display: none; }
  .whatsapp-btn { padding: 14px; border-radius: 50%; }
}
