/* ==========================================================================
   ChaudhryMart Ltd — app.css
   Palette taken from the company logo: deep navy + signal orange on white.
   ========================================================================== */

:root {
    --navy:        #143A6B;
    --navy-deep:   #0E2A4F;
    --navy-tint:   #EDF1F8;
    --orange:      #F5821F;
    --orange-dark: #DC6E0D;
    --orange-tint: #FFF2E4;

    --ink:    #17202E;
    --body:   #445064;
    --muted:  #74809A;
    --line:   #E3E8F1;
    --mist:   #F6F8FB;
    --white:  #FFFFFF;

    --ok:     #1F8A5B;
    --warn:   #B45309;

    --shell:  1240px;
    --radius: 4px;
    --radius-lg: 8px;

    --shadow-soft: 0 1px 2px rgba(20, 58, 107, .06);
    --shadow-lift: 0 12px 28px -12px rgba(20, 58, 107, .28);
}

*,
*::before,
*::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--orange); }

h1, h2, h3, h4, h5 {
    margin: 0 0 .6em;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.015em;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.15rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.15rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1rem; padding-left: 1.2rem; }
li { margin-bottom: .45rem; }

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

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------- helpers */

.shell {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 76px 0; }
.section--tight { padding: 52px 0; }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: #C9D6EA; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 38px;
}
.section-head h2 { margin-bottom: .2em; }
.section-head p { color: var(--muted); margin: 0; max-width: 54ch; }
.section-head a { font-weight: 600; white-space: nowrap; }

.lead { font-size: 1.1rem; color: var(--body); max-width: 68ch; }
.muted { color: var(--muted); }
.center { text-align: center; }

.rule-mark {
    width: 52px;
    height: 3px;
    background: var(--orange);
    border: 0;
    margin: 0 0 22px;
}

/* ---------------------------------------------------------------- buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: 14px 26px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background .16s ease, color .16s ease, border-color .16s ease;
}

.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-dark); color: #fff; }

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); color: #fff; }

.btn--outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--ghost { background: transparent; border-color: rgba(255,255,255,.45); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn--light { background: #fff; border-color: var(--line); color: var(--ink); }
.btn--light:hover { border-color: var(--navy); color: var(--navy); }

.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: .875rem; }
.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ----------------------------------------------------------------- header */

.topbar {
    background: var(--navy-deep);
    color: #B9C8DF;
    font-size: .82rem;
}
.topbar .shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 40px;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--orange); }
.topbar__list { display: flex; gap: 22px; align-items: center; }
.topbar i { color: var(--orange); margin-right: 7px; }

.masthead {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.masthead .shell {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 84px;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 54px; width: auto; }
.brand__fallback {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
}
.brand__fallback span { color: var(--orange); }

.mainnav { margin-left: auto; }
.mainnav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.mainnav li { margin: 0; }
.mainnav a {
    position: relative;
    display: block;
    padding: 6px 0;
    font-size: .94rem;
    font-weight: 600;
    color: var(--ink);
}
.mainnav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}
.mainnav a:hover { color: var(--navy); }
.mainnav a:hover::after,
.mainnav a.is-active::after { transform: scaleX(1); }
.mainnav a.is-active { color: var(--navy); }

.head-tools { display: flex; align-items: center; gap: 6px; }
.head-tools a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: var(--radius);
    color: var(--navy);
    font-size: 1.1rem;
}
.head-tools a:hover { background: var(--navy-tint); }

.cart-count {
    position: absolute;
    top: 3px; right: 2px;
    min-width: 18px; height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    background: var(--orange);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.nav-toggle {
    display: none;
    width: 42px; height: 42px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    font-size: 1.15rem;
    cursor: pointer;
}

/* ------------------------------------------------------------------- hero */

.hero {
    position: relative;
    background: var(--navy);
    color: #C9D6EA;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    right: -140px; top: -140px;
    width: 460px; height: 460px;
    border: 44px solid rgba(245, 130, 31, .12);
    border-radius: 50%;
}
.hero .shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
    padding-top: 78px;
    padding-bottom: 78px;
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero p { font-size: 1.08rem; max-width: 48ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__note {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 26px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.14);
    font-size: .88rem;
}
.hero__note span { display: inline-flex; align-items: center; gap: 8px; }
.hero__note i { color: var(--orange); }

.hero__media { position: relative; }
.hero__media img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.hero__media::before {
    content: '';
    position: absolute;
    left: -18px; bottom: -18px;
    width: 140px; height: 140px;
    border-left: 5px solid var(--orange);
    border-bottom: 5px solid var(--orange);
    border-radius: 0 0 0 var(--radius-lg);
}
.hero__price-tag {
    position: absolute;
    left: 22px; bottom: 22px;
    background: #fff;
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: var(--shadow-lift);
}
.hero__price-tag strong { display: block; color: var(--ink); font-size: 1.15rem; }
.hero__price-tag small { color: var(--muted); }

/* ------------------------------------------------------------ page banner */

.pagehead {
    background: var(--navy);
    color: #B9C8DF;
    padding: 56px 0;
}
.pagehead h1 { color: #fff; margin-bottom: .25em; font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.pagehead p { max-width: 62ch; margin: 0; }
.crumbs { font-size: .85rem; margin-bottom: 14px; color: #93A7C6; }
.crumbs a { color: #93A7C6; }
.crumbs a:hover { color: var(--orange); }
.crumbs i { font-size: .65rem; margin: 0 9px; opacity: .6; }

/* ---------------------------------------------------------- trust strip */

.trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    overflow: hidden;
}
.trust > div {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 26px 24px;
    border-right: 1px solid var(--line);
}
.trust > div:last-child { border-right: 0; }
.trust i { color: var(--orange); font-size: 1.5rem; margin-top: 3px; }
.trust strong { display: block; color: var(--ink); font-size: .97rem; }
.trust span { font-size: .87rem; color: var(--muted); }

/* -------------------------------------------------------------- category */

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cat-card {
    position: relative;
    display: block;
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy);
}
.cat-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .58;
    transition: transform .4s ease, opacity .3s ease;
}
.cat-card:hover img { transform: scale(1.05); opacity: .45; }
.cat-card__body {
    position: absolute;
    left: 26px; right: 26px; bottom: 24px;
    color: #fff;
}
.cat-card__body h3 { color: #fff; margin-bottom: .15em; }
.cat-card__body span { font-size: .88rem; color: #D6E1F2; }
.cat-card__body i { color: var(--orange); margin-left: 6px; }

/* --------------------------------------------------------- product cards */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.card:hover { border-color: #C3D0E4; box-shadow: var(--shadow-lift); }

.card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--mist);
    overflow: hidden;
}
.card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.card:hover .card__media img { transform: scale(1.04); }

.tag {
    position: absolute;
    top: 12px; left: 12px;
    padding: 5px 11px;
    border-radius: 2px;
    background: var(--orange);
    color: #fff;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .01em;
}
.tag--navy { background: var(--navy); }

.card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}
.card__cat { font-size: .78rem; color: var(--muted); margin-bottom: 6px; }
.card__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px;
}
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--navy); }
.card__short { font-size: .86rem; color: var(--muted); margin-bottom: 14px; }
.card__foot { margin-top: auto; }

.price { display: flex; align-items: baseline; gap: 9px; margin-bottom: 14px; }
.price strong { font-size: 1.22rem; font-weight: 700; color: var(--navy); }
.price del { font-size: .9rem; color: var(--muted); }

.card__buttons { display: grid; grid-template-columns: 1fr auto; gap: 8px; }

/* ---------------------------------------------------------- shop toolbar */

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 44px;
    align-items: start;
}

.filters {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 104px;
}
.filters h4 { margin-bottom: 14px; }
.filters ul { list-style: none; margin: 0 0 26px; padding: 0; }
.filters li { margin-bottom: 2px; }
.filters li a {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: var(--radius);
    font-size: .92rem;
    color: var(--body);
}
.filters li a:hover { background: var(--mist); color: var(--navy); }
.filters li a.is-active { background: var(--navy); color: #fff; font-weight: 600; }
.filters li a.is-active span { color: #C9D6EA; }

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
}
.toolbar p { margin: 0; font-size: .92rem; color: var(--muted); }

select, input, textarea {
    font-family: inherit;
    font-size: .95rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    width: 100%;
}
select { max-width: 230px; cursor: pointer; }
input:focus, select:focus, textarea:focus {
    border-color: var(--navy);
    outline: none;
    box-shadow: 0 0 0 3px rgba(20, 58, 107, .1);
}
label {
    display: block;
    margin-bottom: 7px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.error { color: #C0392B; font-size: .84rem; margin-top: 5px; }

/* ------------------------------------------------------------ single product */

.pdp {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: start;
}
.pdp__media {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--mist);
}
.pdp__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.pdp h1 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: .3em; }
.pdp__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 18px 0;
    margin-bottom: 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.pdp__price strong { font-size: 2rem; color: var(--navy); }
.pdp__price del { color: var(--muted); }
.pdp__price .save {
    padding: 4px 10px;
    border-radius: 2px;
    background: var(--orange-tint);
    color: var(--warn);
    font-size: .82rem;
    font-weight: 700;
}

.stock { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--ok); }
.stock i { font-size: .75rem; }
.stock--low { color: var(--warn); }

.qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.qty button {
    width: 44px; height: 48px;
    background: #fff;
    border: 0;
    color: var(--navy);
    font-size: 1rem;
    cursor: pointer;
}
.qty button:hover { background: var(--mist); }
.qty input {
    width: 56px;
    height: 48px;
    border: 0;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    text-align: center;
    font-weight: 600;
    border-radius: 0;
    padding: 0;
}
.qty input:focus { box-shadow: none; }

.buy-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.buy-row .btn { flex: 1 1 180px; }

.spec-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.spec-table th, .spec-table td {
    text-align: left;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.spec-table th { width: 42%; color: var(--ink); font-weight: 600; }
.spec-table td { color: var(--body); }

.assurance { display: grid; gap: 14px; margin-top: 26px; }
.assurance div { display: flex; gap: 13px; align-items: flex-start; font-size: .9rem; }
.assurance i { color: var(--orange); margin-top: 4px; }

/* ------------------------------------------------------------------- cart */

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.cart-line {
    display: grid;
    grid-template-columns: 104px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.cart-line:first-child { border-top: 1px solid var(--line); }
.cart-line img {
    width: 104px; height: 104px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--mist);
}
.cart-line h4 { margin-bottom: 4px; font-size: 1rem; }
.cart-line h4 a { color: var(--ink); }
.cart-line__meta { font-size: .85rem; color: var(--muted); }
.cart-line__right { text-align: right; }
.cart-line__right strong { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: 10px; }
.link-remove {
    background: none; border: 0; padding: 0;
    font-family: inherit; font-size: .84rem;
    color: var(--muted); cursor: pointer;
}
.link-remove:hover { color: #C0392B; }

.panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px;
    background: #fff;
}
.panel--mist { background: var(--mist); }
.panel h3 { font-size: 1.1rem; margin-bottom: 18px; }

.totals { list-style: none; margin: 0 0 20px; padding: 0; font-size: .95rem; }
.totals li {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    margin: 0;
    border-bottom: 1px solid var(--line);
}
.totals li:last-child {
    border-bottom: 0;
    padding-top: 16px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
}
.totals li:last-child span:last-child { color: var(--navy); }

.empty {
    text-align: center;
    padding: 70px 24px;
    border: 1px dashed var(--line);
    border-radius: var(--radius-lg);
}
.empty i { font-size: 2.6rem; color: #C3D0E4; margin-bottom: 18px; display: block; }

/* --------------------------------------------------------------- checkout */

.pay-option {
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 14px;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}
.pay-option:hover { border-color: #C3D0E4; }
.pay-option.is-picked { border-color: var(--navy); background: var(--navy-tint); }
.pay-option__head { display: flex; align-items: center; gap: 12px; }
.pay-option input { width: auto; }
.pay-option label { margin: 0; font-size: .98rem; cursor: pointer; }
.pay-option p { font-size: .86rem; color: var(--muted); margin: 8px 0 0 30px; }

.bank-box {
    margin: 16px 0 0 30px;
    padding: 18px 20px;
    border-left: 3px solid var(--orange);
    background: #fff;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.bank-box dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; margin: 0; font-size: .92rem; }
.bank-box dt { color: var(--muted); }
.bank-box dd { margin: 0; font-weight: 700; color: var(--ink); letter-spacing: .02em; }

.notice {
    display: flex;
    gap: 13px;
    padding: 16px 18px;
    border-radius: var(--radius);
    background: var(--orange-tint);
    color: #8A4B00;
    font-size: .9rem;
    margin-bottom: 24px;
}
.notice i { margin-top: 3px; }
.notice--ok { background: #E9F6EF; color: #15694A; }

/* --------------------------------------------------------------- account */

.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 32px; flex-wrap: wrap; }
.tab {
    padding: 13px 20px;
    background: none;
    border: 0;
    border-bottom: 2px solid transparent;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
}
.tab.is-picked { color: var(--navy); border-bottom-color: var(--orange); }
.tab-panel { display: none; }
.tab-panel.is-shown { display: block; }

.order-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}
.order-row strong { color: var(--ink); }
.pill {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 700;
}
.pill--ok { background: #E9F6EF; color: #15694A; }
.pill--wait { background: var(--orange-tint); color: #8A4B00; }

/* ----------------------------------------------------------- content page */

.prose { max-width: 74ch; }
.prose h2 { font-size: 1.45rem; margin-top: 2.4em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.12rem; margin-top: 1.8em; }
.prose ul { padding-left: 1.15rem; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.4rem; font-size: .93rem; }
.prose th, .prose td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--mist); color: var(--ink); }

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.split img { border-radius: var(--radius-lg); width: 100%; height: 420px; object-fit: cover; }

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-row strong { display: block; font-size: 2.1rem; color: #fff; font-weight: 800; line-height: 1.1; }
.stat-row span { font-size: .9rem; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
}
.value-card i { font-size: 1.6rem; color: var(--orange); margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 1.08rem; }
.value-card p { font-size: .92rem; margin: 0; color: var(--muted); }

/* ---------------------------------------------------------------- contact */

.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    margin: 0;
    border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list i { color: var(--orange); font-size: 1.15rem; margin-top: 4px; width: 20px; text-align: center; }
.contact-list strong { display: block; color: var(--ink); font-size: .95rem; }
.contact-list span, .contact-list a { font-size: .93rem; color: var(--body); }

.map-frame {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    line-height: 0;
}
.map-frame iframe { width: 100%; height: 420px; border: 0; }

/* ------------------------------------------------------------------ strip */

.strip {
    background: var(--orange);
    color: #fff;
}
.strip .shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 38px;
    padding-bottom: 38px;
    flex-wrap: wrap;
}
.strip h3 { color: #fff; margin-bottom: .2em; font-size: 1.4rem; }
.strip p { margin: 0; color: #FFE9D3; }

/* ----------------------------------------------------------------- footer */

.footer { background: var(--navy-deep); color: #9FB2CD; font-size: .92rem; }
.footer a { color: #C7D4E7; }
.footer a:hover { color: var(--orange); }
.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
    gap: 44px;
    padding: 62px 0 48px;
}
.footer h4 {
    color: #fff;
    font-size: .98rem;
    margin-bottom: 20px;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 11px; }
.footer__brand img {
    height: 64px;
    width: auto;
    background: #fff;
    border-radius: var(--radius);
    padding: 8px 12px;
    margin-bottom: 18px;
}
.footer__addr { list-style: none; }
.footer__addr li { display: flex; gap: 13px; align-items: flex-start; }
.footer__addr i { color: var(--orange); margin-top: 5px; width: 16px; text-align: center; }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .86rem;
}
.footer__pay { display: flex; gap: 14px; font-size: 1.5rem; color: #6F86A8; }

/* ------------------------------------------------------------------ toast */

.toast {
    position: fixed;
    right: 24px; bottom: 24px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 340px;
    padding: 15px 20px;
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
    font-size: .92rem;
    box-shadow: var(--shadow-lift);
    transform: translateY(120%);
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
}
.toast.is-shown { transform: translateY(0); opacity: 1; }
.toast i { color: var(--orange); font-size: 1.1rem; }

/* ------------------------------------------------------------ cookie bar */

.cookiebar {
    position: fixed;
    left: 24px; right: 24px; bottom: 24px;
    z-index: 180;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 940px;
    margin: 0 auto;
    padding: 20px 26px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
    font-size: .9rem;
}
.cookiebar.is-shown { display: flex; }
.cookiebar__actions { display: flex; gap: 10px; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
    .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .shop-layout { grid-template-columns: 210px 1fr; gap: 30px; }
}

@media (max-width: 960px) {
    .section { padding: 58px 0; }
    .hero .shell { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 56px; }
    .hero__media img { height: 340px; }
    .pdp, .split, .contact-grid, .cart-layout { grid-template-columns: 1fr; gap: 34px; }
    .split img { height: 300px; }
    .trust { grid-template-columns: 1fr 1fr; }
    .trust > div:nth-child(2) { border-right: 0; }
    .trust > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .stat-row { grid-template-columns: 1fr 1fr; gap: 26px; }
    .value-grid { grid-template-columns: 1fr; }

    .mainnav {
        display: none;
        position: absolute;
        left: 0; right: 0; top: 100%;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-lift);
        padding: 10px 24px 20px;
    }
    .mainnav.is-open { display: block; }
    .mainnav ul { flex-direction: column; gap: 0; }
    .mainnav li { border-bottom: 1px solid var(--line); }
    .mainnav li:last-child { border-bottom: 0; }
    .mainnav a { padding: 14px 0; }
    .mainnav a::after { display: none; }

    .masthead .shell { position: relative; min-height: 72px; gap: 14px; }
    .nav-toggle { display: inline-flex; order: 3; }
    .head-tools { margin-left: auto; }
    .brand img { height: 44px; }
    .topbar__list li:first-child { display: none; }
    .shop-layout { grid-template-columns: 1fr; }
    .filters { position: static; }
}

@media (max-width: 720px) {
    .product-grid, .product-grid--3 { grid-template-columns: 1fr 1fr; gap: 16px; }
    .card__body { padding: 15px; }
    .card__short { display: none; }
    .card__buttons { grid-template-columns: 1fr; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
    .cat-grid { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 34px; padding: 46px 0 36px; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .cart-line { grid-template-columns: 76px 1fr; }
    .cart-line img { width: 76px; height: 76px; }
    .cart-line__right { grid-column: 2; text-align: left; }
    .topbar .shell { justify-content: center; }
    .topbar__list { gap: 16px; }
    .buy-row .btn { flex: 1 1 100%; }
    .toast { left: 16px; right: 16px; max-width: none; }
    .cookiebar { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
}

@media (max-width: 460px) {
    .product-grid, .product-grid--3 { grid-template-columns: 1fr; }
    .trust { grid-template-columns: 1fr; }
    .trust > div { border-right: 0; border-bottom: 1px solid var(--line); }
    .trust > div:last-child { border-bottom: 0; }
    .stat-row { grid-template-columns: 1fr; }
}
