/* ===== Docanned Star - shared styles ===== */
:root{
  --yellow:#FFE708;
  --yellow-deep:#c9a700;
  --ink:#1a1a1a;
  --dark:#111;
  --gray:#666;
  --light:#f6f6f6;
  --white:#fff;
  --max:1200px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Poppins',sans-serif;color:var(--ink);line-height:1.6;background:var(--white)}
img{max-width:100%;display:block;height:auto}
a{text-decoration:none;color:inherit}
.wrap{max-width:var(--max);margin:0 auto;padding:0 24px}
h1,h2,h3{line-height:1.2}
.eyebrow{color:var(--yellow-deep);font-weight:700;text-transform:uppercase;letter-spacing:1px;font-size:.85rem;margin-bottom:8px}
.btn{display:inline-block;padding:14px 30px;border-radius:40px;font-weight:600;font-size:.95rem;transition:transform .2s,box-shadow .2s;cursor:pointer;border:none}
.btn-dark{background:var(--dark);color:#fff}
.btn-yellow{background:var(--yellow);color:var(--ink)}
.btn-outline{background:transparent;color:var(--ink);border:2px solid var(--ink)}
.btn:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(0,0,0,.15)}
.btn:focus-visible,a:focus-visible,button:focus-visible{outline:3px solid var(--yellow-deep);outline-offset:2px}

/* ---------- Header ---------- */
header{position:sticky;top:0;z-index:100;background:var(--white);box-shadow:0 2px 14px rgba(0,0,0,.06)}
.topbar{display:flex;align-items:center;justify-content:space-between;padding:14px 24px;max-width:var(--max);margin:0 auto;gap:20px}
.logo img{height:56px}
nav ul{list-style:none;display:flex;gap:28px;align-items:center}
nav a{font-weight:600;font-size:.95rem;padding:6px 0;position:relative}
nav a:hover{color:var(--yellow-deep)}
.has-sub{position:relative}
.submenu{position:absolute;top:100%;left:0;background:#fff;box-shadow:0 10px 30px rgba(0,0,0,.12);border-radius:10px;padding:10px 0;min-width:210px;opacity:0;visibility:hidden;transform:translateY(8px);transition:.2s}
.has-sub:hover .submenu,.has-sub:focus-within .submenu{opacity:1;visibility:visible;transform:translateY(0)}
.submenu li a{display:block;padding:10px 22px}
.submenu li a:hover{background:var(--light)}
.header-right{display:flex;align-items:center;gap:18px}
.socials{display:flex;gap:12px}
.socials a{width:34px;height:34px;border-radius:50%;background:var(--light);display:flex;align-items:center;justify-content:center;font-size:.9rem;font-weight:700;transition:.2s}
.socials a:hover{background:var(--yellow)}
.menu-toggle{display:none;background:none;border:none;font-size:1.6rem;cursor:pointer;line-height:1}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{background:var(--yellow);text-align:center;padding:64px 24px}
.page-hero h1{font-size:clamp(2rem,4.5vw,3.2rem);font-weight:800}
.page-hero p{max-width:620px;margin:16px auto 0;font-size:1.1rem}

/* ---------- Home hero ---------- */
.hero{background:var(--yellow);position:relative;overflow:hidden}
.hero-inner{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center;padding:70px 24px;max-width:var(--max);margin:0 auto}
.hero h1{font-size:clamp(2.2rem,5vw,3.8rem);font-weight:800}
.hero p{margin:22px 0 30px;font-size:1.1rem;max-width:480px}
.hero-btns{display:flex;gap:16px;flex-wrap:wrap}
.hero-art{position:relative;text-align:center}
.hero-art img{margin:0 auto;filter:drop-shadow(0 20px 40px rgba(0,0,0,.18))}
.exp-badge{position:absolute;left:0;bottom:24px;background:var(--dark);color:#fff;border-radius:18px;padding:18px 26px;text-align:center}
.exp-badge .num{font-size:2.4rem;font-weight:800;color:var(--yellow);line-height:1}
.exp-badge .lbl{font-size:.8rem;letter-spacing:.5px;margin-top:4px}

/* ---------- Generic section ---------- */
section{padding:80px 0}
.split{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}
.split h2{font-size:clamp(1.6rem,3vw,2.4rem);font-weight:700;margin-bottom:18px}
.split p{color:var(--gray);margin-bottom:24px}
.media-round img{border-radius:20px}
.section-head{text-align:center;max-width:760px;margin:0 auto 50px}
.section-head h2{font-size:clamp(1.7rem,3.2vw,2.6rem);font-weight:700;margin-bottom:16px}
.section-head p{color:var(--gray)}

/* ---------- Product category cards (home) ---------- */
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:26px}
.card{background:var(--white);border:1px solid #eee;border-radius:18px;padding:26px;text-align:center;transition:.25s}
.card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(0,0,0,.1);border-color:var(--yellow)}
.card .imgbox{height:150px;display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.card h3{font-size:1.15rem;margin-bottom:10px}
.card p{font-size:.9rem;color:var(--gray);margin-bottom:16px}
.card a{font-weight:600;color:var(--yellow-deep)}

/* ---------- Product listing (inner pages) ---------- */
.prod-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:24px}
.prod{border:1px solid #eee;border-radius:18px;padding:30px 24px;text-align:center;transition:.25s;background:#fff}
.prod:hover{transform:translateY(-5px);box-shadow:0 14px 36px rgba(0,0,0,.1);border-color:var(--yellow)}
.prod .can{width:64px;height:80px;margin:0 auto 18px;background:linear-gradient(160deg,#fff 0%,#eee 100%);border:3px solid var(--dark);border-radius:10px;position:relative}
.prod .can::before{content:"";position:absolute;left:0;right:0;top:28px;height:24px;background:var(--yellow)}
.prod h3{font-size:1.1rem;margin-bottom:14px}
.prod .btn{padding:10px 22px;font-size:.85rem}

/* ---------- Values ---------- */
.values{background:var(--dark);color:#fff}
.values .section-head h2{color:#fff}
.values .section-head p{color:#bbb}
.value-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;text-align:center}
.value-grid .v{padding:30px;border:1px solid #2a2a2a;border-radius:18px}
.value-grid .v h3{color:var(--yellow);font-size:1.3rem;margin-bottom:10px}
.value-grid .v p{color:#ccc;font-size:.95rem}

/* ---------- Feature list ---------- */
.feature-list{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.feature-list .f h3{font-size:1.05rem;margin-bottom:6px}
.feature-list .f p{font-size:.9rem;color:var(--gray)}

/* ---------- Stats ---------- */
.stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.stat .n{font-size:2.4rem;font-weight:800;color:var(--yellow-deep)}
.stat .l{font-size:.9rem;color:var(--gray);margin-top:4px}

/* ---------- Certs / endorsements ---------- */
.cert{display:grid;grid-template-columns:200px 1fr;gap:36px;align-items:center;background:#fff;border:1px solid #eee;border-radius:20px;padding:36px;margin-bottom:30px}
.cert img{margin:0 auto;max-height:170px}
.cert h3{font-size:1.4rem;margin-bottom:12px}
.cert p{color:var(--gray)}
.badge-row{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-top:10px}
.badge-row span{background:var(--dark);color:#fff;padding:8px 18px;border-radius:30px;font-size:.85rem;font-weight:600}

/* ---------- Testimonial ---------- */
.testi{background:var(--light)}
.testi-card{max-width:760px;margin:0 auto;text-align:center;background:#fff;border-radius:22px;padding:48px 40px;box-shadow:0 10px 40px rgba(0,0,0,.05)}
.testi-card .quote{font-size:1.3rem;font-style:italic;margin-bottom:28px}
.testi-person{display:flex;align-items:center;justify-content:center;gap:14px}
.testi-person img{width:60px;height:60px;border-radius:50%;object-fit:cover}
.testi-person .name{font-weight:700}
.testi-person .role{font-size:.85rem;color:var(--gray)}

/* ---------- News ---------- */
.news-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px}
.news{border:1px solid #eee;border-radius:18px;padding:30px;transition:.25s}
.news:hover{box-shadow:0 12px 30px rgba(0,0,0,.08)}
.news h3{font-size:1.2rem;margin-bottom:12px}
.news p{color:var(--gray);font-size:.95rem}

/* ---------- Footer ---------- */
footer{background:var(--dark);color:#ccc;padding:60px 0 26px}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:40px;margin-bottom:40px}
footer h4{color:#fff;margin-bottom:18px;font-size:1.05rem}
footer img.flogo{height:54px;margin-bottom:18px}
footer ul{list-style:none}
footer ul li{margin-bottom:10px;font-size:.92rem}
footer a:hover{color:var(--yellow)}
.foot-bottom{border-top:1px solid #2a2a2a;padding-top:22px;text-align:center;font-size:.85rem;color:#888}

/* ---------- Responsive ---------- */
@media(max-width:900px){
  nav ul{display:none}
  .menu-toggle{display:block}
  nav.open ul{display:flex;flex-direction:column;align-items:flex-start;position:absolute;top:100%;left:0;right:0;background:#fff;padding:20px 24px;gap:16px;box-shadow:0 14px 30px rgba(0,0,0,.1)}
  nav.open .submenu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;padding:6px 0 0 14px;min-width:0}
  .hero-inner,.split,.cert{grid-template-columns:1fr;gap:36px}
  .cert img{max-height:140px}
  .exp-badge{position:static;display:inline-block;margin-top:20px}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .value-grid,.feature-list,.news-grid,.foot-grid{grid-template-columns:1fr}
  .stat-grid{grid-template-columns:repeat(2,1fr)}
  .header-right .socials{display:none}
}
@media(max-width:520px){
  .product-grid{grid-template-columns:1fr}
  section{padding:56px 0}
}
@media(prefers-reduced-motion:reduce){
  *{transition:none!important;scroll-behavior:auto!important}
}

/* ---------- Product detail page ---------- */
.pdetail{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}
.pdetail .pimg{background:var(--light);border-radius:20px;padding:40px;display:flex;align-items:center;justify-content:center}
.pdetail .pimg img{max-height:360px}
.pdetail h1{font-size:clamp(1.8rem,3.5vw,2.6rem);margin-bottom:16px}
.pdetail .lead{color:var(--gray);margin-bottom:24px;font-size:1.05rem}
.spec{border-top:1px solid #eee;padding:14px 0;display:grid;grid-template-columns:150px 1fr;gap:16px}
.spec:last-of-type{border-bottom:1px solid #eee;margin-bottom:24px}
.spec .k{font-weight:700;font-size:.9rem;text-transform:uppercase;letter-spacing:.5px}
.spec .val{color:var(--gray)}
@media(max-width:900px){
  .pdetail{grid-template-columns:1fr;gap:30px}
  .spec{grid-template-columns:120px 1fr}
}

/* ---------- Colored catalog (category) pages ---------- */
.catalog{padding:60px 0 72px}
.catalog .lead-head{text-align:center;max-width:780px;margin:0 auto 44px}
.catalog .lead-head h1{font-size:clamp(2rem,4.6vw,3.2rem);font-weight:800;color:#fff;margin-bottom:14px}
.catalog .lead-head p{color:rgba(255,255,255,.92);font-size:1.05rem}
.cat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px 36px}
.cat-item{text-align:center;color:#fff}
.cat-item .imgwrap{height:230px;display:flex;align-items:flex-end;justify-content:center;margin-bottom:18px}
.cat-item .imgwrap img{max-height:230px;width:auto;filter:drop-shadow(0 16px 26px rgba(0,0,0,.28))}
.cat-item h3{font-size:1.18rem;font-weight:800;margin-bottom:10px;color:#fff}
.cat-item p{font-size:.92rem;color:rgba(255,255,255,.9);max-width:330px;margin:0 auto 18px}
.btn-ghost-light{display:inline-block;padding:12px 28px;border-radius:40px;border:2px solid #fff;color:#fff;font-weight:600;font-size:.9rem;transition:.2s}
.btn-ghost-light:hover{background:#fff;color:#111}
/* light variant for the yellow fruits page (dark text) */
.catalog.light .lead-head h1,.catalog.light .cat-item h3{color:#111}
.catalog.light .lead-head p{color:rgba(0,0,0,.78)}
.catalog.light .cat-item{color:#111}
.catalog.light .cat-item p{color:rgba(0,0,0,.72)}
.catalog.light .cat-item .imgwrap img{filter:drop-shadow(0 16px 26px rgba(0,0,0,.18))}
.catalog.light .btn-ghost-light{border-color:#111;color:#111}
.catalog.light .btn-ghost-light:hover{background:#111;color:#fff}
@media(max-width:900px){.cat-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.cat-grid{grid-template-columns:1fr}}
