/* ==========================================================================
   Muhammad Rizwan LLC - Amazon Product Showcase
   Design system + public site styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
    --green-900: #0f3d22;
    --green-800: #14532d;
    --green-700: #166534;
    --green-600: #15803d;
    --green-500: #22a55a;
    --green-50:  #eef7f0;

    --orange-600: #ea580c;
    --orange-500: #F97316;
    --orange-100: #ffedd5;

    --yellow-400: #FACC15;
    --yellow-100: #fef9c3;

    --cream:  #FFFDF7;
    --white:  #FFFFFF;
    --ink:    #17201A;

    --muted:  #5c6b60;
    --muted-2:#859388;
    --line:   #e8e4d9;
    --line-2: #f1eee5;

    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-xs: 0 1px 2px rgba(23, 32, 26, .05);
    --shadow-sm: 0 4px 14px rgba(23, 32, 26, .06);
    --shadow-md: 0 12px 30px rgba(23, 32, 26, .09);
    --shadow-lg: 0 24px 60px rgba(23, 32, 26, .14);

    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --container: 1200px;
    --header-h: 76px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-600); }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.18; font-weight: 800; letter-spacing: -.015em; color: var(--ink); }
h1 { font-size: clamp(2rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 2px; border-radius: 6px; }

.skip-link {
    position: absolute; left: 16px; top: -60px; z-index: 200;
    background: var(--green-700); color: #fff; padding: 10px 16px;
    border-radius: var(--radius-sm); transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 76px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--white); }

.section-head { max-width: 660px; margin: 0 auto 44px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head p { color: var(--muted); font-size: 1.03rem; margin: 0; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--green-700); background: var(--green-50);
    padding: 7px 14px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange-500); }

.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.section-head-row .section-head { margin: 0 0 0 0; text-align: left; max-width: 620px; }

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: inherit; font-size: .95rem; font-weight: 700; line-height: 1;
    padding: 14px 24px; border: 2px solid transparent; border-radius: var(--radius-pill);
    cursor: pointer; text-align: center; white-space: nowrap;
    transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary { background: var(--green-700); color: #fff; box-shadow: 0 8px 20px rgba(22, 101, 52, .24); }
.btn-primary:hover { background: var(--green-600); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(22, 101, 52, .3); }

.btn-accent { background: var(--orange-500); color: #fff; box-shadow: 0 8px 20px rgba(249, 115, 22, .3); }
.btn-accent:hover { background: var(--orange-600); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(249, 115, 22, .36); }

.btn-amazon { background: var(--orange-500); color: #fff; }
.btn-amazon:hover { background: var(--orange-600); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(249, 115, 22, .3); }

.btn-outline { background: transparent; color: var(--green-700); border-color: var(--line); }
.btn-outline:hover { border-color: var(--green-700); background: var(--green-50); color: var(--green-800); }

.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.32); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.24); color: #fff; }

.btn-light { background: var(--white); color: var(--green-800); }
.btn-light:hover { background: var(--cream); color: var(--green-900); transform: translateY(-2px); }

.btn-sm { padding: 10px 16px; font-size: .85rem; }
.btn-lg { padding: 17px 32px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-link { padding: 0; background: none; border: none; color: var(--green-700); font-weight: 700; }

/* --------------------------------------------------------------------------
   4. Badges
   -------------------------------------------------------------------------- */
.badge {
    display: inline-flex; align-items: center; gap: 5px;
    position: absolute; top: 14px; left: 14px; z-index: 2;
    font-size: .76rem; font-weight: 800; letter-spacing: .02em;
    padding: 6px 12px; border-radius: var(--radius-pill); color: #fff;
}
.badge-discount { background: var(--orange-500); box-shadow: 0 6px 14px rgba(249,115,22,.35); }
.badge-new { background: var(--yellow-400); color: #66520a; box-shadow: 0 6px 14px rgba(250,204,21,.35); }

.tag {
    display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; color: var(--green-700); background: var(--green-50);
    padding: 5px 11px; border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   5. Header - topbar + navbar
   -------------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; }

.topbar { background: var(--green-800); color: rgba(255,255,255,.86); font-size: .82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar-text { margin: 0; }
.topbar-links { display: flex; align-items: center; gap: 12px; }
.topbar-links a { color: rgba(255,255,255,.86); }
.topbar-links a:hover { color: var(--yellow-400); }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,.28); }

.navbar {
    background: rgba(255, 253, 247, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-scrolled .navbar { box-shadow: var(--shadow-sm); background: rgba(255,253,247,.98); }

.navbar-inner { display: flex; align-items: center; gap: 20px; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
    width: 42px; height: 42px; flex-shrink: 0; display: grid; place-items: center;
    background: linear-gradient(150deg, var(--green-600), var(--green-800));
    color: #fff; border-radius: 13px; box-shadow: 0 8px 18px rgba(22,101,52,.28);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.14; }
.brand-name { font-weight: 800; font-size: 1.06rem; color: var(--ink); letter-spacing: -.02em; }
.brand-tag { font-size: .72rem; color: var(--muted); font-weight: 500; }
.brand-logo { max-height: 46px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
    position: relative; display: inline-flex; align-items: center; gap: 5px;
    font-size: .93rem; font-weight: 600; color: var(--ink);
    padding: 10px 14px; border-radius: var(--radius-pill); background: none; border: none;
    font-family: inherit; cursor: pointer;
}
.nav-link svg { width: 15px; height: 15px; }
.nav-link:hover { color: var(--green-700); background: var(--green-50); }
.nav-link.is-active { color: var(--green-700); background: var(--green-50); }
.nav-link.is-active::after {
    content: ''; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%);
    width: 18px; height: 3px; border-radius: 3px; background: var(--orange-500);
}

.nav-dropdown { position: relative; }
.nav-drop-panel {
    position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px; z-index: 60;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-md); padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav-dropdown:hover .nav-drop-panel,
.nav-dropdown:focus-within .nav-drop-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop-panel a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600; color: var(--ink); }
.nav-drop-panel a:hover { background: var(--green-50); color: var(--green-700); }

.nav-search {
    display: flex; align-items: center; gap: 8px; flex-shrink: 1; min-width: 0;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill);
    padding: 9px 16px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-search:focus-within { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(34,165,90,.14); }
.nav-search svg { width: 17px; height: 17px; color: var(--muted); flex-shrink: 0; }
.nav-search input { border: none; background: none; outline: none; font-family: inherit; font-size: .9rem; width: 130px; color: var(--ink); }
.nav-search input::placeholder { color: var(--muted); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px;
    align-items: center; justify-content: center; background: var(--green-50);
    border: none; border-radius: 13px; cursor: pointer; flex-shrink: 0;
}
.nav-toggle span { display: block; width: 20px; height: 2.4px; border-radius: 3px; background: var(--green-800); transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.mobile-nav {
    position: fixed; inset: 0; top: 0; z-index: 90;
    background: var(--cream); padding: 96px 0 40px; overflow-y: auto;
    animation: fadeIn .22s var(--ease);
}
.mobile-nav .container { display: flex; flex-direction: column; gap: 4px; }
.mobile-search { display: flex; gap: 8px; margin-bottom: 12px; }
.mobile-search input {
    flex: 1; font-family: inherit; font-size: 1rem; padding: 14px 18px;
    border: 1px solid var(--line); border-radius: var(--radius-pill); background: var(--white); outline: none;
}
.mobile-search button {
    width: 52px; border: none; border-radius: var(--radius-pill); background: var(--green-700); color: #fff; cursor: pointer;
}
.mobile-search button svg { width: 20px; height: 20px; }
.mobile-link { padding: 14px 4px; font-size: 1.08rem; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line-2); }
.mobile-link:hover { color: var(--green-700); }
.mobile-sub { padding-left: 18px; font-size: .95rem; font-weight: 600; color: var(--muted); }
.mobile-group-title { margin: 18px 4px 4px; font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--green-700); }
.mobile-nav .btn { margin-top: 20px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative; overflow: hidden;
    padding: 74px 0 84px;
    background:
        radial-gradient(1100px 600px at 88% -8%, rgba(250, 204, 21, .22), transparent 60%),
        radial-gradient(900px 520px at -5% 105%, rgba(22, 101, 52, .14), transparent 62%),
        var(--cream);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy h1 .accent { color: var(--green-700); position: relative; white-space: nowrap; }
.hero-copy h1 .accent::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: .04em; height: .3em;
    background: rgba(250, 204, 21, .5); border-radius: 4px; z-index: -1;
}
.hero-lead { font-size: 1.1rem; color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-stat-value { display: block; font-size: 1.6rem; font-weight: 800; color: var(--green-700); line-height: 1.1; }
.hero-stat-label { font-size: .82rem; color: var(--muted); font-weight: 600; }

.hero-visual { position: relative; }
.hero-visual-main {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); aspect-ratio: 5 / 5.4; background: var(--white);
}
.hero-visual-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
    position: absolute; left: -14px; bottom: 34px; z-index: 3;
    display: flex; align-items: center; gap: 12px;
    background: var(--white); border-radius: var(--radius); padding: 14px 18px;
    box-shadow: var(--shadow-md); max-width: 250px;
}
.hero-badge-icon {
    width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
    background: var(--yellow-100); color: #8a6d06; flex-shrink: 0;
}
.hero-badge-icon svg { width: 22px; height: 22px; }
.hero-badge strong { display: block; font-size: .9rem; }
.hero-badge span { font-size: .78rem; color: var(--muted); }

.hero-float {
    position: absolute; right: -12px; top: 34px; z-index: 3;
    background: var(--white); border-radius: var(--radius); padding: 12px 16px;
    box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
    animation: floaty 4.5s ease-in-out infinite;
}
.hero-float .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 5px rgba(34,165,90,.16); }
.hero-float span { font-size: .82rem; font-weight: 700; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* --------------------------------------------------------------------------
   7. Category cards
   -------------------------------------------------------------------------- */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-card {
    position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 16 / 11; box-shadow: var(--shadow-sm); background: var(--green-800);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.category-card:hover img { transform: scale(1.06); }
.category-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,61,34,.9) 8%, rgba(15,61,34,.45) 48%, rgba(15,61,34,.06) 100%);
}
.category-card-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 24px; color: #fff; }
.category-card-body h3 { color: #fff; margin: 0 0 4px; font-size: 1.2rem; }
.category-card-body p { margin: 0; font-size: .85rem; color: rgba(255,255,255,.78); }
.category-card-count {
    display: inline-block; margin-top: 12px; font-size: .74rem; font-weight: 700;
    background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28);
    padding: 5px 12px; border-radius: var(--radius-pill); backdrop-filter: blur(4px);
}
.category-card-arrow {
    position: absolute; top: 18px; right: 18px; z-index: 2; width: 40px; height: 40px;
    display: grid; place-items: center; border-radius: 50%;
    background: rgba(255,255,255,.2); color: #fff; backdrop-filter: blur(6px);
    transform: scale(.9); opacity: 0; transition: all .28s var(--ease);
}
.category-card:hover .category-card-arrow { opacity: 1; transform: scale(1) rotate(0); }
.category-card-arrow svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   8. Product grid + card
   -------------------------------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
    position: relative; display: flex; flex-direction: column;
    background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius);
    overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line); }

.product-media { position: relative; display: block; aspect-ratio: 1 / 1; background: var(--cream); overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.05); }

.product-body { display: flex; flex-direction: column; gap: 8px; padding: 18px 18px 20px; flex: 1; }
.product-category { font-size: .73rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--green-700); }
.product-title { font-size: .99rem; font-weight: 700; margin: 0; line-height: 1.4; }
.product-title a { color: var(--ink); }
.product-title a:hover { color: var(--green-700); }

.product-rating { display: flex; align-items: center; gap: 2px; font-size: .86rem; }
.product-rating .star { color: #d8d3c6; }
.product-rating .star.is-on { color: var(--yellow-400); }
.rating-count { margin-left: 6px; color: var(--muted); font-size: .78rem; font-weight: 600; }

.product-price { display: flex; align-items: baseline; gap: 10px; margin-top: auto; padding-top: 6px; }
.price-current { font-size: 1.28rem; font-weight: 800; color: var(--green-800); letter-spacing: -.02em; }
.price-old { font-size: .9rem; color: var(--muted); text-decoration: line-through; }

.product-actions { display: grid; grid-template-columns: auto 1fr; gap: 8px; margin-top: 8px; }
.product-actions .btn { width: 100%; padding: 11px 14px; font-size: .83rem; }

/* --------------------------------------------------------------------------
   9. Why choose us
   -------------------------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
    background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius);
    padding: 30px 26px; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-icon {
    width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px;
    background: var(--green-50); color: var(--green-700); margin-bottom: 18px;
}
.why-card:nth-child(2) .why-icon { background: var(--orange-100); color: var(--orange-600); }
.why-card:nth-child(3) .why-icon { background: var(--yellow-100); color: #8a6d06; }
.why-card:nth-child(4) .why-icon { background: var(--green-50); color: var(--green-700); }
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.06rem; margin-bottom: 8px; }
.why-card p { margin: 0; font-size: .9rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   10. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--green-800), var(--green-600));
    padding: 58px 56px; color: #fff;
    display: flex; align-items: center; justify-content: space-between; gap: 36px;
}
.cta-band::before {
    content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
    right: -120px; top: -180px; background: rgba(250, 204, 21, .16);
}
.cta-band::after {
    content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
    right: 90px; bottom: -210px; background: rgba(255,255,255,.07);
}
.cta-band-content { position: relative; z-index: 2; max-width: 640px; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { margin: 0; color: rgba(255,255,255,.86); font-size: 1.03rem; }
.cta-band .btn { position: relative; z-index: 2; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   11. Home about strip
   -------------------------------------------------------------------------- */
.about-strip { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.about-strip-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3.2; }
.about-strip-media img { width: 100%; height: 100%; object-fit: cover; }
.about-strip-copy h2 { margin-bottom: 16px; }
.about-strip-copy p { color: var(--muted); font-size: 1.02rem; }
.about-points { display: grid; gap: 12px; margin: 22px 0 28px; }
.about-points li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; font-size: .95rem; }
.about-points .tick {
    width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; border-radius: 50%;
    background: var(--green-50); color: var(--green-700); display: grid; place-items: center;
}
.about-points .tick svg { width: 13px; height: 13px; }

/* --------------------------------------------------------------------------
   12. Page hero / breadcrumbs
   -------------------------------------------------------------------------- */
.page-hero {
    padding: 54px 0 44px;
    background:
        radial-gradient(800px 400px at 92% -30%, rgba(250,204,21,.2), transparent 65%),
        var(--green-50);
    border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 10px; font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.page-hero p { color: var(--muted); max-width: 640px; margin: 0; font-size: 1.03rem; }

.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumbs a { color: var(--muted); font-weight: 600; }
.breadcrumbs a:hover { color: var(--green-700); }
.breadcrumbs .sep { color: #c3bda9; }

/* --------------------------------------------------------------------------
   13. Products listing / toolbar
   -------------------------------------------------------------------------- */
.shop-toolbar {
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
    background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius);
    padding: 16px 18px; margin-bottom: 30px; box-shadow: var(--shadow-xs);
}
.toolbar-left { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.toolbar-right { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.result-count { font-size: .88rem; color: var(--muted); font-weight: 600; }

.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.input, .select, .textarea {
    font-family: inherit; font-size: .92rem; color: var(--ink);
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
    padding: 11px 14px; outline: none; width: 100%;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(34,165,90,.14); }
.textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6b60' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 38px; }
.shop-toolbar .select, .shop-toolbar .input { min-width: 172px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.chip {
    display: inline-flex; align-items: center; gap: 7px; font-size: .86rem; font-weight: 700;
    padding: 9px 16px; border-radius: var(--radius-pill); background: var(--white);
    border: 1px solid var(--line); color: var(--ink);
}
.chip:hover { border-color: var(--green-500); color: var(--green-700); }
.chip.is-active { background: var(--green-700); border-color: var(--green-700); color: #fff; }

/* --------------------------------------------------------------------------
   14. Pagination
   -------------------------------------------------------------------------- */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin-top: 46px; }
.page-link {
    min-width: 44px; height: 44px; display: inline-grid; place-items: center; padding: 0 14px;
    border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--white);
    font-weight: 700; font-size: .92rem; color: var(--ink);
}
.page-link:hover { border-color: var(--green-500); color: var(--green-700); }
.page-link.is-active { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.page-dots { color: var(--muted); padding: 0 4px; }

/* --------------------------------------------------------------------------
   15. Product details
   -------------------------------------------------------------------------- */
.product-detail { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: start; }

.pd-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.pd-main {
    position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
    border: 1px solid var(--line-2); aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm);
}
.pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.pd-thumb {
    border: 2px solid var(--line-2); border-radius: var(--radius-sm); overflow: hidden;
    aspect-ratio: 1 / 1; background: var(--white); cursor: pointer; padding: 0;
    transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb:hover { transform: translateY(-2px); }
.pd-thumb.is-active { border-color: var(--green-700); }

.pd-info .tag { margin-bottom: 14px; }
.pd-title { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 12px; }
.pd-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: .92rem; }
.pd-rating .stars { color: var(--yellow-400); letter-spacing: 2px; }
.pd-rating .muted { color: var(--muted); font-weight: 600; }

.pd-price-box {
    display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
    background: var(--green-50); border: 1px solid #d9eadf; border-radius: var(--radius);
    padding: 18px 22px; margin-bottom: 22px;
}
.pd-price { font-size: 2rem; font-weight: 800; color: var(--green-800); letter-spacing: -.02em; line-height: 1; }
.pd-old { font-size: 1.05rem; color: var(--muted); text-decoration: line-through; }
.pd-save { background: var(--orange-500); color: #fff; font-size: .78rem; font-weight: 800; padding: 6px 12px; border-radius: var(--radius-pill); }

.pd-desc { color: var(--muted); font-size: 1rem; }
.pd-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0; }
.pd-actions .btn-amazon { flex: 1; min-width: 220px; }
.pd-meta { display: grid; gap: 10px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .9rem; }
.pd-meta-row { display: flex; justify-content: space-between; gap: 16px; }
.pd-meta-row dt { color: var(--muted); font-weight: 600; margin: 0; }
.pd-meta-row dd { margin: 0; font-weight: 700; text-align: right; }
.pd-assurance { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; }
.pd-assurance div { display: flex; align-items: center; gap: 9px; font-size: .85rem; font-weight: 600; color: var(--muted); }
.pd-assurance svg { width: 18px; height: 18px; color: var(--green-700); }

.pd-tabs { margin-top: 72px; }
.pd-tab-head { display: flex; gap: 8px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.pd-tab {
    background: none; border: none; font-family: inherit; font-size: .96rem; font-weight: 700;
    color: var(--muted); padding: 12px 18px; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -1px;
}
.pd-tab.is-active { color: var(--green-700); border-bottom-color: var(--green-700); }
.pd-tab-panel { display: none; color: var(--muted); line-height: 1.8; }
.pd-tab-panel.is-active { display: block; animation: fadeIn .25s var(--ease); }
.pd-tab-panel h3 { color: var(--ink); }
.pd-specs { display: grid; gap: 12px; max-width: 640px; }
.pd-specs div { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line-2); }
.pd-specs span:first-child { color: var(--muted); font-weight: 600; }
.pd-specs span:last-child { font-weight: 700; color: var(--ink); }

/* --------------------------------------------------------------------------
   16. About page
   -------------------------------------------------------------------------- */
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-hero-grid h1 { margin-bottom: 18px; }
.about-hero-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5 / 4; }
.about-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.prose { max-width: 780px; }
.prose p { color: var(--muted); font-size: 1.02rem; }
.prose h2 { margin-top: 44px; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.value-card { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 28px 24px; }
.value-card h3 { font-size: 1.05rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.value-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; margin-bottom: 16px; }
.value-icon svg { width: 23px; height: 23px; }

/* --------------------------------------------------------------------------
   17. Contact page
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 22px;
}
.contact-card-icon { width: 46px; height: 46px; flex-shrink: 0; border-radius: 13px; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; }
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: .95rem; margin-bottom: 4px; }
.contact-card p, .contact-card address { margin: 0; color: var(--muted); font-size: .91rem; font-style: normal; line-height: 1.55; }
.contact-card a { font-weight: 600; }

.contact-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.contact-socials a {
    display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 700;
    padding: 9px 16px; border-radius: var(--radius-pill); border: 1px solid var(--line); background: var(--white);
}
.contact-socials a:hover { border-color: var(--green-500); color: var(--green-700); }

.form-card { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-card .btn { margin-top: 22px; }

/* --------------------------------------------------------------------------
   18. Alerts / notices
   -------------------------------------------------------------------------- */
.alert {
    display: flex; gap: 12px; align-items: flex-start;
    border-radius: var(--radius); padding: 15px 18px; margin-bottom: 22px;
    font-size: .92rem; font-weight: 600; border: 1px solid;
}
.alert svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #14603a; }
.alert-error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.alert-info { background: var(--yellow-100); border-color: #fde68a; color: #7c5e08; }

/* --------------------------------------------------------------------------
   19. Empty state
   -------------------------------------------------------------------------- */
.empty-state { text-align: center; padding: 70px 20px; background: var(--white); border: 1px dashed var(--line); border-radius: var(--radius-lg); }
.empty-state-icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; }
.empty-state-icon svg { width: 30px; height: 30px; }
.empty-state h3 { margin-bottom: 6px; }
.empty-state p { color: var(--muted); margin-bottom: 20px; }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.72); margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 44px; padding: 64px 0 40px; }
.footer-brand .brand-name { color: #fff; font-size: 1.1rem; }
.footer-brand .brand-mark { background: rgba(255,255,255,.12); box-shadow: none; color: var(--yellow-400); }
.brand-footer { margin-bottom: 16px; }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.62); max-width: 300px; }
.footer-socials { display: flex; gap: 9px; margin-top: 18px; }
.footer-socials a {
    width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px;
    background: rgba(255,255,255,.1); color: #fff; font-size: .74rem; font-weight: 800; letter-spacing: .02em;
    transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.footer-socials a:hover { background: var(--orange-500); transform: translateY(-2px); color: #fff; }

.footer-col h3 { color: #fff; font-size: .95rem; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .9rem; }
.footer-col a:hover { color: var(--yellow-400); }

.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; }
.footer-contact span {
    width: 24px; height: 24px; flex-shrink: 0; border-radius: 7px; display: grid; place-items: center;
    background: rgba(255,255,255,.1); color: var(--yellow-400); font-size: .72rem; font-weight: 800;
}
.footer-contact address { font-style: normal; line-height: 1.5; }

.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-disclaimer p { margin: 0; font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.6; }

.footer-bottom {
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
    border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0 28px;
}
.footer-bottom p { margin: 0; font-size: .82rem; }
.footer-note { color: rgba(255,255,255,.4); }

/* --------------------------------------------------------------------------
   21. Back to top
   -------------------------------------------------------------------------- */
.back-to-top {
    position: fixed; right: 22px; bottom: 22px; z-index: 60;
    width: 48px; height: 48px; display: grid; place-items: center; border: none; cursor: pointer;
    background: var(--green-700); color: #fff; border-radius: 14px; box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all .25s var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--green-600); }
.back-to-top svg { width: 21px; height: 21px; }

/* --------------------------------------------------------------------------
   22. Reveal animation
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   23. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-search { display: none; }
    .hero-grid { gap: 44px; }
}

@media (max-width: 960px) {
    .main-nav { display: none; }
    .nav-toggle { display: flex; margin-left: auto; }
    .topbar-links { display: none; }
    .topbar-inner { justify-content: center; }

    .hero { padding: 52px 0 62px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
    .hero-float { right: 8px; }
    .hero-badge { left: 8px; }

    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .about-strip { grid-template-columns: 1fr; gap: 36px; }
    .about-hero-grid { grid-template-columns: 1fr; gap: 34px; }
    .product-detail { grid-template-columns: 1fr; gap: 34px; }
    .pd-gallery { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr 1fr; }
    .cta-band { flex-direction: column; text-align: center; align-items: center; padding: 46px 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; padding: 50px 0 30px; }
}

@media (max-width: 680px) {
    body { font-size: 15.5px; }
    .container { padding: 0 18px; }
    .section { padding: 54px 0; }

    .product-grid, .product-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .product-body { padding: 14px 14px 16px; }
    .product-actions { grid-template-columns: 1fr; }
    .price-current { font-size: 1.12rem; }

    .why-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }

    .section-head-row { flex-direction: column; align-items: flex-start; }
    .shop-toolbar { flex-direction: column; align-items: stretch; }
    .toolbar-left, .toolbar-right { width: 100%; }
    .shop-toolbar .select, .shop-toolbar .input { min-width: 0; flex: 1; }

    .form-grid { grid-template-columns: 1fr; }
    .form-card { padding: 24px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; }
    .pd-thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .pd-actions .btn { width: 100%; flex: none; min-width: 0; }
    .back-to-top { right: 16px; bottom: 16px; }
}

@media (max-width: 420px) {
    .product-grid, .product-grid--3 { grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { gap: 20px; }
}
