:root {
    --bg: #050505;
    --panel: #191919;
    --panel-2: #232323;
    --ink: #ffffff;
    --muted: #d0d0d0;
    --line: rgba(255, 255, 255, .14);
    --olive: #6f9f0a;
    --lime: #91d80f;
    --lime-soft: #a6ec18;
    --card: rgba(29, 29, 29, .92);
    --danger: #ffb2a6;
    --shadow: 0 18px 60px rgba(0, 0, 0, .42);
    color-scheme: dark;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--ink);
    font-family: "Inter", system-ui, sans-serif;
    letter-spacing: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 82% 12%, rgba(145, 216, 15, .11), transparent 28%),
        radial-gradient(circle at 12% 8%, rgba(255, 255, 255, .06), transparent 24%),
        #050505;
    z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main { overflow: hidden; }

h1, h2, h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.04;
}

p { color: var(--muted); line-height: 1.65; }

.icon {
    width: 1.25em;
    height: 1.25em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(5, 5, 5, .88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(145, 216, 15, .42);
    background: #161616;
    color: var(--lime);
    font-family: "Playfair Display", serif;
    border-radius: 999px;
}

.brand-text { letter-spacing: 2px; }
.brand-logo-image {
    width: auto;
    max-width: 82px;
    height: 62px;
    object-fit: contain;
}
.brand-wordmark-image {
    width: auto;
    max-width: 178px;
    height: 92px;
    object-fit: contain;
}
.footer-brand .brand-logo-image,
.admin-sidebar .brand-logo-image,
.login-brand .brand-logo-image {
    height: 58px;
}
.footer-brand .brand-wordmark-image,
.admin-sidebar .brand-wordmark-image,
.login-brand .brand-wordmark-image {
    height: 92px;
}
.login-brand {
    justify-content: center;
    margin-bottom: 4px;
}
.hero-brand {
    margin-bottom: 18px;
}
.hero-brand .brand-logo-image {
    max-width: 126px;
    height: 104px;
}
.hero-brand .brand-wordmark-image {
    max-width: 300px;
    height: 156px;
}

@media (max-width: 719px) {
    .site-header {
        padding: 18px 18px;
    }

    .site-header .brand {
        gap: 12px;
        min-width: 0;
        max-width: calc(100vw - 134px);
    }

    .site-header .brand-logo-image {
        max-width: 72px;
        height: 58px;
    }

    .site-header .brand-wordmark-image {
        max-width: min(256px, 48vw);
        height: 96px;
    }

    .site-header .brand-mark {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .site-header .brand-text {
        font-size: 1.08rem;
    }

    .hero-brand {
        display: none;
    }

    .site-footer {
        text-align: center;
    }

    .site-footer > div {
        display: grid;
        justify-items: center;
    }

    .footer-brand {
        flex-direction: row-reverse;
        justify-content: center;
    }

    .footer-brand .brand-logo-image {
        height: 87px;
        max-width: 120px;
    }

    .footer-brand .brand-mark {
        width: 75px;
        height: 75px;
        font-size: 1.35rem;
    }
}

.desktop-nav, .header-whatsapp, .header-search { display: none; }

.mobile-menu { position: relative; }
.mobile-menu summary {
    list-style: none;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    cursor: pointer;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu-panel {
    position: absolute;
    right: 0;
    top: 52px;
    display: grid;
    gap: 4px;
    width: min(82vw, 320px);
    padding: 14px;
    background: #171717;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.mobile-menu-panel a {
    padding: 13px 12px;
    border-radius: 6px;
    color: var(--muted);
}
.mobile-menu-panel a:hover, .mobile-menu-panel .menu-cta {
    background: rgba(145, 216, 15, .14);
    color: var(--ink);
}
.mobile-search {
    display: grid;
    gap: 8px;
    padding: 4px 0 10px;
}
.mobile-search input {
    min-height: 44px;
}
.mobile-search button,
.header-search button {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--lime);
    color: #0d1108;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.hero {
    display: grid;
    gap: 28px;
    min-height: calc(100svh - 82px);
    padding: 42px 18px 32px;
    align-items: center;
}
.hero-copy h1, .page-hero h1, .about-layout h1, .contact-layout h1 {
    margin-top: 10px;
    font-size: clamp(2.45rem, 13vw, 5.5rem);
    max-width: 900px;
}
.hero-copy p { max-width: 630px; }
.hero-copy > p:not(.eyebrow) { margin: 14px 0 0; }
.hero-actions { display: grid; gap: 12px; margin-top: 24px; }
.hero-visual {
    min-height: 320px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, #1e1e1e, #080808);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.eyebrow {
    margin: 0;
    color: var(--lime);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 15px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-align: center;
    text-transform: uppercase;
}
.btn-primary {
    background: var(--lime);
    color: #0d1108;
    box-shadow: 0 12px 34px rgba(145, 216, 15, .24);
}
.btn-whatsapp {
    background: linear-gradient(180deg, rgba(145, 216, 15, .68), rgba(91, 124, 13, .78));
    border-color: rgba(166, 236, 24, .78);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 16px 40px rgba(145, 216, 15, .17);
}
.btn-ghost {
    background: rgba(255, 255, 255, .035);
    border-color: rgba(255, 255, 255, .22);
    color: var(--ink);
}
.wide { width: 100%; }

.section, .catalog-layout, .about-layout, .contact-layout {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 52px 0;
}
.section-heading, .admin-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}
.section-heading h2 { font-size: clamp(1.8rem, 8vw, 3.4rem); }
.section-heading a { color: var(--lime); font-weight: 800; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.home-product-grid {
    grid-template-columns: 1fr;
}
.home-mobile-hidden-product {
    display: none;
}
.catalog-grid {
    grid-template-columns: 1fr;
}
.product-card {
    min-width: 0;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .22);
}
.product-card-image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1.15;
    background: #181818;
    overflow: hidden;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-card-image span {
    position: absolute;
    left: 8px;
    top: 8px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(145, 216, 15, .94);
    color: #0d1108;
    font-size: .68rem;
    font-weight: 800;
}
.product-card-body { padding: 12px; }
.product-card h2 {
    margin-top: 6px;
    color: #fff;
    font-size: 1.02rem;
    min-height: 2.1em;
}
.product-card p {
    display: -webkit-box;
    margin: 8px 0;
    color: #d2d2d2;
    font-size: .9rem;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.muted { color: #b8b8b8; }
.price {
    color: var(--lime) !important;
    font-size: 1.45rem !important;
    line-height: 1.15 !important;
    font-weight: 900;
    letter-spacing: .01em;
}
.card-actions {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}
.card-actions .btn { min-height: 46px; padding: 11px 12px; font-size: .76rem; }

.benefits {
    display: grid;
    gap: 12px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 10px 0 52px;
}
.benefits article, .values-grid article, .stats-grid article {
    padding: 18px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
}
.benefits span, .values-grid span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border: 1px solid rgba(145, 216, 15, .7);
    border-radius: 999px;
    color: var(--lime);
    background: rgba(145, 216, 15, .08);
}
.benefits span .icon, .values-grid span .icon { width: 28px; height: 28px; }
.benefits h2, .values-grid h2 {
    color: #fff;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.25;
    text-transform: uppercase;
}
.benefits p { color: #cfcfcf; font-size: .9rem; }

.advice-band {
    display: grid;
    gap: 18px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 58px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(36, 36, 36, .96), rgba(18, 18, 18, .96));
}
.advice-band h2 { margin-top: 8px; font-size: 2rem; }

.page-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 44px 0 12px;
}
.page-hero.compact h1 { font-size: clamp(2.1rem, 10vw, 4.6rem); }

.filters, .sort-bar, .contact-form, .login-card, .admin-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
}
.filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 16px;
    padding: 12px;
}
.filters h2 { display: none; }
.filters a {
    flex: 0 0 auto;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
}
.filters a.active {
    background: var(--lime);
    color: #0d1108;
}
.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
}
.catalog-search-form {
    display: grid;
    grid-template-columns: 1fr;
    align-items: end;
}
.catalog-search-label,
.catalog-sort-label {
    width: 100%;
}
.catalog-search-button,
.catalog-clear-button {
    width: 100%;
    min-height: 46px;
}
.catalog-results-summary {
    margin: -4px 0 16px;
    color: var(--muted);
    font-size: .95rem;
}
select, input, textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: #101010;
    color: var(--ink);
    font: inherit;
}
textarea { resize: vertical; }
label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 700;
}

.product-detail {
    position: relative;
    isolation: isolate;
    display: grid;
    gap: 24px;
    align-items: start;
    width: min(1240px, calc(100% - 36px));
    margin: 0 auto;
    padding: 34px 0 54px;
}
.product-detail.detail-background::before {
    content: "";
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: -1;
    width: 100vw;
    height: min(720px, 72%);
    transform: translateX(-50%);
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, .72) 24%, rgba(5, 5, 5, .5) 46%, rgba(5, 5, 5, .5) 100%),
        var(--detail-bg) bottom center / cover no-repeat;
    pointer-events: none;
}
.product-media,
.product-info,
.detail-column,
.detail-blocks,
.detail-block {
    position: relative;
    z-index: 1;
    min-width: 0;
}
.detail-column {
    display: contents;
}
.product-media { order: 1; }
.product-info { order: 2; }
.detail-block-description { order: 3; }
.detail-block-benefits { order: 4; }
.detail-block-usage { order: 5; }
.detail-block-details { order: 6; }
.product-gallery {
    overflow: hidden;
}
.detail-main-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
}
.gallery-strip {
    position: relative;
    margin-top: 12px;
}
.gallery-strip::before,
.gallery-strip::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 10px;
    z-index: 2;
    width: 42px;
    pointer-events: none;
    opacity: 1;
    transition: opacity .2s ease;
}
.gallery-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), rgba(6, 8, 6, 0));
}
.gallery-strip::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg), rgba(6, 8, 6, 0));
}
.gallery-at-start .gallery-strip::before,
.gallery-at-end .gallery-strip::after {
    opacity: 0;
}
.gallery-thumbnails {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 46px 12px;
    scroll-behavior: smooth;
    scroll-padding-inline: 46px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(145, 216, 15, .65) rgba(255, 255, 255, .08);
    overscroll-behavior-inline: contain;
    touch-action: pan-x;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}
.gallery-thumbnails:active {
    cursor: grabbing;
}
.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}
.gallery-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .08);
    border-radius: 999px;
}
.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(145, 216, 15, .65);
    border-radius: 999px;
}
.gallery-thumb {
    flex: 0 0 82px;
    width: 82px;
    aspect-ratio: 1;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #171717;
    cursor: pointer;
    overflow: hidden;
    opacity: .72;
    scroll-snap-align: start;
    transition: border-color .2s ease, box-shadow .2s ease, opacity .2s ease, transform .2s ease;
}
.gallery-thumb:hover,
.gallery-thumb:focus-visible {
    opacity: 1;
    border-color: rgba(145, 216, 15, .72);
    transform: translateY(-1px);
}
.gallery-thumb.active {
    border-color: var(--lime);
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(145, 216, 15, .22);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-top: -24px;
    border: 1px solid rgba(145, 216, 15, .42);
    border-radius: 999px;
    background: rgba(12, 13, 11, .86);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: opacity .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.gallery-nav:hover,
.gallery-nav:focus-visible {
    border-color: var(--lime);
    color: var(--lime);
}
.gallery-nav:active {
    transform: translateY(1px);
}
.gallery-nav:disabled {
    opacity: 0;
    pointer-events: none;
}
.gallery-nav-prev { left: 3px; }
.gallery-nav-next { right: 3px; }
.gallery-nav .icon {
    width: 20px;
    height: 20px;
}
.product-info h1 { margin-top: 8px; font-size: clamp(2.2rem, 11vw, 5rem); }
.detail-price {
    margin: 18px 0 6px;
    color: var(--lime);
    font-size: clamp(2rem, 9vw, 3.15rem);
    font-weight: 500;
    line-height: 1;
}
.detail-presentation {
    margin: 0 0 18px;
    color: #e6e6e6;
    font-size: 1.05rem;
}
.lead { color: #f0f0f0; font-size: 1.05rem; }
.product-share {
    margin-top: 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--card);
}
.product-share > p {
    margin: 0 0 10px;
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
}
.share-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 46px;
    padding: 10px 9px;
    gap: 7px;
    border: 1px solid rgba(145, 216, 15, .28);
    border-radius: 8px;
    background: #191919;
    color: #f7f7f7;
    font: inherit;
    font-size: .82rem;
    font-weight: 800;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.share-button:hover,
.share-button:focus-visible {
    border-color: var(--lime);
    background: #222;
    color: var(--lime);
}
.share-button:active {
    transform: translateY(1px);
}
.share-button .icon {
    width: 18px;
    height: 18px;
}
.share-button span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.detail-blocks {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}
.detail-block {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--card);
}
.detail-block h2 {
    color: var(--lime);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
}
.detail-block p { color: #dfdfdf; }

.about-layout, .contact-layout {
    display: grid;
    gap: 24px;
}
.values-grid {
    display: grid;
    gap: 12px;
}
.contact-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}
.contact-list a, .contact-list span {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: rgba(255, 255, 255, .03);
}
.contact-form, .login-card {
    display: grid;
    gap: 14px;
    padding: 18px;
}
.form-status { color: var(--lime); }
.form-error { color: var(--danger); }
.login-wrap {
    display: grid;
    place-items: center;
    min-height: 70svh;
    padding: 32px 18px;
}
.login-card { width: min(100%, 430px); }

.site-footer {
    display: grid;
    gap: 24px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 38px 0 96px;
    border-top: 1px solid var(--line);
}
.site-footer h2 { margin-bottom: 12px; font-size: 1rem; font-family: "Inter", sans-serif; }
.site-footer a, .site-footer span { display: block; margin: 8px 0; color: var(--muted); }

.bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(18, 18, 18, .94);
    backdrop-filter: blur(18px);
}
.bottom-nav a {
    padding: 12px 4px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
    text-align: center;
}
.bottom-nav a:last-child {
    color: var(--lime);
    background: rgba(145, 216, 15, .12);
}

.admin-body {
    display: grid;
    min-height: 100vh;
    background: #070707;
}
.admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    gap: 12px;
    padding: 14px;
    background: #121212;
    border-bottom: 1px solid var(--line);
}
.admin-sidebar nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}
.admin-sidebar nav a, .admin-sidebar button {
    flex: 0 0 auto;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.admin-main {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    padding: 24px 0 56px;
}
.admin-heading h1 { font-size: clamp(1.8rem, 8vw, 3.4rem); }
.admin-heading.inline { align-items: center; margin: 0 0 14px; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}
.stats-grid span {
    display: block;
    color: var(--lime);
    font-size: 2rem;
    font-weight: 900;
}
.admin-card { padding: 14px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}
.admin-table th, .admin-table td {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    text-align: left;
}
.admin-table th { color: var(--ink); font-size: .82rem; text-transform: uppercase; }
.admin-table a { color: var(--lime); font-weight: 800; }
.table-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.table-actions button, .admin-gallery button {
    border: 0;
    background: transparent;
    color: var(--danger);
    font: inherit;
    cursor: pointer;
}
.admin-form {
    display: grid;
    gap: 16px;
}
.form-grid {
    display: grid;
    gap: 14px;
}
.check-row, .check-grid label {
    display: flex;
    align-items: center;
    gap: 9px;
}
.check-row input, .check-grid input {
    width: 18px;
    min-height: 18px;
}
.check-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.admin-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.settings-media-block {
    display: grid;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #101010;
}
.settings-fieldset {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #101010;
}
.settings-fieldset h2 {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1.08rem;
}
.settings-media-block h2 {
    font-size: 1.25rem;
}
.settings-media-block p {
    margin: 8px 0 0;
}
.settings-media-block img {
    width: auto;
    max-width: 220px;
    max-height: 96px;
    object-fit: contain;
}
.settings-media-block-wide img {
    width: 100%;
    max-width: 360px;
    max-height: 190px;
    border-radius: 8px;
    object-fit: cover;
}
.settings-wordmark-block img {
    max-width: 260px;
    max-height: 86px;
}
.admin-gallery figure {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}
.admin-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.admin-gallery figcaption {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    color: var(--muted);
}
.admin-status {
    padding: 12px 14px;
    border: 1px solid rgba(145, 216, 15, .32);
    border-radius: 8px;
    background: rgba(145, 216, 15, .12);
    color: var(--lime);
}
.message-detail { display: grid; gap: 12px; }
.compact-form { max-width: 360px; }
.empty-state {
    grid-column: 1 / -1;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
}
.pagination-wrap {
    margin-top: 28px;
}
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .03);
    color: var(--ink);
    font-size: .95rem;
    font-weight: 800;
    line-height: 1;
}
.pagination-link.active {
    border-color: var(--lime);
    background: var(--lime);
    color: #0d1108;
}
.pagination-link.disabled {
    color: rgba(244, 246, 238, .32);
    cursor: default;
}
a.pagination-link:hover {
    border-color: rgba(145, 216, 15, .65);
    color: var(--lime);
}

@media (min-width: 720px) {
    .site-header {
        padding: 18px 18px;
    }

    .site-header .brand {
        gap: 14px;
    }

    .site-header .brand-logo-image {
        max-width: 96px;
        height: 74px;
    }

    .site-header .brand-wordmark-image {
        max-width: 360px;
        height: 108px;
    }

    .hero-brand .brand-logo-image {
        max-width: 160px;
        height: 160px;
    }

    .hero-brand .brand-wordmark-image {
        height: 210px;
    }

    .desktop-nav, .header-whatsapp {
        display: flex;
        align-items: center;
        gap: 18px;
        color: var(--muted);
        font-weight: 800;
    }
    .header-search {
        display: grid;
        grid-template-columns: minmax(150px, 220px) auto;
        gap: 8px;
        margin-left: auto;
    }
    .header-search input {
        min-height: 42px;
        padding: 9px 11px;
        border-radius: 999px;
        font-size: .88rem;
    }
    .header-search button {
        padding: 0 14px;
        border-radius: 999px;
        font-size: .84rem;
    }
    .header-whatsapp {
        padding: 11px 14px;
        border: 1px solid rgba(145, 216, 15, .36);
        border-radius: 999px;
        color: var(--lime);
    }
    .mobile-menu, .bottom-nav { display: none; }
    .hero {
        grid-template-columns: minmax(0, 560px) 1fr;
        width: 100%;
        margin: 0;
        padding: 52px max(28px, calc((100vw - 1240px) / 2)) 64px;
        min-height: calc(100svh - 104px);
        background-image:
            linear-gradient(90deg, rgba(4, 6, 4, .98), rgba(4, 6, 4, .84) 42%, rgba(4, 6, 4, .22) 68%, rgba(4, 6, 4, .24)),
            var(--hero-bg);
        background-size: cover, min(100%, 1780px) auto;
        background-position: center right;
        background-repeat: no-repeat;
        border-bottom: 1px solid var(--line);
    }
    .hero-copy {
        position: relative;
        z-index: 1;
    }
    .hero-copy h1 {
        font-size: clamp(3.1rem, 5.8vw, 5.1rem);
        line-height: .96;
    }
    .hero-visual {
        display: none;
    }
    .hero-brand {
        gap: 18px;
        margin-bottom: 18px;
    }
    .hero-brand .brand-logo-image {
        max-width: 142px;
        height: 116px;
    }
    .hero-brand .brand-wordmark-image {
        max-width: 680px;
        height: 176px;
    }
    .hero-actions, .card-actions {
        display: flex;
        flex-wrap: wrap;
    }
    .gallery-thumb {
        flex-basis: 96px;
        width: 96px;
    }
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .home-mobile-hidden-product { display: block; }
    .benefits, .values-grid, .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .advice-band {
        grid-template-columns: 1fr auto;
        align-items: center;
    }
    .catalog-layout {
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 24px;
        align-items: start;
    }
    .filters {
        position: sticky;
        top: 86px;
        display: grid;
        overflow: visible;
        margin: 0;
    }
    .filters h2 { display: block; margin: 0 0 8px; font-size: 1.2rem; }
    .filters a { border-radius: 8px; }
    .catalog-search-form {
        grid-template-columns: minmax(240px, 1fr) minmax(160px, 220px) auto auto;
    }
    .catalog-search-button,
    .catalog-clear-button {
        width: auto;
        padding-inline: 18px;
    }
    .product-detail, .about-layout, .contact-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 44px;
        align-items: start;
    }
    .product-detail {
        column-gap: 44px;
        row-gap: 18px;
    }
    .detail-column {
        display: grid;
        gap: 44px;
        align-content: start;
    }
    .detail-media-column { grid-column: 1; }
    .detail-info-column { grid-column: 2; }
    .product-detail.detail-background::before {
        display: block;
    }
    .share-actions { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .form-grid { grid-template-columns: repeat(2, 1fr); }
    .settings-media-block { grid-template-columns: 1fr auto; }
    .site-footer { grid-template-columns: 1.4fr 1fr 1fr; padding-bottom: 42px; }
    .admin-body { grid-template-columns: 280px 1fr; }
    .admin-sidebar {
        min-height: 100vh;
        align-content: start;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }
    .admin-sidebar nav { display: grid; overflow: visible; }
    .admin-sidebar nav a, .admin-sidebar button { border-radius: 8px; }
    .admin-main { padding: 34px 0 70px; }
    .admin-gallery { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1080px) {
    .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .product-card-body { padding: 16px; }
    .product-card h2 { font-size: 1.18rem; }
}
