:root {
    --product-ink: #10201c;
    --product-muted: #65736f;
    --product-brand: #10a37f;
    --product-brand-dark: #08705a;
    --product-gold: #dca642;
    --product-soft: #f3f6f5;
    --product-line: #dfe8e4;
}

body {
    background: var(--product-soft);
}

.product-site-header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid var(--product-line);
    background: rgba(255,255,255,.97);
    box-shadow: 0 8px 28px rgba(16,32,28,.09);
    backdrop-filter: blur(14px);
}

.product-page {
    min-height: 100vh;
    padding-top: 112px;
    background:
        radial-gradient(circle at 90% 6%, rgba(16,163,127,.09), transparent 24%),
        var(--product-soft);
}

.product-page-container {
    max-width: 1320px;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #8a9894;
    font-size: 12px;
}

.product-breadcrumb a {
    color: var(--product-muted);
}

.product-breadcrumb a:hover {
    color: var(--product-brand);
    text-decoration: none;
}

.product-breadcrumb strong {
    color: var(--product-brand-dark);
}

.product-category-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.45fr .8fr;
    gap: 35px;
    align-items: center;
    overflow: hidden;
    padding: 46px 50px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 15%, rgba(220,166,66,.18), transparent 28%),
        linear-gradient(135deg, #0a1b17, #12382f);
    color: #fff;
    box-shadow: 0 28px 70px rgba(16,32,28,.2);
}

.category-brand-mark {
    position: absolute;
    top: 28px;
    right: 31px;
    display: flex;
    width: 68px;
    height: 56px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 13px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 14px 32px rgba(0,0,0,.2);
}

.category-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-brand-mark span {
    color: var(--product-brand-dark);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -1px;
}

.category-eyebrow,
.product-section-heading span,
.product-filter-heading span {
    color: var(--product-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.product-category-copy h1 {
    margin: 11px 0 14px;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -1.3px;
}

.product-category-copy p {
    max-width: 740px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.8;
}

.category-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.category-actions a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 8px;
    padding: 0 19px;
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: transform .2s ease, filter .2s ease;
}

.category-actions a:hover {
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
    filter: brightness(1.08);
}

.category-line-button {
    background: #12b94f;
}

.category-phone-button {
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
}

.product-category-stats {
    display: grid;
    gap: 10px;
}

.product-category-stats > div {
    padding: 17px 20px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    background: rgba(255,255,255,.07);
}

.product-category-stats strong,
.product-category-stats span {
    display: block;
}

.product-category-stats strong {
    color: #fff;
    font-size: 21px;
    font-weight: 800;
}

.product-category-stats span {
    margin-top: 3px;
    color: rgba(255,255,255,.58);
    font-size: 11px;
}

.product-section-heading,
.product-filter-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin: 58px 0 22px;
}

.product-catalog-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 58px;
}

.product-category-sidebar {
    position: sticky;
    top: 132px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 155px);
    padding: 22px 18px;
    border: 1px solid var(--product-line);
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 10px 34px rgba(16,32,28,.07);
}

.product-category-sidebar .product-filter-heading {
    display: block;
    margin: 0 0 16px;
    padding: 0 5px 15px;
    border-bottom: 1px solid var(--product-line);
}

.product-category-sidebar .product-filter-heading h2 {
    font-size: 20px;
}

.product-catalog-results {
    min-width: 0;
}

.product-results-heading {
    margin-bottom: 18px;
}

.product-results-heading span {
    color: var(--product-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.product-results-heading h2 {
    margin: 5px 0 0;
    color: var(--product-ink);
    font-size: 27px;
    font-weight: 800;
}

.product-section-heading h2,
.product-filter-heading h2 {
    margin: 6px 0 0;
    color: var(--product-ink);
    font-size: 29px;
    font-weight: 800;
}

.product-section-heading p {
    max-width: 470px;
    margin: 0;
    color: var(--product-muted);
    font-size: 12px;
    line-height: 1.7;
    text-align: right;
}

.product-grid {
    row-gap: 22px;
}

.product-card-column {
    display: flex;
    margin: 0 !important;
    padding-right: 10px;
    padding-left: 10px;
}

#productContent .modern-product-card,
#productContent .product-card-column > .thumbnail {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--product-line);
    border-radius: 19px;
    background: #fff !important;
    box-shadow: 0 10px 34px rgba(16,32,28,.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

#productContent .modern-product-card:hover,
#productContent .product-card-column > .thumbnail:hover {
    transform: translateY(-6px);
    border-color: rgba(16,163,127,.35);
    box-shadow: 0 22px 48px rgba(16,32,28,.14);
}

#productContent img.group.list-group-image {
    width: 100% !important;
    height: 210px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    object-fit: cover;
    background: #eef2f0;
}

#productContent .modern-product-card .caption,
#productContent .product-card-column .caption {
    padding: 0 17px;
}

#productContent .modern-product-card .caption:first-of-type,
#productContent .product-card-column .caption:first-of-type {
    flex: 1;
    padding-top: 16px;
}

#productContent .list-group-item-heading {
    min-height: 45px;
    margin: 0;
    color: var(--product-ink);
    font-size: 14px;
    line-height: 1.55;
}

#productContent .rating {
    margin-top: 8px;
}

#productContent .checked {
    color: var(--product-gold);
}

#productContent .modern-product-card hr,
#productContent .product-card-column hr {
    margin: 13px 0;
    border-color: #edf1ef;
}

#productContent .showprice {
    color: var(--product-brand-dark);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

#productContent .showprice small {
    margin-left: 3px;
    color: var(--product-muted);
    font-size: 13px;
    font-weight: 700;
}

.product-card-actions {
    margin: 0 -8px 16px;
}

.product-price-wrap {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 13px;
    padding: 0 8px;
}

.product-price-label {
    color: #8a9793;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-action-cell {
    padding-right: 5px;
    padding-left: 5px;
}

#productContent .product-detail-button,
#productContent .product-buy-button {
    display: inline-flex;
    width: 100%;
    min-height: 41px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 800;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

#productContent .product-detail-button {
    border: 1px solid var(--product-line);
    background: #f4f7f6;
    color: var(--product-ink);
}

#productContent .product-detail-button:hover {
    border-color: rgba(16,163,127,.35);
    background: #eaf5f1;
    color: var(--product-brand-dark);
}

#productContent .product-buy-button {
    border: 1px solid var(--product-brand);
    background: linear-gradient(135deg, var(--product-brand), var(--product-brand-dark));
    color: #fff;
    box-shadow: 0 8px 18px rgba(16,163,127,.2);
}

#productContent .product-buy-button:hover {
    transform: translateY(-2px);
    border-color: var(--product-brand-dark);
    background: linear-gradient(135deg, #12b58d, #075846);
    color: #fff;
    box-shadow: 0 12px 24px rgba(16,163,127,.28);
}

#productContent .btn-info {
    min-height: 34px;
    border: 1px solid var(--product-brand);
    border-radius: 9px;
    background: var(--product-brand);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

#productContent .btn-info:hover {
    border-color: var(--product-brand-dark);
    background: var(--product-brand-dark);
}

.modern-product-tabs {
    display: flex;
    gap: 7px;
    padding: 0 !important;
    flex-direction: column;
    flex-wrap: nowrap;
    border: 0;
}

.modern-product-tabs .nav-item {
    width: 100%;
    margin: 0;
}

.modern-product-tabs .nav-link {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    padding: 10px 13px;
    border: 1px solid var(--product-line) !important;
    border-radius: 11px !important;
    background: #f7f9f8;
    color: var(--product-ink) !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
}

.modern-product-tabs .nav-link.active,
.modern-product-tabs .nav-link:hover {
    border-color: var(--product-brand) !important;
    background: var(--product-brand);
    color: #fff !important;
}

@media (max-width: 767px) {
    .product-page {
        padding-top: 88px;
    }

    .product-category-hero {
        grid-template-columns: 1fr;
        padding: 92px 23px 30px;
        border-radius: 20px;
    }

    .category-brand-mark {
        top: 18px;
        right: auto;
        left: 23px;
        width: 60px;
        height: 49px;
    }

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

    .product-category-stats > div {
        padding: 12px 9px;
        text-align: center;
    }

    .product-category-stats strong {
        font-size: 16px;
    }

    .product-section-heading {
        display: block;
        margin-top: 42px;
    }

    .product-catalog-layout {
        display: block;
        margin-top: 42px;
    }

    .product-category-sidebar {
        position: static;
        overflow: visible;
        max-height: none;
        margin-bottom: 25px;
        padding: 17px 15px;
        border-radius: 16px;
    }

    .product-category-sidebar .product-filter-heading {
        padding-bottom: 12px;
    }

    .modern-product-tabs {
        overflow-x: auto;
        padding-bottom: 5px !important;
        flex-direction: row;
        gap: 8px;
        scrollbar-width: thin;
    }

    .modern-product-tabs .nav-item {
        width: auto;
        flex: 0 0 auto;
    }

    .modern-product-tabs .nav-link {
        width: auto;
        min-height: 38px;
        padding: 8px 14px;
        border-radius: 999px !important;
        white-space: nowrap;
    }

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

    .product-section-heading p {
        margin-top: 10px;
        text-align: left;
    }

    #productContent img.group.list-group-image {
        height: 220px !important;
    }
}
