:root {
    --bg: #202020;
    --bg-deep: #151519;
    --bg-soft: #29292d;
    --paper: #f6f5f2;
    --white: #fff;
    --ink: #18181b;
    --muted: #6d6d74;
    --line: #3c3c42;
    --light-line: #d8d7d3;
    --accent: #a80f27;
    --accent-bright: #ee3652;
    --amber: #f0aa31;
    --green: #20775a;
    --blue: #155e9b;
    --radius: 4px;
    --shadow: 0 18px 50px rgba(0, 0, 0, .22);
    --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--white);
    font: 16px/1.65 Arial, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 {
    font-family: Arial, "Segoe UI", sans-serif;
    line-height: 1.15;
    letter-spacing: -.025em;
}
h1 { font-size: clamp(2.35rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 780px; }
.center { text-align: center; }
.top-gap { margin-top: 36px; }
.skip-link { position: fixed; top: -60px; left: 20px; z-index: 100; background: var(--white); color: var(--ink); padding: 12px 18px; }
.skip-link:focus { top: 15px; }
.announcement { background: #111; border-bottom: 1px solid #353535; padding: 6px 20px; text-align: center; color: #ddd; font-size: .79rem; letter-spacing: .08em; text-transform: uppercase; }

.site-header {
    background: #1c1c1d;
    border-bottom: 1px solid #2b2b2d;
    position: relative;
    z-index: 20;
}
.site-header::before { content: ""; display: block; width: min(calc(100% - 40px), var(--container)); height: 1px; margin: 0 auto; background: #39393b; }
.header-inner { min-height: 175px; padding: 20px 0 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--white); }
.header-inner > .brand .brand-name { display: none; }
.brand-mark { width: 78px; height: 78px; border: 4px solid var(--white); border-radius: 15px; display: grid; place-items: center; font: 800 1.75rem/1 "Trebuchet MS", sans-serif; letter-spacing: -.1em; padding-right: 3px; box-shadow: 0 0 0 1px rgba(255,255,255,.22); }
.brand-name { font: 800 1.04rem/.82 "Trebuchet MS", sans-serif; letter-spacing: .02em; }
.main-nav { margin-top: 22px; }
.main-nav ul { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.main-nav li { border-right: 1px solid #3b3b3b; }
.main-nav li:last-child { border-right: 0; }
.main-nav a { display: block; padding: 2px 15px; color: #eee; font: 400 .86rem/1.35 "Arial Narrow", Arial, sans-serif; text-transform: uppercase; }
.main-nav a:hover, .main-nav a:focus { color: var(--accent-bright); }
.cart-link span { display: inline-grid; place-items: center; min-width: 19px; height: 19px; border-radius: 50%; margin-left: 4px; background: var(--accent); color: #fff; font-size: .68rem; }
.menu-toggle { display: none; }

.hero { position: relative; overflow: hidden; background: var(--bg-deep); min-height: 266px; display: grid; place-items: center; border-bottom: 1px solid #2c2c31; }
.hero-inner { position: relative; z-index: 2; max-width: 1120px; text-align: center; padding-block: 48px 60px; }
.hero h1 { max-width: 1080px; margin: 0 auto; font-size: clamp(2.35rem, 4.1vw, 3.35rem); font-weight: 300; line-height: 1.15; }
.hero-copy { max-width: 800px; margin: 0 auto 28px; color: #c8c8cd; font-size: 1.08rem; }
.kicker, .eyebrow { color: var(--accent-bright); font-weight: 800; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.hero-shape { position: absolute; opacity: .9; }
.hero-shape-a { width: 116px; height: 116px; border: 13px solid var(--accent-bright); border-radius: 50%; left: 33%; bottom: -62px; }
.hero-shape-b { width: 42px; height: 42px; border: 7px solid var(--amber); transform: rotate(45deg); right: 21%; top: 60px; }
.hero::before, .hero::after { content: ""; position: absolute; width: 46px; height: 6px; background: var(--accent-bright); }
.hero::before { left: 13%; bottom: 48px; transform: rotate(42deg); }
.hero::after { right: 47%; bottom: 67px; }

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 30px;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    background: var(--accent);
    color: var(--white);
    font: 800 .82rem/1 "Trebuchet MS", sans-serif;
    letter-spacing: .045em;
    text-transform: uppercase;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover, .button:focus { transform: translateY(-2px); background: #c21532; border-color: #c21532; }
.button-outline { background: transparent; border-color: #8f8f98; }
.button-outline:hover, .button-outline:focus { background: var(--white); border-color: var(--white); color: var(--ink); }
.button-dark { background: #111; border-color: #111; }
.button-block { width: 100%; }
.button-small { min-height: 40px; padding: 8px 16px; font-size: .72rem; }
.text-link { color: var(--accent-bright); font-weight: 800; border-bottom: 1px solid currentColor; }
.text-link:hover { color: var(--amber); }

.quick-section { background: var(--bg); padding: 22px 0 74px; }
.quick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.quick-card { position: relative; background: var(--paper); color: var(--ink); padding: 24px; border-left: 5px solid var(--accent-bright); box-shadow: var(--shadow); }
.quick-card h2 { font-size: 1.2rem; margin-bottom: 12px; }
.plain-list { margin: 0 0 22px; padding-left: 20px; }
.plain-list li { margin-block: 5px; }

.intro-section, .proof-section, .review-section, .process-section, .feature-section, .products-section, .categories-section, .faq-section, .blog-section, .catalog-section, .product-detail-section, .product-copy-section, .cart-section, .checkout-section, .order-detail-section, .account-section, .contact-section, .info-section {
    padding-block: 86px;
}
.intro-section { background: var(--bg); }
.intro-section p:not(.eyebrow) { color: #c7c7cc; font-size: 1.08rem; }
.section-heading { margin-bottom: 38px; }
.section-heading h2 { max-width: 820px; margin-inline: auto; }
.proof-section, .feature-section { background: var(--paper); color: var(--ink); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proof-grid article { padding: 28px; border: 1px solid var(--light-line); border-top: 4px solid var(--accent); background: var(--white); }
.proof-number { font-size: .78rem; font-weight: 800; letter-spacing: .13em; color: var(--accent); }
.proof-grid h3 { margin-top: 20px; }
.proof-grid p { color: var(--muted); margin-bottom: 0; }
.review-section { background: #17171a; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #25252a; border: 1px solid #3b3b42; padding: 28px; }
.review-card blockquote { margin: 20px 0; font: 1.15rem/1.6 Georgia, serif; color: #f0f0f1; }
.review-card p { margin-bottom: 0; }
.review-card p span { color: #a8a8af; }
.stars { color: var(--amber); letter-spacing: .12em; }
.process-section { background: var(--bg); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid article { border-top: 1px solid #52525a; padding: 24px 12px 0 0; }
.process-grid article > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--accent); font-weight: 800; }
.process-grid h3 { margin-top: 22px; }
.process-grid p { color: #b2b2b8; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--light-line); }
.feature-grid div { min-height: 130px; padding: 30px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--light-line); }
.feature-grid div:last-child { border: 0; }
.feature-grid strong { font: 700 1.15rem "Trebuchet MS", sans-serif; margin-bottom: 6px; }
.feature-grid span, .feature-note { color: var(--muted); }
.feature-note { margin: 24px auto 0; max-width: 760px; }
.products-section { background: var(--bg); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.catalog-section .product-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { background: var(--paper); color: var(--ink); display: flex; flex-direction: column; box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.product-visual { min-height: 270px; position: relative; display: grid; place-items: center; padding: 28px; overflow: hidden; }
.product-visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.visual-0 { background: radial-gradient(circle at 15% 20%, #ffbf59 0 5%, transparent 5.5%), linear-gradient(135deg,#4a1321,#b01538); }
.visual-1 { background: radial-gradient(circle at 85% 20%, #69d4d0 0 7%, transparent 7.5%), linear-gradient(135deg,#12233c,#1b6b76); }
.visual-2 { background: linear-gradient(45deg,transparent 42%,rgba(255,255,255,.15) 43% 48%,transparent 49%),linear-gradient(135deg,#3b204d,#a3477e); }
.visual-3 { background: radial-gradient(circle at 20% 85%,rgba(255,255,255,.18) 0 14%,transparent 15%),linear-gradient(135deg,#2a352a,#65834c); }
.visual-4 { background: linear-gradient(120deg,transparent 0 45%,rgba(0,0,0,.18) 46% 55%,transparent 56%),linear-gradient(135deg,#654319,#c58a27); }
.visual-5 { background: radial-gradient(circle at 80% 80%,#ee3652 0 8%,transparent 8.5%),linear-gradient(135deg,#202444,#5459b2); }
.mock-card { width: min(100%, 290px); aspect-ratio: 1.58; position: relative; display: block; padding: 18px; color: #f7f7f7; background: rgba(11,11,15,.84); border: 1px solid rgba(255,255,255,.38); border-radius: 11px; box-shadow: 0 25px 32px rgba(0,0,0,.32); transform: rotate(-4deg); overflow: hidden; }
.mock-card::after { content:""; position:absolute; inset:-40% -10%; background:linear-gradient(100deg,transparent 45%,rgba(255,255,255,.17),transparent 58%); transform:rotate(15deg); }
.mock-brand { display: block; font: 800 .68rem "Trebuchet MS",sans-serif; letter-spacing:.12em; }
.mock-chip { display:block; width:44px; height:32px; border:1px solid #d8aa5b; border-radius:5px; background:linear-gradient(90deg,#b78b43,#e5ca86,#a8772e); margin-top:30px; }
.mock-lines { position:absolute; width:72px; height:72px; border-radius:50%; right:18px; top:44px; border:5px solid rgba(255,255,255,.15); }
.mock-card strong { position:absolute; left:18px; bottom:34px; font-size:.72rem; letter-spacing:.08em; }
.mock-card small { position:absolute; left:18px; bottom:17px; font-size:.52rem; letter-spacing:.12em; opacity:.72; }
.product-badge { position: absolute; z-index: 2; top: 15px; left: 15px; background: var(--amber); color: #251908; border-radius: 99px; padding: 5px 10px; font-weight: 800; font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; }
.product-card-body { padding: 24px; display: flex; flex: 1; flex-direction: column; }
.product-card-body .eyebrow { color: var(--accent); margin-bottom: 8px; }
.product-card-body h3 { margin-bottom: 10px; }
.product-card-body > p:not(.eyebrow) { color: var(--muted); font-size: .92rem; }
.product-card-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--light-line); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-weight: 800; }
.price del, .product-price del { color: #888; font-weight: 400; font-size: .82em; }
.product-card .text-link { font-size: .78rem; }
.catalog-section .product-visual { min-height: 210px; padding: 20px; }
.catalog-section .product-card-body { padding: 18px; }
.catalog-section .product-card-body > p:not(.eyebrow) { display: none; }
.catalog-section .product-card-body .eyebrow { font-size: .66rem; }
.catalog-section .product-card-body h3 { min-height: 2.3em; font-size: 1rem; }

.categories-section { background: #151519; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.category-card { min-height: 310px; padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid #47474e; position: relative; overflow: hidden; }
.category-card::after { content: ""; position: absolute; width: 190px; height: 190px; border: 30px solid rgba(255,255,255,.06); border-radius: 50%; top: -80px; right: -70px; }
.category-1 { background: linear-gradient(145deg,#1c2939,#18202a); }
.category-2 { background: linear-gradient(145deg,#3b1d27,#25161b); }
.category-3 { background: linear-gradient(145deg,#2c2945,#1d1b30); }
.category-4 { background: linear-gradient(145deg,#49351d,#2b2014); }
.category-card p { color: #b8b8bf; }
.category-card .text-link { align-self: flex-start; }
.faq-section { background: var(--paper); color: var(--ink); }
.faq-section details { border-top: 1px solid var(--light-line); padding: 20px 4px; }
.faq-section details:last-child { border-bottom: 1px solid var(--light-line); }
.faq-section summary { cursor: pointer; list-style: none; font: 700 1.05rem "Trebuchet MS", sans-serif; display: flex; justify-content: space-between; }
.faq-section summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; }
.faq-section details[open] summary::after { content: "–"; }
.faq-section details p { color: var(--muted); margin: 14px 0 0; }
.blog-section { background: var(--bg); }
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.post-card { display: grid; grid-template-columns: 145px 1fr; gap: 22px; border-top: 1px solid #48484e; padding-top: 22px; }
.post-art { min-height: 145px; background: linear-gradient(145deg,#79030e,#d72845); display: grid; place-items: center; overflow: hidden; position: relative; }
.post-art::before { content: ""; position: absolute; width: 130px; height: 130px; border: 20px solid rgba(255,255,255,.12); border-radius: 50%; }
.post-art span { font: 800 3rem "Trebuchet MS",sans-serif; position:relative; z-index:1; }
.post-card time { color: #9d9da4; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.post-card h2, .post-card h3 { font-size: 1.16rem; margin: 5px 0 10px; }
.post-card p { color: #b8b8bd; font-size: .9rem; }

.page-hero { position: relative; overflow: hidden; background: var(--bg-deep); border-bottom: 1px solid #303035; padding: 67px 0 72px; min-height: 257px; }
.page-hero::before { content: ""; position: absolute; width: 68px; height: 8px; left: 14%; bottom: 47px; background: var(--accent-bright); transform: rotate(43deg); }
.page-hero::after { content: ""; position: absolute; width: 42px; height: 42px; right: 21%; top: 63px; border: 7px solid var(--amber); transform: rotate(45deg); }
.page-hero.compact { padding: 28px 0; }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.35rem,4vw,3.35rem); font-weight: 300; text-transform: uppercase; max-width: 720px; margin-bottom: 15px; }
.page-hero p:not(.eyebrow) { color: #babac1; max-width: 760px; font-size: 1.06rem; }
.page-hero.center p { margin-inline: auto; }
.page-hero:not(.compact) .breadcrumbs { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; color: #d1d1d5; font-size: 1rem; margin-bottom: 24px; }
.breadcrumbs a { color: #ddd; }
.catalog-section { background: var(--bg); }
.catalog-hero { min-height: 420px; padding-bottom: 50px; }
.catalog-hero h1 { max-width: 760px; }
.catalog-hero .catalog-lead { max-width: 700px; }
.catalog-tools { display: grid; grid-template-columns: 2fr 1.15fr auto; align-items: end; gap: 14px; background: transparent; border: 0; padding: 0; margin-top: 30px; }
.catalog-tools input, .catalog-tools select { min-height: 48px; background: #292c32; border-color: #3d4149; color: #fff; }
.catalog-tools input::placeholder { color: #999da7; }
.catalog-tools label { color: #fff; font-size: .95rem; }
.catalog-intro { text-align: center; margin-bottom: 36px; }
.catalog-intro h2 { font-size: 1.8rem; }
.inline-checks { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 28px; margin: 0; }
.inline-checks li { border: 0; padding-block: 4px; color: #c5c5ca; }
label { display: flex; flex-direction: column; gap: 7px; font-weight: 700; font-size: .82rem; }
input, select, textarea {
    width: 100%;
    border: 1px solid #bcbcc2;
    border-radius: 3px;
    padding: 11px 12px;
    background: #fff;
    color: var(--ink);
    outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent-bright); box-shadow: 0 0 0 3px rgba(238,54,82,.18); }
input[type="file"] { padding: 7px; }
.catalog-summary { color: #b2b2b8; margin-bottom: 22px; }
.empty-state { background: #29292d; border: 1px solid #46464d; padding: 70px 30px; text-align: center; }
.empty-state p { color: #b6b6bc; }

.product-detail-section { background: var(--bg); padding-top: 50px; }
.product-detail { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 54px; align-items: start; }
.product-visual-large { min-height: 510px; }
.product-visual-large .mock-card { width: min(85%,480px); }
.material-notes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #404047; border: 1px solid #404047; }
.material-notes span { background: #28282c; padding: 14px 8px; text-align: center; font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; }
.product-summary h1 { font-size: clamp(2.2rem,4vw,3.6rem); }
.rating-line { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; color: #b7b7bd; font-size: .86rem; }
.product-price { font-size: 2rem; font-weight: 800; margin: 18px 0; }
.lead { color: #c8c8cd; font-size: 1.05rem; }
.legal-note { display: flex; gap: 12px; background: #2a2022; border-left: 4px solid var(--accent-bright); padding: 14px 16px; margin: 22px 0; }
.legal-note strong { flex: 0 0 130px; }
.legal-note span { color: #cac2c4; font-size: .86rem; }
.customize-form { border-top: 1px solid #48484e; padding-top: 24px; }
.customize-form h2 { font-size: 1.3rem; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.customize-form textarea { margin-bottom: 16px; }
.customize-form .button-row { justify-content: flex-start; }
.product-copy-section { background: var(--paper); color: var(--ink); }
.content-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 50px; align-items: start; }
.prose { color: var(--muted); white-space: normal; }
.prose.large { font: 1.08rem/1.9 Georgia, serif; color: inherit; }
.check-list { list-style: none; padding: 0; }
.check-list li { padding: 9px 0 9px 27px; border-bottom: 1px solid var(--light-line); position: relative; }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 900; position: absolute; left: 2px; }

.cart-section, .checkout-section, .order-detail-section, .account-section, .contact-section, .info-section { background: var(--paper); color: var(--ink); }
.cart-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0,1.75fr) minmax(290px,.75fr); gap: 34px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: grid; grid-template-columns: 96px minmax(0,1fr) 72px 90px auto; gap: 18px; align-items: center; border: 1px solid var(--light-line); background: #fff; padding: 18px; }
.cart-item h2 { font-size: 1.05rem; margin-bottom: 3px; }
.cart-item p { color: var(--muted); font-size: .75rem; margin-bottom: 5px; }
.mini-card { aspect-ratio: 1.58; display: grid; place-items: center; border-radius: 5px; color: #fff; font-weight: 900; }
.quantity-label input { padding: 8px; }
.link-button { appearance: none; border: 0; background: transparent; color: inherit; padding: 0; text-decoration: underline; }
.danger { color: #ad1830; }
.item-options { margin: 6px 0 0; font-size: .75rem; }
.item-options div { display: inline-flex; gap: 4px; margin-right: 12px; }
.item-options dt { font-weight: 700; }
.item-options dd { margin: 0; color: var(--muted); }
.order-summary { background: #202024; color: #fff; padding: 26px; box-shadow: var(--shadow); }
.order-summary h2 { font-size: 1.25rem; }
.order-summary > div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid #414147; font-size: .9rem; }
.order-summary > p { color: #aaaab2; font-size: .8rem; }
.order-summary .summary-total { font-size: 1.05rem; padding: 17px 0; }
.coupon-form { margin-top: 18px; border-top: 1px solid #414147; padding-top: 18px; }
.coupon-form input { margin-bottom: 8px; }
.form-panel { background: #fff; border: 1px solid var(--light-line); padding: 26px; margin-bottom: 20px; }
.form-panel h2 { font-size: 1.35rem; }
.field-wide { grid-column: 1 / -1; }
.radio-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; border: 1px solid var(--light-line); padding: 14px; margin: 8px 0; cursor: pointer; }
.radio-card input { width: auto; }
.radio-card span { display: flex; flex-direction: column; }
.radio-card small { color: var(--muted); font-weight: 400; }
.sticky { position: sticky; top: 20px; }
.compact-note { display: block !important; border-bottom: 0 !important; }
.compact-note strong, .compact-note span { display: block; }
.fine-print { font-size: .73rem !important; text-align: center; }
.top-button-gap { margin-top: 10px; }
.success-hero .success-icon { margin: 0 auto 18px; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: var(--green); font-size: 2rem; }
.order-line { display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--light-line); padding: 12px 0; }
.order-line.total { border-top: 2px solid var(--ink); border-bottom: 0; margin-top: 10px; font-size: 1.15rem; }
.steps-list { list-style: none; padding: 0; }
.steps-list li { display: flex; gap: 14px; margin-bottom: 20px; }
.steps-list li > span { flex: 0 0 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #fff; font-weight: 800; }
.steps-list p { color: var(--muted); margin: 3px 0 0; }
.track-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; margin-top: 24px; }
.status-track { display: grid; grid-template-columns: repeat(6,1fr); margin: 30px 0; }
.status-track div { position: relative; text-align: center; color: #999; }
.status-track div::before { content: ""; height: 3px; background: #d4d4d8; position: absolute; left: 0; right: 0; top: 9px; }
.status-track span { display: block; width: 20px; height: 20px; margin: 0 auto 7px; border-radius: 50%; background: #d4d4d8; position: relative; z-index: 1; }
.status-track .active::before, .status-track .active span { background: var(--green); }
.status-track small { font-size: .62rem; }
.status-pill { display: inline-flex; padding: 4px 9px; border-radius: 20px; background: #e7f4ed; color: #176142; font-size: .72rem; font-weight: 800; }
.data-table { width: 100%; border-collapse: collapse; background: #fff; }
.data-table th, .data-table td { padding: 13px 14px; border-bottom: 1px solid var(--light-line); text-align: left; vertical-align: top; }
.data-table th { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; }
.admin-table-wrap { overflow-x: auto; border: 1px solid var(--light-line); }

.auth-section { min-height: 70vh; background: var(--bg-deep); display: grid; place-items: center; padding: 70px 20px; }
.auth-card { width: min(100%,460px); background: var(--paper); color: var(--ink); padding: 38px; box-shadow: var(--shadow); }
.auth-brand { color: var(--ink); margin-bottom: 32px; }
.auth-brand .brand-mark { border-color: var(--ink); }
.auth-card label { margin-bottom: 14px; }
.auth-card .button { margin-top: 8px; }
.auth-card > p:last-child { text-align: center; margin: 20px 0 0; }
.blog-search { display: grid; grid-template-columns: 1fr auto; gap: 8px; max-width: 640px; margin-top: 24px; }
.article-body { max-width: 820px; padding-block: 70px 100px; }
.article-art { min-height: 330px; margin-bottom: 50px; }
.article-art span { font-size: 6rem; }
.article-cta { margin-top: 55px; padding: 32px; border-left: 5px solid var(--accent); background: #ededeb; }
.article-cta h2 { font-size: 1.55rem; }
.info-section .article-cta { color: var(--ink); }

.flash-stack { position: fixed; z-index: 90; top: 18px; right: 18px; width: min(calc(100% - 36px),430px); }
.flash { padding: 14px 18px; margin-bottom: 8px; background: #fff; color: var(--ink); border-left: 5px solid var(--blue); box-shadow: var(--shadow); }
.flash-success { border-color: var(--green); }
.flash-error { border-color: var(--accent); }
.site-footer { background: #111113; padding-top: 72px; border-top: 1px solid #333338; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 46px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.footer-grid h2 { font-size: .86rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.footer-grid a, .footer-grid p { color: #aaaab1; font-size: .86rem; }
.footer-grid a:hover { color: var(--white); }
.footer-brand { margin-bottom: 12px; }
.footer-bottom { margin-top: 50px; border-top: 1px solid #343438; padding: 20px 0; }
.footer-bottom p { margin: 0; color: #88888f; font-size: .75rem; }
.contact-shortcuts { position: fixed; left: 18px; right: 18px; bottom: 16px; z-index: 30; display: flex; justify-content: space-between; pointer-events: none; }
.contact-shortcuts a { pointer-events: auto; border-radius: 99px; padding: 10px 18px; color: #fff; font-weight: 800; font-size: .78rem; box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.contact-telegram { background: #1288be; }
.contact-whatsapp { background: #20b75a; }
.payment-contact-section { background: #202020; color: #fff; }
.payment-contact-layout { display: grid; grid-template-columns: .9fr 1.2fr; gap: 30px; align-items: start; }
.payment-order-card { background: #f6f5f2; color: var(--ink); border-left: 5px solid var(--accent-bright); padding: 26px; margin-bottom: 20px; }
.payment-order-card h2 { font-size: 1.55rem; margin-bottom: 18px; }
.payment-order-card > div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-top: 1px solid var(--light-line); }
.contact-channel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.contact-channel { min-height: 96px; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 18px; border: 1px solid #48484e; background: #29292d; }
.contact-channel:hover { border-color: var(--accent-bright); }
.contact-channel span { color: #aaaab2; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.payment-contact-form { color: var(--ink); }
.payment-contact-form .eyebrow { color: var(--accent); }

@media (max-width: 980px) {
    .header-inner { min-height: 104px; flex-direction: row; justify-content: space-between; }
    .brand-mark { width: 52px; height: 52px; }
    .menu-toggle { display: inline-flex; border: 1px solid #57575d; background: transparent; color: #fff; padding: 9px 14px; }
    .main-nav { display: none; position: absolute; left: 0; right: 0; top: 104px; margin: 0; background: #18181a; padding: 14px 20px 22px; }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; align-items: stretch; }
    .main-nav li { border-right: 0; border-bottom: 1px solid #333338; }
    .main-nav a { padding: 13px 4px; }
    .proof-grid, .review-grid, .product-grid, .category-grid { grid-template-columns: repeat(2,1fr); }
    .catalog-section .product-grid { grid-template-columns: repeat(2,1fr); }
    .process-grid { grid-template-columns: repeat(2,1fr); }
    .product-detail, .content-grid { gap: 32px; }
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .payment-contact-layout { grid-template-columns: 1fr; }
    .sticky { position: static; }
    .cart-item { grid-template-columns: 80px minmax(0,1fr) 65px 80px; }
    .cart-item .danger { grid-column: 2 / -1; justify-self: start; }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 680px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .announcement { font-size: .66rem; }
    .hero { min-height: 300px; }
    .hero-inner { padding-block: 54px; }
    .hero-actions .button, .button-row .button { width: 100%; }
    .quick-grid, .proof-grid, .review-grid, .product-grid, .category-grid, .process-grid, .feature-grid, .form-grid, .post-grid, .product-detail, .content-grid { grid-template-columns: 1fr; }
    .quick-section { padding-top: 18px; }
    .quick-card { padding: 22px; }
    .intro-section, .proof-section, .review-section, .process-section, .feature-section, .products-section, .categories-section, .faq-section, .blog-section, .catalog-section, .product-detail-section, .product-copy-section, .cart-section, .checkout-section, .order-detail-section, .account-section, .contact-section, .info-section { padding-block: 60px; }
    .feature-grid div { border-right: 0; border-bottom: 1px solid var(--light-line); }
    .post-card { grid-template-columns: 100px 1fr; gap: 15px; }
    .post-art { min-height: 110px; }
    .catalog-tools { grid-template-columns: 1fr; }
    .page-hero:not(.compact) .breadcrumbs { position: static; transform: none; margin-top: 26px; }
    .page-hero h1 { font-size: 2.25rem; }
    .catalog-hero { min-height: 0; }
    .catalog-section .product-grid { grid-template-columns: 1fr; }
    .contact-channel-grid { grid-template-columns: 1fr; }
    .product-visual-large { min-height: 380px; }
    .legal-note { flex-direction: column; }
    .legal-note strong { flex-basis: auto; }
    .cart-item { grid-template-columns: 70px 1fr; align-items: start; }
    .quantity-label, .cart-item > strong, .cart-item .danger { grid-column: 2; }
    .track-form { grid-template-columns: 1fr; }
    .status-track { overflow-x: auto; grid-template-columns: repeat(6,85px); padding-bottom: 8px; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .contact-shortcuts { display: none; }
    .flash-stack { left: 14px; right: 14px; width: auto; }
}

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