/* ============================================================
   SHANTI TRADING — Premium E-commerce Stylesheet
   ============================================================ */

:root {
    --primary: #1a1a2e;
    --accent: #e94560;
    --accent-dark: #c9354e;
    --gold: #d4a54a;
    --bg: #f6f6f8;
    --card: #ffffff;
    --text: #1f2430;
    --muted: #7a7f8c;
    --line: #e8e8ee;
    --green: #1a9e5f;
    --radius: 14px;
    --shadow-sm: 0 2px 10px rgba(20,20,40,.06);
    --shadow-md: 0 8px 30px rgba(20,20,40,.10);
    --shadow-lg: 0 18px 50px rgba(20,20,40,.16);
    --font: 'Poppins', system-ui, -apple-system, sans-serif;
    --serif: 'Playfair Display', serif;
    --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; border-radius: 50px; font-weight: 600; font-size: .95rem;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(233,69,96,.30); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(233,69,96,.40); }
.btn--dark { background: var(--primary); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { border: 1.6px solid var(--primary); color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 34px; font-size: 1.02rem; }

/* ---------- Topbar ---------- */
.topbar { background: var(--primary); color: #fff; font-size: .82rem; letter-spacing: .3px; }
.topbar__inner { display: flex; justify-content: center; padding: 9px 20px; text-align: center; }

/* ---------- Header ---------- */
.header {
    position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }

.logo { display: flex; align-items: center; gap: 11px; }
.logo__mark {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: #fff; font-weight: 700; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center; letter-spacing: .5px;
}
.logo__text { font-weight: 700; font-size: 1.18rem; line-height: 1.1; display: flex; flex-direction: column; }
.logo__text small { font-weight: 400; font-size: .62rem; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }

.nav { display: flex; gap: 30px; }
.nav a { font-weight: 500; font-size: .95rem; position: relative; color: var(--text); transition: color .2s; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--accent); transition: width .25s; }
.nav a:hover { color: var(--accent); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 16px; }
.cart-link { position: relative; color: var(--primary); display: flex; }
.cart-link:hover { color: var(--accent); }
.cart-badge {
    position: absolute; top: -8px; right: -9px; background: var(--accent); color: #fff;
    font-size: .68rem; font-weight: 700; min-width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; padding: 0 4px;
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2.4px; background: var(--primary); border-radius: 2px; transition: .3s; }

/* ---------- Flash message ---------- */
.flash {
    position: fixed; top: 90px; left: 50%; transform: translateX(-50%);
    background: var(--green); color: #fff; padding: 12px 26px; border-radius: 50px;
    font-weight: 500; font-size: .9rem; z-index: 200; box-shadow: var(--shadow-md);
    animation: flashIn .4s ease;
}
@keyframes flashIn { from { opacity: 0; transform: translate(-50%, -12px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(120deg, #1a1a2e 0%, #24243e 55%, #3a2d4d 100%);
    color: #fff; position: relative; overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 40px; padding: 70px 20px 80px; }
.hero__badge { display: inline-block; background: rgba(212,165,74,.18); color: var(--gold); padding: 6px 16px; border-radius: 50px; font-size: .8rem; font-weight: 600; margin-bottom: 20px; letter-spacing: .5px; }
.hero h1 { font-family: var(--serif); font-size: 3.2rem; line-height: 1.12; margin-bottom: 18px; }
.hero h1 span { color: var(--gold); }
.hero p { color: rgba(255,255,255,.78); font-size: 1.08rem; max-width: 480px; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 34px; margin-top: 42px; }
.hero__stats div strong { display: block; font-size: 1.6rem; font-weight: 700; }
.hero__stats div small { color: rgba(255,255,255,.65); font-size: .82rem; }
.hero__img { position: relative; }
.hero__img img { border-radius: 20px; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.hero__float {
    position: absolute; background: #fff; color: var(--text); padding: 12px 16px; border-radius: 14px;
    box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 600;
}
.hero__float--1 { bottom: 24px; left: -20px; }
.hero__float--2 { top: 24px; right: -14px; }
.hero__float .dot { width: 34px; height: 34px; border-radius: 10px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; }
.hero__float small { display: block; font-weight: 400; color: var(--muted); font-size: .74rem; }

/* ---------- Section headings ---------- */
.section { padding: 62px 0; }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 34px; gap: 20px; flex-wrap: wrap; }
.section__head h2 { font-family: var(--serif); font-size: 2rem; line-height: 1.2; }
.section__head p { color: var(--muted); font-size: .95rem; margin-top: 4px; }
.section__link { color: var(--accent); font-weight: 600; font-size: .92rem; }
.section__link:hover { text-decoration: underline; }
.section--alt { background: #fff; }

/* ---------- Category chips ---------- */
.cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.cat-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 180px; box-shadow: var(--shadow-sm); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-card:hover img { transform: scale(1.08); }
.cat-card__label { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), transparent 60%); display: flex; align-items: flex-end; padding: 16px; color: #fff; font-weight: 600; font-size: 1.05rem; }

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

.card {
    background: var(--card); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: transform .28s ease, box-shadow .28s ease;
    display: flex; flex-direction: column; position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__media { position: relative; overflow: hidden; aspect-ratio: 1/1; background: #eee; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card__media img { transform: scale(1.07); }

.badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    background: var(--primary); color: #fff; font-size: .68rem; font-weight: 600;
    padding: 5px 11px; border-radius: 50px; letter-spacing: .4px;
}
.badge--seller { background: var(--gold); }
.badge--premium { background: linear-gradient(135deg,#7b4397,#dc2430); }
.badge--discount { position: absolute; top: 12px; right: 12px; left: auto; background: var(--accent); }

.card__body { padding: 15px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.card__cat { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 500; }
.card__name { font-weight: 600; font-size: .98rem; margin: 5px 0 8px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.card__name:hover { color: var(--accent); }
.rating { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; margin-bottom: 10px; }
.rating .stars { color: var(--gold); letter-spacing: 1px; }
.rating .count { color: var(--muted); }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.price-row .now { font-size: 1.12rem; font-weight: 700; }
.price-row .mrp { font-size: .85rem; color: var(--muted); text-decoration: line-through; }
.price-row .off { font-size: .8rem; font-weight: 600; color: var(--green); }
.card__stock { font-size: .74rem; color: var(--accent); font-weight: 600; margin-top: 8px; }
.card__foot { margin-top: 14px; }

/* ---------- Feature banner ---------- */
.banner { background: linear-gradient(120deg,#e94560,#d4a54a); color: #fff; border-radius: 20px; padding: 44px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; box-shadow: var(--shadow-md); }
.banner h3 { font-family: var(--serif); font-size: 2rem; margin-bottom: 8px; }
.banner p { opacity: .92; }
.banner .btn--light { background: #fff; color: var(--accent); }

/* ---------- Breadcrumb ---------- */
.crumb { padding: 22px 0 0; font-size: .85rem; color: var(--muted); }
.crumb a:hover { color: var(--accent); }

/* ---------- Listing layout ---------- */
.shop { display: grid; grid-template-columns: 230px 1fr; gap: 32px; padding: 30px 0 62px; }
.filters { background: #fff; border-radius: var(--radius); padding: 22px; height: fit-content; box-shadow: var(--shadow-sm); position: sticky; top: 92px; }
.filters h4 { font-size: .95rem; margin-bottom: 14px; }
.filters a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--text); font-size: .9rem; margin-bottom: 2px; transition: .2s; }
.filters a:hover { background: var(--bg); }
.filters a.active { background: var(--primary); color: #fff; font-weight: 500; }
.shop__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; flex-wrap: wrap; gap: 12px; }
.shop__head h1 { font-family: var(--serif); font-size: 1.7rem; }
.shop__head span { color: var(--muted); font-size: .9rem; }

/* ---------- Product detail ---------- */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; padding: 26px 0 62px; }
.pd__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.pd__media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pd__cat { text-transform: uppercase; letter-spacing: 1.5px; font-size: .78rem; color: var(--muted); font-weight: 600; }
.pd h1 { font-size: 2rem; font-family: var(--serif); margin: 8px 0 12px; line-height: 1.2; }
.pd__rating { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.pill { background: #fff; border: 1px solid var(--line); padding: 4px 12px; border-radius: 50px; font-size: .8rem; color: var(--muted); }
.pill--live { color: var(--accent); border-color: rgba(233,69,96,.3); background: rgba(233,69,96,.06); font-weight: 600; }
.pd__price { display: flex; align-items: baseline; gap: 14px; margin: 18px 0; }
.pd__price .now { font-size: 2.1rem; font-weight: 700; }
.pd__price .mrp { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.pd__price .off { background: rgba(26,158,95,.12); color: var(--green); font-weight: 600; padding: 3px 10px; border-radius: 8px; font-size: .9rem; }
.pd__desc { color: #4a4f5c; margin-bottom: 22px; }
.pd__stockline { display: flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 600; font-size: .9rem; margin-bottom: 20px; }
.pd__buy { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 26px; }
.qty { display: flex; align-items: center; border: 1.6px solid var(--line); border-radius: 50px; overflow: hidden; }
.qty button { width: 42px; height: 46px; font-size: 1.2rem; color: var(--primary); background: #fff; }
.qty button:hover { background: var(--bg); }
.qty input { width: 44px; text-align: center; border: none; font-size: 1rem; font-weight: 600; font-family: inherit; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pd__meta { border-top: 1px solid var(--line); padding-top: 20px; display: grid; gap: 12px; }
.pd__meta div { display: flex; gap: 10px; font-size: .88rem; color: #4a4f5c; align-items: center; }
.pd__meta strong { color: var(--text); }

/* ---------- Cart ---------- */
.cart-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 30px; padding: 26px 0 62px; align-items: start; }
.cart-items { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.cart-row { display: grid; grid-template-columns: 92px 1fr auto; gap: 16px; padding: 18px; border-bottom: 1px solid var(--line); align-items: center; }
.cart-row:last-child { border-bottom: none; }
.cart-row__img { width: 92px; height: 92px; border-radius: 10px; object-fit: cover; }
.cart-row__name { font-weight: 600; font-size: .98rem; }
.cart-row__cat { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.cart-row__price { font-weight: 700; margin-top: 6px; }
.cart-row__right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-row .qty { transform: scale(.9); transform-origin: right; }
.cart-row__remove { color: var(--muted); font-size: .82rem; }
.cart-row__remove:hover { color: var(--accent); }

.summary { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 24px; position: sticky; top: 92px; }
.summary h3 { font-size: 1.15rem; margin-bottom: 18px; }
.summary__line { display: flex; justify-content: space-between; padding: 9px 0; font-size: .92rem; color: #4a4f5c; }
.summary__line.total { border-top: 1px dashed var(--line); margin-top: 8px; padding-top: 16px; font-size: 1.15rem; font-weight: 700; color: var(--text); }
.summary__free { color: var(--green); font-weight: 600; }
.cart-actions { display: flex; justify-content: space-between; align-items: center; margin: 16px 0 4px; }
.cart-empty { text-align: center; padding: 80px 20px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.cart-empty svg { color: var(--line); margin-bottom: 16px; }
.cart-empty h2 { font-family: var(--serif); margin-bottom: 8px; }
.cart-empty p { color: var(--muted); margin-bottom: 22px; }

/* ---------- Forms / Checkout ---------- */
.checkout { display: grid; grid-template-columns: 1fr 380px; gap: 30px; padding: 26px 0 62px; align-items: start; }
.form-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px; }
.form-card h2 { font-size: 1.3rem; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 500; }
.field label .req { color: var(--accent); }
.field input, .field textarea {
    padding: 12px 14px; border: 1.6px solid var(--line); border-radius: 10px;
    font-family: inherit; font-size: .93rem; transition: border .2s, box-shadow .2s; background: #fdfdfe;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(233,69,96,.12); }
.field textarea { resize: vertical; min-height: 90px; }
.field .error { color: var(--accent); font-size: .78rem; min-height: 1em; }
.field input.invalid, .field textarea.invalid { border-color: var(--accent); }

.pay-option { display: flex; align-items: center; gap: 14px; border: 2px solid var(--accent); background: rgba(233,69,96,.05); border-radius: 12px; padding: 16px; margin-top: 8px; }
.pay-option .radio { width: 22px; height: 22px; border-radius: 50%; border: 6px solid var(--accent); flex-shrink: 0; }
.pay-option strong { display: block; }
.pay-option small { color: var(--muted); font-size: .84rem; }
.pay-badge { margin-left: auto; background: var(--green); color: #fff; font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; }

.mini-item { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.mini-item img { width: 54px; height: 54px; border-radius: 8px; object-fit: cover; }
.mini-item .mi-name { font-size: .86rem; font-weight: 600; line-height: 1.3; }
.mini-item .mi-qty { font-size: .78rem; color: var(--muted); }
.mini-item .mi-price { margin-left: auto; font-weight: 600; font-size: .9rem; }

/* ---------- Success ---------- */
.success { max-width: 640px; margin: 0 auto; padding: 50px 20px 70px; text-align: center; }
.success__check { width: 92px; height: 92px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 12px 30px rgba(26,158,95,.35); animation: pop .5s ease; }
@keyframes pop { 0% { transform: scale(0); } 70% { transform: scale(1.1); } 100% { transform: scale(1); } }
.success h1 { font-family: var(--serif); font-size: 2.2rem; margin-bottom: 8px; }
.success > p { color: var(--muted); margin-bottom: 26px; }
.order-box { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 26px; text-align: left; margin-bottom: 26px; }
.order-id { display: flex; justify-content: space-between; align-items: center; background: var(--primary); color: #fff; padding: 16px 20px; border-radius: 12px; margin-bottom: 22px; }
.order-id small { display: block; opacity: .7; font-size: .76rem; }
.order-id strong { font-size: 1.4rem; letter-spacing: 1px; }
.order-box h4 { margin-bottom: 12px; font-size: 1rem; }

/* ---------- Contact / About ---------- */
.page-hero { background: linear-gradient(120deg,#1a1a2e,#3a2d4d); color: #fff; padding: 56px 0; text-align: center; }
.page-hero h1 { font-family: var(--serif); font-size: 2.4rem; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 50px 0; align-items: start; }
.info-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 26px; margin-bottom: 20px; }
.info-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 1.1rem; }
.info-card p { color: #4a4f5c; }
.info-card a { color: var(--accent); font-weight: 500; }
.map-frame { width: 100%; border: 0; border-radius: var(--radius); min-height: 340px; box-shadow: var(--shadow-sm); }
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding-bottom: 20px; }
.value { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); text-align: center; }
.value .ic { font-size: 1.8rem; margin-bottom: 10px; }
.value h4 { margin-bottom: 6px; }
.value p { font-size: .88rem; color: var(--muted); }

/* ---------- Trust strip ---------- */
.trust { background: #fff; border-top: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 30px 20px; }
.trust__item { display: flex; align-items: center; gap: 14px; justify-content: center; }
.trust__item span { font-size: 1.7rem; }
.trust__item strong { display: block; font-size: .92rem; }
.trust__item small { color: var(--muted); font-size: .8rem; }

/* ---------- Footer ---------- */
.footer { background: var(--primary); color: rgba(255,255,255,.72); padding: 54px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.6fr; gap: 34px; padding-bottom: 40px; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col a { display: block; padding: 5px 0; font-size: .9rem; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.logo--footer .logo__text { color: #fff; }
.footer__about { font-size: .9rem; margin-top: 14px; max-width: 300px; }
.footer__contact { font-size: .86rem; margin-bottom: 12px; line-height: 1.5; }
.footer__contact a { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px; display: flex; justify-content: space-between; font-size: .82rem; flex-wrap: wrap; gap: 8px; }

/* ---------- Recent order popup ---------- */
.order-popup {
    position: fixed; bottom: 24px; left: 24px; z-index: 150; width: 300px; max-width: calc(100vw - 40px);
    background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); padding: 12px;
    display: flex; align-items: center; gap: 12px; transform: translateX(-120%); opacity: 0;
    transition: transform .5s cubic-bezier(.2,.8,.3,1), opacity .5s; border: 1px solid var(--line);
}
.order-popup.show { transform: translateX(0); opacity: 1; }
.order-popup img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.order-popup__body { flex: 1; min-width: 0; }
.order-popup__body strong { font-size: .84rem; display: block; }
.order-popup__body span { font-size: .8rem; color: #4a4f5c; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.order-popup__body small { font-size: .72rem; color: var(--muted); }
.order-popup__close { position: absolute; top: 6px; right: 8px; font-size: 1.1rem; color: var(--muted); line-height: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .grid { grid-template-columns: repeat(3, 1fr); }
    .cats { grid-template-columns: repeat(3, 1fr); }
    .hero h1 { font-size: 2.6rem; }
}

@media (max-width: 860px) {
    .nav {
        position: fixed; top: 74px; right: 0; width: 260px; height: calc(100vh - 74px);
        background: #fff; flex-direction: column; gap: 0; padding: 16px; box-shadow: var(--shadow-lg);
        transform: translateX(100%); transition: transform .3s; z-index: 60;
    }
    .nav.open { transform: translateX(0); }
    .nav a { padding: 13px 10px; border-bottom: 1px solid var(--line); width: 100%; }
    .nav-toggle { display: flex; }
    .hero__inner { grid-template-columns: 1fr; text-align: center; padding: 46px 20px 56px; }
    .hero__cta { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__img { display: none; }
    .shop { grid-template-columns: 1fr; }
    .filters { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
    .filters h4 { width: 100%; }
    .filters a { flex: 0 0 auto; }
    .pd { grid-template-columns: 1fr; gap: 26px; }
    .cart-wrap, .checkout { grid-template-columns: 1fr; }
    .summary { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .cats { grid-template-columns: repeat(2, 1fr); }
    .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
    .section { padding: 44px 0; }
    .section__head h2 { font-size: 1.55rem; }
    .hero h1 { font-size: 2.1rem; }
    .banner { padding: 30px; }
    .form-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .card__name { font-size: .9rem; }
    .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
    .grid { grid-template-columns: 1fr; }
    .cats { grid-template-columns: 1fr; }
}
