:root {
    --accent: #ef233c;
    --accent-dark: #d9152d;
    --ink: #111111;
    --muted: #666666;
    --line: #e5e5e5;
    --soft: #f7f7f7;
    --footer: #202529;
    --footer-muted: #d9d9d9;
    --container: 1410px;
    --mobile-header-height: 74px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

body.mobile-menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
    overscroll-behavior: contain;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

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

.header-stripe {
    height: 4px;
    background: var(--accent);
}

.topbar {
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.topbar-inner,
.main-header-inner,
.nav-inner,
.footer-bottom-inner {
    display: flex;
    align-items: center;
}

.topbar-inner {
    min-height: 38px;
    justify-content: space-between;
    gap: 24px;
}

.topbar p {
    margin: 0;
    white-space: nowrap;
}

.topbar a {
    font-weight: 600;
    text-decoration: underline;
}

.topbar nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.topbar nav > * {
    padding: 0 20px;
    border-left: 1px solid var(--line);
    white-space: nowrap;
}

.topbar nav > *:first-child {
    border-left: 0;
}

.topbar i {
    color: var(--accent);
    font-size: 11px;
}

.main-header {
    background: #ffffff;
}

.main-header-inner {
    min-height: 90px;
    gap: 30px;
}

.brand {
    flex: 0 0 170px;
}

.brand img {
    width: 170px;
    object-fit: contain;
}

.site-search {
    display: grid;
    grid-template-columns: 180px 1fr 50px;
    flex: 1;
    max-width: 600px;
    height: 45px;
    margin-left: auto;
    border: 2px solid var(--line);
    border-radius: 5px;
    overflow: hidden;
}

.site-search select,
.site-search input {
    min-width: 0;
    border: 0;
    background: #ffffff;
    color: var(--ink);
    outline: 0;
}

.site-search select {
    padding: 0 16px;
    border-right: 1px solid var(--line);
    font-weight: 500;
}

.site-search input {
    padding: 0 18px;
    color: var(--muted);
}

.site-search button {
    display: grid;
    place-items: center;
    border: 0;
    background: var(--accent);
    color: #ffffff;
    font-size: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.header-actions a {
    position: relative;
    display: inline-flex;
    color: var(--ink);
    font-size: 25px;
    line-height: 1;
}

.header-actions span {
    position: absolute;
    top: -8px;
    right: -10px;
    display: grid;
    min-width: 17px;
    height: 17px;
    place-items: center;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
}

.mobile-trigger,
.mobile-actions {
    display: none;
    min-width: 32px;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 24px;
}

.mobile-actions {
    align-items: center;
    gap: 16px;
}

.mobile-actions a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-size: 27px;
    line-height: 1;
}

.mobile-actions span {
    position: absolute;
    top: -9px;
    right: -10px;
    display: grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
}

.primary-nav {
    position: relative;
    z-index: 50;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    background: #ffffff;
}

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

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

@keyframes stickyNavDrop {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes mobileDrawerSlideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.nav-inner {
    min-height: 60px;
    gap: 24px;
}

.shop-categories {
    position: relative;
    align-self: stretch;
}

.shop-categories > button {
    display: flex;
    height: 100%;
    min-width: 230px;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 0;
    border-radius: 5px 5px 0 0;
    background: var(--accent);
    color: #ffffff;
    font-weight: 600;
}

.category-panel {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 15;
    display: none;
    width: 260px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.shop-categories:hover .category-panel,
.shop-categories:focus-within .category-panel {
    display: block;
}

.category-panel a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border-bottom: 1px solid #f1f1f1;
    color: var(--muted);
    font-weight: 500;
}

.category-panel a:hover {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-weight: 600;
}

.nav-menu > li {
    position: relative;
    align-self: stretch;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a.active,
.nav-menu a:hover,
.hot-deal-link:hover {
    color: var(--accent);
}

.nav-menu i {
    font-size: 10px;
}

.nav-menu > li > a {
    height: 100%;
    min-height: 60px;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 30;
    display: grid;
    min-width: 220px;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.13);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-menu > li:hover .nav-dropdown,
.nav-menu > li:focus-within .nav-dropdown,
.nav-menu > li.is-open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-menu > li:nth-last-child(-n + 2) .nav-dropdown {
    right: 0;
    left: auto;
}

.nav-dropdown::before {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
}

.nav-dropdown h3 {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-dropdown a {
    display: flex;
    min-height: 38px;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 5px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.nav-dropdown a:hover {
    background: var(--soft);
    color: var(--accent);
}

.nav-dropdown-wide {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    min-width: 430px;
    gap: 18px;
}

.nav-category-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    min-width: 380px;
}

.nav-submenu-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    width: min(560px, calc(100vw - 30px));
    max-height: calc(100vh - 170px);
    overflow-y: auto;
}

.nav-mega-menu {
    grid-template-columns: repeat(4, minmax(165px, 1fr));
    width: min(860px, calc(100vw - 30px));
    max-height: calc(100vh - 170px);
    gap: 18px;
    overflow-y: auto;
}

.nav-dropdown-group {
    min-width: 0;
}

.nav-dropdown-title {
    margin-bottom: 6px;
    color: var(--ink) !important;
    font-weight: 700 !important;
}

.nav-submenu-list {
    display: grid;
    gap: 1px;
}

.nav-submenu-list a {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 12px;
}

.nav-category-grid a i,
.nav-mega-menu .nav-dropdown-title i {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--soft);
    color: var(--accent);
    font-size: 13px;
}

.badge {
    display: inline-flex;
    align-items: center;
    height: 18px;
    padding: 0 6px;
    border-radius: 3px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
}

.badge-sale {
    background: #12a69a;
}

.badge-hot {
    background: #e72b72;
}

.hot-deal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    font-size: 16px;
    font-weight: 600;
}

.hot-deal-link i {
    color: var(--accent);
    font-size: 22px;
}

@media (min-width: 992px) {
    .site-header.is-sticky {
        padding-bottom: 60px;
    }

    .site-header.is-sticky .primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1000;
        border-top: 0;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
        animation: stickyNavDrop 0.35s ease both;
    }

    .site-header.is-sticky .nav-inner {
        min-height: 56px;
    }

    .site-header.is-sticky .shop-categories > button {
        border-radius: 0;
    }

    .site-header.is-sticky .nav-dropdown {
        top: 100%;
    }

    .site-header.is-sticky .nav-dropdown::before {
        top: -1px;
        height: 1px;
    }

    .site-header.is-sticky .nav-submenu-grid,
    .site-header.is-sticky .nav-mega-menu {
        max-height: calc(100vh - 86px);
    }
}

.hero-section {
    padding: 30px 0 20px;
    background: #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.65fr) minmax(320px, 1fr);
    gap: 20px;
}

.main-hero,
.mini-promo,
.split-promos article,
.banner-trio article,
.wide-promo-card {
    overflow: hidden;
    border-radius: 5px;
    background-position: center;
    background-size: cover;
}

.main-hero {
    display: flex;
    min-height: 557px;
    align-items: center;
    justify-content: flex-end;
    padding: 70px 10%;
    color: #ffffff;
}

.hero-copy {
    max-width: 420px;
}

.hero-copy span,
.mini-promo span,
.split-promos span,
.banner-trio span,
.wide-promo span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 390px;
    margin: 28px 0 24px;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0;
}

.hero-copy p {
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    letter-spacing: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 152px;
    min-height: 45px;
    padding: 12px 28px;
    border: 0;
    border-radius: 5px;
    background: var(--accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

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

.side-promos {
    display: grid;
    gap: 20px;
}

.mini-promo {
    min-height: 172px;
    padding: 20px 28px 20px 54%;
}

.mini-promo:nth-child(2) {
    padding-right: 48%;
    padding-left: 34px;
}

.mini-promo h2 {
    max-width: 220px;
    margin: 22px 0 14px;
    font-size: 24px;
    line-height: 1.18;
}

.mini-promo a,
.banner-trio a {
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
    text-transform: uppercase;
}

.brand-strip {
    padding: 0 0 60px;
}

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

.brand-card {
    display: grid;
    min-height: 120px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #ffffff;
    padding: 22px 18px;
}

.brand-card img {
    width: auto;
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
}

.section-block {
    padding: 20px 0 60px;
}

.section-heading {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
}

.section-heading::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 220px;
    height: 2px;
    content: "";
    background: var(--accent);
}

.section-heading h2 {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.slider-controls {
    display: flex;
    gap: 8px;
    margin-top: -5px;
}

.slider-controls button {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 0;
    border-radius: 5px;
    background: #f4f4f4;
    color: #9a9a9a;
}

.slider-controls button:hover {
    background: var(--accent);
    color: #ffffff;
}

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

.deal-card {
    position: relative;
    display: grid;
    grid-template-columns: 48% 52%;
    min-width: 0;
    min-height: 250px;
    overflow: hidden;
    border: 2px solid var(--accent);
    border-radius: 5px;
    background: #ffffff;
    padding: 20px 32px 16px 22px;
}

.discount-badge,
.product-label {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 3px;
    background: var(--accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.product-label {
    background: #70bd39;
}

.deal-image {
    display: grid;
    min-width: 0;
    place-items: center;
    padding: 25px 20px 10px 0;
}

.deal-image img {
    max-height: 170px;
    object-fit: contain;
}

.deal-info h3 {
    display: -webkit-box;
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    margin: 0 0 8px;
    overflow: hidden;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    overflow-wrap: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.deal-info {
    min-width: 0;
    max-width: 100%;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffae00;
    font-size: 16px;
}

.rating small {
    color: var(--ink);
    font-size: 13px;
}

.price-line {
    margin: 6px 0 14px;
}

.price-line del {
    color: #999999;
    margin-right: 5px;
}

.price-line strong {
    color: var(--accent);
    font-size: 16px;
}

.countdown {
    display: inline-grid;
    grid-template-columns: repeat(4, 42px);
    gap: 0;
    margin-bottom: 11px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    background: #ffffff;
}

.countdown span {
    display: grid;
    min-height: 48px;
    place-items: center;
    padding: 5px 2px;
    text-align: center;
}

.countdown strong {
    line-height: 1;
}

.countdown small {
    color: var(--muted);
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
}

.countdown span:last-child strong {
    color: var(--accent);
}

.with-tabs {
    align-items: flex-start;
}

.product-tabs {
    display: flex;
    gap: 28px;
    align-items: center;
}

.product-tabs button {
    position: relative;
    border: 0;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-tabs button.active {
    color: var(--accent);
}

.product-tabs button.active::after {
    position: absolute;
    right: 0;
    bottom: -18px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--accent);
}

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

.product-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #ffffff;
    overflow: hidden;
}

.product-card .discount-badge,
.product-card .product-label {
    top: 10px;
    left: 10px;
}

.product-image {
    display: grid;
    aspect-ratio: 1 / 1.08;
    place-items: center;
    padding: 22px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.product-brand {
    margin: 0 0 8px;
    color: #777777;
    font-size: 13px;
}

.product-body h3 {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 10px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-body h3 a:hover {
    color: var(--accent);
}

.product-body .price-line {
    margin-bottom: 16px;
}

.product-body button {
    min-height: 43px;
    margin-top: auto;
    border: 0;
    border-radius: 5px;
    background: #e9e9e9;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-body button:hover {
    background: var(--accent);
    color: #ffffff;
}

.split-promos {
    padding: 20px 0 60px;
}

.split-promo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.split-promos article {
    min-height: 180px;
    padding: 35px 44px;
    color: #ffffff;
}

.split-promos article:first-child {
    padding-left: 56%;
}

.split-promos h2 {
    max-width: 330px;
    margin: 20px 0 5px;
    font-size: 30px;
    line-height: 1.2;
}

.split-promos p {
    margin: 0;
    font-weight: 500;
}

.category-section {
    padding: 60px 0 70px;
    background: #f7f2ef;
}

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

.category-card {
    display: grid;
    justify-items: center;
    gap: 18px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.category-card img {
    width: 160px;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #ffffff;
    object-fit: contain;
    padding: 18px;
}

.category-card:hover {
    color: var(--accent);
}

.banner-trio {
    padding: 60px 0;
}

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

.banner-trio article {
    min-height: 185px;
    padding: 30px 40px 25px 54%;
}

.banner-trio article.dark {
    color: #ffffff;
}

.banner-trio h2 {
    margin: 20px 0 12px;
    font-size: 27px;
    line-height: 1.2;
}

.wide-promo {
    padding: 20px 0 60px;
}

.wide-promo-card {
    display: flex;
    width: 100%;
    min-width: 100%;
    min-height: 190px;
    align-items: center;
    justify-content: flex-end;
    padding: 35px 16%;
    color: #ffffff;
}

.wide-promo-card > div {
    max-width: 470px;
}

.wide-promo h2 {
    margin: 18px 0 0;
    font-size: 34px;
    line-height: 1.25;
}

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

.testimonial-card {
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 34px 30px;
}

.testimonial-card header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.testimonial-card img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card h3 {
    margin: 0 0 3px;
    font-size: 17px;
}

.testimonial-card span,
.testimonial-card p {
    color: var(--muted);
}

.testimonial-card p {
    margin: 0;
    line-height: 1.85;
}

.gallery-section {
    padding: 0 0 60px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.article-grid article {
    min-width: 0;
}

.article-grid img {
    width: 100%;
    aspect-ratio: 1.65 / 1;
    border-radius: 5px;
    object-fit: cover;
}

.article-grid h3 {
    margin: 14px 0 0;
    font-size: 15px;
    line-height: 1.45;
}

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

.gallery-strip img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 5px;
    object-fit: cover;
}

.service-band {
    background: var(--accent);
    color: #ffffff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-item {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 90px;
    padding: 16px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.service-item:last-child {
    border-right: 0;
}

.service-item i {
    font-size: 34px;
}

.service-item strong,
.service-item span {
    display: block;
}

.service-item strong {
    font-size: 15px;
}

.service-item span {
    font-size: 12px;
}

.footer-main,
.footer-bottom {
    background: var(--footer);
    color: #ffffff;
}

.footer-main {
    padding: 55px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1.2fr 1.1fr 1.45fr;
    gap: 44px;
}

.footer-column h3 {
    margin: 0 0 22px;
    font-size: 16px;
    font-weight: 700;
}

.footer-column p,
.footer-column a,
.footer-column span,
.footer-column button {
    color: var(--footer-muted);
    font-size: 13px;
}

.footer-column p {
    margin: 0 0 12px;
}

.footer-column > a {
    display: block;
    margin-bottom: 12px;
}

.footer-column form {
    margin: 0 0 12px;
}

.footer-column button {
    border: 0;
    background: transparent;
    padding: 0;
    font-weight: 400;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column button:hover {
    color: #ffffff;
}

.store-badges {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.store-badges img {
    height: 34px;
    object-fit: contain;
}

.newsletter-column form {
    display: grid;
    grid-template-columns: 1fr 45px;
    height: 45px;
    margin-bottom: 14px;
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
}

.newsletter-column input[type="email"] {
    min-width: 0;
    border: 0;
    padding: 0 18px;
    outline: 0;
}

.newsletter-column form button {
    border: 0;
    background: #ffffff;
    color: var(--accent);
    font-size: 18px;
}

.consent {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 8px;
    align-items: start;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 0;
}

.footer-bottom-inner {
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: var(--footer-muted);
    font-size: 13px;
}

.footer-bottom img {
    width: 195px;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    color: var(--footer);
}

.social-links a:hover {
    background: var(--accent);
    color: #ffffff;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 20;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
}

.page-shell {
    padding: 54px 0 74px;
    background: #ffffff;
}

.page-heading {
    margin-bottom: 28px;
}

.page-heading span,
.success-state span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
}

.page-heading h1,
.success-state h1 {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
}

.alert {
    margin-bottom: 18px;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #f8fafc;
    font-weight: 600;
}

.alert-success {
    border-color: #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.alert-error {
    border-color: #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.commerce-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.cart-panel,
.checkout-panel,
.summary-panel,
.success-state,
.product-detail {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.cart-line {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid var(--line);
}

.cart-line:last-child {
    border-bottom: 0;
}

.cart-line img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 6px;
    background: var(--soft);
}

.cart-line h2 {
    margin: 0 0 6px;
    font-size: 16px;
}

.cart-line p,
.cart-line strong {
    margin: 0;
    color: var(--muted);
}

.quantity-form {
    display: flex;
    gap: 8px;
    align-items: end;
}

.quantity-form label,
.checkout-grid label,
.catalog-toolbar label,
.admin-form-grid label,
.detail-cart-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 600;
}

.quantity-form label span,
.checkout-grid label span,
.catalog-toolbar label span,
.admin-form-grid label span,
.detail-cart-form label span {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
}

.quantity-form input,
.checkout-grid input,
.checkout-grid select,
.catalog-toolbar input,
.catalog-toolbar select,
.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea,
.detail-cart-form input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 11px 12px;
    background: #ffffff;
    color: var(--ink);
}

.quantity-form input {
    width: 72px;
}

.quantity-form button,
.icon-link,
.link-button {
    border: 0;
    background: transparent;
    color: var(--accent);
}

.quantity-form button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 5px;
}

.summary-panel {
    position: sticky;
    top: 20px;
    padding: 22px;
}

.summary-panel h2,
.checkout-panel h2 {
    margin: 0 0 18px;
    font-size: 20px;
}

.summary-panel dl {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
}

.summary-panel dl div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.summary-panel dt {
    color: var(--muted);
}

.summary-panel dd {
    margin: 0;
    font-weight: 700;
}

.summary-panel .total {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 18px;
}

.full-width {
    width: 100%;
    justify-content: center;
}

.link-button {
    width: 100%;
    margin-top: 12px;
    font-weight: 700;
}

.empty-state,
.success-state {
    padding: 48px 24px;
    text-align: center;
}

.empty-state i,
.success-state i {
    display: grid;
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    font-size: 24px;
}

.empty-state h2,
.success-state h1 {
    margin-bottom: 10px;
}

.empty-state p,
.success-state p {
    margin: 0 auto 22px;
    max-width: 520px;
    color: var(--muted);
}

.checkout-panel {
    padding: 24px;
}

.checkout-grid,
.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.full-span {
    grid-column: 1 / -1;
}

.checkout-grid small,
.admin-form-grid small {
    color: var(--accent);
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.payment-options label,
.checkbox-field {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-weight: 700;
}

.checkout-items {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.checkout-items div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: 13px;
}

.catalog-toolbar {
    display: grid;
    grid-template-columns: minmax(220px, 1.3fr) repeat(5, minmax(130px, 1fr)) auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 26px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.catalog-toolbar button,
.card-action {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 5px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 700;
}

.pagination-wrap {
    margin-top: 30px;
}

.shop-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
}

.shop-pagination-summary {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.shop-pagination-summary strong {
    color: var(--ink);
    font-weight: 700;
}

.shop-pagination-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.shop-page-link {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #ffffff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.shop-page-link:not(.is-disabled):hover,
.shop-page-link.is-active {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.shop-page-link.is-disabled {
    cursor: not-allowed;
    opacity: 0.45;
    pointer-events: none;
}

.pagination-wrap svg {
    display: inline-block;
    width: 16px;
    height: 16px;
}

.product-card form {
    margin-top: 14px;
}

.product-card button,
.card-action {
    width: 100%;
}

.stock-note,
.sku-line {
    margin: 8px 0 0;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    padding: 28px;
}

.product-detail-media {
    display: grid;
    place-items: center;
    min-height: 420px;
    border-radius: 8px;
    background: var(--soft);
}

.product-detail-media img {
    width: 100%;
    max-height: 460px;
    object-fit: contain;
}

.product-detail-info h1 {
    margin: 4px 0 8px;
    font-size: 34px;
    line-height: 1.15;
}

.detail-price {
    margin: 18px 0;
    font-size: 24px;
}

.availability {
    display: inline-block;
    margin: 16px 0;
    padding: 7px 10px;
    border-radius: 999px;
    font-weight: 700;
}

.availability.in-stock {
    background: #dcfce7;
    color: #166534;
}

.availability.out-of-stock {
    background: #fee2e2;
    color: #991b1b;
}

.detail-cart-form {
    display: flex;
    gap: 12px;
    align-items: end;
    margin-top: 10px;
}

.detail-cart-form input {
    width: 110px;
}

.related-products {
    margin-top: 42px;
}

.admin-form-grid {
    margin-top: 18px;
}

.admin-panel,
.admin-table-wrap,
.metric-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.admin-panel {
    margin-bottom: 24px;
    padding: 24px;
}

.admin-panel h2 {
    margin: 0 0 18px;
    font-size: 20px;
}

.admin-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 8px;
}

.admin-page-header .page-heading {
    margin-bottom: 0;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    background: var(--soft);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-table td span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

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

.table-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    white-space: nowrap;
}

.table-actions a,
.table-actions button,
.secondary-action {
    border: 0;
    background: transparent;
    color: var(--accent);
    font-weight: 700;
}

.status-pill {
    display: inline-flex !important;
    width: fit-content;
    margin: 0 !important;
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--muted) !important;
    font-size: 12px;
    font-weight: 700;
}

.status-active,
.status-delivered {
    background: #dcfce7;
    color: #166534 !important;
}

.status-draft,
.status-placed {
    background: #fef9c3;
    color: #854d0e !important;
}

.status-shipped {
    background: #dbeafe;
    color: #1e40af !important;
}

.status-archived,
.status-cancelled,
.status-refunded {
    background: #fee2e2;
    color: #991b1b !important;
}

.form-actions,
.status-form,
.admin-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.form-actions {
    justify-content: flex-end;
}

.status-form label {
    display: grid;
    gap: 7px;
    min-width: 220px;
    font-weight: 700;
}

.status-form label span {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

.status-form select,
.status-form input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 11px 12px;
}

.danger-panel {
    border-color: #fecaca;
}

.danger-panel p {
    margin: 0 0 18px;
    color: var(--muted);
}

.danger-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 5px;
    background: #dc2626;
    color: #ffffff;
    padding: 0 18px;
    font-weight: 700;
}

.admin-detail-grid,
.metric-grid {
    display: grid;
    gap: 18px;
}

.admin-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 24px;
}

.metric-card {
    padding: 22px;
}

.metric-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
}

.metric-card strong {
    font-size: 30px;
}

.admin-quick-links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 5px;
    font-weight: 700;
}

.detail-list {
    display: grid;
    gap: 11px;
    margin: 0;
}

.detail-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 11px;
}

.detail-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.detail-list dt {
    color: var(--muted);
}

.detail-list dd {
    margin: 0;
    font-weight: 700;
    text-align: right;
}

.admin-form-grid textarea {
    resize: vertical;
}

.success-state dl {
    display: inline-grid;
    min-width: 300px;
    gap: 10px;
    margin: 0 0 24px;
    text-align: left;
}

.success-state dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.info-page {
    max-width: 760px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.info-page p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 16px;
}

.info-list {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.info-list div {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.info-list i {
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    font-size: 12px;
}

@media (max-width: 1199px) {
    .main-header-inner {
        gap: 18px;
    }

    .brand {
        flex-basis: 200px;
    }

    .brand img {
        width: 200px;
    }

    .site-search {
        grid-template-columns: 150px 1fr 50px;
        max-width: 500px;
    }

    .nav-menu {
        gap: 18px;
    }

    .hero-grid,
    .deal-grid,
    .product-grid,
    .brand-grid,
    .category-grid,
    .footer-grid {
        gap: 16px;
    }

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

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

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

@media (max-width: 991px) {
    .site-header.is-sticky {
        padding-bottom: var(--mobile-header-height);
    }

    .site-header.is-sticky .main-header,
    body.mobile-menu-open .main-header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1000;
        border-bottom: 1px solid var(--line);
        background: #ffffff;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
        animation: stickyNavDrop 0.28s ease both;
    }

    body.mobile-menu-open .site-header {
        padding-bottom: var(--mobile-header-height);
    }

    .header-stripe,
    .topbar {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
        overflow: hidden;
    }

    .topbar nav,
    .site-search,
    .header-actions,
    .primary-nav {
        display: none;
    }

    .mobile-trigger,
    .mobile-actions {
        display: flex !important;
        z-index: 2;
    }

    .mobile-trigger {
        width: 36px;
        height: 36px;
        align-items: center;
        padding: 0;
        flex: 0 0 36px;
    }

    .main-header-inner {
        display: flex;
        min-height: var(--mobile-header-height);
        gap: 14px;
        justify-content: flex-start;
    }

    .brand {
        flex: 0 1 170px;
        margin-right: auto;
        min-width: 0;
    }

    .brand img {
        width: 170px;
        height: auto;
    }

    body.mobile-menu-open .primary-nav {
        position: fixed;
        inset: 0;
        z-index: 1300;
        display: block;
        overflow: hidden;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    body.mobile-menu-open .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        border: 0;
        background: rgba(17, 17, 17, 0.48);
        cursor: default;
    }

    body.mobile-menu-open .mobile-trigger {
        border: 1px solid var(--line);
        border-radius: 4px;
        background: #ffffff;
    }

    body.mobile-menu-open .desktop-nav-inner {
        display: none;
    }

    body.mobile-menu-open .mobile-menu-drawer {
        position: relative;
        z-index: 1;
        display: flex;
        width: min(604px, 100vw);
        height: 100dvh;
        min-height: 100vh;
        flex-direction: column;
        overflow-y: auto;
        background: #ffffff;
        animation: mobileDrawerSlideIn 0.22s ease both;
    }

    .mobile-menu-close {
        position: sticky;
        top: 0;
        z-index: 4;
        display: flex;
        min-height: 76px;
        align-items: center;
        justify-content: space-between;
        background: #111111;
        color: #ffffff;
        padding: 0 26px;
    }

    .mobile-menu-close strong {
        font-size: 31px;
        line-height: 1;
    }

    .mobile-menu-close button {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border: 0;
        background: transparent;
        color: #ffffff;
        font-size: 35px;
        line-height: 1;
    }

    .mobile-menu-tabs {
        position: sticky;
        top: 76px;
        z-index: 3;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 88px;
        border-bottom: 1px solid var(--line);
        background: #eeeeec;
    }

    .mobile-menu-tabs button {
        position: relative;
        border: 0;
        background: #ffffff;
        color: var(--ink);
        font-size: 31px;
        font-weight: 600;
    }

    .mobile-menu-tabs button.active {
        color: var(--accent);
    }

    .mobile-menu-tabs button.active::after {
        position: absolute;
        right: 0;
        bottom: -1px;
        left: 0;
        height: 4px;
        content: "";
        background: var(--accent);
    }

    .mobile-menu-panel[hidden] {
        display: none;
    }

    .mobile-menu-panels {
        flex: 1 0 auto;
    }

    .mobile-menu-list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-menu-item {
        border-bottom: 1px solid var(--line);
    }

    .mobile-menu-row {
        display: flex;
        min-height: 84px;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 0 26px;
        color: var(--ink);
        font-size: 30px;
        font-weight: 500;
    }

    a.mobile-menu-row,
    .mobile-menu-row a {
        display: flex;
        flex: 1;
        min-width: 0;
        align-items: center;
        gap: 12px;
        color: var(--ink);
    }

    .mobile-menu-row i {
        width: 30px;
        color: var(--accent);
        font-size: 21px;
        text-align: center;
    }

    .mobile-menu-row button {
        display: grid;
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        place-items: center;
        border: 0;
        background: transparent;
        color: var(--ink);
        font-size: 40px;
        line-height: 1;
    }

    .mobile-menu-row button .close,
    .mobile-menu-item.is-open .mobile-menu-row button .open {
        display: none;
    }

    .mobile-menu-item.is-open .mobile-menu-row button .close {
        display: block;
    }

    .mobile-menu-badge {
        display: inline-flex;
        min-height: 40px;
        align-items: center;
        margin-left: 10px;
        padding: 0 19px;
        border-radius: 6px;
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-transform: uppercase;
    }

    .mobile-menu-badge.sale {
        background: #1f9d8d;
    }

    .mobile-menu-badge.hot {
        background: #ef2b6f;
    }

    .mobile-submenu {
        display: none;
        margin: 0;
        padding: 0 0 12px 42px;
        list-style: none;
        background: #fafafa;
    }

    .mobile-submenu[hidden] {
        display: none !important;
    }

    .mobile-menu-item.is-open .mobile-submenu {
        display: block;
    }

    .mobile-submenu a {
        display: block;
        padding: 11px 22px;
        color: var(--muted);
        font-size: 19px;
        font-weight: 500;
    }

    .mobile-lang-cur {
        display: flex;
        flex-wrap: wrap;
        gap: 48px;
        align-items: flex-start;
        padding: 40px 26px 70px;
    }

    .mobile-selector {
        position: relative;
    }

    .mobile-selector-toggle {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        border: 0;
        background: transparent;
        color: var(--ink);
        font-size: 30px;
        font-weight: 500;
    }

    .mobile-lang-cur .fa-flag-usa {
        color: var(--accent);
        font-size: 18px;
    }

    .mobile-selector-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        z-index: 5;
        min-width: 170px;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: #ffffff;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    }

    .mobile-selector-menu[hidden] {
        display: none;
    }

    .mobile-selector-menu button {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        border: 0;
        border-radius: 4px;
        background: transparent;
        color: var(--ink);
        padding: 9px 10px;
        font-size: 15px;
        font-weight: 600;
        text-align: left;
    }

    .mobile-selector-menu button:hover,
    .mobile-selector-menu button:focus {
        background: var(--soft);
        color: var(--accent);
    }

    .commerce-layout,
    .product-detail,
    .admin-detail-grid,
    .catalog-toolbar {
        grid-template-columns: 1fr;
    }

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

    .summary-panel {
        position: static;
    }

    .cart-line {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .cart-line img {
        width: 82px;
        height: 82px;
    }

    .quantity-form {
        grid-column: 1 / -1;
    }

    .checkout-grid,
    .admin-form-grid,
    .payment-options {
        grid-template-columns: 1fr;
    }

    .hero-grid,
    .split-promo-grid,
    .banner-trio-grid,
    .testimonial-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .main-hero {
        min-height: 330px;
        justify-content: flex-start;
        padding: 45px 38px;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .mini-promo {
        min-height: 180px;
        padding-left: 45%;
    }

    .deal-grid,
    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .deal-card {
        grid-template-columns: 1fr;
    }

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

    .service-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100% - 30px, var(--container));
    }

    .topbar {
        font-size: 13px;
        text-align: center;
    }

    .topbar p {
        white-space: normal;
    }

    .brand {
        flex-basis: 170px;
    }

    .hero-section {
        padding-top: 30px;
    }

    .main-hero {
        min-height: 330px;
        padding: 45px 34px;
        background-position: 32% center;
    }

    .hero-copy {
        max-width: 315px;
    }

    .hero-copy span {
        font-size: 12px;
    }

    .hero-copy h1 {
        margin: 20px 0 14px;
        font-size: 29px;
        line-height: 1.2;
    }

    .hero-copy p {
        margin-bottom: 28px;
    }

    .mini-promo {
        min-height: 180px;
        padding: 24px 22px 24px 52%;
    }

    .mini-promo:nth-child(2) {
        padding-right: 45%;
        padding-left: 24px;
    }

    .mini-promo h2 {
        max-width: 165px;
    }

    .mini-promo h2 {
        font-size: 24px;
    }

    .brand-grid,
    .deal-grid,
    .product-grid,
    .category-grid,
    .article-grid,
    .gallery-strip,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-grid {
        overflow-x: auto;
        grid-auto-flow: column;
        grid-auto-columns: minmax(145px, 1fr);
        grid-template-columns: none;
        padding-bottom: 5px;
    }

    .section-block,
    .brand-strip,
    .split-promos,
    .banner-trio,
    .wide-promo,
    .gallery-section {
        padding-bottom: 45px;
    }

    .section-heading {
        display: block;
        margin-bottom: 22px;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .slider-controls {
        display: none;
    }

    .with-tabs {
        padding-bottom: 62px;
    }

    .product-tabs {
        position: absolute;
        bottom: 14px;
        left: 0;
        gap: 20px;
        overflow-x: auto;
        width: 100%;
    }

    .product-tabs button {
        white-space: nowrap;
    }

    .product-tabs button.active::after {
        bottom: -15px;
    }

    .deal-card {
        padding: 20px;
    }

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

    .deal-image {
        padding: 28px 10px 10px;
    }

    .split-promos article,
    .split-promos article:first-child,
    .banner-trio article {
        min-height: 170px;
        padding: 28px 24px 24px 46%;
    }

    .split-promos h2,
    .banner-trio h2,
    .wide-promo h2 {
        font-size: 25px;
    }

    .wide-promo-card {
        justify-content: flex-start;
        min-height: 180px;
        padding: 30px 24px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 520px) {
    :root {
        --mobile-header-height: 68px;
    }

    .mobile-trigger {
        font-size: 22px;
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .main-header-inner {
        gap: 10px;
    }

    .mobile-actions {
        gap: 8px;
    }

    .mobile-actions a {
        font-size: 23px;
    }

    .mobile-actions span {
        top: -8px;
        right: -8px;
        min-width: 17px;
        height: 17px;
    }

    .brand {
        flex-basis: 112px;
    }

    .brand img {
        width: 112px;
    }

    .mobile-menu-close {
        min-height: 64px;
        padding: 0 18px;
    }

    .mobile-menu-close strong {
        font-size: 26px;
    }

    .mobile-menu-tabs {
        top: 64px;
        min-height: 72px;
    }

    .mobile-menu-tabs button {
        font-size: 25px;
    }

    .mobile-menu-row {
        min-height: 66px;
        padding: 0 18px;
        font-size: 22px;
    }

    .mobile-menu-row button {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 33px;
    }

    .mobile-menu-badge {
        min-height: 32px;
        padding: 0 14px;
        font-size: 13px;
    }

    .mobile-submenu {
        padding-left: 28px;
    }

    .mobile-submenu a {
        font-size: 16px;
    }

    .mobile-lang-cur {
        gap: 30px;
        padding: 28px 18px 56px;
    }

    .mobile-selector-toggle {
        font-size: 23px;
    }

    .mobile-selector-menu button {
        font-size: 14px;
    }

    .hero-grid {
        gap: 15px;
    }

    .main-hero {
        min-height: 330px;
        padding: 45px 20px;
        background-position: 26% center;
    }

    .hero-copy {
        width: 62%;
        max-width: none;
        margin-left: 33%;
    }

    .hero-copy h1 {
        font-size: 23px;
        line-height: 1.2;
    }

    .hero-copy span {
        max-width: 190px;
        padding-right: 12px;
        padding-left: 12px;
        white-space: normal;
    }

    .hero-copy p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mini-promo {
        padding-right: 16px;
        padding-left: 53%;
    }

    .mini-promo:nth-child(2) {
        padding-right: 43%;
        padding-left: 18px;
    }

    .mini-promo h2 {
        max-width: 145px;
        font-size: 24px;
    }

    .brand-strip {
        padding-bottom: 40px;
    }

    .deal-grid,
    .product-grid,
    .category-grid,
    .article-grid,
    .gallery-strip,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        gap: 16px;
    }

    .product-card {
        max-width: 360px;
        margin: 0 auto;
        width: 100%;
    }

    .page-heading h1,
    .product-detail-info h1,
    .success-state h1 {
        font-size: 26px;
    }

    .cart-line {
        grid-template-columns: 1fr;
    }

    .detail-cart-form {
        display: grid;
    }

    .detail-cart-form input {
        width: 100%;
    }

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

    .category-card img {
        width: 140px;
    }

    .split-promos article,
    .split-promos article:first-child,
    .banner-trio article {
        padding-left: 42%;
    }

    .service-item {
        padding: 16px 20px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}
