/* Reset & Base */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',sans-serif;
  background:#ffffff;
  color:#1a2434;
  line-height:1.6;
  font-size:15px;
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit}
ul{list-style:none}
img{max-width:100%;display:block}
button{font-family:inherit;cursor:pointer;border:none;background:none}

:root{
  --green:#0E9F6E;
  --green-dark:#047857;
  --green-light:#E6F7F1;
  --blue:#1E6BB8;
  --blue-light:#E8F1FB;
  --text:#1a2434;
  --muted:#5f6c7b;
  --border:#e8edf3;
  --bg-soft:#f6fafb;
  --shadow-sm:0 2px 8px rgba(15,42,71,0.06);
  --shadow:0 4px 20px rgba(15,42,71,0.08);
  --shadow-lg:0 8px 30px rgba(15,42,71,0.10);
  --radius:12px;
  --radius-lg:16px;
}

.container{max-width:1536px;margin:0 auto;padding:0 24px}

h1,h2,h3,h4{font-family:'Plus Jakarta Sans',sans-serif;color:#0d2238;line-height:1.25}
h2{font-size:30px;font-weight:800}
.section{padding:60px 0}
.section-head{display:flex;justify-content:space-between;align-items:end;margin-bottom:32px;gap:20px;flex-wrap:wrap}
.section-head.center{justify-content:center;text-align:center}
.section-head p{color:var(--muted);margin-top:6px}
.view-all{color:var(--green);font-weight:600;font-size:14px}
.view-all i{margin-left:6px;transition:.2s}
.view-all:hover i{transform:translateX(4px)}
.bg-soft{background:var(--bg-soft)}

/* Buttons */
.btn-primary{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--green);color:#fff;padding:11px 22px;
  border-radius:10px;font-weight:600;font-size:14px;
  transition:.25s;box-shadow:0 4px 14px rgba(14,159,110,0.25);
}
.btn-primary:hover{background:var(--green-dark);transform:translateY(-2px);box-shadow:0 8px 20px rgba(14,159,110,0.35)}
.btn-primary.large{padding:14px 28px;font-size:15px;border-radius:12px}
.btn-outline{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;color:var(--green);padding:13px 26px;
  border:2px solid var(--green);border-radius:12px;font-weight:600;font-size:15px;
  transition:.25s;
}
.btn-outline:hover{background:var(--green-light)}

/* Top strip */
.top-strip{background:#0d2238;color:#dde6f0;font-size:13px;padding:9px 0}
.strip-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px}
.strip-left{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.strip-left i{color:#4ade80;margin-right:6px}
.divider{opacity:.3}
.strip-left b{color:#fff}
.strip-right a{color:#fff;font-weight:600}
.strip-right i{color:#4ade80;margin-right:6px}

/* Navbar */
.navbar{background:#fff;position:sticky;top:0;z-index:100;box-shadow:0 1px 0 var(--border)}
.nav-inner{display:flex;align-items:center;gap:24px;padding:14px 20px}
.logo{display:flex;align-items:center;gap:10px}
.logo-icon{
  width:44px;height:44px;background:linear-gradient(135deg,var(--green),#0bc685);
  border-radius:12px;display:grid;place-items:center;color:#fff;font-size:20px;
  box-shadow:0 4px 12px rgba(14,159,110,0.3);
}
.logo-name{font-family:'Plus Jakarta Sans',sans-serif;font-size:21px;font-weight:800;color:#0d2238;line-height:1}
.logo-name span{color:var(--green)}
.logo-tag{font-size:11px;color:var(--muted);font-weight:500;letter-spacing:.3px}
.logo-text{display:flex;flex-direction:column;gap:2px}

.search-bar{
  flex:1;display:flex;align-items:center;
  background:var(--bg-soft);border:1.5px solid var(--border);
  border-radius:12px;padding:6px 6px 6px 16px;max-width:600px;
  transition:.2s;
}
.search-bar:focus-within{border-color:var(--green);background:#fff;box-shadow:0 0 0 4px rgba(14,159,110,0.08)}
.search-bar i{color:var(--muted);font-size:15px}
.search-bar input{flex:1;border:none;background:none;padding:10px 12px;font-size:14px;outline:none;color:var(--text)}
.search-bar button{background:var(--green);color:#fff;padding:10px 22px;border-radius:9px;font-weight:600;font-size:14px;transition:.2s}
.search-bar button:hover{background:var(--green-dark)}

.nav-links{display:flex;align-items:center;gap:18px}
.nav-links a{font-size:14px;font-weight:500;color:var(--text);display:flex;align-items:center;gap:6px;transition:.2s}
.nav-links a:hover{color:var(--green)}
.cart-link{position:relative}
.cart-count{
  background:var(--green);color:#fff;font-size:11px;font-weight:700;
  padding:2px 7px;border-radius:10px;margin-left:2px;
}
.menu-toggle{display:none;font-size:22px;color:var(--text)}

.nav-categories{border-top:1px solid var(--border);background:#fff}
.cat-inner{display:flex;align-items:center;gap:28px;padding:11px 20px;overflow-x:auto;scrollbar-width:none}
.cat-inner::-webkit-scrollbar{display:none}
.cat-inner a{font-size:13.5px;font-weight:500;color:var(--text);white-space:nowrap;display:flex;align-items:center;gap:7px;transition:.2s}
.cat-inner a i{color:var(--green);font-size:13px}
.cat-inner a:hover{color:var(--green)}
.offer-link{color:#dc2626 !important;font-weight:600 !important}
.offer-link i{color:#dc2626 !important}

/* Hero */
.hero{
  background:linear-gradient(180deg,#f6fcfa 0%,#ffffff 100%);
  padding:50px 0 70px;position:relative;overflow:hidden;
}
.hero::before{
  content:'';position:absolute;top:-100px;right:-100px;width:400px;height:400px;
  background:radial-gradient(circle,rgba(14,159,110,0.08),transparent 70%);
}
.hero-inner{display:grid;grid-template-columns:1.05fr 1fr;gap:50px;align-items:center;position:relative;z-index:1}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--green-light);color:var(--green-dark);
  padding:8px 16px;border-radius:30px;font-size:13px;font-weight:600;
  margin-bottom:18px;border:1px solid rgba(14,159,110,0.2);
}
.hero h1{font-size:46px;font-weight:800;color:#0d2238;line-height:1.15}
.hero h1 span{color:var(--green)}
.hero-desc{color:var(--muted);font-size:16px;margin:18px 0 26px;max-width:540px;line-height:1.7}

.hero-search{
  display:flex;align-items:center;background:#fff;
  border:1.5px solid var(--border);border-radius:14px;
  padding:6px 6px 6px 18px;max-width:520px;margin-bottom:22px;
  box-shadow:var(--shadow-sm);
}
.hero-search i{color:var(--muted)}
.hero-search input{flex:1;border:none;outline:none;padding:14px 12px;font-size:14px;background:none}
.hero-search button{background:var(--green);color:#fff;padding:12px 26px;border-radius:10px;font-weight:600;transition:.2s}
.hero-search button:hover{background:var(--green-dark)}

.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:36px}

.hero-trust{display:flex;gap:24px;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:12px}
.trust-item i{width:42px;height:42px;background:var(--green-light);color:var(--green);border-radius:10px;display:grid;place-items:center;font-size:17px}
.trust-item strong{display:block;font-size:14px;color:#0d2238;font-weight:700}
.trust-item span{font-size:12px;color:var(--muted)}

.hero-right{position:relative}
.hero-image-wrap{position:relative;border-radius:24px;overflow:hidden}
.hero-image-wrap img{width:100%;height:520px;object-fit:cover;border-radius:24px;box-shadow:var(--shadow-lg)}

.float-card{
  position:absolute;background:#fff;padding:12px 16px;border-radius:14px;
  box-shadow:0 10px 30px rgba(15,42,71,0.12);display:flex;align-items:center;gap:11px;
  animation:float 4s ease-in-out infinite;
}
.float-card strong{display:block;font-size:13px;color:#0d2238;font-weight:700}
.float-card span{font-size:11px;color:var(--muted)}
.fc-icon{width:38px;height:38px;border-radius:10px;display:grid;place-items:center;color:#fff;font-size:14px}
.fc-icon.green{background:var(--green)}
.fc-icon.blue{background:var(--blue)}
.card-1{top:30px;left:-20px;animation-delay:0s}
.card-2{bottom:80px;right:-15px;animation-delay:1s}
.card-3{bottom:20px;left:30px;animation-delay:2s}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

/* Services */
.services{padding:50px 0 20px}
.services-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px}
.service-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:24px 20px;text-align:center;transition:.25s;position:relative;
}
.service-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:transparent}
.sc-icon{
  width:60px;height:60px;border-radius:16px;margin:0 auto 14px;
  display:grid;place-items:center;font-size:24px;color:#fff;
}
.sc-icon.green{background:linear-gradient(135deg,#0E9F6E,#0bc685)}
.sc-icon.blue{background:linear-gradient(135deg,#1E6BB8,#3b87d1)}
.sc-icon.orange{background:linear-gradient(135deg,#E65100,#fb8c00)}
.sc-icon.purple{background:linear-gradient(135deg,#7B1FA2,#9c27b0)}
.sc-icon.teal{background:linear-gradient(135deg,#00838F,#0097a7)}
.service-card h3{font-size:16px;font-weight:700;margin-bottom:5px}
.service-card p{font-size:13px;color:var(--muted);margin-bottom:10px}
.sc-tag{font-size:12px;color:var(--green);font-weight:600;background:var(--green-light);padding:4px 10px;border-radius:20px}

/* Categories */
.cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.cat-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:28px 24px;display:flex;align-items:center;gap:18px;transition:all 0.3s ease;
  position: relative; overflow: hidden;
}
.cat-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--green);background:#fcfdfd}
.cat-icon{width:64px;height:64px;border-radius:16px;display:grid;place-items:center;font-size:26px;flex-shrink:0;transition:transform 0.3s ease;}
.cat-card:hover .cat-icon{transform:scale(1.08);}
.cat-card h4{font-size:16px;font-weight:700;margin-bottom:4px;color:#0d2238;transition:color 0.2s;}
.cat-card:hover h4{color:var(--green);}
.cat-card span{font-size:13px;color:var(--muted);font-weight:500;}
.cat-card::after {
  content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  color: var(--green); font-size: 14px; opacity: 0; transition: all 0.3s ease;
}
.cat-card:hover::after { opacity: 1; right: 20px; }
.cat-card:hover div { transform: translateX(-4px); transition: 0.3s ease; }

/* Product cards */
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.product-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
  overflow:hidden;transition:.25s;position:relative;display:flex;flex-direction:column;
}
.product-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:transparent}
.badges{position:absolute;top:14px;left:14px;z-index:2;display:flex;gap:6px}
.badge-bs{background:#fff7e6;color:#d97706;font-size:11px;font-weight:700;padding:5px 10px;border-radius:6px;border:1px solid #fde68a}
.badge-rx{background:#fee2e2;color:#dc2626;font-size:11px;font-weight:700;padding:5px 10px;border-radius:6px;border:1px solid #fecaca}
.wishlist{
  position:absolute;top:14px;right:14px;z-index:2;
  width:34px;height:34px;background:#fff;border-radius:50%;
  display:grid;place-items:center;cursor:pointer;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);transition:.2s;color:var(--muted);
}
.wishlist:hover{color:#dc2626}
.wishlist.active i{font-weight:900}
.product-img{height:200px;display:grid;place-items:center;padding:24px;overflow:hidden}
.product-img img{max-height:100%;object-fit:contain;mix-blend-mode:multiply;transition:.3s}
.product-card:hover .product-img img{transform:scale(1.06)}
.product-info{padding:16px 18px 18px;display:flex;flex-direction:column;gap:6px;flex:1}
.brand{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:.5px;font-weight:600}
.product-info h4{font-size:15px;font-weight:600;color:#0d2238;line-height:1.4;min-height:42px}
.rating{font-size:13px;color:#0d2238;font-weight:600;display:flex;align-items:center;gap:5px}
.rating i{color:#f59e0b;font-size:12px}
.rating span{color:var(--muted);font-weight:500;font-size:12px}
.price-row{display:flex;align-items:center;gap:8px;margin-top:4px;flex-wrap:wrap}
.price{font-size:18px;font-weight:800;color:#0d2238}
.old-price{font-size:13px;color:var(--muted);text-decoration:line-through}
.discount{font-size:12px;color:var(--green);font-weight:700;background:var(--green-light);padding:2px 8px;border-radius:6px}
.add-cart{
  margin-top:12px;background:var(--green-light);color:var(--green-dark);
  padding:10px;border-radius:9px;font-weight:600;font-size:13px;
  display:flex;align-items:center;justify-content:center;gap:7px;transition:.25s;
  border:1px solid transparent;
}
.add-cart:hover{background:var(--green);color:#fff}
.add-cart.added{background:#0d2238;color:#fff}

/* Trust section */
.trust-section{background:#fff}
.trust-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:10px}
.trust-card{
  padding:30px 26px;border-radius:var(--radius-lg);background:#fff;
  border:1px solid var(--border);transition:.25s;
}
.trust-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:transparent}
.trust-icon{width:60px;height:60px;border-radius:14px;display:grid;place-items:center;font-size:24px;color:#fff;margin-bottom:18px}
.trust-icon.green{background:linear-gradient(135deg,#0E9F6E,#0bc685)}
.trust-icon.blue{background:linear-gradient(135deg,#1E6BB8,#3b87d1)}
.trust-icon.orange{background:linear-gradient(135deg,#E65100,#fb8c00)}
.trust-icon.purple{background:linear-gradient(135deg,#7B1FA2,#9c27b0)}
.trust-icon.teal{background:linear-gradient(135deg,#00838F,#0097a7)}
.trust-icon.red{background:linear-gradient(135deg,#dc2626,#ef4444)}
.trust-card h4{font-size:18px;font-weight:700;margin-bottom:8px;color:#0d2238}
.trust-card p{color:var(--muted);font-size:14px;line-height:1.65}

/* Health Banner */
.banner-wrap{
  background:linear-gradient(120deg,#f0fbf6 0%,#e6f7f1 100%);
  border-radius:24px;padding:50px;display:grid;grid-template-columns:1.2fr 1fr;gap:40px;align-items:center;
  border:1px solid rgba(14,159,110,0.15);position:relative;overflow:hidden;
}
.banner-wrap::before{
  content:'';position:absolute;top:-80px;right:-80px;width:300px;height:300px;
  background:radial-gradient(circle,rgba(14,159,110,0.12),transparent 70%);
}
.banner-tag{
  display:inline-flex;align-items:center;gap:7px;
  background:#fff;color:var(--green-dark);padding:6px 14px;border-radius:20px;
  font-size:12px;font-weight:700;margin-bottom:16px;
}
.banner-left h2{font-size:32px;margin-bottom:14px}
.banner-left p{color:var(--muted);font-size:15px;margin-bottom:20px;max-width:480px}
.banner-features{display:flex;flex-wrap:wrap;gap:18px;margin-bottom:26px}
.banner-features span{display:flex;align-items:center;gap:7px;font-size:14px;font-weight:500;color:#0d2238}
.banner-features i{color:var(--green)}
.banner-right img{border-radius:18px;width:100%;height:340px;object-fit:cover;box-shadow:var(--shadow-lg)}

/* Testimonials */
.test-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.test-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:28px;transition:.25s;
}
.test-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.stars{color:#f59e0b;margin-bottom:14px;font-size:14px;display:flex;gap:3px}
.test-card p{font-size:15px;color:#0d2238;line-height:1.7;margin-bottom:20px;font-style:italic}
.test-user{display:flex;align-items:center;gap:12px;padding-top:18px;border-top:1px solid var(--border)}
.test-avatar{width:46px;height:46px;border-radius:50%;display:grid;place-items:center;font-weight:700;font-size:15px}
.test-user strong{display:block;font-size:14px;color:#0d2238}
.test-user span{font-size:12px;color:var(--muted)}

/* Footer */
.footer{background:#0d2238;color:#c8d2dd;padding:60px 0 0;margin-top:40px}
.footer-top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr 1.3fr;gap:40px;padding-bottom:40px}
.footer-brand .logo-name{color:#fff}
.footer-brand .logo-tag{color:#94a3b8}
.footer-brand p{font-size:14px;color:#94a3b8;margin:18px 0 22px;line-height:1.7}
.app-buttons{display:flex;flex-direction:column;gap:10px}
.app-btn{
  display:flex;align-items:center;gap:11px;
  background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);
  padding:10px 16px;border-radius:10px;transition:.2s;color:#fff;
}
.app-btn:hover{background:rgba(255,255,255,0.1)}
.app-btn i{font-size:24px}
.app-btn span{font-size:10px;color:#94a3b8;display:block}
.app-btn strong{font-size:13px}

.footer-col h4{color:#fff;font-size:15px;margin-bottom:18px;font-weight:700}
.footer-col ul li{margin-bottom:10px}
.footer-col ul a{font-size:14px;color:#94a3b8;transition:.2s}
.footer-col ul a:hover{color:var(--green)}
.contact-list li{display:flex;gap:10px;font-size:14px;color:#94a3b8;align-items:flex-start}
.contact-list i{color:var(--green);margin-top:4px;width:14px}
.contact-list a{color:#94a3b8}

.socials{display:flex;gap:10px;margin-top:18px}
.socials a{
  width:38px;height:38px;background:rgba(255,255,255,0.06);
  border-radius:10px;display:grid;place-items:center;
  font-size:14px;color:#fff;transition:.25s;
}
.socials a:hover{background:var(--green);transform:translateY(-3px)}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);padding:20px 0;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;
}
.footer-bottom p{font-size:12.5px;color:#94a3b8}
.payment-icons{display:flex;gap:14px;font-size:24px;color:#94a3b8}

/* Responsive */
@media (max-width:1024px){
  .nav-links a:not(.btn-primary):not(.cart-link){display:none}
  .services-grid{grid-template-columns:repeat(3,1fr)}
  .cat-grid{grid-template-columns:repeat(3,1fr)}
  .product-grid{grid-template-columns:repeat(3,1fr)}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .test-grid{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr 1fr 1fr;gap:30px}
  .hero h1{font-size:38px}
  .hero-image-wrap img{height:440px}
}

@media (max-width:768px){
  h2{font-size:24px}
  .section{padding:42px 0}
  .strip-left{font-size:12px;gap:8px}
  .strip-right{display:none}
  .search-bar{display:none}
  .menu-toggle{display:block}
  .nav-links{display:none; width:100%}
  .nav-links.show{
    display:flex;position:absolute;top:100%;left:0;right:0;
    background:#fff;flex-direction:column;padding:20px;gap:16px;
    box-shadow:var(--shadow-lg);align-items:stretch; z-index: 1000;
  }
  .nav-links.show a{display:flex; padding: 12px; border-radius: 8px; background: var(--bg-soft);}
  .nav-links.show .btn-primary{justify-content: center;}
  .hero{padding:40px 0}
  .hero-inner{grid-template-columns:1fr;gap:30px}
  .hero h1{font-size:30px}
  .hero-image-wrap img{height:340px}
  .hero-ctas{flex-direction:column;gap:12px;width:100%;}
  .hero-ctas .btn-primary,.hero-ctas .btn-outline{width:100%;justify-content:center}
  .float-card{padding:9px 12px}
  .float-card strong{font-size:12px}
  .float-card span{font-size:10px}
  .fc-icon{width:32px;height:32px;font-size:12px}
  .card-1{left:0;top:14px}
  .card-2{right:0;bottom:60px}
  .card-3{left:14px;bottom:14px}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .cat-grid{grid-template-columns:repeat(2,1fr);gap:16px}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:14px}
  .trust-grid{grid-template-columns:1fr}
  .test-grid{grid-template-columns:1fr}
  .banner-wrap{grid-template-columns:1fr;padding:30px;gap:24px}
  .banner-left h2{font-size:24px}
  .banner-right img{height:240px}
  .footer-top{grid-template-columns:1fr 1fr;gap:26px;padding-bottom:30px}
  .footer-brand{grid-column:1/-1}
  .footer-bottom{flex-direction:column;text-align:center}
  .product-img{height:160px;padding:18px}
  .product-info h4{font-size:14px;min-height:38px}
  .price{font-size:16px}
  .cat-card {padding: 20px 16px; gap: 12px;}
  .cat-icon {width: 48px; height: 48px; font-size: 20px;}
}

@media (max-width:480px){
  .product-grid{grid-template-columns:1fr;gap:16px}
  .services-grid{grid-template-columns:1fr;gap:16px}
  .cat-grid{grid-template-columns:1fr;gap:14px}
  .footer-top{grid-template-columns:1fr}
  .hero-trust{gap:14px}
  .trust-item{flex:1;min-width:140px}
  .logo-tag{display:none}
}

/* ========================================================= */
/* FULL-SCREEN HERO SECTION */
/* ========================================================= */
.hero-full {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background-color: #0f172a;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(10,20,40,0.60) 0%, rgba(10,20,40,0.35) 55%, rgba(10,20,40,0.10) 100%);
}
.hero-full-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  max-width: 520px;
  color: white;
}
.hero-content .hero-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  color: white;
  margin-bottom: 16px;
}
.hero-content h1 span {
  color: #10b981;
}
.hero-content .hero-desc {
  color: #cbd5e1;
  font-size: 1.15rem;
}
.hero-content .hero-search {
  background: white;
  padding: 8px 8px 8px 20px;
  max-width: 100%;
  margin: 30px 0;
}
.hero-content .hero-search input {
  color: #0f172a;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid white;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}
.btn-outline-white:hover {
  background: white;
  color: #0f172a;
}

@media(max-width: 768px) {
  .hero-full {
    min-height: auto;
    padding: 60px 0;
  }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(10,20,40,0.55) 0%, rgba(10,20,40,0.70) 100%);
  }
}

/* ========================================================= */
/* PREMIUM ABOUT SECTION */
/* ========================================================= */
.about-section {
  background-color: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-main-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15,23,42,0.1);
}
.about-main-img img {
  width: 100%;
  height: auto;
  display: block;
}
.about-owner-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #e2e8f0;
}
.about-owner-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.about-owner-card strong {
  display: block;
  color: #0f172a;
  font-size: 1.1rem;
}
.about-owner-card span {
  color: #64748b;
  font-size: 0.9rem;
}
.about-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #10b981;
  font-weight: 600;
  margin-bottom: 16px;
  background: #ecfdf5;
  padding: 6px 14px;
  border-radius: 20px;
}
.about-content h2 {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-lead {
  font-size: 1.2rem;
  color: #334155;
  font-weight: 500;
  margin-bottom: 20px;
}
.about-content p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 30px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid #e2e8f0;
  padding-top: 30px;
}
.stat-item h3 {
  font-size: 2rem;
  color: #10b981;
  margin-bottom: 4px;
}
.stat-item p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

@media(max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-owner-card { right: 20px; bottom: -20px; }
}
@media(max-width: 768px) {
  .about-content h2 { font-size: 2rem; }
  .about-stats { grid-template-columns: 1fr; gap: 15px; }
}

/* ========================================================= */
/* PREMIUM MICRO-ANIMATIONS                                  */
/* ========================================================= */

/* Scroll reveal fade-in */
@keyframes pm-fadein {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pm-fadein-left {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(.22,.61,.36,1), transform 0.6s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* Navbar scroll shadow */
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(15,23,42,0.10);
  transition: box-shadow 0.3s ease;
}

/* Button animations */
.btn-primary, .btn-outline-white {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease, color 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16,185,129,0.30);
}
.btn-outline-white:hover {
  transform: translateY(-2px);
}

/* Category card hover lift */
.cat-card {
  transition: transform 0.25s cubic-bezier(.22,.61,.36,1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15,23,42,0.10);
}
.cat-card .cat-icon {
  transition: transform 0.25s ease, background 0.25s ease;
}
.cat-card:hover .cat-icon {
  transform: scale(1.10);
}

/* Product card hover */
.product-card {
  transition: transform 0.25s cubic-bezier(.22,.61,.36,1), box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(15,23,42,0.10);
}
.product-card .product-img img {
  transition: transform 0.35s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}

/* Service card hover */
.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(15,23,42,0.10);
}
.service-card .sc-icon {
  transition: transform 0.25s ease;
}
.service-card:hover .sc-icon {
  transform: scale(1.10) rotate(-3deg);
}

/* Nav links hover underline effect */
.nav-links a {
  position: relative;
}
.nav-links a:not(.btn-primary)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  transition: width 0.25s ease;
}
.nav-links a:not(.btn-primary):hover::after {
  width: 100%;
}

/* Logo pulse on hover */
.logo .logo-icon {
  transition: transform 0.3s ease, background 0.3s ease;
}
.logo:hover .logo-icon {
  transform: scale(1.12) rotate(8deg);
}

/* Hero badge bounce in */
.hero-badge {
  animation: pm-fadein 0.7s ease 0.2s both;
}
.hero-content h1 {
  animation: pm-fadein 0.7s ease 0.35s both;
}
.hero-content .hero-desc {
  animation: pm-fadein 0.7s ease 0.50s both;
}
.hero-search {
  animation: pm-fadein 0.7s ease 0.60s both;
}
.hero-ctas {
  animation: pm-fadein 0.7s ease 0.70s both;
}

/* Hero slider smooth transition */
.hero-slider {
  transition: transform 0.6s cubic-bezier(.77,0,.175,1) !important;
}

/* About images hover */
.about-main-img img {
  transition: transform 0.4s ease;
}
.about-main-img:hover img {
  transform: scale(1.03);
}

/* Footer links */
.footer-col ul li a {
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-col ul li a:hover {
  padding-left: 4px;
}

/* Scroll reveal is initialised via store.js */