/* =========================================================
   ELECTRONICS-SHOP.SITE
   Global stylesheet
   ========================================================= */

:root {
    --bg: #f5f7fb;
    --bg-soft: #eef2f8;
    --surface: #ffffff;
    --surface-2: #f9fafc;
    --surface-3: #f1f4f9;

    --text: #10131a;
    --text-soft: #5f6673;
    --text-faint: #89909c;

    --border: #dde2ea;
    --border-strong: #cbd2dc;

    --primary: #1267e8;
    --primary-hover: #0d58ca;
    --primary-soft: #eaf2ff;

    --success: #14814d;
    --success-soft: #eaf7f0;

    --warning: #a56700;
    --warning-soft: #fff4df;

    --danger: #cc3344;
    --danger-soft: #fff0f2;

    --shadow-xs: 0 1px 2px rgba(18, 24, 40, 0.05);
    --shadow-sm: 0 4px 14px rgba(18, 24, 40, 0.07);
    --shadow-md: 0 12px 30px rgba(18, 24, 40, 0.10);
    --shadow-lg: 0 24px 64px rgba(18, 24, 40, 0.14);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --container: 1440px;
    --header-height: 74px;

    --font:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    --ease: cubic-bezier(.2, .8, .2, 1);
}


/* =========================================================
   RESET
   ========================================================= */

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

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

::selection {
    background: var(--primary);
    color: #fff;
}


/* =========================================================
   GLOBAL LAYOUT
   ========================================================= */

.site-shell {
    min-height: 100vh;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 72px 0;
}

.section-sm {
    padding: 44px 0;
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-heading-wrap {
    max-width: 760px;
}

.section-eyebrow {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 8px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.section-description {
    margin: 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 750;
    white-space: nowrap;
}

.text-link:hover {
    color: var(--primary-hover);
}

.text-link svg {
    transition: transform .2s ease;
}

.text-link:hover svg {
    transform: translateX(3px);
}


/* =========================================================
   TOP ANNOUNCEMENT
   ========================================================= */

.announcement-bar {
    position: relative;
    z-index: 80;
    background: #0d1118;
    color: #fff;
}

.announcement-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 7px 42px;
    text-align: center;
    font-size: 13px;
}

.announcement-inner strong {
    font-weight: 800;
}

.announcement-separator {
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,.45);
}

.announcement-close {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 26px;
    height: 26px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: rgba(255,255,255,.75);
    display: grid;
    place-items: center;
}

.announcement-close:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(221,226,234,.8);
    backdrop-filter: blur(16px);
    transition:
        box-shadow .25s ease,
        background .25s ease;
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(255,255,255,.98);
}

.header-main {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) auto;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    letter-spacing: -.05em;
    box-shadow: 0 6px 18px rgba(18,103,232,.22);
}

.brand-text {
    font-weight: 900;
    letter-spacing: -.04em;
    font-size: 20px;
}

.brand-text span {
    color: var(--primary);
}

.desktop-search {
    position: relative;
}

.search-control {
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    background: var(--surface-3);
    border: 1px solid transparent;
    border-radius: 13px;
    transition:
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.search-control:focus-within {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(18,103,232,.10);
}

.search-control svg {
    color: var(--text-faint);
    flex: 0 0 auto;
}

.search-control input {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
}

.search-control input::placeholder {
    color: var(--text-faint);
}

.search-shortcut {
    flex: 0 0 auto;
    padding: 3px 7px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-faint);
    font-size: 11px;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-action {
    position: relative;
    min-width: 46px;
    height: 46px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--text);
    display: grid;
    place-items: center;
    transition:
        background .2s ease,
        color .2s ease;
}

.header-action:hover {
    background: var(--surface-3);
    color: var(--primary);
}

.header-action-label {
    display: none;
}

.cart-count {
    position: absolute;
    top: 3px;
    right: 1px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    border: 2px solid #fff;
}

.mobile-menu-toggle {
    display: none;
}


/* =========================================================
   CATEGORY NAV
   ========================================================= */

.category-nav-wrap {
    border-top: 1px solid var(--border);
    background: #fff;
}

.category-nav {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.category-nav a {
    flex: 0 0 auto;
    padding: 9px 13px;
    border-radius: 9px;
    color: #353a44;
    font-size: 14px;
    font-weight: 700;
    transition:
        background .18s ease,
        color .18s ease;
}

.category-nav a:hover {
    background: var(--surface-3);
    color: var(--primary);
}

.category-nav .sale-link {
    color: var(--danger);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    padding: 34px 0 22px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, .7fr);
    gap: 20px;
}

.hero-main {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 82% 22%, rgba(255,255,255,.17), transparent 25%),
        linear-gradient(135deg, #0d1d38 0%, #102f62 42%, #1267e8 100%);
    color: #fff;
    isolation: isolate;
}

.hero-main::before,
.hero-main::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-main::before {
    width: 560px;
    height: 560px;
    right: -130px;
    top: -160px;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow:
        0 0 0 50px rgba(255,255,255,.035),
        0 0 0 110px rgba(255,255,255,.025);
}

.hero-main::after {
    width: 180px;
    height: 180px;
    right: 130px;
    bottom: 60px;
    background: rgba(255,255,255,.07);
    filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 710px;
    padding: 74px 60px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #72f5a9;
    box-shadow: 0 0 0 5px rgba(114,245,169,.12);
}

.hero h1 {
    max-width: 780px;
    margin-bottom: 20px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -.06em;
}

.hero-description {
    max-width: 640px;
    margin-bottom: 30px;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 800;
    line-height: 1;
    transition:
        transform .18s ease,
        background .18s ease,
        border-color .18s ease,
        color .18s ease,
        box-shadow .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 22px rgba(18,103,232,.24);
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-dark {
    background: #11151c;
    color: #fff;
}

.btn-dark:hover {
    background: #000;
}

.btn-light {
    background: #fff;
    color: #10131a;
}

.btn-light:hover {
    background: #f5f7fb;
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255,255,255,.28);
    color: #fff;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.5);
}

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

.btn-outline:hover {
    border-color: var(--border-strong);
    background: var(--surface-2);
}

.btn-block {
    width: 100%;
}

.hero-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.promo-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 32px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--border);
}

.promo-card.dark {
    background:
        linear-gradient(145deg, #11151c 0%, #222a35 100%);
    color: #fff;
    border-color: transparent;
}

.promo-card.soft-blue {
    background:
        linear-gradient(145deg, #eaf2ff 0%, #dfeaff 100%);
    border-color: #d3e2fb;
}

.promo-card-kicker {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.promo-card.dark .promo-card-kicker {
    color: #8fb8ff;
}

.promo-card h2 {
    max-width: 320px;
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.promo-card p {
    max-width: 330px;
    margin-bottom: 18px;
    color: var(--text-soft);
    font-size: 14px;
}

.promo-card.dark p {
    color: rgba(255,255,255,.65);
}

.promo-decoration {
    position: absolute;
    right: -15px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    border-radius: 38px;
    transform: rotate(-14deg);
    background: rgba(18,103,232,.12);
    border: 1px solid rgba(18,103,232,.2);
}

.promo-card.dark .promo-decoration {
    background: rgba(255,255,255,.055);
    border-color: rgba(255,255,255,.08);
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
    padding: 18px 0 8px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.trust-item {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
}

.trust-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary);
}

.trust-item strong {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
}

.trust-item span {
    display: block;
    color: var(--text-soft);
    font-size: 12px;
}


/* =========================================================
   CATEGORY CARDS
   ========================================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 178px;
    padding: 21px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    transition:
        transform .2s var(--ease),
        box-shadow .2s ease,
        border-color .2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: #cfd7e4;
    box-shadow: var(--shadow-md);
}

.category-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 26px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--surface-3);
    color: var(--primary);
    transition:
        background .2s ease,
        color .2s ease;
}

.category-card:hover .category-card-icon {
    background: var(--primary);
    color: #fff;
}

.category-card h3 {
    margin-bottom: 5px;
    font-size: 16px;
    letter-spacing: -.02em;
}

.category-card span {
    color: var(--text-soft);
    font-size: 12px;
}

.category-card-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    color: var(--text-faint);
}


/* =========================================================
   PRODUCTS
   ========================================================= */

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

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    transition:
        transform .2s var(--ease),
        box-shadow .2s ease,
        border-color .2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #ced6e1;
    box-shadow: var(--shadow-md);
}

.product-media {
    position: relative;
    aspect-ratio: 1.2 / 1;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        linear-gradient(145deg, #f7f9fc 0%, #eef2f7 100%);
}

.product-placeholder {
    width: 54%;
    aspect-ratio: 1;
    border-radius: 24%;
    display: grid;
    place-items: center;
    background:
        linear-gradient(145deg, #ffffff 0%, #dfe5ee 100%);
    border: 1px solid #d5dce6;
    box-shadow:
        0 24px 55px rgba(28,39,55,.12),
        inset 0 1px 0 rgba(255,255,255,.9);
    color: #8791a0;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-5deg);
}

.product-placeholder.round {
    border-radius: 50%;
}

.product-placeholder.tall {
    width: 38%;
    aspect-ratio: .68;
    border-radius: 18px;
    transform: rotate(4deg);
}

.product-placeholder.wide {
    width: 64%;
    aspect-ratio: 1.8;
    border-radius: 12px;
    transform: rotate(-2deg);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 9px;
    border-radius: 8px;
    background: #11151c;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-badge.sale {
    background: var(--danger);
}

.product-badge.new {
    background: var(--primary);
}

.product-badge.green {
    background: var(--success);
}

.product-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: rgba(255,255,255,.92);
    color: var(--text-soft);
    box-shadow: var(--shadow-xs);
    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.product-favorite:hover {
    color: var(--danger);
    transform: scale(1.04);
}

.product-favorite.is-active {
    color: var(--danger);
    background: var(--danger-soft);
    border-color: #f0c8cd;
}

.product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.product-brand {
    margin-bottom: 7px;
    color: var(--text-faint);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-title {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -.02em;
}

.product-title a:hover {
    color: var(--primary);
}

.product-description {
    min-height: 40px;
    margin-bottom: 14px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.5;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 15px;
}

.stars {
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 1px;
}

.rating-count {
    color: var(--text-faint);
    font-size: 11px;
}

.product-price-wrap {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
    margin-bottom: 14px;
}

.product-price {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.035em;
}

.product-old-price {
    color: var(--text-faint);
    text-decoration: line-through;
    font-size: 13px;
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 13px;
    color: var(--success);
    font-size: 11px;
    font-weight: 800;
}

.product-stock::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.product-stock.low {
    color: var(--warning);
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 8px;
}

.add-cart-btn {
    min-width: 0;
    min-height: 44px;
    padding: 0 14px;
    border: 0;
    border-radius: 11px;
    background: var(--primary);
    color: #fff;
    font-weight: 850;
    transition:
        background .18s ease,
        transform .18s ease;
}

.add-cart-btn:hover {
    background: var(--primary-hover);
}

.add-cart-btn:active {
    transform: scale(.98);
}

.quick-view-btn {
    min-height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: #fff;
    color: var(--text-soft);
}

.quick-view-btn:hover {
    background: var(--surface-3);
    color: var(--primary);
}


/* =========================================================
   BRAND STRIP
   ========================================================= */

.brand-strip {
    padding: 22px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brand-strip-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.brand-chip {
    min-height: 62px;
    display: grid;
    place-items: center;
    padding: 12px;
    border-radius: 12px;
    color: #7a8290;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -.03em;
    text-align: center;
    transition:
        background .2s ease,
        color .2s ease;
}

.brand-chip:hover {
    background: var(--surface-3);
    color: var(--text);
}


/* =========================================================
   FEATURE BANNER
   ========================================================= */

.feature-banner {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr .9fr;
    min-height: 420px;
    border-radius: var(--radius-xl);
    background: #10151d;
    color: #fff;
}

.feature-banner-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-banner-content h2 {
    max-width: 650px;
    margin-bottom: 15px;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -.055em;
}

.feature-banner-content p {
    max-width: 600px;
    margin-bottom: 25px;
    color: rgba(255,255,255,.66);
    line-height: 1.7;
}

.feature-banner-visual {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 45%, rgba(18,103,232,.5), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.14), transparent 25%);
}

.feature-device {
    position: absolute;
    width: 260px;
    height: 190px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) rotate(-8deg);
    border-radius: 22px;
    background:
        linear-gradient(145deg, #f8fbff 0%, #b9c6d8 100%);
    border: 1px solid rgba(255,255,255,.55);
    box-shadow:
        0 40px 80px rgba(0,0,0,.3),
        inset 0 1px 1px rgba(255,255,255,.9);
}

.feature-device::before {
    content: "";
    position: absolute;
    width: 42px;
    height: 42px;
    left: 28px;
    top: 28px;
    border-radius: 50%;
    background: #151a21;
    box-shadow:
        52px 0 0 #151a21,
        26px 48px 0 #151a21;
}

.feature-device::after {
    content: "NOVA";
    position: absolute;
    right: 24px;
    bottom: 22px;
    color: rgba(20,25,32,.55);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}


/* =========================================================
   ARTICLES
   ========================================================= */

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.article-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.article-cover {
    min-height: 210px;
    padding: 24px;
    display: flex;
    align-items: end;
    background:
        linear-gradient(145deg, #dce9ff 0%, #eef4ff 100%);
}

.article-cover.dark {
    background:
        linear-gradient(145deg, #141922 0%, #2b3545 100%);
    color: #fff;
}

.article-cover.warm {
    background:
        linear-gradient(145deg, #f4e8dc 0%, #fff4ea 100%);
}

.article-cover-label {
    padding: 7px 10px;
    border-radius: 9px;
    background: rgba(255,255,255,.85);
    color: #11151c;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-body {
    padding: 22px;
}

.article-meta {
    margin-bottom: 8px;
    color: var(--text-faint);
    font-size: 11px;
    font-weight: 700;
}

.article-body h3 {
    margin-bottom: 9px;
    font-size: 20px;
    line-height: 1.22;
    letter-spacing: -.03em;
}

.article-body p {
    margin-bottom: 16px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter {
    padding: 68px 0;
}

.newsletter-box {
    position: relative;
    overflow: hidden;
    padding: 54px;
    display: grid;
    grid-template-columns: 1fr .85fr;
    align-items: center;
    gap: 60px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, #1267e8 0%, #064cad 100%);
    color: #fff;
}

.newsletter-box::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    border: 50px solid rgba(255,255,255,.05);
}

.newsletter-copy {
    position: relative;
    z-index: 2;
}

.newsletter-copy h2 {
    margin-bottom: 10px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    letter-spacing: -.045em;
}

.newsletter-copy p {
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 6px;
    border-radius: 14px;
    background: #fff;
}

.newsletter-row input {
    min-width: 0;
    padding: 0 14px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
}

.newsletter-row button {
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    background: #11151c;
    color: #fff;
    font-weight: 850;
}

.newsletter-hint {
    margin-top: 9px;
    color: rgba(255,255,255,.58);
    font-size: 11px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #0f131a;
    color: #fff;
}

.footer-main {
    padding: 64px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(4, 1fr);
    gap: 44px;
}

.footer-brand p {
    max-width: 360px;
    margin-top: 16px;
    color: rgba(255,255,255,.54);
    font-size: 13px;
    line-height: 1.7;
}

.footer-heading {
    margin-bottom: 16px;
    color: rgba(255,255,255,.94);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,.56);
    font-size: 13px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.4);
    font-size: 11px;
}

.payment-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-chip {
    padding: 6px 8px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    color: rgba(255,255,255,.66);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .04em;
}


/* =========================================================
   SEARCH OVERLAY
   ========================================================= */

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: none;
    background: rgba(10,14,20,.56);
    backdrop-filter: blur(9px);
}

.search-overlay.is-open {
    display: block;
}

.search-panel {
    width: min(760px, calc(100% - 30px));
    margin: 84px auto 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.search-panel-top {
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.search-panel-input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: none;
    background: var(--surface-2);
    font-size: 16px;
}

.search-panel-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(18,103,232,.09);
}

.search-results {
    max-height: 480px;
    overflow-y: auto;
    padding: 10px;
}

.search-result-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    text-align: left;
}

.search-result-item:hover,
.search-result-item.is-active {
    background: var(--surface-3);
}

.search-result-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--primary-soft);
    color: var(--primary);
}

.search-result-content {
    min-width: 0;
}

.search-result-title {
    display: block;
    overflow: hidden;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result-subtitle {
    display: block;
    margin-top: 2px;
    overflow: hidden;
    color: var(--text-faint);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-empty {
    padding: 42px 24px;
    color: var(--text-soft);
    text-align: center;
    font-size: 13px;
}


/* =========================================================
   CART DRAWER
   ========================================================= */

.drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 160;
    opacity: 0;
    visibility: hidden;
    background: rgba(12,16,22,.48);
    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 170;
    width: min(430px, 100%);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -24px 0 60px rgba(10,14,20,.16);
    transform: translateX(100%);
    transition: transform .32s var(--ease);
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.drawer-header {
    min-height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.drawer-header h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: -.03em;
}

.drawer-close {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 10px;
    background: var(--surface-3);
    color: var(--text-soft);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.cart-empty {
    min-height: 320px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--text-soft);
}

.cart-empty-inner svg {
    margin: 0 auto 16px;
    color: var(--text-faint);
}

.cart-empty-inner strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
}

.cart-empty-inner span {
    font-size: 12px;
}

.cart-item {
    display: grid;
    grid-template-columns: 72px minmax(0,1fr) auto;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-media {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--surface-3);
    color: var(--text-faint);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.cart-item-title {
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.cart-item-price {
    margin-bottom: 8px;
    color: var(--text-soft);
    font-size: 12px;
}

.cart-qty {
    display: inline-grid;
    grid-template-columns: 28px 32px 28px;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.cart-qty button {
    height: 28px;
    border: 0;
    background: #fff;
    color: var(--text-soft);
}

.cart-qty button:hover {
    background: var(--surface-3);
}

.cart-qty span {
    text-align: center;
    font-size: 11px;
    font-weight: 800;
}

.cart-remove {
    align-self: start;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--text-faint);
}

.cart-remove:hover {
    background: var(--danger-soft);
    color: var(--danger);
}

.drawer-footer {
    padding: 18px 20px 22px;
    border-top: 1px solid var(--border);
    background: #fff;
}

.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
    color: var(--text-soft);
    font-size: 13px;
}

.cart-summary-row.total {
    margin: 14px 0 15px;
    color: var(--text);
    font-size: 17px;
    font-weight: 900;
}

.cart-shipping-note {
    margin-top: 10px;
    color: var(--text-faint);
    font-size: 10px;
    text-align: center;
}


/* =========================================================
   QUICK VIEW MODAL
   ========================================================= */

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 180;
    opacity: 0;
    visibility: hidden;
    background: rgba(10,14,20,.58);
    backdrop-filter: blur(6px);
    transition:
        opacity .24s ease,
        visibility .24s ease;
}

.modal-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.quick-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 190;
    width: min(860px, calc(100% - 28px));
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%,-46%) scale(.98);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transition:
        opacity .25s ease,
        transform .25s var(--ease),
        visibility .25s ease;
}

.quick-modal.is-open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,-50%) scale(1);
}

.quick-modal-close {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: rgba(255,255,255,.92);
    display: grid;
    place-items: center;
    color: var(--text-soft);
}

.quick-modal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.quick-modal-media {
    min-height: 430px;
    display: grid;
    place-items: center;
    padding: 40px;
    background:
        linear-gradient(145deg, #f7f9fc 0%, #edf1f6 100%);
}

.quick-modal-placeholder {
    width: 60%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 26%;
    background: linear-gradient(145deg, #fff 0%, #dfe5ee 100%);
    box-shadow: 0 25px 60px rgba(28,39,55,.14);
    color: var(--text-faint);
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.quick-modal-content {
    padding: 46px 38px;
}

.quick-modal-brand {
    margin-bottom: 9px;
    color: var(--text-faint);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.quick-modal-title {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.quick-modal-description {
    margin-bottom: 18px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.quick-modal-price {
    margin-bottom: 18px;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.quick-spec-list {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}

.quick-spec {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-soft);
    font-size: 12px;
}

.quick-spec::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--primary);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    background: #fff;
}

.mobile-panel.is-open {
    display: block;
}

.mobile-panel-header {
    height: 70px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.mobile-panel-close {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 10px;
    background: var(--surface-3);
}

.mobile-panel-body {
    height: calc(100dvh - 70px);
    overflow-y: auto;
    padding: 18px;
}

.mobile-search {
    margin-bottom: 22px;
}

.mobile-links {
    display: grid;
}

.mobile-links a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    font-weight: 800;
}

.mobile-links a svg {
    color: var(--text-faint);
}

.mobile-menu-section {
    margin-top: 30px;
}

.mobile-menu-label {
    margin-bottom: 9px;
    color: var(--text-faint);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* =========================================================
   TOASTS
   ========================================================= */

.toast-stack {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 300;
    display: grid;
    gap: 8px;
    pointer-events: none;
}

.toast {
    width: min(360px, calc(100vw - 40px));
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(12px);
    opacity: 0;
    animation: toast-in .28s ease forwards;
}

.toast-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--success-soft);
    color: var(--success);
}

.toast-content strong {
    display: block;
    margin-bottom: 1px;
    font-size: 12px;
}

.toast-content span {
    color: var(--text-soft);
    font-size: 11px;
}

@keyframes toast-in {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* =========================================================
   UTILITY
   ========================================================= */

.hide {
    display: none !important;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.divider {
    height: 1px;
    background: var(--border);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.3fr repeat(2, 1fr);
    }

    .footer-column:nth-child(4),
    .footer-column:nth-child(5) {
        margin-top: 8px;
    }

    .brand-strip-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


@media (max-width: 920px) {
    :root {
        --header-height: 66px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-main {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
    }

    .desktop-search {
        display: none;
    }

    .header-spacer {
        display: block;
    }

    .mobile-menu-toggle {
        display: grid;
    }

    .category-nav-wrap {
        display: none;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-main {
        min-height: 470px;
    }

    .hero-content {
        padding: 58px 42px;
    }

    .hero-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }

    .promo-card {
        min-height: 230px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-banner {
        grid-template-columns: 1fr;
    }

    .feature-banner-visual {
        min-height: 300px;
    }

    .article-grid {
        grid-template-columns: 1fr 1fr;
    }

    .article-card:last-child {
        grid-column: 1 / -1;
    }

    .newsletter-box {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


@media (max-width: 680px) {
    .section {
        padding: 54px 0;
    }

    .section-header {
        align-items: start;
        flex-direction: column;
        gap: 12px;
    }

    .announcement-inner {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-left: 15px;
        padding-right: 44px;
    }

    .brand-text {
        font-size: 18px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .header-action.account-action,
    .header-action.search-action {
        display: none;
    }

    .hero {
        padding-top: 18px;
    }

    .hero-main {
        min-height: auto;
        border-radius: 20px;
    }

    .hero-content {
        padding: 42px 25px 46px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-side {
        grid-template-columns: 1fr;
    }

    .promo-card {
        min-height: 210px;
        padding: 25px;
        border-radius: 20px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        min-height: 150px;
        padding: 17px;
    }

    .category-card-icon {
        margin-bottom: 18px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        border-radius: 18px;
    }

    .brand-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-banner {
        border-radius: 20px;
    }

    .feature-banner-content {
        padding: 38px 24px;
    }

    .feature-banner-content h2 {
        font-size: 38px;
    }

    .feature-banner-visual {
        min-height: 260px;
    }

    .feature-device {
        width: 210px;
        height: 155px;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-card:last-child {
        grid-column: auto;
    }

    .newsletter {
        padding: 52px 0;
    }

    .newsletter-box {
        padding: 36px 22px;
        border-radius: 20px;
    }

    .newsletter-row {
        grid-template-columns: 1fr;
        background: transparent;
        padding: 0;
    }

    .newsletter-row input {
        height: 48px;
        border-radius: 11px;
        background: #fff;
    }

    .footer-main {
        padding-top: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-modal-layout {
        grid-template-columns: 1fr;
    }

    .quick-modal-media {
        min-height: 260px;
    }

    .quick-modal-content {
        padding: 30px 24px;
    }

    .toast-stack {
        right: 12px;
        bottom: 12px;
    }
}


@media (max-width: 430px) {
    .container {
        width: min(calc(100% - 22px), var(--container));
    }

    .hero h1 {
        font-size: 42px;
    }

    .category-grid {
        gap: 10px;
    }

    .category-card {
        min-height: 140px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* =========================================================
   INNER PAGES
   ========================================================= */

.page-hero {
    padding: 58px 0 42px;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--text-faint);
    font-size: 12px;
    font-weight: 700;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs-separator {
    color: var(--border-strong);
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 14px;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -.055em;
}

.page-hero-description {
    max-width: 780px;
    margin: 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   PRODUCTS LISTING
   ========================================================= */

.catalog-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 34px;
}

.catalog-sidebar {
    align-self: start;
    position: sticky;
    top: 120px;
}

.filter-section {
    padding: 0 0 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.filter-section:last-child {
    border-bottom: 0;
}

.filter-title {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 900;
}

.filter-list {
    display: grid;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-soft);
    font-size: 13px;
    cursor: pointer;
}

.filter-option input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.filter-option span:last-child {
    margin-left: auto;
    color: var(--text-faint);
    font-size: 11px;
}

.catalog-toolbar {
    min-height: 52px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.catalog-count {
    color: var(--text-soft);
    font-size: 13px;
}

.catalog-count strong {
    color: var(--text);
}

.catalog-sort {
    height: 42px;
    padding: 0 34px 0 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    outline: none;
}

.catalog-sort:focus {
    border-color: var(--primary);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.catalog-empty {
    grid-column: 1 / -1;
    padding: 70px 20px;
    text-align: center;
    border: 1px dashed var(--border-strong);
    border-radius: 18px;
    color: var(--text-soft);
}


/* =========================================================
   CONTENT / POLICY PAGES
   ========================================================= */

.content-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 790px);
    justify-content: center;
    gap: 60px;
    padding: 58px 0 90px;
}

.content-nav {
    align-self: start;
    position: sticky;
    top: 118px;
}

.content-nav-title {
    margin-bottom: 12px;
    color: var(--text-faint);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.content-nav-links {
    display: grid;
    gap: 4px;
}

.content-nav-links a {
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 700;
}

.content-nav-links a:hover {
    background: var(--surface-3);
    color: var(--primary);
}

.content-main {
    min-width: 0;
}

.content-intro {
    margin-bottom: 42px;
    padding: 24px 26px;
    border: 1px solid #d5e2f7;
    border-radius: 16px;
    background: var(--primary-soft);
}

.content-intro strong {
    display: block;
    margin-bottom: 6px;
}

.content-intro p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.content-section {
    scroll-margin-top: 120px;
    margin-bottom: 52px;
}

.content-section h2 {
    margin-bottom: 14px;
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.content-section h3 {
    margin: 28px 0 10px;
    font-size: 19px;
    letter-spacing: -.025em;
}

.content-section p {
    margin-bottom: 16px;
    color: var(--text-soft);
    line-height: 1.78;
}

.content-section ul,
.content-section ol {
    display: grid;
    gap: 10px;
    margin: 16px 0 20px;
    padding-left: 20px;
    list-style: disc;
    color: var(--text-soft);
}

.content-section ol {
    list-style: decimal;
}

.content-section li {
    padding-left: 4px;
    line-height: 1.65;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 22px 0;
}

.info-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
}

.info-card strong {
    display: block;
    margin-bottom: 6px;
}

.info-card span,
.info-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
}

.policy-table-wrap {
    margin: 22px 0;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.policy-table th,
.policy-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
    font-size: 13px;
    line-height: 1.55;
}

.policy-table th {
    background: var(--surface-3);
    color: var(--text);
    font-weight: 850;
}

.policy-table td {
    color: var(--text-soft);
}

.policy-table tr:last-child td {
    border-bottom: 0;
}

.notice {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    background: var(--surface-3);
}

.notice.warning {
    border-left-color: #d48a11;
    background: var(--warning-soft);
}

.notice.success {
    border-left-color: var(--success);
    background: var(--success-soft);
}

.notice strong {
    display: block;
    margin-bottom: 5px;
}

.notice p {
    margin: 0;
    font-size: 13px;
}

.faq-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #fff;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 17px;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    font-weight: 800;
}

.faq-answer {
    display: none;
    padding: 0 17px 17px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.7;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-plus {
    color: var(--text-faint);
    transition: transform .2s ease;
}

.faq-item.is-open .faq-plus {
    transform: rotate(45deg);
}


/* =========================================================
   RESPONSIVE INNER PAGES
   ========================================================= */

@media (max-width: 1050px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .filter-section {
        margin: 0;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: #fff;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-layout {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 40px;
    }
}

@media (max-width: 760px) {
    .page-hero {
        padding: 42px 0 32px;
    }

    .page-hero h1 {
        font-size: 44px;
    }

    .catalog-sidebar {
        grid-template-columns: 1fr;
    }

    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-sort {
        width: 100%;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .content-layout {
        grid-template-columns: 1fr;
        padding-top: 34px;
    }

    .content-nav {
        position: static;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border);
    }

    .content-nav-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SHARP UI OVERRIDES
   ========================================================= */

/*
|--------------------------------------------------------------------------
| Remove rounded corners globally from UI surfaces
|--------------------------------------------------------------------------
*/

.product-card,
.product-media,
.category-card,
.trust-item,
.promo-card,
.article-card,
.article-cover,
.newsletter-box,
.newsletter-row,
.feature-banner,
.info-card,
.content-intro,
.notice,
.faq-item,
.search-panel,
.search-control,
.search-panel-input,
.search-result-item,
.cart-drawer,
.cart-item-media,
.cart-qty,
.drawer-close,
.quick-modal,
.quick-modal-close,
.quick-modal-placeholder,
.mobile-panel-close,
.btn,
.add-cart-btn,
.quick-view-btn,
.product-favorite,
.header-action,
.brand-chip,
.filter-section,
.catalog-sort,
.policy-table-wrap,
.toast,
.payment-chip {
    border-radius: 0 !important;
}


/*
|--------------------------------------------------------------------------
| Remove pseudo brand mark / fake logo
|--------------------------------------------------------------------------
*/

.brand-mark {
    display: none !important;
}

.brand {
    gap: 0 !important;
}


/*
|--------------------------------------------------------------------------
| Remove hero eyebrow / glowing-dot pill
|--------------------------------------------------------------------------
*/

.hero-kicker {
    display: none !important;
}

.hero-kicker-dot {
    display: none !important;
}


/*
|--------------------------------------------------------------------------
| Remove decorative rounded promo shapes
|--------------------------------------------------------------------------
*/

.promo-decoration {
    display: none !important;
}


/*
|--------------------------------------------------------------------------
| Make category icon blocks sharp too
|--------------------------------------------------------------------------
*/

.category-card-icon,
.trust-icon,
.toast-icon,
.search-result-icon {
    border-radius: 0 !important;
}


/*
|--------------------------------------------------------------------------
| Remove rounded product placeholder remnants
|--------------------------------------------------------------------------
*/

.product-placeholder,
.product-placeholder.round,
.product-placeholder.tall,
.product-placeholder.wide {
    border-radius: 0 !important;
}


/*
|--------------------------------------------------------------------------
| Sharp badges
|--------------------------------------------------------------------------
*/

.product-badge,
.search-shortcut,
.article-cover-label {
    border-radius: 0 !important;
}


/*
|--------------------------------------------------------------------------
| Sharp newsletter field/button
|--------------------------------------------------------------------------
*/

.newsletter-row input,
.newsletter-row button {
    border-radius: 0 !important;
}


/*
|--------------------------------------------------------------------------
| Sharp mobile / drawer / overlays
|--------------------------------------------------------------------------
*/

.mobile-panel,
.drawer-backdrop,
.modal-backdrop,
.search-overlay {
    border-radius: 0 !important;
}


/*
|--------------------------------------------------------------------------
| Remove circular / pill-like visual language where unnecessary
|--------------------------------------------------------------------------
*/

.hero-main {
    border-radius: 0 !important;
}

.hero-main::before,
.hero-main::after {
    display: none !important;
}


/*
|--------------------------------------------------------------------------
| Keep product stock indicator simple
|--------------------------------------------------------------------------
*/

.product-stock::before {
    width: 6px;
    height: 6px;
    border-radius: 0 !important;
}


/*
|--------------------------------------------------------------------------
| Sharp card hover behavior
|--------------------------------------------------------------------------
*/

.product-card:hover,
.category-card:hover,
.article-card:hover {
    transform: translateY(-2px);
}


/*
|--------------------------------------------------------------------------
| Brand text after removing fake logo
|--------------------------------------------------------------------------
*/

.brand-text {
    letter-spacing: -0.035em;
}

/* =========================================================
   QUICK VIEW — PRODUCT IMAGE
   ========================================================= */

.quick-modal-media {
    padding: 0 !important;
    background: #f5f7fb !important;
    overflow: hidden;
}

.quick-modal-product-image {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    object-fit: contain;
    object-position: center;
    padding: 32px;
}

@media (max-width: 680px) {

    .quick-modal-product-image {
        min-height: 260px;
        padding: 20px;
    }

}