/* ==========================================
   HOUSE OF LEATHER BRAND
========================================== */

:root {

    --brand-black: #000000;

    --brand-orange: #FE8700;

    --brand-red: #CB4E4E;

    --brand-grey: #F6F6F8;

    --brand-white: #FFFFFF;

    --text-dark: #171717;

    --text-muted: #666666;

    --border: #E5E5E5;

    --container: 1400px;

    --black: var(--brand-black);
    --orange: var(--brand-orange);
    --red: var(--brand-red);
    --grey: var(--brand-grey);
    --white: var(--brand-white);
    --muted: var(--text-muted);
    --green: #358133;

}


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

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


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        var(--brand-white);

    color:
        var(--text-dark);
}


img {
    display: block;

    max-width: 100%;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input {
    font: inherit;
}


/* ==========================================
   ANNOUNCEMENT BAR
========================================== */

.announcement-bar {

    padding:
        9px 16px;

    background:
        var(--brand-black);

    color:
        var(--brand-white);

    text-align: center;

    font-size: 12px;

    font-weight: 700;

    letter-spacing:
        .3px;

}


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

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        var(--brand-white);

    border-bottom:
        1px solid var(--border);

}


.header-container {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin: auto;

    min-height: 78px;

    display: grid;

    grid-template-columns:
        210px
        minmax(250px, 1fr)
        auto;

    gap: 28px;

    align-items: center;

}


.site-logo {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.logo-main {

    font-size: 20px;

    font-weight: 900;

}


.logo-sub {

    margin-top: 5px;

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;

}


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

.header-search {

    display: flex;

    height: 44px;

    border:
        2px solid var(--brand-black);

    border-radius: 4px;

    overflow: hidden;

}


.header-search input {

    flex: 1;

    min-width: 0;

    border: 0;

    outline: 0;

    padding:
        0 14px;

}


.header-search button {

    border: 0;

    padding:
        0 24px;

    background:
        var(--brand-orange);

    color:
        var(--brand-black);

    font-weight: 800;

    cursor: pointer;

    transition:
        background .2s ease;

}


.header-search button:hover {

    background:
        var(--brand-red);

    color:
        var(--brand-white);

}


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

.header-actions {

    display: flex;

    align-items: center;

    gap: 20px;

    font-size: 13px;

    font-weight: 700;

}


.cart-count {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 20px;

    height: 20px;

    margin-left: 3px;

    border-radius: 50%;

    background:
        var(--brand-red);

    color:
        var(--brand-white);

    font-size: 11px;

}


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

.mobile-menu-button {

    display: none;

    border: 0;

    background: transparent;

    font-size: 24px;

    cursor: pointer;

}


/* ==========================================
   NAVIGATION
========================================== */

.main-navigation {

    border-top:
        1px solid var(--border);

}


.nav-container {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 28px;

    min-height: 48px;

}


.nav-container a {

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        color .2s ease;

}


.nav-container a:hover {

    color:
        var(--brand-orange);

}


.nav-container .sale-link {

    color:
        var(--brand-red);

}


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

.hero {

    background:
        var(--brand-grey);

}


.hero-inner {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin: auto;

    min-height: 470px;

    display: flex;

    align-items: center;

    padding:
        70px 60px;

    background:
        linear-gradient(
            112deg,
            var(--brand-orange) 0%,
            var(--brand-orange) 58%,
            var(--brand-red) 58%,
            var(--brand-red) 73%,
            var(--brand-black) 73%
        );

}


.hero-copy {

    max-width: 620px;

    color:
        var(--brand-black);

}


.hero-kicker {

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 1px;

}


.hero h1 {

    margin:
        12px 0 18px;

    max-width: 600px;

    font-size:
        clamp(
            42px,
            6vw,
            78px
        );

    line-height: .95;

    font-weight: 900;

}


.hero p {

    max-width: 520px;

    margin:
        0 0 20px;

    font-size: 18px;

    line-height: 1.5;

}


/* ==========================================
   BUTTONS
========================================== */

.btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    min-height: 46px;

    padding:
        0 28px;

    border-radius: 3px;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: .3px;

    transition:
        transform .2s ease,
        background .2s ease;

}


.btn:hover {

    transform:
        translateY(-2px);

}


.btn-dark {

    background:
        var(--brand-black);

    color:
        var(--brand-white);

}


.btn-light {

    background:
        var(--brand-white);

    color:
        var(--brand-black);

}


/* ==========================================
   SECTIONS
========================================== */

.section {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin:
        70px auto;

}


.section-header {

    display: flex;

    justify-content:
        space-between;

    align-items: center;

    gap: 20px;

    margin-bottom: 26px;

}


.section-header h2 {

    margin: 0;

    font-size:
        clamp(
            24px,
            3vw,
            32px
        );

    font-weight: 900;

}


.section-link {

    font-size: 13px;

    font-weight: 800;

    border-bottom:
        2px solid var(--brand-orange);

}


/* ==========================================
   CATEGORY GRID
========================================== */

.category-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

}


.category-card {

    position: relative;

    overflow: hidden;

    background:
        var(--brand-grey);

}


.category-image {

    aspect-ratio:
        4 / 3;

    overflow: hidden;

}


.category-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .35s ease;

}


.category-card:hover img {

    transform:
        scale(1.04);

}


.category-title {

    padding:
        14px 15px;

    background:
        var(--brand-black);

    color:
        var(--brand-white);

    font-weight: 800;

}


/* ==========================================
   OFFERS
========================================== */

.offers-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;

}


.offer-card {

    min-height: 270px;

    padding:
        42px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.offer-orange {

    background:
        var(--brand-orange);

    color:
        var(--brand-black);

}


.offer-red {

    background:
        var(--brand-red);

    color:
        var(--brand-white);

}


.offer-label {

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;

}


.offer-card h3 {

    margin:
        10px 0;

    font-size:
        clamp(
            28px,
            4vw,
            44px
        );

    line-height: 1;

}


.offer-card p {

    margin:
        0 0 10px;

}


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

.product-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;

}


.product-card {

    min-width: 0;

}


.product-image {

    position: relative;

    aspect-ratio:
        1 / 1;

    overflow: hidden;

    background:
        var(--brand-grey);

}


.product-image img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition:
        transform .3s ease;

}


.product-card:hover img {

    transform:
        scale(1.035);

}


.product-content {

    padding:
        13px 2px;

}


.product-title {

    margin: 0;

    min-height: 40px;

    font-size: 14px;

    line-height: 1.4;

    font-weight: 600;

}


.product-price {

    margin-top: 8px;

    font-size: 18px;

    font-weight: 900;

}


.stock-status {

    display: inline-block;

    margin-top: 5px;

    font-size: 11px;

    font-weight: 700;

    color: #467D23;

}


/* ==========================================
   BENEFITS
========================================== */

.shop-benefits {

    padding:
        42px 20px;

    background:
        var(--brand-grey);

}


.benefits-container {

    width:
        min(
            100%,
            var(--container)
        );

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;

}


.benefit-item {

    text-align: center;

}


.benefit-item strong {

    display: block;

    margin-bottom: 6px;

}


.benefit-item span {

    color:
        var(--text-muted);

    font-size: 12px;

}


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

.site-footer {

    background:
        var(--brand-black);

    color:
        var(--brand-white);

}


.footer-container {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin: auto;

    padding:
        55px 0;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 45px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-column h3,
.footer-column h4 {

    margin:
        0 0 15px;

}


.footer-column p,
.footer-column a {

    color: #D4D4D4;

    font-size: 13px;

    line-height: 1.8;

}


.footer-column a:hover {

    color:
        var(--brand-orange);

}


.footer-bottom {

    padding: 20px;

    border-top:
        1px solid #292929;

    text-align: center;

    font-size: 12px;

    color: #AFAFAF;

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1024px) {

    .header-container {

        grid-template-columns:
            180px 1fr;

    }


    .header-actions {

        display: none;

    }


    .nav-container {

        justify-content:
            flex-start;

        overflow-x: auto;

    }


    .category-grid,
    .product-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

    }


    .benefits-container {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-container {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


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

@media (max-width: 700px) {

    .announcement-bar {

        font-size: 10px;

    }


    .site-header {

        position: relative;

    }


    .header-container {

        width:
            calc(100% - 28px);

        min-height: auto;

        padding:
            12px 0;

        grid-template-columns:
            42px 1fr 42px;

        gap: 8px;

    }


    .mobile-menu-button {

        display: block;

    }


    .site-logo {

        text-align: center;

        align-items: center;

    }


    .logo-main {

        font-size: 15px;

    }


    .logo-sub {

        font-size: 8px;

    }


    .header-search {

        grid-column:
            1 / -1;

        width: 100%;

    }


    .header-search button {

        padding:
            0 16px;

    }


    .main-navigation {

        display: none;

    }


    .main-navigation.is-open {

        display: block;

    }


    .nav-container {

        width: 100%;

        padding:
            12px 18px;

        flex-direction: column;

        align-items:
            flex-start;

        gap: 0;

    }


    .nav-container a {

        width: 100%;

        padding:
            12px 0;

        border-bottom:
            1px solid var(--border);

    }


    .hero-inner {

        width: 100%;

        min-height: 400px;

        padding:
            50px 20px;

        background:
            linear-gradient(
                165deg,
                var(--brand-orange) 0%,
                var(--brand-orange) 72%,
                var(--brand-red) 72%,
                var(--brand-red) 87%,
                var(--brand-black) 87%
            );

    }


    .hero h1 {

        font-size:
            clamp(
                40px,
                13vw,
                58px
            );

    }


    .hero p {

        font-size: 15px;

    }


    .section {

        width:
            calc(100% - 28px);

        margin:
            45px auto;

    }


    .section-header {

        margin-bottom: 18px;

    }


    .category-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;

    }


    .category-title {

        padding:
            11px 10px;

        font-size: 13px;

    }


    .offers-grid {

        grid-template-columns:
            1fr;

    }


    .offer-card {

        min-height: 230px;

        padding:
            30px 22px;

    }


    .product-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            18px 10px;

    }


    .product-title {

        min-height: 36px;

        font-size: 12px;

    }


    .product-price {

        font-size: 15px;

    }


    .benefits-container {

        grid-template-columns:
            repeat(2, 1fr);

        gap:
            28px 14px;

    }


    .footer-container {

        width:
            calc(100% - 36px);

        grid-template-columns:
            1fr;

        gap: 28px;

    }

}


/* ==========================================
   VERY SMALL DEVICES
========================================== */

@media (max-width: 360px) {

    .hero h1 {

        font-size: 38px;

    }


    .category-grid,
    .product-grid {

        gap: 8px;

    }


    .product-title {

        font-size: 11px;

    }

}


/* ==========================================================
   CHECKOUT
========================================================== */

.checkout-page {
    width: min(calc(100% - 32px), 1280px);
    margin: 30px auto 70px;
}

.checkout-heading {
    margin-bottom: 22px;
}

.checkout-heading h1 {
    margin: 0 0 5px;

    font-size: 26px;
    font-weight: 600;
}

.checkout-heading p {
    margin: 0;

    color: #565959;

    font-size: 13px;
}

.checkout-layout,
.checkout-review-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        390px;

    gap: 24px;

    align-items: start;
}

.checkout-form-card,
.checkout-summary {
    background: #fff;

    border:
        1px solid rgba(203, 78, 78, .30);

    border-radius: 6px;
}

.checkout-form-card {
    padding: 26px;
}

.checkout-form-card h2,
.checkout-summary h2 {
    margin: 0 0 18px;

    font-size: 18px;
    font-weight: 600;
}

.checkout-form-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}

.checkout-field {
    margin-bottom: 17px;
}

.checkout-field label {
    display: block;

    margin-bottom: 6px;

    color: #0f1111;

    font-size: 12px;
    font-weight: 600;
}

.checkout-field label small {
    color: #777;

    font-size: 10px;
    font-weight: 400;
}

.checkout-field input,
.checkout-field textarea {
    width: 100%;

    min-height: 43px;

    padding: 10px 12px;

    border: 1px solid #a6a6a6;
    border-radius: 4px;

    background: #fff;

    font-size: 13px;
}

.checkout-field textarea {
    resize: vertical;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
    outline:
        2px solid rgba(254, 135, 0, .18);

    border-color:
        var(--orange);
}

.checkout-error {
    display: block;

    margin-top: 5px;

    color: #b12704;

    font-size: 11px;
}

.checkout-section-divider {
    height: 1px;

    margin: 8px 0 22px;

    background: #eee;
}


/* FULFILMENT */

.fulfilment-options {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin-bottom: 18px;
}

.fulfilment-option {
    min-height: 54px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px;

    border: 1px solid #ccc;
    border-radius: 5px;

    cursor: pointer;
}

.fulfilment-option:has(
    input:checked
) {
    border-color:
        var(--orange);

    background:
        rgba(254, 135, 0, .06);
}

.fulfilment-option span {
    font-size: 13px;
    font-weight: 600;
}


/* ORDER SUMMARY */

.checkout-summary {
    position: sticky;

    top: 20px;

    padding: 22px;
}

.checkout-products {
    margin-bottom: 16px;
}

.checkout-product {
    display: grid;

    grid-template-columns:
        58px
        minmax(0, 1fr)
        auto;

    gap: 10px;

    align-items: center;

    padding: 11px 0;

    border-bottom:
        1px solid #eee;
}

.checkout-product-image {
    position: relative;

    width: 58px;
    height: 58px;

    border: 1px solid #eee;

    border-radius: 4px;

    background: #fff;
}

.checkout-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.checkout-product-image span {
    position: absolute;

    top: -7px;
    right: -7px;

    min-width: 20px;
    height: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0 5px;

    border-radius: 10px;

    background: var(--red);
    color: #fff;

    font-size: 10px;
}

.checkout-product-info strong {
    display: block;

    font-size: 11px;
    line-height: 1.35;

    font-weight: 500;
}

.checkout-product-info small {
    display: block;

    margin-top: 3px;

    color: #666;

    font-size: 9px;
}

.checkout-product-price {
    white-space: nowrap;

    font-size: 11px;
    font-weight: 600;
}

.checkout-total-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 17px 0;

    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.checkout-total-row strong {
    font-size: 18px;
}

.checkout-delivery-note,
.payment-coming-note {
    margin: 14px 0;

    color: #565959;

    font-size: 10px;
    line-height: 1.5;
}

.checkout-continue-button,
.checkout-payment-button {
    width: 100%;

    min-height: 45px;

    border: 0;
    border-radius: 4px;

    background: var(--orange);
    color: #111;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}

.checkout-payment-button:disabled {
    background: #ddd;
    color: #777;

    cursor: not-allowed;
}

.checkout-back-link {
    display: block;

    margin-top: 14px;

    text-align: center;

    color: #444;

    font-size: 11px;
}


/* REVIEW */

.review-section {
    padding: 5px 0 22px;

    margin-bottom: 22px;

    border-bottom: 1px solid #eee;
}

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

.review-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 10px;
}

.review-heading h2 {
    margin: 0;
}

.review-heading a {
    color: var(--orange);

    font-size: 11px;
    font-weight: 600;
}

.review-section p {
    margin: 5px 0;

    color: #444;

    font-size: 12px;
}

.review-product {
    display: flex;

    justify-content: space-between;

    gap: 14px;

    padding: 10px 0;

    border-bottom: 1px solid #eee;

    font-size: 11px;
}

.review-product span {
    min-width: 0;
}


/* TABLET */

@media (max-width: 900px) {

    .checkout-layout,
    .checkout-review-layout {
        grid-template-columns:
            1fr;
    }

    .checkout-summary {
        position: static;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .checkout-page {
        width:
            calc(100% - 16px);

        margin:
            16px auto 45px;
    }

    .checkout-form-card,
    .checkout-summary {
        padding: 16px;
    }

    .checkout-form-grid {
        grid-template-columns:
            1fr;

        gap: 0;
    }

    .fulfilment-options {
        grid-template-columns:
            1fr;
    }

    .checkout-product {
        grid-template-columns:
            50px
            minmax(0, 1fr);

        align-items: start;
    }

    .checkout-product-image {
        width: 50px;
        height: 50px;
    }

    .checkout-product-price {
        grid-column: 2;
    }
}
.checkout-button {
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}

/* ==========================================================
   PRODUCT DETAIL PAGE
========================================================== */

.product-detail-page {
    width: min(calc(100% - 32px), 1400px);
    margin: 28px auto 60px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, .95fr);
    gap: 40px;
    align-items: start;

    padding: 28px;

    background: #fff;
    border: 1px solid rgba(203, 78, 78, .30);
    border-radius: 6px;
}

.product-gallery {
    min-width: 0;
}

.product-main-image {
    width: 100%;
    max-height: 580px;
    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    overflow: hidden;
}

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

.product-thumbnails {
    display: flex;
    gap: 10px;

    margin-top: 14px;

    overflow-x: auto;
}

.product-thumbnail {
    flex: 0 0 72px;

    width: 72px;
    height: 72px;

    padding: 4px;

    border: 1px solid #ddd;
    border-radius: 4px;

    background: #fff;

    cursor: pointer;
}

.product-thumbnail:hover {
    border-color: var(--orange);
}

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


/* PRODUCT INFO */

.product-detail-info {
    padding-top: 8px;
}

.product-detail-info h1 {
    margin: 0 0 8px;

    color: #0f1111;

    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
    font-weight: 500;
}

.product-sku {
    color: #565959;

    font-size: 11px;
}

.product-detail-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin: 20px 0;

    color: #0f1111;

    font-size: 25px;
    font-weight: 600;
}

.product-sale-price {
    color: #b12704;
}

.product-regular-price {
    color: #777;

    font-size: 14px;
    font-weight: 400;

    text-decoration: line-through;
}

.product-short-description {
    margin-bottom: 22px;

    color: #333;

    font-size: 13px;
    line-height: 1.65;
}


/* OPTIONS */

.variation-selector {
    margin-top: 20px;
    padding-top: 20px;

    border-top: 1px solid #e5e5e5;
}

.variation-selector h3 {
    margin: 0 0 16px;

    font-size: 16px;
    font-weight: 600;
}

.variation-field {
    margin-bottom: 16px;
}

.variation-field label {
    display: block;

    margin-bottom: 7px;

    color: #0f1111;

    font-size: 12px;
    font-weight: 600;
}

.variation-select {
    width: 100%;
    min-height: 44px;

    padding: 0 12px;

    border: 1px solid #aaa;
    border-radius: 4px;

    background: #fff;
    color: #111;

    font-size: 13px;
}

.variation-select:focus {
    outline: 2px solid rgba(254, 135, 0, .22);
    border-color: var(--orange);
}

.variation-price {
    min-height: 30px;

    margin: 8px 0 12px;

    color: #b12704;

    font-size: 21px;
    font-weight: 600;
}

.product-detail-cart-button {
    width: 100%;
    min-height: 46px;

    border: 1px solid var(--orange);
    border-radius: 4px;

    background: var(--orange);
    color: #111;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}

.product-detail-cart-button:hover:not(:disabled) {
    filter: brightness(.96);
}

.product-detail-cart-button:disabled {
    border-color: #ddd;

    background: #e7e7e7;
    color: #777;

    cursor: not-allowed;
}


/* BENEFITS */

.product-detail-benefits {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

    margin-top: 20px;
    padding-top: 18px;

    border-top: 1px solid #eee;
}

.product-detail-benefits div {
    padding: 10px 6px;

    background: var(--grey);
    border-radius: 4px;

    font-size: 10px;
    text-align: center;
}


/* DESCRIPTION */

.product-description-section {
    margin-top: 20px;

    padding: 24px 28px;

    background: #fff;

    border: 1px solid rgba(203, 78, 78, .25);
    border-radius: 6px;
}

.product-description-section h2 {
    margin: 0 0 16px;

    font-size: 20px;
    font-weight: 600;
}

.product-description {
    color: #333;

    font-size: 13px;
    line-height: 1.7;
}


/* TABLET */

@media (max-width: 900px) {

    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-main-image {
        max-height: 500px;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .product-detail-page {
        width: calc(100% - 16px);
        margin: 12px auto 40px;
    }

    .product-detail-layout {
        padding: 14px;
    }

    .product-detail-info h1 {
        font-size: 21px;
    }

    .product-detail-price {
        margin: 15px 0;
        font-size: 22px;
    }

    .product-thumbnail {
        flex-basis: 58px;

        width: 58px;
        height: 58px;
    }

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

    .product-description-section {
        padding: 18px 15px;
    }
}
/* =========================
   SHOPPING CART
========================= */

.cart-page {
    width: min(calc(100% - 32px), 1400px);
    margin: 28px auto 60px;
}

.cart-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}

.cart-page-header h1 {
    margin: 0;

    font-size: 25px;
    font-weight: 600;
}

.cart-page-header span {
    color: #565959;
    font-size: 13px;
}

.cart-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        320px;

    gap: 22px;

    align-items: start;
}

.cart-items {
    background: #fff;

    border:
        1px solid rgba(203, 78, 78, .30);

    border-radius: 6px;
}

.cart-item {
    display: grid;

    grid-template-columns:
        150px
        minmax(0, 1fr)
        auto;

    gap: 18px;

    padding: 18px;

    border-bottom: 1px solid #eee;
}

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

.cart-item-image {
    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
}

.cart-item-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.cart-item-info h2 {
    margin: 3px 0 10px;

    font-size: 15px;
    line-height: 1.4;

    font-weight: 500;
}

.cart-item-price {
    margin-bottom: 18px;

    font-size: 17px;
    font-weight: 600;
}

.cart-item-controls {
    display: flex;

    align-items: center;

    gap: 18px;
}

.quantity-control {
    display: inline-flex;

    align-items: center;

    border: 1px solid #bbb;

    border-radius: 20px;

    overflow: hidden;
}

.cart-quantity-button {
    width: 34px;
    height: 32px;

    border: 0;

    background: #fff;

    font-size: 18px;

    cursor: pointer;
}

.cart-quantity-button:hover {
    background: #f3f3f3;
}

.cart-item-quantity {
    min-width: 30px;

    text-align: center;

    font-size: 13px;
    font-weight: 600;
}

.cart-remove-button {
    border: 0;

    background: transparent;

    color: #CB4E4E;

    font-size: 12px;

    cursor: pointer;
}

.cart-item-total {
    min-width: 105px;

    text-align: right;
}

.cart-item-total small {
    display: block;

    margin-bottom: 4px;

    color: #666;

    font-size: 10px;
}

.cart-item-total strong {
    font-size: 16px;
}


/* SUMMARY */

.cart-summary {
    position: sticky;

    top: 20px;

    padding: 20px;

    background: #fff;

    border:
        1px solid rgba(203, 78, 78, .35);

    border-radius: 6px;
}

.cart-summary h2 {
    margin: 0 0 20px;

    font-size: 18px;
    font-weight: 600;
}

.cart-summary-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 15px 0;

    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cart-subtotal {
    font-size: 18px;
}

.cart-summary-note {
    margin: 15px 0;

    color: #565959;

    font-size: 11px;
    line-height: 1.5;
}

.checkout-button {
    width: 100%;

    min-height: 44px;

    border: 0;
    border-radius: 4px;

    background: var(--orange);

    color: #111;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}

.continue-shopping {
    display: block;

    margin-top: 14px;

    color: #333;

    font-size: 12px;

    text-align: center;
}


/* EMPTY CART */

.empty-cart {
    padding: 80px 20px;

    background: #fff;

    border:
        1px solid rgba(203, 78, 78, .30);

    border-radius: 6px;

    text-align: center;
}

.empty-cart h2 {
    margin-top: 0;

    font-size: 22px;
}


/* MOBILE */

@media (max-width: 800px) {

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

    .cart-summary {
        position: static;
    }

}


@media (max-width: 600px) {

    .cart-page {
        width: calc(100% - 20px);

        margin-top: 18px;
    }

    .cart-item {
        grid-template-columns:
            90px
            minmax(0, 1fr);

        gap: 12px;

        padding: 12px;
    }

    .cart-item-image {
        width: 90px;
        height: 90px;
    }

    .cart-item-total {
        grid-column: 2;

        min-width: 0;

        text-align: left;
    }

    .cart-item-controls {
        flex-wrap: wrap;

        gap: 10px;
    }

}


/* ==========================================================
   RESTORED MARKETPLACE HOMEPAGE
========================================================== */

body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Amazon Ember", Arial, Helvetica, sans-serif;
}

body {
    background: var(--brand-grey);
    color: #0f1111;
    font-size: 14px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* HEADER */

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.header-container {
    width: min(calc(100% - 30px), 1400px);
    min-height: 68px;
    margin: auto;
    display: grid;
    grid-template-columns: 205px minmax(360px, 1fr) auto;
    align-items: center;
    gap: 22px;
}

.logo-main {
    font-size: 18px;
    letter-spacing: .4px;
    font-weight: 700;
}

.logo-sub {
    margin-top: 3px;
    font-size: 8px;
    letter-spacing: 2px;
    font-weight: 600;
}

.header-search {
    height: 42px;
    display: flex;
    border: 1px solid #b8b8b8;
    border-radius: 4px;
    overflow: hidden;
}

.header-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    padding: 0 14px;
    font-size: 13px;
    color: #0f1111;
}

.header-search button {
    min-width: 100px;
    border: 0;
    padding: 0 20px;
    background: var(--brand-orange);
    color: var(--brand-black);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 19px;
    font-size: 13px;
    font-weight: 500;
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: 3px;
    border-radius: 50%;
    background: var(--brand-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.main-navigation {
    border-top: 1px solid var(--border);
    background: #fff;
}

.nav-container {
    width: min(calc(100% - 30px), 1400px);
    min-height: 42px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.nav-container a {
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
}

.nav-container a:hover {
    color: var(--brand-orange);
}

.nav-container .sale-link {
    color: var(--brand-red);
}

/* MARKETPLACE TOP */

.marketplace-shell {
    width: min(calc(100% - 32px), 1400px);
    margin: 16px auto 60px;
}

.marketplace-top {
    display: grid;
    grid-template-columns: 205px minmax(0, 1fr) 215px;
    gap: 12px;
    align-items: stretch;
}

.category-sidebar {
    background: #fff;
    border-radius: 6px;
    padding: 12px 0;
    box-shadow: 0 1px 5px rgba(0,0,0,.08);
    overflow: hidden;
}

.category-sidebar h3 {
    margin: 0 15px 8px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 700;
}

.category-sidebar-list {
    display: flex;
    flex-direction: column;
}

.category-sidebar-list a {
    padding: 7px 15px;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 400;
    transition: background .18s ease, color .18s ease, padding-left .18s ease;
}

.category-sidebar-list a:hover {
    background: var(--brand-grey);
    color: var(--brand-orange);
    padding-left: 19px;
}

/* HERO SLIDER */

.hero-slider {
    position: relative;
    min-height: 365px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--brand-orange);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 42px 48px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
    background: linear-gradient(
        115deg,
        var(--brand-orange) 0%,
        var(--brand-orange) 65%,
        var(--brand-black) 65%
    );
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-two {
    background: linear-gradient(
        115deg,
        var(--brand-red) 0%,
        var(--brand-red) 65%,
        var(--brand-black) 65%
    );
    color: #fff;
}

.hero-slide-three {
    background: linear-gradient(
        115deg,
        var(--brand-black) 0%,
        var(--brand-black) 65%,
        var(--brand-orange) 65%
    );
    color: #fff;
}

.hero-slide-content {
    width: 62%;
}

.hero-small {
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.hero-slide h1 {
    max-width: 570px;
    margin: 14px 0 12px;
    font-size: clamp(38px, 4vw, 56px);
    line-height: .98;
    letter-spacing: -.7px;
    font-weight: 700;
}

.hero-slide p {
    max-width: 480px;
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
}

.market-button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 4px;
    background: var(--brand-black);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.hero-slide-two .market-button,
.hero-slide-three .market-button {
    background: #fff;
    color: #111;
}

/* image slider support */

.hero-image-slide {
    padding: 0;
    background: #111;
}

.hero-image-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-banner-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.94);
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
    font-size: 22px;
    cursor: pointer;
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-dots {
    position: absolute;
    z-index: 10;
    bottom: 12px;
    left: 50%;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
}

.slider-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.65);
    cursor: pointer;
}

.slider-dot.active {
    width: 20px;
    border-radius: 8px;
    background: #fff;
}

/* RIGHT PROMOS */

.marketplace-promos {
    display: grid;
    grid-template-rows: 130px 1fr;
    gap: 12px;
}

.side-promo {
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 5px rgba(0,0,0,.08);
}

.support-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 15px;
}

.side-promo-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-orange);
    font-size: 16px;
}

.support-card strong,
.support-card span {
    display: block;
}

.support-card strong { font-size: 13px; }

.support-card span {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 10px;
}

.sale-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 17px;
    background: var(--brand-red);
    color: #fff;
}

.promo-label {
    width: max-content;
    padding: 5px 8px;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.sale-card h3 {
    margin: 12px 0 6px;
    font-size: 22px;
    font-weight: 700;
}

.sale-card p {
    margin: 0 0 15px;
    font-size: 12px;
    line-height: 1.5;
}

.sale-card strong { font-size: 11px; }

.mobile-promos {
    display: none;
}

/* MARKET SECTIONS */

.market-section {
    margin-top: 20px;
    padding: 20px 18px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 5px rgba(0,0,0,.06);
}

.market-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.market-section-heading h2 {
    margin: 0;
    color: #0f1111;
    font-size: 20px;
    font-weight: 700;
}

.market-section-heading a {
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 700;
}

.hot-heading {
    margin: -20px -18px 18px;
    padding: 14px 18px;
    border-radius: 6px 6px 0 0;
    background: var(--brand-red);
    color: #fff;
}

.hot-heading h2,
.hot-heading a {
    color: #fff;
}

/* CATEGORY SHORTCUTS */

.category-shortcuts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 24px 20px;
    width: 100%;
    overflow: visible;
}

.shortcut-card {
    flex: 0 1 135px;
    max-width: 135px;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.shortcut-image {
    width: 125px;
    height: 125px;
    max-width: 125px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid #ededed;
    border-radius: 50%;
    background: #f5f5f5;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.shortcut-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shortcut-card:hover .shortcut-image {
    border-color: var(--brand-orange);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.shortcut-card span {
    display: block;
    width: 100%;
    margin-top: 9px;
    color: #0f1111;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 500;
    text-align: center;
    overflow-wrap: anywhere;
}

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-orange);
    color: #111;
    font-size: 30px;
    font-weight: 700;
}

/* PRODUCT GRID */

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

.market-product {
    position: relative;
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(203, 78, 78, .38);
    border-radius: 5px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.market-product:hover {
    border-color: var(--brand-red);
    box-shadow: 0 3px 10px rgba(203, 78, 78, .12);
    transform: translateY(-2px);
}

.market-product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fff;
}

.market-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .25s ease;
}

.market-product:hover .market-product-image img {
    transform: scale(1.035);
}

.sale-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 5px 7px;
    border-radius: 3px;
    background: var(--brand-red);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
}

.market-product-body {
    padding: 10px;
}

.market-product-body h3 {
    min-height: 36px;
    margin: 0;
    color: #0f1111;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.current-price {
    margin-top: 8px;
    color: #0f1111;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
}

.price-row .current-price {
    margin-top: 0;
    color: #b12704;
}

.old-price {
    color: #565959;
    font-size: 11px;
    font-weight: 400;
    text-decoration: line-through;
}

/* PRODUCT ACTIONS */

.product-actions {
    margin-top: 12px;
}

.product-button {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.product-cart-button {
    border: 1px solid var(--brand-black);
    background: var(--brand-black);
    color: #fff;
}

.product-cart-button:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #111;
}

.product-cart-button:disabled {
    opacity: .7;
    cursor: wait;
}

.product-options-button {
    border: 1px solid #888;
    background: #fff;
    color: #0f1111;
}

.product-options-button:hover {
    border-color: var(--brand-orange);
    color: #c86e00;
}

.in-stock,
.stock-status {
    display: none !important;
}

/* TABLET */

@media (max-width: 1100px) {

    .header-container {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .header-actions {
        display: none;
    }

    .marketplace-top {
        grid-template-columns: 185px minmax(0, 1fr);
    }

    .marketplace-promos {
        display: none;
    }

    .mobile-promos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 12px;
    }

    .mobile-promos a {
        padding: 16px;
        border-radius: 6px;
        background: #fff;
        box-shadow: 0 1px 5px rgba(0,0,0,.06);
    }

    .mobile-promos strong,
    .mobile-promos span {
        display: block;
    }

    .mobile-promos span {
        margin-top: 4px;
        color: var(--text-muted);
        font-size: 10px;
    }

    .hero-slider {
        min-height: 350px;
    }

    .hero-slide {
        padding: 40px;
    }

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

    .shortcut-card {
        flex: 0 1 calc((100% - 48px) / 4);
        max-width: 160px;
        min-width: 120px;
    }

    .shortcut-image {
        max-width: 135px;
    }

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

/* MOBILE */

@media (max-width: 720px) {

    body {
        background: #f2f2f2;
    }

    .site-header {
        position: relative;
    }

    .header-container {
        width: calc(100% - 24px);
        min-height: auto;
        padding: 11px 0;
        grid-template-columns: 38px 1fr 38px;
        gap: 6px;
    }

    .mobile-menu-button {
        display: block;
    }

    .site-logo {
        align-items: center;
        text-align: center;
    }

    .logo-main {
        font-size: 14px;
    }

    .logo-sub {
        font-size: 7px;
    }

    .header-search {
        grid-column: 1 / -1;
        height: 42px;
    }

    .header-search button {
        min-width: auto;
        padding: 0 15px;
    }

    .main-navigation {
        display: none;
    }

    .main-navigation.is-open {
        display: block;
    }

    .nav-container {
        width: 100%;
        padding: 8px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-container a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .marketplace-shell {
        width: 100%;
        margin-top: 0;
    }

    .marketplace-top {
        display: block;
    }

    .category-sidebar {
        display: none;
    }

    .hero-slider {
        min-height: 320px;
        border-radius: 0;
    }

    .hero-slide {
        padding: 38px 22px;
        background: linear-gradient(
            165deg,
            var(--brand-orange) 0%,
            var(--brand-orange) 78%,
            var(--brand-black) 78%
        );
    }

    .hero-slide-two {
        background: linear-gradient(
            165deg,
            var(--brand-red) 0%,
            var(--brand-red) 78%,
            var(--brand-black) 78%
        );
    }

    .hero-slide-three {
        background: linear-gradient(
            165deg,
            var(--brand-black) 0%,
            var(--brand-black) 78%,
            var(--brand-orange) 78%
        );
    }

    .hero-image-slide {
        padding: 0;
    }

    .hero-slide-content {
        width: 90%;
    }

    .hero-slide h1 {
        font-size: clamp(34px, 11vw, 46px);
    }

    .hero-slide p {
        font-size: 13px;
    }

    .mobile-promos {
        margin: 12px;
    }

    .market-section {
        margin-top: 12px;
        padding: 15px 12px;
        border-radius: 0;
        box-shadow: none;
    }

    .market-section-heading {
        margin-bottom: 14px;
    }

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

    .hot-heading {
        margin: -15px -12px 15px;
        padding: 13px 12px;
        border-radius: 0;
    }

    .category-shortcuts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px 10px;
        overflow: visible;
        padding-bottom: 0;
    }

    .shortcut-card {
        flex: 0 1 calc((100% - 30px) / 4);
        max-width: none;
        min-width: 0;
    }

    .shortcut-image {
        width: 100%;
        max-width: 88px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .shortcut-card span {
        margin-top: 7px;
        font-size: 10px;
        line-height: 1.2;
    }

    .market-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px 8px;
    }

    .market-product-body h3 {
        font-size: 11px;
    }

    .current-price {
        font-size: 14px;
    }

    .old-price {
        font-size: 10px;
    }

    .product-button {
        min-height: 36px;
        padding: 0 6px;
        font-size: 10px;
    }
}

@media (max-width: 430px) {

    .shortcut-card {
        flex: 0 1 calc((100% - 16px) / 3);
    }

    .shortcut-image {
        max-width: 86px;
    }
}


/* ==========================================
   PICKUP BRANCH
========================================== */

.pickup-fields {
    margin-top: 18px;
}

.pickup-fields select {
    width: 100%;
    min-height: 43px;

    padding: 0 12px;

    border: 1px solid #a6a6a6;
    border-radius: 4px;

    background: #fff;
    color: #0f1111;

    font-size: 13px;
}

.pickup-fields select:focus {
    outline: 2px solid rgba(254, 135, 0, .18);

    border-color: var(--orange);
}

.pickup-information {
    margin-top: 10px;
    padding: 13px;

    background: #f7f7f7;

    border-left:
        3px solid var(--orange);

    border-radius: 3px;
}

.pickup-information strong {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
}

.pickup-information p {
    margin: 0;

    color: #565959;

    font-size: 11px;
    line-height: 1.5;
}


/* ==========================================
   ORDER SUCCESS
========================================== */

.order-success-card {
    max-width: 650px;

    margin: 50px auto;

    padding: 45px 30px;

    background: #fff;

    border:
        1px solid rgba(203, 78, 78, .30);

    border-radius: 6px;

    text-align: center;
}

.order-success-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 18px;

    border-radius: 50%;

    background: #358133;

    color: #fff;

    font-size: 32px;
    font-weight: 700;
}

.order-success-card h1 {
    margin:
        0 0 10px;

    font-size: 28px;
}

.order-success-card > p {
    color: #565959;

    font-size: 13px;
}

.order-success-details {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin:
        28px 0;

    padding:
        18px;

    background: #f7f7f7;

    border-radius: 5px;
}

.order-success-details div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.order-success-details span {
    color: #666;

    font-size: 10px;
}

.order-success-details strong {
    font-size: 16px;
}

.order-success-message {
    margin-bottom: 25px;
}


@media (max-width: 600px) {

    .order-success-card {
        margin: 20px auto;

        padding:
            30px 18px;
    }

    .order-success-details {
        grid-template-columns:
            1fr;
    }
}


/* ==========================================================
   CUSTOMER ACCOUNT
========================================================== */

.account-auth-page {
    min-height: 65vh;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 45px 16px 70px;
}

.account-auth-card {
    width: 100%;
    max-width: 390px;

    padding: 28px;

    background: #fff;

    border:
        1px solid rgba(203, 78, 78, .30);

    border-radius: 7px;

    box-shadow:
        0 2px 8px rgba(0,0,0,.05);
}

.account-register-card {
    max-width: 520px;
}

.account-auth-card h1 {
    margin: 0 0 8px;

    color: #0f1111;

    font-size: 26px;
    font-weight: 500;
}

.account-auth-intro {
    margin: 0 0 23px;

    color: #565959;

    font-size: 12px;
    line-height: 1.5;
}


/* FORM */

.account-field {
    margin-bottom: 16px;
}

.account-field label {
    display: block;

    margin-bottom: 6px;

    color: #0f1111;

    font-size: 12px;
    font-weight: 600;
}

.account-field input {
    width: 100%;
    min-height: 43px;

    padding: 9px 11px;

    border:
        1px solid #a6a6a6;

    border-radius: 4px;

    background: #fff;

    color: #0f1111;

    font-size: 13px;
}

.account-field input:focus {
    outline:
        2px solid rgba(254,135,0,.18);

    border-color:
        var(--brand-orange);
}

.account-help {
    margin-top: 5px;

    color: #666;

    font-size: 9px;
    line-height: 1.4;
}

.account-help ul {
    margin:
        6px 0 0 17px;
}

.account-field-error,
.account-form-error {
    margin-top: 5px;

    color: #b12704;

    font-size: 10px;
}

.account-form-error {
    margin-bottom: 15px;

    padding: 10px;

    background: #fff3f3;

    border:
        1px solid rgba(203,78,78,.30);

    border-radius: 4px;
}


/* BUTTONS */

.account-primary-button,
.account-secondary-button {
    width: 100%;
    min-height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 4px;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;
}

.account-primary-button {
    border:
        1px solid var(--brand-orange);

    background:
        var(--brand-orange);

    color: #111;
}

.account-secondary-button {
    border:
        1px solid #888;

    background: #fff;

    color: #111;
}

.account-auth-divider {
    display: flex;

    align-items: center;

    gap: 10px;

    margin: 20px 0;
}

.account-auth-divider::before,
.account-auth-divider::after {
    content: "";

    flex: 1;

    height: 1px;

    background: #ddd;
}

.account-auth-divider span {
    color: #777;

    font-size: 9px;
}

.account-signin-link {
    margin: 18px 0 0;

    text-align: center;

    font-size: 11px;
}

.account-signin-link a {
    color:
        var(--brand-orange);

    font-weight: 600;
}


/* DASHBOARD */

.account-page {
    width:
        min(
            calc(100% - 32px),
            1200px
        );

    margin:
        32px auto 70px;
}

.account-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 25px;
}

.account-eyebrow {
    color:
        var(--brand-orange);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.3px;
}

.account-heading h1 {
    margin: 5px 0;

    font-size: 27px;
    font-weight: 600;
}

.account-heading p {
    margin: 0;

    color: #565959;

    font-size: 12px;
}

.account-logout-button {
    min-height: 38px;

    padding: 0 18px;

    border:
        1px solid #888;

    border-radius: 4px;

    background: #fff;

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;
}


/* DASHBOARD CARDS */

.account-dashboard-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin-bottom: 22px;
}

.account-dashboard-card {
    display: grid;

    grid-template-columns:
        44px
        minmax(0, 1fr)
        auto;

    gap: 12px;

    align-items: center;

    padding: 20px;

    background: #fff;

    border:
        1px solid rgba(203,78,78,.28);

    border-radius: 6px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.account-dashboard-card:hover {
    border-color:
        var(--brand-red);

    box-shadow:
        0 4px 12px rgba(0,0,0,.06);

    transform:
        translateY(-2px);
}

.account-card-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(254,135,0,.10);

    font-size: 18px;
}

.account-dashboard-card h2 {
    margin: 0 0 5px;

    font-size: 15px;
    font-weight: 600;
}

.account-dashboard-card p {
    margin: 0;

    color: #565959;

    font-size: 10px;
    line-height: 1.45;
}

.account-card-arrow {
    color: #888;

    font-size: 25px;
}


/* ACCOUNT DETAILS */

.account-details-card {
    max-width: 700px;

    padding: 22px;

    background: #fff;

    border:
        1px solid rgba(203,78,78,.28);

    border-radius: 6px;
}

.account-details-card h2 {
    margin: 0 0 15px;

    font-size: 17px;
}

.account-detail-row {
    display: grid;

    grid-template-columns:
        140px
        minmax(0,1fr);

    gap: 15px;

    padding: 11px 0;

    border-bottom:
        1px solid #eee;
}

.account-detail-row:last-child {
    border-bottom: 0;
}

.account-detail-row span {
    color: #666;

    font-size: 11px;
}

.account-detail-row strong {
    font-size: 11px;
    font-weight: 500;
}


/* RESPONSIVE */

@media (max-width: 800px) {

    .account-dashboard-grid {
        grid-template-columns:
            1fr;
    }
}


@media (max-width: 600px) {

    .account-auth-page {
        padding:
            20px 10px
            45px;
    }

    .account-auth-card {
        padding: 20px 16px;
    }

    .account-page {
        width:
            calc(100% - 18px);

        margin-top: 20px;
    }

    .account-heading {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

    .account-detail-row {
        grid-template-columns:
            1fr;

        gap: 3px;
    }
}

/* ==========================================================
   MY ORDERS
========================================================== */

.account-orders-header {
    margin-bottom: 22px;
}

.account-orders-header h1 {
    margin: 10px 0 4px;

    font-size: 27px;
}

.account-orders-header p {
    margin: 0;

    color: #565959;

    font-size: 12px;
}

.account-back-link {
    color: #555;

    font-size: 11px;
    font-weight: 600;
}

.account-back-link:hover {
    color: var(--brand-orange);
}


/* ORDER LIST */

.account-orders-list {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.account-order-card {
    overflow: hidden;

    background: #fff;

    border:
        1px solid rgba(203,78,78,.28);

    border-radius: 6px;
}


/* ORDER HEADER */

.account-order-header {
    display: grid;

    grid-template-columns:
        1fr 1fr 1fr auto;

    gap: 30px;

    align-items: center;

    padding: 15px 20px;

    background: #f7f7f7;

    border-bottom:
        1px solid #e5e5e5;
}

.account-order-header > div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.account-order-label {
    color: #666;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: .5px;
}

.account-order-header strong {
    font-size: 11px;
}


/* STATUS */

.account-order-status {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 6px 11px;

    border-radius: 20px;

    background: #eee;

    color: #333;

    font-size: 9px;
    font-weight: 700;
}

.account-order-status-processing {
    background: #e6f4ea;

    color: #237a35;
}

.account-order-status-completed {
    background: #e4f3e6;

    color: #1e6d2c;
}

.account-order-status-pending {
    background: #fff4d6;

    color: #8a6200;
}

.account-order-status-on-hold {
    background: #fff4d6;

    color: #8a6200;
}

.account-order-status-cancelled,
.account-order-status-failed,
.account-order-status-refunded {
    background: #fdeaea;

    color: #a12622;
}


/* ORDER BODY */

.account-order-body {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 25px;

    padding: 20px;
}

.account-order-products {
    display: flex;

    flex-direction: column;
}

.account-order-product {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 10px 0;

    border-bottom:
        1px solid #eee;
}

.account-order-product:first-child {
    padding-top: 0;
}

.account-order-product:last-child {
    border-bottom: 0;
}

.account-order-product-info {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.account-order-product-info strong {
    font-size: 11px;
}

.account-order-product-info span {
    color: #666;

    font-size: 9px;
}

.account-order-product-price {
    white-space: nowrap;

    font-size: 11px;
    font-weight: 600;
}


/* VIEW ORDER */

.account-order-actions {
    display: flex;

    align-items: flex-start;
}

.account-view-order-button,
.account-primary-link {
    min-height: 37px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 18px;

    border-radius: 4px;

    background: var(--brand-orange);

    color: #111;

    font-size: 9px;
    font-weight: 700;
}


/* EMPTY ORDERS */

.account-no-orders {
    max-width: 600px;

    margin: 35px auto;

    padding: 45px 25px;

    background: #fff;

    border:
        1px solid rgba(203,78,78,.28);

    border-radius: 6px;

    text-align: center;
}

.account-no-orders-icon {
    margin-bottom: 12px;

    font-size: 35px;
}

.account-no-orders h2 {
    margin: 0 0 8px;

    font-size: 20px;
}

.account-no-orders p {
    margin: 0 0 22px;

    color: #666;

    font-size: 11px;
}

.account-orders-error {
    padding: 15px;

    background: #fff3f3;

    border:
        1px solid rgba(203,78,78,.30);

    border-radius: 5px;

    color: #a12622;

    font-size: 11px;
}


/* MOBILE */

@media (max-width: 650px) {

    .account-order-header {
        grid-template-columns:
            1fr 1fr;

        gap: 15px;
    }

    .account-order-status-wrap {
        align-items: flex-start;
    }

    .account-order-body {
        grid-template-columns:
            1fr;
    }

    .account-view-order-button {
        width: 100%;
    }
}

/* ==========================================================
   ORDER DETAILS
========================================================== */

.order-detail-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}

.order-detail-top h1 {
    margin: 10px 0 4px;

    font-size: 27px;
}

.order-detail-top p {
    margin: 0;

    color: #666;

    font-size: 11px;
}


/* LAYOUT */

.order-detail-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        340px;

    gap: 20px;

    align-items: start;
}

.order-detail-main,
.order-detail-sidebar {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


/* CARDS */

.order-detail-card {
    padding: 22px;

    background: #fff;

    border:
        1px solid rgba(203,78,78,.28);

    border-radius: 6px;
}

.order-detail-card h2 {
    margin: 0 0 18px;

    font-size: 17px;
    font-weight: 600;
}


/* ITEMS */

.order-detail-items {
    display: flex;

    flex-direction: column;
}

.order-detail-item {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 14px 0;

    border-bottom:
        1px solid #eee;
}

.order-detail-item:first-child {
    padding-top: 0;
}

.order-detail-item-info {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.order-detail-item-info strong {
    font-size: 12px;
}

.order-detail-item-info span {
    color: #666;

    font-size: 9px;
}

.order-detail-item-price {
    white-space: nowrap;

    font-size: 12px;
    font-weight: 600;
}


/* TOTALS */

.order-detail-totals {
    max-width: 350px;

    margin:
        18px 0 0 auto;
}

.order-detail-totals > div {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding: 8px 0;

    font-size: 11px;
}

.order-detail-totals span {
    color: #565959;
}

.order-detail-grand-total {
    margin-top: 5px;

    padding-top: 13px !important;

    border-top:
        1px solid #ddd;

    font-size: 14px !important;
}

.order-detail-grand-total span,
.order-detail-grand-total strong {
    color: #111;
}


/* CUSTOMER */

.order-detail-information {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.order-detail-information > div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.order-detail-information span {
    color: #666;

    font-size: 9px;
}

.order-detail-information strong {
    font-size: 11px;

    overflow-wrap: anywhere;
}


/* SUMMARY */

.order-detail-summary-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 10px 0;

    border-bottom:
        1px solid #eee;

    font-size: 10px;
}

.order-detail-summary-row span {
    color: #666;
}

.order-detail-summary-row strong {
    text-align: right;

    overflow-wrap: anywhere;
}

.order-detail-summary-total {
    margin-top: 4px;

    border-bottom: 0;

    font-size: 13px;
}


/* DELIVERY */

.order-delivery-address {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-top: 15px;

    padding-top: 15px;

    border-top:
        1px solid #eee;
}

.order-delivery-address span {
    color: #666;

    font-size: 9px;
}

.order-delivery-address strong {
    font-size: 11px;

    line-height: 1.6;
}


/* NOTES */

.order-customer-note {
    margin: 0;

    color: #444;

    font-size: 11px;

    line-height: 1.6;
}


/* TABLET */

@media (max-width: 900px) {

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

    .order-detail-sidebar {
        display: grid;

        grid-template-columns:
            1fr 1fr;
    }
}


/* MOBILE */

@media (max-width: 650px) {

    .order-detail-top {
        align-items: flex-start;

        flex-direction: column;
    }

    .order-detail-information {
        grid-template-columns:
            1fr;
    }

    .order-detail-sidebar {
        display: flex;
    }

    .order-detail-card {
        padding: 17px;
    }

    .order-detail-item {
        align-items: flex-start;
    }

    .order-detail-totals {
        max-width: none;

        width: 100%;
    }
}

/* ==========================================================
   ACCOUNT PROFILE
========================================================== */

.account-profile-layout {
    max-width: 760px;
}

.account-profile-card {
    padding: 24px;

    background: #fff;

    border:
        1px solid rgba(203,78,78,.28);

    border-radius: 6px;
}

.account-profile-card h2 {
    margin: 0 0 20px;

    font-size: 18px;
}

.account-profile-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 4px 18px;
}

.account-profile-card
.account-primary-button {
    max-width: 220px;

    margin-top: 10px;
}


@media (max-width: 650px) {

    .account-profile-grid {
        grid-template-columns:
            1fr;
    }

    .account-profile-card {
        padding: 17px;
    }

    .account-profile-card
    .account-primary-button {
        max-width: none;
    }
}

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

.header-account-link {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 42px;

    color: inherit;
    text-decoration: none;

    line-height: 1.15;
}

.header-account-small {
    display: block;

    font-size: 9px;
    font-weight: 400;

    opacity: .75;
}

.header-account-name {
    display: block;

    margin-top: 2px;

    font-size: 11px;
    font-weight: 700;
}

.header-account-link:hover
.header-account-name {
    color: var(--brand-orange);
}


@media (max-width: 650px) {

    .header-account-small {
        display: none;
    }

    .header-account-name {
        font-size: 10px;
    }
}

/* ==========================================================
   SUCCESS PAGE ACCOUNT PROMPT
========================================================== */

.success-account-prompt {
    margin: 25px 0;
    padding: 20px;

    background: #f7f7f7;

    border:
        1px solid rgba(203,78,78,.22);

    border-radius: 5px;

    text-align: center;
}

.success-account-prompt h2 {
    margin: 0 0 7px;

    font-size: 16px;
    font-weight: 600;
}

.success-account-prompt p {
    margin: 0 0 15px;

    color: #565959;

    font-size: 11px;
    line-height: 1.5;
}

.success-account-button {
    min-height: 38px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 18px;

    border-radius: 4px;

    background: var(--brand-orange);

    color: #111;

    font-size: 10px;
    font-weight: 700;
}

.account-forgot-password {
    margin-top: -7px;
    margin-bottom: 16px;
    text-align: right;
}

.account-forgot-password a {
    color: var(--brand-orange);
    font-size: 10px;
    font-weight: 600;
}



/* ==========================================================
   PRODUCT FILTERS
========================================================== */

.product-list-heading {
    margin-bottom: 16px;
}

.product-list-heading h1 {
    margin: 0;

    font-size: 24px;
    font-weight: 600;
}

.product-list-heading p {
    margin: 5px 0 0;

    color: #565959;

    font-size: 11px;
}


/* TOOLBAR */

.product-list-toolbar {
    margin-bottom: 18px;

    padding: 14px 16px;

    background: #fff;

    border:
        1px solid rgba(203,78,78,.25);

    border-radius: 5px;
}

.product-filter-form {
    display: flex;

    align-items: flex-end;

    flex-wrap: wrap;

    gap: 13px;
}

.product-filter-group {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.product-filter-group label {
    color: #666;

    font-size: 9px;
    font-weight: 600;
}

.product-filter-group select {
    min-height: 38px;

    padding: 0 32px 0 10px;

    border:
        1px solid #aaa;

    border-radius: 4px;

    background: #fff;

    font-size: 11px;
}

.product-sale-filter {
    min-height: 38px;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 0 10px;

    font-size: 10px;

    cursor: pointer;
}

.product-sale-filter input {
    width: 15px;
    height: 15px;
}

.clear-product-filters {
    min-height: 38px;

    display: inline-flex;

    align-items: center;

    padding: 0 12px;

    color: var(--brand-red);

    font-size: 9px;
    font-weight: 700;
}


/* PAGINATION */

.product-pagination {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-top: 25px;
}

.pagination-button {
    min-height: 36px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 14px;

    border:
        1px solid #999;

    border-radius: 4px;

    background: #fff;

    color: #111;

    font-size: 9px;
    font-weight: 700;
}

.pagination-button:hover {
    border-color:
        var(--brand-orange);
}

.pagination-current {
    color: #666;

    font-size: 10px;
}


/* MOBILE */

@media (max-width: 650px) {

    .product-filter-form {
        display: grid;

        grid-template-columns:
            1fr 1fr;

        align-items: end;
    }

    .product-filter-group select {
        width: 100%;
    }

    .product-sale-filter {
        padding: 0;
    }

    .clear-product-filters {
        justify-content: flex-end;
    }
}


@media (max-width: 430px) {

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

    .clear-product-filters {
        justify-content: flex-start;
    }
}

/* ==========================================================
   PRODUCT LIST FILTER BAR - FINAL OVERRIDES
========================================================== */

.product-list-toolbar {
    width: 100%;
    box-sizing: border-box;

    margin: 0 0 22px;
    padding: 16px 18px;

    background: #ffffff;

    border: 1px solid #e1e1e1;
    border-radius: 6px;
}

.product-filter-form {
    display: flex !important;
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: wrap;

    gap: 16px;

    margin: 0;
}

.product-filter-group {
    display: flex !important;
    flex-direction: column;

    gap: 6px;

    min-width: 180px;
}

.product-filter-group label {
    display: block;

    margin: 0;

    color: #555;

    font-size: 10px;
    font-weight: 600;
}

.product-filter-group select {
    width: 100%;
    min-width: 180px;
    height: 40px;

    box-sizing: border-box;

    padding: 0 34px 0 11px;

    background: #fff;

    border: 1px solid #bbb;
    border-radius: 4px;

    color: #111;

    font-family: inherit;
    font-size: 11px;

    cursor: pointer;
}

.product-filter-group select:focus {
    outline: none;

    border-color: #fe8700;

    box-shadow:
        0 0 0 2px rgba(254,135,0,.12);
}


/* SALE CHECKBOX */

.product-sale-filter {
    min-height: 40px;

    display: inline-flex !important;

    align-items: center;

    gap: 8px;

    margin: 0;
    padding: 0 5px;

    color: #222;

    font-size: 11px;
    font-weight: 500;

    cursor: pointer;
}

.product-sale-filter input[type="checkbox"] {
    width: 16px;
    height: 16px;

    margin: 0;

    accent-color: #fe8700;

    cursor: pointer;
}


/* CLEAR */

.clear-product-filters {
    min-height: 40px;

    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    padding: 0 14px;

    border: 1px solid #ccc;
    border-radius: 4px;

    background: #fff;

    color: #333 !important;

    font-size: 9px;
    font-weight: 700;

    text-decoration: none !important;
}

.clear-product-filters:hover {
    border-color: #fe8700;

    color: #fe8700 !important;
}


/* RESULTS HEADING */

.product-list-heading {
    margin: 0 0 18px;
}

.product-list-heading h1 {
    margin: 0 0 5px;

    color: #111;

    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
}

.product-list-heading p {
    margin: 0;

    color: #666;

    font-size: 11px;
}

.product-list-heading p strong {
    color: #111;
}


/* PAGINATION */

.product-pagination {
    width: 100%;

    display: flex !important;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin: 30px 0 15px;
}

.pagination-button {
    min-height: 38px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 17px;

    background: #fff;

    border: 1px solid #999;
    border-radius: 4px;

    color: #111 !important;

    font-size: 9px;
    font-weight: 700;

    text-decoration: none !important;
}

.pagination-button:hover {
    background: #fe8700;

    border-color: #fe8700;
}

.pagination-current {
    color: #666;

    font-size: 10px;
}


/* TABLET */

@media (max-width: 800px) {

    .product-filter-form {
        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .product-filter-group {
        min-width: 0;
    }

    .product-filter-group select {
        width: 100%;
        min-width: 0;
    }
}


/* MOBILE */

@media (max-width: 500px) {

    .product-list-toolbar {
        padding: 13px;
    }

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

    .product-sale-filter {
        min-height: 32px;
    }

    .clear-product-filters {
        width: 100%;
    }

    .product-list-heading h1 {
        font-size: 21px;
    }
}

/* ==========================================================
   PRODUCT LIST CARDS
========================================================== */

/* ==========================================================
   PRODUCT LIST CARDS - COMPACT MARKETPLACE STYLE
========================================================== */

.product-list-page {
    width: min(calc(100% - 32px), 1400px);
    margin: 22px auto 60px;
}


/* GRID */

.products {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 12px;

    width: 100%;
}


/* CARD */

.product {
    position: relative;
    min-width: 0;

    overflow: hidden;

    background: #fff;

    border:
        1px solid rgba(203, 78, 78, .35);

    border-radius: 5px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.product:hover {
    border-color: var(--brand-red);

    box-shadow:
        0 3px 10px rgba(203, 78, 78, .12);

    transform:
        translateY(-2px);
}


/* IMAGE */

.product img {
    display: block;

    width: 100%;
    height: 210px;

    padding: 8px;

    box-sizing: border-box;

    background: #fff;

    object-fit: contain;

    border-bottom:
        1px solid #f0f0f0;
}


/* PRODUCT NAME */

.product-name {
    min-height: 34px;

    margin: 0;

    padding:
        10px 11px 0;

    color: #0f1111;

    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;

    display: -webkit-box;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* PRICE */

.price {
    padding:
        7px 11px 0;

    color: #b12704;

    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}


/* STOCK */

.stock {
    padding:
        4px 11px 11px;

    color: #358133;

    font-size: 9px;
    font-weight: 500;
}


/* TABLET */

@media (max-width: 1200px) {

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


@media (max-width: 1000px) {

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


@media (max-width: 800px) {

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

    .product img {
        height: 190px;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .product-list-page {
        width:
            calc(100% - 16px);

        margin-top: 14px;
    }

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

        gap: 9px;
    }

    .product img {
        height: 165px;

        padding: 6px;
    }

    .product-name {
        min-height: 31px;

        padding:
            8px 8px 0;

        font-size: 10px;
    }

    .price {
        padding:
            6px 8px 0;

        font-size: 14px;
    }

    .stock {
        padding:
            3px 8px 9px;

        font-size: 8px;
    }
}

/* ==========================================================
   PRODUCT LIST ACTIONS
========================================================== */

.product-image-link {
    display: block;
}

.product-card-content {
    padding-bottom: 11px;
}

.product-name {
    display: -webkit-box;

    min-height: 34px;

    padding:
        10px 11px 0;

    color: #0f1111;

    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;

    text-decoration: none;
}

.product-name:hover {
    color: var(--brand-orange);
}

.product-list-actions {
    padding:
        10px 11px 0;
}

.product-list-button {
    width: 100%;
    min-height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0 10px;

    border-radius: 4px;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;
}

.product-list-cart {
    border:
        1px solid var(--brand-black);

    background:
        var(--brand-black);

    color: #fff;
}

.product-list-cart:hover {
    background:
        var(--brand-orange);

    border-color:
        var(--brand-orange);

    color: #111;
}

.product-list-cart:disabled {
    opacity: .7;

    cursor: wait;
}

.product-list-options {
    border:
        1px solid #888;

    background: #fff;

    color: #111;
}

.product-list-options:hover {
    border-color:
        var(--brand-orange);

    color:
        var(--brand-orange);
}

.product-list-empty {
    grid-column: 1 / -1;

    padding: 35px;

    background: #fff;

    border:
        1px solid rgba(203,78,78,.25);

    border-radius: 5px;

    text-align: center;
}

.product-list-empty p {
    margin: 0;

    color: #666;

    font-size: 12px;
}


@media (max-width: 600px) {

    .product-list-button {
        min-height: 34px;

        font-size: 9px;
    }
}



/* ==========================================================
   PRODUCT FILTER PANEL
========================================================== */

.product-filter-panel {
    position: relative;

    width: 100%;

    margin: 0 0 28px;

    padding: 24px 20px 18px;

    box-sizing: border-box;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #fff1a6 0%,
            #ffd84d 55%,
            #ffe57b 100%
        );

    border: 1px solid #f1cf45;
    border-radius: 12px;
}


/* subtle decorative circles */

.product-filter-panel::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -70px;
    top: -110px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.20);

    pointer-events: none;
}

.product-filter-panel::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: 100px;
    top: -55px;

    border-radius: 50%;

    border:
        18px solid rgba(255,255,255,.14);

    pointer-events: none;
}


/* ==========================================================
   FILTER BANNER TITLE
========================================================== */

.product-filter-banner {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 18px;
}

.product-filter-banner-icon {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d71920;

    color: #fff;

    font-size: 24px;
    font-weight: 700;

    transform: rotate(180deg);
}

.product-filter-banner-text h2 {
    margin: 0;

    color: #111;

    font-size: 25px;
    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -.5px;
}

.product-filter-banner-text h2 span {
    color: #d71920;
}

.product-filter-banner-text p {
    margin: 6px 0 0;

    color: #333;

    font-size: 11px;
}


/* ==========================================================
   WHITE FILTER BAR
========================================================== */

.product-list-toolbar {
    position: relative;
    z-index: 2;

    width: 100%;

    margin: 0;

    padding: 15px;

    box-sizing: border-box;

    background: #fff;

    border: none;
    border-radius: 8px;

    box-shadow:
        0 3px 12px rgba(0,0,0,.06);
}


/* FORM */

.product-filter-form {
    display: grid !important;

    grid-template-columns:
        minmax(190px, 1fr)
        minmax(190px, 1fr)
        auto
        auto;

    align-items: end;

    gap: 16px;

    width: 100%;

    margin: 0;
}


/* ==========================================================
   CATEGORY / SORT
========================================================== */

.product-filter-group {
    display: flex !important;

    flex-direction: column;

    gap: 6px;

    min-width: 0;
}

.product-filter-group label {
    margin: 0;

    color: #333;

    font-size: 9px;
    line-height: 1;

    font-weight: 700;
}

.product-filter-group select {
    width: 100%;
    height: 44px;

    box-sizing: border-box;

    padding:
        0 38px
        0 13px;

    border:
        1px solid #d0d0d0;

    border-radius: 5px;

    background-color: #fff;

    color: #111;

    font-family: inherit;
    font-size: 11px;
    font-weight: 500;

    cursor: pointer;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.product-filter-group select:hover {
    border-color: #999;
}

.product-filter-group select:focus {
    outline: none;

    border-color: #d71920;

    box-shadow:
        0 0 0 3px
        rgba(215,25,32,.08);
}


/* ==========================================================
   SALE CHECKBOX
========================================================== */

.product-sale-filter {
    height: 44px;

    display: flex !important;

    align-items: center;

    gap: 9px;

    margin: 0;

    padding: 0 10px;

    box-sizing: border-box;

    color: #111;

    font-size: 10px;
    font-weight: 600;

    white-space: nowrap;

    cursor: pointer;
}

.product-sale-filter input[type="checkbox"] {
    width: 18px;
    height: 18px;

    margin: 0;

    accent-color: #d71920;

    cursor: pointer;
}


/* ==========================================================
   CLEAR FILTER BUTTON
========================================================== */

.clear-product-filters {
    height: 44px;

    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    padding: 0 20px;

    border:
        1px solid #d71920;

    border-radius: 5px;

    background: #d71920;

    color: #fff !important;

    font-size: 9px;
    font-weight: 800;

    white-space: nowrap;

    text-decoration: none !important;

    transition:
        background .2s ease,
        transform .15s ease,
        box-shadow .2s ease;
}

.clear-product-filters:hover {
    background: #b9151b;

    border-color: #b9151b;

    color: #fff !important;

    box-shadow:
        0 3px 8px
        rgba(215,25,32,.20);

    transform:
        translateY(-1px);
}


/* ==========================================================
   SEARCH RESULTS HEADING
========================================================== */

.product-list-heading {
    position: relative;

    margin:
        26px 0
        18px;

    padding-left: 16px;
}

.product-list-heading::before {
    content: "";

    position: absolute;

    left: 0;
    top: 2px;

    width: 4px;
    height: 32px;

    border-radius: 4px;

    background: #d71920;
}

.product-list-heading h1 {
    margin: 0;

    color: #111;

    font-size: 24px;
    line-height: 1.15;

    font-weight: 700;
}

.product-list-heading p {
    margin: 6px 0 0;

    color: #666;

    font-size: 10px;
}

.product-list-heading p strong {
    color: #111;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

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

    .clear-product-filters {
        width: 100%;
    }

}


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

@media (max-width: 600px) {

    .product-filter-panel {
        padding:
            16px 12px;

        border-radius: 8px;
    }

    .product-filter-banner {
        gap: 10px;

        margin-bottom: 14px;
    }

    .product-filter-banner-icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 18px;
    }

    .product-filter-banner-text h2 {
        font-size: 18px;
    }

    .product-filter-banner-text p {
        font-size: 9px;
    }

    .product-list-toolbar {
        padding: 12px;
    }

    .product-filter-form {
        grid-template-columns:
            1fr;

        gap: 11px;
    }

    .product-filter-group select {
        height: 42px;
    }

    .product-sale-filter {
        height: 34px;

        padding: 0;
    }

    .clear-product-filters {
        height: 42px;

        width: 100%;
    }

    .product-list-heading {
        margin-top: 20px;
    }

}
/* ==========================================================
   LIVE SEARCH
========================================================== */

.header-search-wrapper {
    position: relative;

    width: 100%;
}

.header-search-wrapper .header-search {
    width: 100%;
}

.live-search-results {
    position: absolute;

    top: calc(100% + 5px);
    left: 0;
    right: 0;

    z-index: 2000;

    display: none;

    max-height: 430px;

    overflow-y: auto;

    background: #fff;

    border:
        1px solid #d5d5d5;

    border-radius: 5px;

    box-shadow:
        0 8px 22px
        rgba(0,0,0,.15);
}

.live-search-results.is-open {
    display: block;
}

.live-search-item {
    display: grid;

    grid-template-columns:
        58px
        minmax(0, 1fr);

    gap: 12px;

    align-items: center;

    padding: 9px 12px;

    border-bottom:
        1px solid #eee;

    background: #fff;

    color: #111;

    text-decoration: none;
}

.live-search-item:last-child {
    border-bottom: 0;
}

.live-search-item:hover {
    background: #f7f7f7;
}

.live-search-image {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #fff;

    border:
        1px solid #eee;

    border-radius: 4px;
}

.live-search-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.live-search-placeholder {
    color: #888;

    font-size: 9px;
    font-weight: 700;
}

.live-search-info {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.live-search-info strong {
    color: #111;

    font-size: 11px;
    line-height: 1.3;
    font-weight: 500;

    display: -webkit-box;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.live-search-info span {
    color: #b12704;

    font-size: 12px;
    font-weight: 700;
}

.live-search-empty {
    padding: 20px;

    color: #666;

    font-size: 11px;

    text-align: center;
}


/* MOBILE */

@media (max-width: 720px) {

    .live-search-results {
        top:
            calc(100% + 4px);

        max-height: 360px;
    }

    .live-search-item {
        grid-template-columns:
            50px
            minmax(0,1fr);
    }

    .live-search-image {
        width: 50px;
        height: 50px;
    }
}


/* ==========================================================
   PRODUCT DETAIL - VIEW CART
========================================================== */

.product-detail-view-cart {
    position: relative;

    width: 100%;
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 10px;

    box-sizing: border-box;

    border:
        1px solid var(--brand-black);

    border-radius: 4px;

    background: #fff;
    color: #111;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease;
}

.product-detail-view-cart:hover {
    border-color:
        var(--brand-orange);

    background:
        #fff8ec;
}

.product-detail-view-cart span {
    min-width: 21px;
    height: 21px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 5px;

    box-sizing: border-box;

    border-radius: 11px;

    background:
        var(--brand-red);

    color: #fff;

    font-size: 9px;
}


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

.related-products-section {
    width:
        min(
            calc(100% - 32px),
            1400px
        );

    margin:
        28px auto 65px;

    padding: 22px 18px;

    box-sizing: border-box;

    background: #fff;

    border:
        1px solid rgba(203,78,78,.22);

    border-radius: 7px;

    box-shadow:
        0 2px 8px rgba(0,0,0,.04);
}


/* HEADING */

.related-products-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 19px;
}

.related-products-heading span {
    display: block;

    margin-bottom: 4px;

    color:
        var(--brand-red);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.related-products-heading h2 {
    margin: 0;

    color: #111;

    font-size: 21px;
    font-weight: 700;
}

.related-products-heading > a {
    color:
        var(--brand-orange);

    font-size: 9px;
    font-weight: 700;
}


/* GRID */

.related-products-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0,1fr));

    gap: 12px;
}


/* CARD */

.related-product-card {
    min-width: 0;

    overflow: hidden;

    background: #fff;

    border:
        1px solid rgba(203,78,78,.35);

    border-radius: 5px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.related-product-card:hover {
    border-color:
        var(--brand-red);

    box-shadow:
        0 4px 12px
        rgba(0,0,0,.07);

    transform:
        translateY(-2px);
}


/* IMAGE */

.related-product-image {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #fff;

    border-bottom:
        1px solid #f0f0f0;
}

.related-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    padding: 7px;

    box-sizing: border-box;

    object-fit: contain;
}

.related-product-placeholder {
    color: #888;

    font-size: 15px;
    font-weight: 700;
}


/* BODY */

.related-product-body {
    padding:
        10px;
}

.related-product-name {
    min-height: 33px;

    display: -webkit-box;

    color: #111;

    font-size: 11px;
    line-height: 1.35;
    font-weight: 500;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;

    text-decoration: none;
}

.related-product-name:hover {
    color:
        var(--brand-orange);
}


/* PRICE */

.related-product-price {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 8px;

    color: #111;

    font-size: 15px;
    font-weight: 700;
}

.related-sale-price {
    color: #b12704;
}

.related-old-price {
    color: #777;

    font-size: 9px;
    font-weight: 400;

    text-decoration: line-through;
}


/* ACTION */

.related-product-actions {
    margin-top: 11px;
}

.related-product-button {
    width: 100%;
    min-height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0 8px;

    box-sizing: border-box;

    border-radius: 4px;

    font-size: 9px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;
}

.related-cart-button {
    border:
        1px solid #111;

    background: #111;

    color: #fff;
}

.related-cart-button:hover {
    border-color:
        var(--brand-orange);

    background:
        var(--brand-orange);

    color: #111;
}

.related-options-button {
    border:
        1px solid #888;

    background: #fff;

    color: #111;
}

.related-options-button:hover {
    border-color:
        var(--brand-orange);

    color:
        var(--brand-orange);
}


/* ==========================================================
   RELATED PRODUCTS RESPONSIVE
========================================================== */

@media (max-width: 1150px) {

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


@media (max-width: 800px) {

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


@media (max-width: 600px) {

    .related-products-section {
        width:
            calc(100% - 16px);

        margin:
            18px auto
            40px;

        padding:
            16px 10px;
    }

    .related-products-heading h2 {
        font-size: 18px;
    }

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

        gap: 9px;
    }

    .related-product-body {
        padding: 8px;
    }

    .related-product-name {
        font-size: 10px;
    }

    .related-product-price {
        font-size: 13px;
    }

    .related-product-button {
        font-size: 8px;
    }
}

/* ==========================================================
   MAIN STORE NAVIGATION - FINAL
========================================================== */

.main-navigation {
    position: relative;

    display: block;

    background: #fff;

    border-top: 1px solid #ececec;
    border-bottom: 1px solid #e6e6e6;

    z-index: 900;
}


.nav-container {
    width: min(
        calc(100% - 30px),
        1400px
    );

    min-height: 48px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 0;
}


/* ==========================================================
   NORMAL MENU LINKS
========================================================== */

.nav-container .nav-main-link {
    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 15px;

    color: #1d1d1d;

    font-size: 11px;
    font-weight: 600;

    white-space: nowrap;

    text-decoration: none;

    transition:
        color .18s ease,
        background .18s ease;
}

.nav-container .nav-main-link:hover {
    background: #f7f7f7;

    color: var(--brand-orange);
}


/* ==========================================================
   ALL CATEGORIES
========================================================== */

.nav-category-menu {
    position: relative;

    flex: 0 0 auto;

    margin-right: 8px;
}


.nav-category-trigger {
    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 17px;

    border: 0;

    background: #111;

    color: #fff;

    font-family: inherit;

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;

    white-space: nowrap;
}


.nav-category-trigger:hover {
    background: var(--brand-orange);

    color: #111;
}


.nav-category-icon {
    font-size: 13px;
}


.nav-category-arrow {
    margin-left: 3px;

    font-size: 9px;

    transition:
        transform .2s ease;
}


.nav-category-menu.is-open
.nav-category-arrow {
    transform: rotate(180deg);
}


/* ==========================================================
   CATEGORY DROPDOWN
========================================================== */

.nav-category-dropdown {
    position: absolute;

    top: 100%;
    left: 0;

    width: 780px;

    display: none;

    background: #fff;

    border:
        1px solid #ddd;

    border-top:
        3px solid var(--brand-orange);

    border-radius:
        0 0 7px 7px;

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.16);

    overflow: hidden;

    z-index: 3000;
}


.nav-category-menu:hover
.nav-category-dropdown,
.nav-category-menu.is-open
.nav-category-dropdown {
    display: block;
}


.nav-category-dropdown-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 0;

    padding: 21px 22px 17px;
}


.nav-category-column {
    min-width: 0;

    padding: 0 14px;

    border-right:
        1px solid #eee;
}


.nav-category-column:first-child {
    padding-left: 0;
}


.nav-category-column:last-child {
    border-right: 0;

    padding-right: 0;
}


.nav-dropdown-title {
    display: block;

    margin-bottom: 10px;

    color: var(--brand-red);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .9px;
}


.nav-category-column a {
    display: block !important;

    width: auto !important;

    padding: 6px 0 !important;

    border: 0 !important;

    color: #333;

    font-size: 10px !important;
    line-height: 1.3;

    font-weight: 500 !important;

    white-space: normal !important;
}


.nav-category-column a:hover {
    color: var(--brand-orange);

    background: transparent;

    padding-left: 4px !important;
}


/* DROPDOWN FOOTER */

.nav-dropdown-footer {
    padding: 12px 22px;

    background: #f7f7f7;

    border-top:
        1px solid #eee;
}


.nav-dropdown-footer a {
    color: #111;

    font-size: 9px;
    font-weight: 800;
}


.nav-dropdown-footer a:hover {
    color: var(--brand-orange);
}


/* ==========================================================
   SALE BUTTON
========================================================== */

.nav-container .nav-sale-button {
    min-height: 31px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-left: auto;

    padding: 0 17px;

    border-radius: 4px;

    background: var(--brand-red);

    color: #fff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .5px;

    text-decoration: none;

    transition:
        background .18s ease,
        transform .18s ease;
}


.nav-container .nav-sale-button:hover {
    background: #aa151a;

    color: #fff;

    transform: translateY(-1px);
}


/* ==========================================================
   MEDIUM DESKTOP
========================================================== */

@media (max-width: 1150px) {

    .nav-container .nav-main-link {
        padding:
            0 9px;

        font-size: 10px;
    }


    .nav-category-trigger {
        padding:
            0 12px;
    }


    .nav-category-dropdown {
        width: 720px;
    }
}


/* ==========================================================
   MOBILE NAVIGATION
========================================================== */

@media (max-width: 720px) {

    .main-navigation {
        display: none;

        border-top:
            1px solid #ddd;
    }


    .main-navigation.is-open {
        display: block;
    }


    .nav-container {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        padding: 0;

        gap: 0;
    }


    /* ALL CATEGORIES */

    .nav-category-menu {
        width: 100%;

        margin: 0;
    }


    .nav-category-trigger {
        width: 100%;

        min-height: 48px;

        justify-content: flex-start;

        padding:
            0 18px;

        background: #111;

        border-radius: 0;
    }


    .nav-category-arrow {
        margin-left: auto;
    }


    /* IMPORTANT:
       disable desktop hover behaviour */

    .nav-category-menu:hover
    .nav-category-dropdown {
        display: none;
    }


    .nav-category-menu.is-open
    .nav-category-dropdown {
        display: block;
    }


    .nav-category-dropdown {
        position: static;

        width: 100%;

        max-height: 65vh;

        overflow-y: auto;

        border: 0;

        border-top:
            3px solid var(--brand-orange);

        border-radius: 0;

        box-shadow: none;
    }


    .nav-category-dropdown-grid {
        grid-template-columns:
            1fr;

        padding: 0;
    }


    .nav-category-column {
        padding:
            15px 18px;

        border-right: 0;

        border-bottom:
            1px solid #eee;
    }


    .nav-category-column:first-child,
    .nav-category-column:last-child {
        padding:
            15px 18px;
    }


    .nav-category-column a {
        padding:
            8px 0 !important;

        font-size:
            11px !important;
    }


    .nav-dropdown-footer {
        padding:
            15px 18px;
    }


    /* MAIN LINKS */

    .nav-container
    .nav-main-link {
        width: 100%;

        min-height: 46px;

        justify-content:
            flex-start;

        padding:
            0 18px;

        box-sizing:
            border-box;

        border-bottom:
            1px solid #eee;

        font-size: 11px;
    }


    /* SALE */

    .nav-container
    .nav-sale-button {
        width:
            calc(100% - 36px);

        min-height: 42px;

        margin:
            14px 18px;

        box-sizing:
            border-box;
    }
}


/* ==========================================================
   COLORFUL HEADER - HOL
========================================================== */

/* PROMOTIONAL STRIP */

.announcement-bar {
    min-height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 5px 15px;

    box-sizing: border-box;

    background: #ffd400;

    color: #111;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .5px;

    text-align: center;

    border-bottom: 1px solid #e7bd00;
}


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

.site-header {
    background: #fff;
}

.header-container {
    min-height: 72px;

    background: #fff;
}


/* LOGO */

.site-logo {
    position: relative;
}

.logo-main {
    color: #111;

    font-weight: 800;
}

.logo-sub {
    color: #d44b4f;

    font-weight: 700;
    letter-spacing: 2px;
}


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

.header-search {
    overflow: hidden;

    border: 2px solid #ffb000 !important;

    border-radius: 7px !important;

    background: #fff;
}

.header-search input {
    border: 0 !important;

    outline: 0;

    background: #fff;
}

.header-search input:focus {
    box-shadow: none;
}

.header-search button {
    min-width: 105px;

    border: 0 !important;

    background: #ff9800 !important;

    color: #111 !important;

    font-weight: 800 !important;

    transition:
        background .2s ease,
        color .2s ease;
}

.header-search button:hover {
    background: #ffd400 !important;

    color: #111 !important;
}


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

.header-actions a {
    position: relative;

    transition:
        color .2s ease;
}

.header-actions a:hover {
    color: #e27600;
}


/* CART COUNT */

.cart-count {
    background: #d44b4f !important;

    color: #fff !important;

    box-shadow:
        0 2px 5px
        rgba(212,75,79,.25);
}


/* ==========================================================
   NAVIGATION
========================================================== */

.main-navigation {
    background: #fffdf5 !important;

    border-top:
        1px solid #f1e4ba !important;

    border-bottom:
        3px solid #ffd400 !important;
}


/* ALL CATEGORIES */

.nav-category-trigger {
    background: #111 !important;

    color: #fff !important;

    border-bottom:
        3px solid #ff9800 !important;
}

.nav-category-trigger:hover,
.nav-category-menu.is-open
.nav-category-trigger {
    background: #ffd400 !important;

    color: #111 !important;
}


/* NORMAL NAV LINKS */

.nav-container .nav-main-link {
    position: relative;
}

.nav-container .nav-main-link::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 7px;

    height: 2px;

    background: #ff9800;

    transform: scaleX(0);

    transition:
        transform .2s ease;
}

.nav-container .nav-main-link:hover {
    background: #fff8df !important;

    color: #111 !important;
}

.nav-container .nav-main-link:hover::after {
    transform: scaleX(1);
}


/* ==========================================================
   NEW ARRIVALS
========================================================== */

.nav-container
.nav-main-link:first-of-type {
    color: #d96d00;

    font-weight: 800;
}

.nav-container
.nav-main-link:first-of-type::before {
    content: "NEW";

    margin-right: 6px;

    padding: 2px 4px;

    border-radius: 3px;

    background: #ffd400;

    color: #111;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: .3px;
}


/* ==========================================================
   SALE
========================================================== */

.nav-container .nav-sale-button {
    min-width: 72px;

    min-height: 32px;

    background: #d44b4f !important;

    color: #fff !important;

    border-radius: 5px;

    box-shadow:
        0 2px 5px
        rgba(212,75,79,.18);
}

.nav-container .nav-sale-button:hover {
    background: #b92f34 !important;

    transform:
        translateY(-1px);
}


/* ==========================================================
   CATEGORY DROPDOWN
========================================================== */

.nav-category-dropdown {
    border-top:
        4px solid #ffd400 !important;
}

.nav-dropdown-title {
    color: #d44b4f !important;
}

.nav-category-column a:hover {
    color: #d96d00 !important;
}

.nav-dropdown-footer {
    background: #fff8df !important;
}


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

@media (max-width: 720px) {

    .announcement-bar {
        min-height: 27px;

        font-size: 8px;
    }

    .header-container {
        min-height: auto;
    }

    .mobile-menu-button {
        background: #ffd400;

        color: #111;

        border-radius: 4px;
    }

    .main-navigation {
        border-bottom:
            3px solid #ffd400 !important;
    }

    .nav-container
    .nav-main-link::after {
        display: none;
    }

    .nav-container
    .nav-main-link:first-of-type::before {
        margin-right: 8px;
    }

}


/* ==========================================================
   HEADER LOGO + ACTION ICONS
========================================================== */

.site-logo {
    min-width: 190px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    text-decoration: none;
}

.logo-main {
    font-size: 20px !important;
    line-height: .95;

    font-weight: 900 !important;

    letter-spacing: .4px;
}

.logo-sub {
    margin-top: 5px;

    font-size: 8px !important;

    color: #d44b4f;

    font-weight: 800;

    letter-spacing: 2.2px;
}


/* ACTION AREA */

.header-actions {
    display: flex;

    align-items: center;

    gap: 17px;
}


/* INDIVIDUAL ACTION */

.header-actions .header-action-item {
    position: relative;

    display: flex;

    align-items: center;

    gap: 7px;

    min-height: 48px;

    color: #111;

    text-decoration: none;

    white-space: nowrap;
}

.header-actions .header-action-item:hover {
    color: #e27600;
}


/* ICON */

.header-action-icon {
    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.header-action-icon svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* TEXT */

.header-action-text {
    display: flex;

    flex-direction: column;

    gap: 2px;

    line-height: 1.05;
}

.header-action-small {
    color: #666;

    font-size: 8px;

    font-weight: 400;
}

.header-action-text strong {
    color: #111;

    font-size: 10px;

    font-weight: 700;
}

.header-action-item:hover
.header-action-text strong {
    color: #e27600;
}


/* CART */

.header-cart-action {
    padding-right: 4px;
}

.header-cart-action .cart-count {
    position: absolute;

    top: 5px;
    left: 17px;

    width: 18px;
    height: 18px;

    margin: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d44b4f !important;

    color: #fff;

    font-size: 8px;

    font-weight: 800;

    border: 2px solid #fff;
}


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

@media (max-width: 1050px) {

    .site-logo {
        min-width: 150px;
    }

    .logo-main {
        font-size: 17px !important;
    }

    .header-actions {
        gap: 10px;
    }

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

    .header-action-item {
        min-width: 30px;
    }
}


@media (max-width: 720px) {

    .site-logo {
        min-width: 0;
    }

    .logo-main {
        font-size: 14px !important;
    }

    .logo-sub {
        font-size: 6px !important;
    }

    .header-action-icon {
        width: 22px;
        height: 22px;

        flex-basis: 22px;
    }

}
/* ==========================================================
   HEADER FINAL POLISH
========================================================== */

.header-actions {
    gap: 22px;
}

.header-action-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
}

.header-action-small {
    font-size: 9px;
    line-height: 1.2;
}

.header-action-text strong {
    font-size: 11px;
    line-height: 1.2;
}

.header-cart-action .cart-count {
    top: 3px;
    left: 18px;

    width: 19px;
    height: 19px;

    font-size: 9px;
}

/* Give search a little breathing room */

.header-search-wrapper {
    margin-left: 20px;
    margin-right: 20px;
}

/* Keep navigation text crisp */

.nav-container .nav-main-link {
    font-weight: 650;
}

/* Slightly stronger SALE */

.nav-container .nav-sale-button {
    min-width: 78px;

    font-weight: 900;

    box-shadow:
        0 3px 7px
        rgba(212, 75, 79, .20);
}

/* ==========================================================
   HOL MOBILE HEADER
========================================================== */

@media (max-width: 720px) {

    /* PROMO BAR */

    .announcement-bar {
        min-height: 28px;

        padding: 5px 10px;

        font-size: 8px;
        line-height: 1.25;

        text-align: center;
    }


    /* MAIN HEADER */

    .header-container {
        width: 100%;

        display: grid;

        grid-template-columns:
            auto 1fr auto;

        grid-template-areas:
            "menu logo actions"
            "search search search";

        align-items: center;

        gap: 9px 10px;

        padding: 10px 12px;

        box-sizing: border-box;
    }


    /* MOBILE MENU BUTTON */

    .mobile-menu-button {
        grid-area: menu;

        width: 38px;
        height: 38px;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 0;

        border: 0;

        border-radius: 5px;

        background: #ffd400;

        color: #111;

        font-size: 19px;

        cursor: pointer;
    }


    /* LOGO */

    .site-logo {
        grid-area: logo;

        justify-self: start;

        min-width: 0;

        margin: 0;
    }

    .logo-main {
        font-size: 15px !important;
        line-height: .95;
    }

    .logo-sub {
        margin-top: 3px;

        font-size: 6px !important;

        letter-spacing: 1.7px;
    }


    /* HEADER ACTIONS */

    .header-actions {
        grid-area: actions;

        justify-self: end;

        display: flex;

        align-items: center;

        gap: 12px;
    }

    .header-actions .header-action-item {
        min-width: auto;
        min-height: 34px;

        padding: 0;
    }

    .header-action-text {
        display: none !important;
    }

    .header-action-icon {
        width: 23px;
        height: 23px;

        flex: 0 0 23px;
    }


    /* CART BADGE */

    .header-cart-action {
        padding-right: 0;
    }

    .header-cart-action .cart-count {
        top: -4px;
        left: 15px;

        width: 17px;
        height: 17px;

        border: 2px solid #fff;

        font-size: 8px;
    }


    /* SEARCH - FULL SECOND ROW */

    .header-search-wrapper {
        grid-area: search;

        width: 100%;

        margin: 0;
    }

    .header-search {
        width: 100%;

        min-height: 42px;

        display: flex;

        border-radius: 5px !important;
    }

    .header-search input {
        min-width: 0;

        flex: 1;

        height: 40px;

        padding: 0 12px;

        font-size: 12px;
    }

    .header-search button {
        min-width: 78px;

        height: 40px;

        padding: 0 12px;

        font-size: 10px;
    }


    /* LIVE SEARCH */

    .live-search-results {
        top: calc(100% + 4px);

        max-height: 350px;

        z-index: 5000;
    }


    /* MOBILE NAV */

    .main-navigation {
        display: none;
    }

    .main-navigation.is-open {
        display: block;
    }

}

/* ==========================================================
   HOMEPAGE CATEGORY SIDEBAR - FINAL
========================================================== */

.category-sidebar {
    overflow: hidden;

    background: #fff;

    border: 1px solid #e8e8e8;

    border-radius: 8px;

    box-shadow:
        0 3px 12px rgba(0,0,0,.06);
}


/* TITLE */

.category-sidebar h3 {
    margin: 0 16px;

    padding: 15px 0 12px;

    border-bottom: 1px solid #e5e5e5;

    color: #111;

    font-size: 14px;
    font-weight: 800;
}


/* LIST */

.category-sidebar-list {
    display: flex;

    flex-direction: column;
}


/* INDIVIDUAL CATEGORY */

.category-sidebar-list
.category-sidebar-link {
    width: 100%;

    min-height: 39px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 7px 14px;

    box-sizing: border-box;

    color: #222;

    font-size: 11px;
    font-weight: 500;

    text-decoration: none;

    transition:
        background .18s ease,
        color .18s ease,
        padding-left .18s ease;
}


.category-sidebar-list
.category-sidebar-link:hover {
    padding-left: 17px;

    background: #fff8df;

    color: #e55300;
}


/* ICON */

.category-sidebar-icon {
    width: 22px;

    flex: 0 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 16px;
}


/* NAME */

.category-sidebar-name {
    min-width: 0;

    flex: 1;

    line-height: 1.2;
}


/* ARROW */

.category-sidebar-arrow {
    margin-left: auto;

    color: #999;

    font-size: 20px;
    font-weight: 300;

    line-height: 1;

    transition:
        color .18s ease,
        transform .18s ease;
}


.category-sidebar-link:hover
.category-sidebar-arrow {
    color: #e55300;

    transform: translateX(2px);
}


/* ==========================================================
   SHOP 100
========================================================== */

.category-sidebar-list
.category-shop-100 {
    background: #fff9df;

    color: #d92323;

    font-weight: 800;
}


.category-sidebar-list
.category-shop-100:hover {
    background: #fff2ad;

    color: #c71919;
}


/* HOT BADGE */

.category-sidebar-badge {
    margin-left: auto;

    padding: 3px 6px;

    border-radius: 9px;

    background: #e62b2b;

    color: #fff;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: .3px;
}


.category-shop-100
.category-sidebar-arrow {
    margin-left: 2px;
}


/* ==========================================================
   SALE CATEGORY
========================================================== */

.category-sidebar-list
.category-sale {
    color: #d92323;

    font-weight: 800;
}


.category-sale
.category-sidebar-icon {
    color: #e62b2b;
}


/* ==========================================================
   VIEW ALL
========================================================== */

.category-sidebar-footer {
    margin: 0 16px;

    border-top: 1px solid #e5e5e5;
}


.category-sidebar-footer a {
    min-height: 47px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    color: #e55300;

    font-size: 10px;
    font-weight: 800;

    text-decoration: none;

    transition:
        color .18s ease,
        gap .18s ease;
}


.category-sidebar-footer a:hover {
    color: #c92828;

    gap: 9px;
}


.category-sidebar-footer a span {
    font-size: 15px;
}


/* EMPTY */

.category-sidebar-empty {
    padding: 18px;

    color: #777;

    font-size: 11px;
}
/* ==========================================================
   STORE BENEFITS / TRUST STRIP
========================================================== */

.store-benefits {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    margin: 18px 0 22px;

    padding: 18px 15px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #e8e8e8;
    border-radius: 8px;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, .05);
}


.store-benefit {
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 18px;

    box-sizing: border-box;

    border-right: 1px solid #ddd;
}


.store-benefit:last-child {
    border-right: 0;
}


/* ICON */

.store-benefit-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
}


/* TEXT */

.store-benefit-text {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.store-benefit-text strong {
    color: #111;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;
}


.store-benefit-text span {
    color: #555;

    font-size: 10px;
    line-height: 1.3;

    white-space: nowrap;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .store-benefits {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 0;

        padding: 10px;
    }


    .store-benefit {
        justify-content: flex-start;

        padding: 14px;

        border-right: 0;
        border-bottom: 1px solid #eee;
    }


    .store-benefit:nth-last-child(-n+2) {
        border-bottom: 0;
    }

}


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

@media (max-width: 720px) {

    .store-benefits {
        grid-template-columns:
            repeat(2, 1fr);

        margin: 12px 0 18px;

        padding: 6px;
    }


    .store-benefit {
        min-height: 65px;

        padding: 10px 8px;

        gap: 8px;
    }


    .store-benefit-icon {
        width: 31px;
        height: 31px;

        flex-basis: 31px;

        font-size: 21px;
    }


    .store-benefit-text strong {
        font-size: 9px;

        white-space: normal;
    }


    .store-benefit-text span {
        font-size: 8px;

        white-space: normal;
    }


    .store-benefit:last-child {
        grid-column: 1 / -1;

        justify-content: center;

        border-bottom: 0;
    }

}

/* ==========================================================
   AMAZING DEALS CARD
========================================================== */

.sale-card {
    position: relative;
    overflow: hidden;

    min-height: 250px;

    padding: 28px 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 213, 0, .35),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #ff1f1f 0%,
            #d71920 55%,
            #a90000 100%
        );

    color: #fff;

    border-radius: 8px;

    text-decoration: none;

    box-shadow:
        0 6px 18px rgba(190, 0, 0, .18);
}


/* DECORATIVE CIRCLE */

.sale-card::before {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -80px;
    top: -80px;

    border: 25px solid rgba(255,255,255,.08);

    border-radius: 50%;
}


/* SECOND DECORATIVE SHAPE */

.sale-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    left: -70px;
    bottom: -80px;

    background: rgba(255, 213, 0, .12);

    border-radius: 50%;
}


/* SALE BADGE */

.sale-card .promo-label {
    position: relative;
    z-index: 2;

    display: inline-block;

    margin-bottom: 14px;

    padding: 6px 10px;

    background: #ffd400;

    color: #111;

    border-radius: 4px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .5px;
}


/* HEADING */

.sale-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 10px;

    color: #fff;

    font-size: 27px;
    line-height: 1;

    font-weight: 900;

    text-transform: uppercase;
}


/* DESCRIPTION */

.sale-card p {
    position: relative;
    z-index: 2;

    margin: 0 0 20px;

    max-width: 170px;

    color: rgba(255,255,255,.95);

    font-size: 12px;
    line-height: 1.5;
}


/* SHOP NOW */

.sale-card > strong {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;

    padding: 10px 15px;

    background: #111;

    color: #fff;

    border-radius: 4px;

    font-size: 10px;
    font-weight: 900;

    transition:
        transform .2s ease,
        background .2s ease;
}


.sale-card:hover > strong {
    background: #ffd400;

    color: #111;

    transform: translateX(3px);
}



/* ==========================================================
   HOT DEALS - BRIGHT RED
========================================================== */

.market-section-heading.hot-heading {
    margin: -18px -18px 18px;
    padding: 15px 18px;

    background: linear-gradient(
        90deg,
        #ff1f1f 0%,
        #f00000 55%,
        #ff3b1f 100%
    ) !important;

    border-bottom: 3px solid #ffd400;

    border-radius: 7px 7px 0 0;

    box-shadow:
        0 3px 10px rgba(255, 0, 0, .18);
}


/* HOT DEALS TITLE */

.market-section-heading.hot-heading h2 {
    margin: 0;

    color: #fff !important;

    font-size: 20px;
    font-weight: 900;
}


/* SEE ALL */

.market-section-heading.hot-heading a {
    color: #fff !important;

    font-size: 10px;
    font-weight: 900;

    text-decoration: none;
}

.market-section-heading.hot-heading a:hover {
    color: #ffd400 !important;
}


/* ==========================================================
   BRIGHT RED SALE BADGES
========================================================== */

.sale-badge {
    background: #ff1717 !important;

    color: #fff !important;

    border: 0 !important;

    border-radius: 4px;

    padding: 6px 9px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .5px;

    box-shadow:
        0 2px 6px rgba(220, 0, 0, .25);
}


/* PRODUCT HOVER */

.market-product:hover .sale-badge {
    background: #e60000 !important;

    color: #fff !important;
}

/* ==========================================================
   NEW ARRIVALS HEADER
========================================================== */

.market-section-heading:not(.hot-heading) {
    margin: -18px -18px 18px;
    padding: 15px 18px;

  background: #e60000 !important;

    border-bottom: 3px solid #ffd400;

    border-radius: 7px 7px 0 0;

    box-shadow:
        0 3px 10px rgba(255, 138, 0, .15);
}


/* NEW ARRIVALS TITLE */

.market-section-heading:not(.hot-heading) h2 {
    margin: 0;

    color: #fff !important;

    font-size: 20px;
    font-weight: 900;
}


/* SEE ALL */

.market-section-heading:not(.hot-heading) a {
    color: #fff !important;

    font-size: 10px;
    font-weight: 900;

    text-decoration: none;
}


.market-section-heading:not(.hot-heading) a:hover {
    color: #111 !important;
}

/* ==========================================================
   FLOATING WHATSAPP BUTTON
========================================================== */

.floating-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 9999;

    min-height: 52px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding:
        7px 17px
        7px 8px;

    box-sizing: border-box;

    background: #25D366;

    color: #fff;

    border-radius: 30px;

    text-decoration: none;

    box-shadow:
        0 5px 18px
        rgba(0, 0, 0, .22);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.floating-whatsapp:hover {
    background: #1fbd59;

    color: #fff;

    transform:
        translateY(-3px);

    box-shadow:
        0 8px 24px
        rgba(0, 0, 0, .27);
}


/* ICON */

.floating-whatsapp-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;
}


.floating-whatsapp-icon svg {
    width: 25px;
    height: 25px;

    fill: #25D366;

    stroke: none;
}


/* TEXT */

.floating-whatsapp-text {
    font-size: 11px;
    font-weight: 900;

    letter-spacing: .3px;

    white-space: nowrap;
}


/* MOBILE */

@media (max-width: 720px) {

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;

        min-height: 48px;

        padding:
            5px 13px
            5px 6px;
    }

    .floating-whatsapp-icon {
        width: 36px;
        height: 36px;

        flex-basis: 36px;
    }

    .floating-whatsapp-text {
        font-size: 9px;
    }
}

/* ==========================================================
   PRODUCT CARD BUTTONS - FINAL
========================================================== */

.product-actions {
    margin-top: 12px;
}


/* BOTH BUTTON TYPES */

.product-button {
    width: 100%;
    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    padding: 0 14px;

    border: 1px solid #ff9800 !important;
    border-radius: 5px;

    background: #ff9800 !important;

    color: #111 !important;

    font-family: inherit;
    font-size: 10px;
    font-weight: 900;

    text-align: center;
    text-decoration: none !important;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .15s ease,
        box-shadow .2s ease;
}


/* ADD TO CART */

.product-cart-button {
    background: #ff9800 !important;
    border-color: #ff9800 !important;
    color: #111 !important;
}


/* VIEW OPTIONS */

.product-options-button {
    background: #ff9800 !important;
    border-color: #ff9800 !important;
    color: #111 !important;
}


/* HOVER - BOTH */

.product-button:hover,
.product-cart-button:hover,
.product-options-button:hover {
    background: #111 !important;
    border-color: #111 !important;

    color: #fff !important;

    transform: translateY(-1px);

    box-shadow:
        0 4px 10px rgba(0,0,0,.16);
}


/* CLICK */

.product-button:active {
    transform: translateY(0);

    box-shadow: none;
}


/* DISABLED */

.product-button:disabled {
    opacity: .65;

    cursor: wait;

    transform: none;
}


/* MOBILE */

@media (max-width: 720px) {

    .product-button {
        min-height: 38px;

        padding: 0 10px;

        font-size: 9px;
    }

}

/* ==========================================================
   PRODUCT LIST / SEARCH PAGE BUTTONS
========================================================== */

.product-list-actions {
    width: 100%;

    margin-top: 12px;
}


/* BOTH ADD TO CART + SELECT OPTIONS */

.product-list-button {
    width: 100%;
    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    padding: 0 14px;

    border: 1px solid #ff9800 !important;
    border-radius: 5px;

    background: #ff9800 !important;

    color: #111 !important;

    font-family: inherit;
    font-size: 10px;
    font-weight: 900;

    text-align: center;
    text-decoration: none !important;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .15s ease,
        box-shadow .2s ease;
}


/* SIMPLE PRODUCT */

.product-list-cart {
    background: #ff9800 !important;
    border-color: #ff9800 !important;
    color: #111 !important;
}


/* VARIABLE PRODUCT */

.product-list-options {
    background: #ff9800 !important;
    border-color: #ff9800 !important;
    color: #111 !important;
}


/* HOVER BOTH */

.product-list-button:hover,
.product-list-cart:hover,
.product-list-options:hover {
    background: #111 !important;

    border-color: #111 !important;

    color: #fff !important;

    transform: translateY(-1px);

    box-shadow:
        0 4px 10px
        rgba(0, 0, 0, .16);
}


/* CLICK */

.product-list-button:active {
    transform: translateY(0);

    box-shadow: none;
}


/* DISABLED / LOADING */

.product-list-button:disabled {
    opacity: .65;

    cursor: wait;

    transform: none;
}


/* MOBILE */

@media (max-width: 720px) {

    .product-list-button {
        min-height: 38px;

        padding: 0 10px;

        font-size: 9px;
    }

}


/* ==========================================================
   PRODUCT DETAIL PAGE - PREMIUM STYLE
========================================================== */

.product-detail-page {
    width: 100%;
    padding: 28px 20px 55px;
    box-sizing: border-box;
    background: #f7f7f8;
}


/* MAIN PRODUCT CARD */

.product-detail-layout {
    width: min(100%, 1400px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(400px, .95fr) minmax(420px, 1.05fr);
    gap: 55px;

    padding: 32px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #ededed;
    border-radius: 12px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}


/* ==========================================================
   GALLERY
========================================================== */

.product-gallery {
    min-width: 0;
}


.product-main-image {
    width: 100%;
    height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    background: #fafafa;

    border: 1px solid #eeeeee;
    border-radius: 10px;

    overflow: hidden;
}


.product-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    transition: transform .3s ease;
}


.product-main-image:hover img {
    transform: scale(1.025);
}


/* THUMBNAILS */

.product-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 14px;
}


.product-thumbnail {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 5px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #ddd;
    border-radius: 7px;

    cursor: pointer;

    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


.product-thumbnail:hover {
    border-color: #ff9800;

    transform: translateY(-2px);

    box-shadow: 0 3px 10px rgba(0, 0, 0, .10);
}


.product-thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* ==========================================================
   PRODUCT INFORMATION
========================================================== */

.product-detail-info {
    min-width: 0;

    padding: 14px 0;
}


.product-detail-info h1 {
    margin: 0 0 10px;

    color: #111;

    font-size: clamp(28px, 2.3vw, 38px);
    line-height: 1.15;

    font-weight: 800;
}


/* SKU */

.product-sku {
    display: inline-block;

    margin: 3px 0 15px;

    padding: 5px 9px;

    background: #f4f4f4;

    border-radius: 4px;

    color: #777;

    font-size: 10px;
    font-weight: 700;
}


/* PRICE */

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 5px 0 20px;

    padding-bottom: 20px;

    border-bottom: 1px solid #e8e8e8;

    color: #d90000;

    font-size: 27px;
    font-weight: 900;
}


.product-sale-price {
    color: #e00000;
}


.product-regular-price {
    color: #999;

    font-size: 17px;
    font-weight: 500;

    text-decoration: line-through;
}


/* DESCRIPTION */

.product-short-description {
    margin-bottom: 20px;

    color: #555;

    font-size: 13px;
    line-height: 1.7;
}


/* ==========================================================
   VARIATION SELECTOR
========================================================== */

.variation-selector {
    margin-top: 18px;

    padding: 22px;

    background:
        linear-gradient(
            135deg,
            #fffaf0 0%,
            #fff 100%
        );

    border: 1px solid #ffe0a3;

    border-radius: 9px;
}


.variation-selector h3 {
    margin: 0 0 18px;

    color: #111;

    font-size: 16px;
    font-weight: 900;
}


/* FIELD */

.variation-field {
    margin-bottom: 16px;
}


.variation-field label {
    display: block;

    margin-bottom: 7px;

    color: #222;

    font-size: 11px;
    font-weight: 800;
}


.variation-select {
    width: 100%;
    min-height: 47px;

    padding: 0 14px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #cfcfcf;
    border-radius: 5px;

    color: #111;

    font-family: inherit;
    font-size: 12px;

    outline: none;

    cursor: pointer;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.variation-select:hover {
    border-color: #ff9800;
}


.variation-select:focus {
    border-color: #ff9800;

    box-shadow:
        0 0 0 3px
        rgba(255, 152, 0, .13);
}


/* VARIATION PRICE */

.variation-price {
    margin-top: 10px;

    color: #d90000;

    font-size: 20px;
    font-weight: 900;
}


/* ==========================================================
   ADD TO CART / SELECT OPTIONS
========================================================== */

.product-detail-cart-button {
    width: 100%;
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 16px;

    padding: 0 20px;

    box-sizing: border-box;

    background: #ff9800;

    border: 1px solid #ff9800;
    border-radius: 6px;

    color: #111;

    font-family: inherit;
    font-size: 11px;
    font-weight: 900;

    letter-spacing: .3px;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .15s ease,
        box-shadow .2s ease;
}


.product-detail-cart-button:hover:not(:disabled) {
    background: #111;

    border-color: #111;

    color: #fff;

    transform: translateY(-1px);

    box-shadow:
        0 5px 14px
        rgba(0, 0, 0, .18);
}


/* BEFORE VARIATION IS SELECTED */

.product-detail-cart-button:disabled {
    background: #eeeeee;

    border-color: #e2e2e2;

    color: #888;

    cursor: not-allowed;

    box-shadow: none;
}


/* ==========================================================
   VIEW CART
========================================================== */

.product-detail-view-cart {
    width: 100%;
    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 10px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #111;
    border-radius: 6px;

    color: #111;

    font-size: 10px;
    font-weight: 900;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease;
}


.product-detail-view-cart:hover {
    background: #111;

    color: #fff;
}


.product-detail-view-cart span {
    min-width: 22px;
    height: 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 5px;

    box-sizing: border-box;

    background: #ff1717;

    border-radius: 50%;

    color: #fff;

    font-size: 9px;
}


/* ==========================================================
   TRUST BENEFITS
========================================================== */

.product-detail-benefits {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 9px;

    margin-top: 20px;

    padding-top: 18px;

    border-top: 1px solid #e8e8e8;
}


.product-detail-benefits > div {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px;

    box-sizing: border-box;

    background: #fafafa;

    border: 1px solid #eeeeee;
    border-radius: 6px;

    color: #333;

    font-size: 9px;
    font-weight: 700;

    text-align: center;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.product-description-section {
    width: min(100%, 1400px);

    margin: 22px auto 0;

    padding: 28px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #ededed;
    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0,0,0,.04);
}


.product-description-section h2 {
    margin: 0 0 18px;

    padding-left: 12px;

    border-left: 4px solid #ff9800;

    color: #111;

    font-size: 21px;
    font-weight: 900;
}


.product-description {
    color: #555;

    font-size: 13px;
    line-height: 1.75;
}


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

.related-products-section {
    width: min(100%, 1400px);

    margin: 22px auto 0;

    padding: 25px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #ededed;
    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0,0,0,.04);
}


.related-products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}


.related-products-heading span {
    color: #ff9800;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}


.related-products-heading h2 {
    margin: 4px 0 0;

    color: #111;

    font-size: 22px;
    font-weight: 900;
}


.related-products-heading > a {
    color: #111;

    font-size: 10px;
    font-weight: 900;

    text-decoration: none;
}


.related-products-heading > a:hover {
    color: #ff9800;
}


/* GRID */

.related-products-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 14px;
}


/* CARD */

.related-product-card {
    min-width: 0;

    overflow: hidden;

    background: #fff;

    border: 1px solid #eeeeee;
    border-radius: 7px;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}


.related-product-card:hover {
    transform: translateY(-3px);

    border-color: #ffd1d1;

    box-shadow:
        0 7px 18px
        rgba(0,0,0,.08);
}


/* RELATED IMAGE */

.related-product-image {
    height: 210px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;

    box-sizing: border-box;

    background: #fafafa;
}


.related-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* RELATED BODY */

.related-product-body {
    padding: 13px;
}


.related-product-name {
    display: block;

    min-height: 34px;

    color: #111;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.4;

    text-decoration: none;
}


.related-product-name:hover {
    color: #ff9800;
}


.related-product-price {
    min-height: 28px;

    display: flex;
    align-items: center;

    gap: 7px;

    margin-top: 7px;

    color: #d90000;

    font-size: 15px;
    font-weight: 900;
}


.related-old-price {
    color: #999;

    font-size: 11px;
    font-weight: 500;

    text-decoration: line-through;
}


/* RELATED BUTTONS */

.related-product-actions {
    margin-top: 10px;
}


.related-product-button {
    width: 100%;
    min-height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    background: #ff9800;

    border: 1px solid #ff9800;
    border-radius: 5px;

    color: #111;

    font-family: inherit;
    font-size: 9px;
    font-weight: 900;

    text-decoration: none;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}


.related-product-button:hover {
    background: #111;

    border-color: #111;

    color: #fff;
}


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

@media (max-width: 1050px) {

    .product-detail-layout {
        gap: 30px;
    }

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

}


@media (max-width: 850px) {

    .product-detail-page {
        padding: 15px 10px 40px;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;

        padding: 18px;
    }

    .product-main-image {
        height: 430px;
    }

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

}


@media (max-width: 520px) {

    .product-detail-layout {
        padding: 12px;
    }

    .product-main-image {
        height: 340px;

        padding: 10px;
    }

    .product-detail-info h1 {
        font-size: 24px;
    }

    .product-detail-price {
        font-size: 22px;
    }

    .variation-selector {
        padding: 16px;
    }

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

    .related-products-section {
        padding: 16px 10px;
    }

    .related-products-grid {
        gap: 8px;
    }

    .related-product-image {
        height: 165px;
    }

}
/* ==========================================================
   PAYMENT PAGE
========================================================== */

.payment-page {
    width: min(calc(100% - 32px), 1350px);

    margin: 28px auto 55px;
}


/* MAIN PAYMENT GRID */

.payment-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        390px;

    gap: 24px;

    align-items: start;
}


/* CARDS */

.payment-card,
.payment-summary {
    background: #fff;

    border: 1px solid #ededed;

    border-radius: 10px;

    box-shadow:
        0 6px 22px
        rgba(0,0,0,.05);
}


/* LEFT */

.payment-card {
    padding: 28px;
}


/* RIGHT SUMMARY */

.payment-summary {
    padding: 24px;
}


.payment-summary h2 {
    margin: 0 0 18px;

    padding-bottom: 16px;

    border-bottom:
        1px solid #e6e6e6;

    font-size: 18px;

    font-weight: 900;
}


.payment-summary-row {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 0;

    border-bottom:
        1px solid #eee;
}


.payment-summary-total {
    color: #111;

    font-size: 21px;

    font-weight: 900;
}


/* ==========================================================
   M-PESA AREA
========================================================== */

.mpesa-payment-box {
    margin-top: 22px;

    padding: 22px;

    background:
        linear-gradient(
            135deg,
            #f7fff8,
            #ffffff
        );

    border:
        1px solid #ccebd2;

    border-radius: 9px;
}


/* HEADING */

.mpesa-heading {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 22px;
}


.mpesa-logo-circle {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #31a94b;

    color: #fff;

    border-radius: 50%;

    font-size: 19px;

    font-weight: 900;
}


.mpesa-heading h2 {
    margin: 0 0 4px;

    color: #111;

    font-size: 19px;

    font-weight: 900;
}


.mpesa-heading p {
    margin: 0;

    color: #666;

    font-size: 11px;

    line-height: 1.5;
}


/* ==========================================================
   PHONE INPUT
========================================================== */

.mpesa-phone-group label {
    display: block;

    margin-bottom: 8px;

    color: #111;

    font-size: 11px;

    font-weight: 900;
}


.mpesa-phone-input {
    width: 100%;

    min-height: 50px;

    display: flex;

    align-items: stretch;

    overflow: hidden;

    border:
        2px solid #d6d6d6;

    border-radius: 6px;

    background: #fff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.mpesa-phone-input:focus-within {
    border-color: #31a94b;

    box-shadow:
        0 0 0 3px
        rgba(49,169,75,.12);
}


.mpesa-country-code {
    min-width: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f2f2f2;

    border-right:
        1px solid #ddd;

    color: #333;

    font-size: 13px;

    font-weight: 800;
}


.mpesa-phone-input input {
    flex: 1;

    min-width: 0;

    padding: 0 14px;

    border: 0;

    outline: none;

    background: #fff;

    color: #111;

    font-family: inherit;

    font-size: 15px;

    font-weight: 800;
}


.mpesa-phone-group small {
    display: block;

    margin-top: 6px;

    color: #777;

    font-size: 9px;
}


/* ==========================================================
   PAY BUTTON
========================================================== */

.mpesa-pay-button {
    width: 100%;

    min-height: 50px;

    margin-top: 20px;

    border: 0;

    border-radius: 6px;

    background: #ff9800;

    color: #111;

    font-family: inherit;

    font-size: 11px;

    font-weight: 900;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        transform .15s ease,
        box-shadow .2s ease;
}


.mpesa-pay-button:hover {
    background: #111;

    color: #fff;

    transform: translateY(-1px);

    box-shadow:
        0 5px 13px
        rgba(0,0,0,.18);
}


/* ERROR */

.mpesa-payment-error {
    margin-top: 13px;

    padding: 11px 13px;

    background: #fff0f0;

    border-left:
        4px solid #ff1717;

    color: #b00000;

    font-size: 10px;

    font-weight: 700;
}


/* MOBILE */

@media (max-width: 800px) {

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

    .payment-summary {
        order: -1;
    }

}


@media (max-width: 520px) {

    .payment-page {
        width: 100%;

        margin-top: 0;
    }

    .payment-card,
    .payment-summary {
        border-radius: 0;

        border-left: 0;
        border-right: 0;
    }

    .payment-card {
        padding: 18px 14px;
    }

}

/* ==========================================================
   M-PESA STATUS
========================================================== */

.mpesa-payment-status {
    display: none;

    margin-top: 14px;

    padding: 11px 13px;

    border-radius: 5px;

    background: #effaf2;

    border-left: 4px solid #25a244;

    color: #17662b;

    font-size: 10px;
    line-height: 1.5;

    font-weight: 700;
}


.mpesa-payment-status:not(:empty) {
    display: block;
}


.mpesa-payment-status.is-loading {
    background: #fff8e8;

    border-left-color: #ff9800;

    color: #805000;
}


.mpesa-payment-status.is-error {
    background: #fff0f0;

    border-left-color: #ff1717;

    color: #b00000;
}

/* ==========================================================
   CUSTOMER INFORMATION PAGE
========================================================== */

.information-page {
    width: min(calc(100% - 32px), 1350px);

    margin: 30px auto 60px;
}


/* HEADING */

.information-heading {
    margin-bottom: 28px;

    padding: 30px;

    background:
        linear-gradient(
            120deg,
            #111 0%,
            #1d1d1d 75%,
            #ff9800 75%
        );

    border-radius: 10px;

    color: #fff;
}


.information-heading > span {
    color: #ffb000;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.4px;
}


.information-heading h1 {
    margin: 7px 0;

    font-size: 32px;
    font-weight: 900;
}


.information-heading p {
    margin: 0;

    color: #ddd;

    font-size: 12px;
}


/* LAYOUT */

.information-layout {
    display: grid;

    grid-template-columns:
        240px minmax(0, 1fr);

    gap: 24px;

    align-items: start;
}


/* LEFT NAV */

.information-nav {
    position: sticky;

    top: 20px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #ededed;
    border-radius: 9px;

    box-shadow:
        0 4px 18px
        rgba(0,0,0,.05);
}


.information-nav h3 {
    margin: 0;

    padding: 17px 18px;

    background: #ff9800;

    color: #111;

    font-size: 11px;

    font-weight: 900;
}


.information-nav a {
    min-height: 47px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border-bottom:
        1px solid #eeeeee;

    color: #222;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        padding-left .2s ease;
}


.information-nav a:last-child {
    border-bottom: 0;
}


.information-nav a:hover {
    padding-left: 22px;

    background: #fff6e9;

    color: #e66e00;
}


.information-nav a span {
    color: #999;

    font-size: 18px;
}


/* CONTENT */

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


.information-section {
    scroll-margin-top: 30px;

    margin-bottom: 18px;

    padding: 28px;

    background: #fff;

    border: 1px solid #ededed;

    border-radius: 9px;

    box-shadow:
        0 4px 18px
        rgba(0,0,0,.04);
}


/* TITLE */

.information-section-title {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}


.information-number {
    width: 47px;
    height: 47px;

    flex: 0 0 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff9800;

    border-radius: 50%;

    color: #111;

    font-size: 12px;

    font-weight: 900;
}


.information-section-title div > span {
    color: #e20000;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}


.information-section-title h2 {
    margin: 3px 0 0;

    color: #111;

    font-size: 22px;

    font-weight: 900;
}


/* TEXT */

.information-section p {
    max-width: 850px;

    margin: 0 0 14px;

    color: #555;

    font-size: 12px;

    line-height: 1.75;
}


.information-section p:last-child {
    margin-bottom: 0;
}


/* CONTACT CARDS */

.information-contact-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-top: 20px;
}


.information-contact-card {
    min-height: 110px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 18px;

    box-sizing: border-box;

    background: #fafafa;

    border: 1px solid #eeeeee;

    border-radius: 7px;

    color: #111;

    text-decoration: none;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


a.information-contact-card:hover {
    transform: translateY(-2px);

    border-color: #ff9800;

    box-shadow:
        0 5px 14px
        rgba(0,0,0,.07);
}


.information-contact-card strong {
    font-size: 13px;

    font-weight: 900;
}


.information-contact-card span {
    margin-top: 5px;

    color: #e26c00;

    font-size: 12px;

    font-weight: 800;
}


.information-contact-card small {
    margin-top: 5px;

    color: #777;

    font-size: 9px;

    line-height: 1.4;
}


/* RESPONSIVE */

@media (max-width: 800px) {

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


    .information-nav {
        position: static;

        display: grid;

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


    .information-nav h3 {
        grid-column: 1 / -1;
    }


    .information-nav a {
        border-right:
            1px solid #eee;
    }

}


@media (max-width: 520px) {

    .information-page {
        width: 100%;

        margin-top: 0;
    }


    .information-heading {
        border-radius: 0;

        padding: 24px 16px;
    }


    .information-heading h1 {
        font-size: 27px;
    }


    .information-nav {
        border-radius: 0;
    }


    .information-section {
        margin-bottom: 10px;

        padding: 20px 15px;

        border-radius: 0;

        border-left: 0;
        border-right: 0;
    }


    .information-contact-grid {
        grid-template-columns: 1fr;
    }

}

/* ==========================================================
   OUR BRANCHES
========================================================== */

.information-branches-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-top: 22px;
}


.information-branch-card {
    min-height: 85px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 17px 18px;

    box-sizing: border-box;

    background: #fafafa;

    border: 1px solid #eeeeee;

    border-radius: 8px;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


.information-branch-card:hover {
    transform: translateY(-2px);

    border-color: #ff9800;

    box-shadow:
        0 5px 15px
        rgba(0, 0, 0, .06);
}


.branch-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff9800;

    border-radius: 50%;

    font-size: 18px;
}


.information-branch-card > div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.information-branch-card strong {
    color: #111;

    font-size: 12px;
    font-weight: 900;
}


.information-branch-card div span {
    color: #777;

    font-size: 10px;

    line-height: 1.4;
}


/* MOBILE */

@media (max-width: 650px) {

    .information-branches-grid {
        grid-template-columns: 1fr;
    }

}


/* ==========================================================
   OUR BRANCHES - PREMIUM CARDS
========================================================== */

.branches-section {
    overflow: hidden;
}


.branches-intro {
    max-width: 900px !important;

    margin-bottom: 26px !important;
}


/* GRID */

.branches-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* CARD */

.branch-card {
    min-height: 245px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    padding: 22px 20px;

    box-sizing: border-box;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffafa 100%
        );

    border: 1px solid #eeeeee;

    border-radius: 12px;

    box-shadow:
        0 5px 18px
        rgba(0, 0, 0, .06);

    text-align: center;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


.branch-card:hover {
    transform:
        translateY(-4px);

    border-color:
        #ffb3b3;

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, .10);
}


/* BIG PIN */

.branch-pin {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    background:
        linear-gradient(
            135deg,
            #ff2a2a,
            #d60000
        );

    color: #fff;

    border-radius: 50%;

    font-size: 22px;

    box-shadow:
        0 4px 10px
        rgba(220, 0, 0, .20);
}


/* BRANCH NAME */

.branch-card h3 {
    margin: 0 0 14px;

    color: #d90000;

    font-size: 19px;

    line-height: 1.2;

    font-weight: 900;
}


/* LOCATION */

.branch-location {
    min-height: 45px;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    gap: 7px;
}


.branch-location > span {
    color: #e00000;

    font-size: 14px;

    line-height: 1.5;
}


.branch-location p {
    margin: 0 !important;

    color: #333 !important;

    font-size: 12px !important;

    line-height: 1.55 !important;

    text-align: center;
}


/* DIVIDER */

.branch-divider {
    width: 100%;

    height: 1px;

    margin: 17px 0;

    background: #e6e6e6;
}


/* PHONE */

.branch-phone {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    color: #222;

    font-size: 14px;

    font-weight: 800;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}


.branch-phone span {
    color: #e00000;

    font-size: 18px;
}


.branch-phone:hover {
    color: #e00000;

    transform:
        translateY(-1px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

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

}


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

@media (max-width: 620px) {

    .branches-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .branch-card {
        min-height: auto;

        padding: 20px 16px;
    }


    .branch-card h3 {
        font-size: 17px;
    }


    .branch-location p {
        font-size: 11px !important;
    }


    .branch-phone {
        font-size: 13px;
    }

}
/* =========================================
   HEADER LOGO
========================================= */

.site-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}


.site-logo-image {
    display: block;

    width: 155px;
    height: auto;

    object-fit: contain;
}


/* TABLET */

@media (max-width: 1000px) {

    .site-logo-image {
        width: 135px;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .site-logo-image {
        width: 115px;
    }

}
/* =========================================
   COMPACT HEADER FIX
========================================= */

.header-container {
    min-height: 72px !important;
    height: 72px !important;

    padding-top: 0 !important;
    padding-bottom: 0 !important;

    display: flex;
    align-items: center;
}


/* LOGO */

.site-logo {
    width: 220px !important;
    min-width: 220px !important;
    height: 72px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.site-logo-image {
    width: 210px !important;
    height: 65px !important;
    max-height: none !important;

    object-fit: contain;

    transform: scale(2.5);
}

/* SEARCH */

.header-search {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


/* ACCOUNT / CART AREA */

.header-actions {
    margin-top: 0 !important;
    margin-bottom: 0 !important;

    align-items: center;
}

/* =========================================
   CUSTOMER CARE CARD - COMPACT
========================================= */

.support-card {
    width: 100%;
    min-height: 105px;
    box-sizing: border-box;

    padding: 16px !important;

    display: flex !important;
    align-items: center;
    gap: 12px;

    background: #fff !important;

    border: 1px solid #e5e5e5;
    border-radius: 10px;

    text-decoration: none !important;
    color: #111 !important;

    overflow: hidden;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);

    transition: 0.2s ease;
}

.support-card:hover {
    transform: translateY(-2px);
    border-color: #25d366;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}


/* ICON */

.support-card .side-promo-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;
    color: #fff;

    border-radius: 50%;

    font-size: 0;
}

.support-card .side-promo-icon::before {
    content: "☎";
    font-size: 22px;
    color: #fff;
}


/* CONTENT */

.support-card > div {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* TITLE */

.support-card strong {
    display: block;

    margin: 0 0 3px;

    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;

    color: #111;

    white-space: nowrap;
}


/* SUBTEXT */

.support-card span:not(.side-promo-icon) {
    display: block;

    margin: 0;

    font-size: 11px;
    line-height: 1.3;

    color: #666;

    white-space: nowrap;
}


/* CHAT LINK */

.support-card > div::after {
    content: "CHAT NOW →";

    display: inline-block;

    margin-top: 8px;

    padding: 6px 10px;

    background: #ff9800;
    color: #000;

    border-radius: 5px;

    font-size: 10px;
    line-height: 1;
    font-weight: 800;

    white-space: nowrap;
}

.support-card:hover > div::after {
    background: #000;
    color: #fff;
}

/* ==========================================================
   MANUAL M-PESA PAYMENT
========================================================== */

.manual-payment-box {
    margin-top: 18px;
    padding: 22px;

    background:
        linear-gradient(
            135deg,
            #fffaf0,
            #ffffff
        );

    border: 1px solid #ffd795;
    border-radius: 9px;
}


.manual-payment-heading {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 20px;
}


.manual-payment-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff9800;

    border-radius: 50%;

    color: #111;

    font-size: 18px;
    font-weight: 900;
}


.manual-payment-heading h2 {
    margin: 0 0 4px;

    color: #111;

    font-size: 18px;
    font-weight: 900;
}


.manual-payment-heading p {
    margin: 0;

    color: #666;

    font-size: 10px;
    line-height: 1.5;
}


/* PAYMENT DETAILS */

.manual-payment-details {
    overflow: hidden;

    background: #fff;

    border: 1px solid #e7e7e7;
    border-radius: 7px;
}


.manual-payment-row {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 0 15px;

    border-bottom: 1px solid #eee;
}


.manual-payment-row:last-child {
    border-bottom: 0;
}


.manual-payment-row span {
    color: #666;

    font-size: 10px;
}


.manual-payment-row strong {
    color: #111;

    font-size: 12px;
    font-weight: 900;
}


.manual-payment-amount {
    color: #d90000 !important;

    font-size: 15px !important;
}


/* INSTRUCTIONS */

.manual-payment-instructions {
    margin-top: 17px;
    padding: 16px;

    background: #fafafa;

    border-radius: 6px;
}


.manual-payment-instructions > strong {
    display: block;

    margin-bottom: 10px;

    font-size: 11px;
    font-weight: 900;
}


.manual-payment-instructions ol {
    margin: 0;
    padding-left: 20px;

    color: #555;

    font-size: 10px;
    line-height: 1.8;
}


/* I HAVE PAID */

.manual-payment-button {
    width: 100%;
    min-height: 50px;

    margin-top: 17px;

    background: #111;

    border: 1px solid #111;
    border-radius: 6px;

    color: #fff;

    font-family: inherit;
    font-size: 11px;
    font-weight: 900;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease;
}


.manual-payment-button:hover {
    background: #ff9800;

    border-color: #ff9800;

    color: #111;
}


.manual-payment-note {
    display: block;

    margin-top: 9px;

    color: #777;

    font-size: 9px;

    text-align: center;
}


/* ==========================================================
   MANUAL PAYMENT PENDING PAGE
========================================================== */

.manual-confirmation-page {
    width: min(calc(100% - 30px), 700px);

    margin: 35px auto 60px;
}


.manual-confirmation-card {
    padding: 44px 32px;

    background: #fff;

    border: 1px solid #ededed;
    border-radius: 11px;

    text-align: center;

    box-shadow:
        0 7px 28px
        rgba(0,0,0,.06);
}


.manual-confirmation-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff9800;

    border-radius: 50%;

    color: #111;

    font-size: 32px;
    font-weight: 900;
}


.manual-confirmation-card h1 {
    margin: 0 0 10px;

    font-size: 27px;
    font-weight: 900;
}


.manual-confirmation-intro {
    margin-bottom: 25px;

    color: #666;

    font-size: 12px;
}


.manual-confirmation-status {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 17px;

    background: #fff8e5;

    border: 1px solid #ffd88a;
    border-radius: 7px;

    text-align: left;
}


.pending-dot {
    width: 13px;
    height: 13px;

    flex: 0 0 13px;

    border-radius: 50%;

    background: #ff9800;

    box-shadow:
        0 0 0 5px
        rgba(255,152,0,.13);
}


.manual-confirmation-status strong {
    font-size: 12px;
    font-weight: 900;
}


.manual-confirmation-status p {
    margin: 3px 0 0;

    color: #666;

    font-size: 10px;
}


.manual-confirmation-details {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    margin: 22px 0;

    padding: 18px;

    background: #f8f8f8;

    border-radius: 7px;
}


.manual-confirmation-details > div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.manual-confirmation-details span {
    color: #777;

    font-size: 9px;
}


.manual-confirmation-details strong {
    color: #111;

    font-size: 14px;
    font-weight: 900;
}


.manual-confirmation-message {
    color: #555;

    font-size: 11px;
}


.manual-confirmation-button {
    display: inline-flex;

    min-height: 43px;

    align-items: center;
    justify-content: center;

    margin-top: 14px;

    padding: 0 22px;

    background: #111;

    border-radius: 5px;

    color: #fff;

    font-size: 10px;
    font-weight: 900;

    text-decoration: none;
}


.manual-confirmation-button:hover {
    background: #ff9800;

    color: #111;
}

/* ==========================================================
   BACK TO SCHOOL SECTION
========================================================== */

.back-to-school-heading {
    margin: -18px -18px 18px;
    padding: 15px 18px;

    background: linear-gradient(
        90deg,
        #0066cc 0%,
        #0088ff 100%
    ) !important;

    border-bottom: 3px solid #ffd400;

    border-radius: 7px 7px 0 0;
}


.back-to-school-heading h2 {
    margin: 0;

    color: #fff !important;

    font-size: 20px;
    font-weight: 900;
}


.back-to-school-heading a {
    color: #fff !important;

    font-size: 10px;
    font-weight: 900;

    text-decoration: none;
}


.back-to-school-heading a:hover {
    color: #ffd400 !important;
}


/* SCHOOL BADGE */

.school-badge {
    position: absolute;

    top: 9px;
    right: 9px;

    padding: 5px 8px;

    background: #0066cc;

    color: #fff;

    border-radius: 4px;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .4px;

    box-shadow:
        0 2px 6px rgba(0,0,0,.15);
}


.back-to-school-section
.market-product-image {
    position: relative;
}


/* ==========================================================
   PRODUCT LIST PAGE - UNIFIED CONTENT WIDTH
========================================================== */

.product-filter-banner,
.product-list-toolbar,
.product-list-heading,
.products,
.product-pagination {
    width: calc(100% - 40px);
    max-width: 1400px;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box;
}


/* ==========================================================
   FILTER TOP BANNER
========================================================== */

.product-filter-banner {
    margin-top: 18px;
    margin-bottom: 0 !important;

    padding: 22px 24px;

    border-radius: 12px 12px 0 0;
}


/* ==========================================================
   FILTER CONTROLS
========================================================== */

.product-list-toolbar {
    margin-top: 0 !important;
    margin-bottom: 28px;

    padding: 18px 20px;

    background: #fff;

    border-radius: 0 0 12px 12px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.05);
}


/* Keep filters nicely distributed */

.product-filter-form {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(220px, 1fr)
        minmax(220px, 1fr)
        auto
        auto;

    align-items: end;

    gap: 16px;
}


.product-filter-group {
    width: 100%;
}


.product-filter-group select {
    width: 100%;
}


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

.product-list-heading {
    margin-top: 0;
    margin-bottom: 18px;
}


/* ==========================================================
   PRODUCT GRID
========================================================== */

.products {
    margin-top: 0;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

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

}


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

@media (max-width: 768px) {

    .product-filter-banner,
    .product-list-toolbar,
    .product-list-heading,
    .products,
    .product-pagination {
        width: calc(100% - 24px);
    }


    .product-filter-banner {
        padding: 18px 16px;
    }


    .product-list-toolbar {
        padding: 16px;
        margin-bottom: 22px;
    }


    .product-filter-form {
        grid-template-columns: 1fr;

        gap: 13px;
    }


    .product-sale-filter,
    .clear-product-filters {
        width: 100%;
        box-sizing: border-box;
    }


    .clear-product-filters {
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

/* ==========================================================
   PRODUCT PAGE - CENTERED FILTER AREA
========================================================== */

/* Remove any full-width background from parent wrappers */
.product-filter-banner,
.product-list-toolbar {
    box-sizing: border-box;

    width: calc(100% - 40px);
    max-width: 1400px;

    margin-left: auto !important;
    margin-right: auto !important;
}


/* ==========================================================
   YELLOW FILTER HEADER
========================================================== */

.product-filter-banner {
    margin-top: 20px !important;
    margin-bottom: 0 !important;

    padding: 22px 24px;

    background:
        linear-gradient(
            135deg,
            #fff1a8 0%,
            #ffd84d 100%
        ) !important;

    border: 1px solid #f2c200;

    border-bottom: none;

    border-radius: 12px 12px 0 0;

    overflow: hidden;
}


/* ==========================================================
   WHITE FILTER CONTROLS
========================================================== */

.product-list-toolbar {
    margin-top: 0 !important;
    margin-bottom: 30px !important;

    padding: 18px 20px;

    background: #ffffff !important;

    border:
        1px solid #eeeeee;

    border-top: none;

    border-radius: 0 0 12px 12px;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.06);
}


/* ==========================================================
   ALIGN RESULTS WITH FILTER
========================================================== */

.product-list-heading,
.products,
.product-pagination {
    width: calc(100% - 40px);
    max-width: 1400px;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box;
}


/* ==========================================================
   FILTER FORM
========================================================== */

.product-filter-form {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(220px, 1fr)
        minmax(220px, 1fr)
        auto
        auto;

    gap: 16px;

    align-items: end;
}


.product-filter-group {
    width: 100%;
}


.product-filter-group select {
    width: 100%;
}


/* ==========================================================
   PAGE BACKGROUND
========================================================== */

body {
    background: #f6f6f8;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

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

}


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

@media (max-width: 768px) {

    .product-filter-banner,
    .product-list-toolbar,
    .product-list-heading,
    .products,
    .product-pagination {
        width: calc(100% - 24px);
    }


    .product-filter-banner {
        margin-top: 12px !important;

        padding: 18px 16px;
    }


    .product-list-toolbar {
        padding: 16px;

        margin-bottom: 22px !important;
    }


    .product-filter-form {
        grid-template-columns: 1fr;

        gap: 13px;
    }


    .product-sale-filter,
    .clear-product-filters {
        width: 100%;
        box-sizing: border-box;
    }


    .clear-product-filters {
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

/* ==========================================================
   REMOVE FULL-WIDTH YELLOW FILTER BACKGROUND
========================================================== */

/* Outer product/filter area */
.product-list-page,
.product-filter-section,
.product-filter-wrapper,
.product-page-filter-area {
    background: transparent !important;
}


/* If the full-width yellow is coming from pseudo-elements */
.product-list-page::before,
.product-list-page::after,
.product-filter-section::before,
.product-filter-section::after,
.product-filter-wrapper::before,
.product-filter-wrapper::after {
    display: none !important;
}


/* Keep ONLY the centered top panel yellow */
.product-filter-banner {
    background: linear-gradient(
        135deg,
        #fff1a8 0%,
        #ffd84d 100%
    ) !important;
}


/* Results page background */
body {
    background: #f6f6f8 !important;
}

/* ==========================================================
   PRODUCT FILTER - REMOVE FULL WIDTH YELLOW BACKGROUND
========================================================== */

.product-filter-panel {
    width: 100% !important;

    margin: 0 !important;
    padding: 20px 0 30px !important;

    background: #f6f6f8 !important;

    border: 0 !important;
    border-radius: 0 !important;

    box-shadow: none !important;
}


/* Remove decorative full-width shapes */

.product-filter-panel::before,
.product-filter-panel::after {
    display: none !important;
    content: none !important;
}


/* ==========================================================
   CENTERED FILTER CARD
========================================================== */

.product-filter-banner,
.product-list-toolbar {
    width: calc(100% - 40px);
    max-width: 1400px;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box;
}


/* YELLOW HEADER ONLY */

.product-filter-banner {
    margin-top: 0 !important;
    margin-bottom: 0 !important;

    padding: 22px 24px;

    background: linear-gradient(
        135deg,
        #fff1a8 0%,
        #ffd84d 100%
    ) !important;

    border: 1px solid #f2c200 !important;
    border-bottom: 0 !important;

    border-radius: 12px 12px 0 0 !important;
}


/* WHITE FILTER CONTROLS */

.product-list-toolbar {
    margin-top: 0 !important;
    margin-bottom: 0 !important;

    padding: 18px 20px;

    background: #fff !important;

    border: 1px solid #eeeeee !important;
    border-top: 0 !important;

    border-radius: 0 0 12px 12px !important;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, .06);
}


/* ==========================================================
   MATCH RESULTS WIDTH
========================================================== */

.product-list-heading,
.products,
.product-pagination {
    width: calc(100% - 40px);
    max-width: 1400px;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box;
}


.product-list-heading {
    margin-top: 28px !important;
}


/* MOBILE */

@media (max-width: 768px) {

    .product-filter-panel {
        padding: 12px 0 20px !important;
    }

    .product-filter-banner,
    .product-list-toolbar,
    .product-list-heading,
    .products,
    .product-pagination {
        width: calc(100% - 24px);
    }

}
#id_county {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    font-family: inherit;
    color: #111;
    box-sizing: border-box;
}

#id_county:focus {
    outline: none;
    border-color: #ff9800;
}

#id_county:hover {
    border-color: #999;
}

.product-whatsapp-enquiry {
    width: 100%;
    min-height: 50px;
    margin-top: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;

    background: #25d366;
    border: 1px solid #25d366;
    border-radius: 6px;

    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.product-whatsapp-enquiry:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #ffffff;
}