:root {
    --fazea-navy: #071120;
    --fazea-navy-soft: #14213d;
    --fazea-gold: #b88a35;
    --fazea-gold-dark: #8f6723;
    --fazea-ivory: #fbfaf7;
    --fazea-surface: #ffffff;
    --fazea-text: #263247;
    --fazea-muted: #626a76;
    --fazea-border: rgba(7, 17, 32, 0.10);
    --fazea-border-strong: rgba(7, 17, 32, 0.16);
    --fazea-shadow: 0 16px 42px rgba(7, 17, 32, 0.07);
}

.products-page {
    min-height: 100vh;
    background: #fbfaf7;
    padding: 34px 0 60px;
    color: #071120;
}

.products-container {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #747b86;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.breadcrumb a {
    color: #626a76;
    text-decoration: none;
}

.breadcrumb span {
    color: #aaa49a;
}

.products-category-label {
    width: fit-content;
    margin: 0 0 14px;
    padding: 8px 13px;
    border-radius: 999px;
    display: inline-flex;
    background: rgba(184, 138, 53, 0.10);
    color: #b88a35;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.products-head h1 {
    margin: 0;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    color: #071120;
}

.products-head p {
    max-width: 760px;
    margin: 12px 0 0;
    color: #626a76;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
}

.products-count {
    color: #071120;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.products-category-presentation {
    margin: 0 0 32px;
    padding: 30px 34px;
    border: 1px solid rgba(7, 17, 32, 0.10);
    border-radius: 14px;
    background:
        radial-gradient(circle at 92% 12%, rgba(184, 138, 53, 0.10), transparent 32%),
        linear-gradient(135deg, #fbfaf7, #ffffff);
    box-shadow: 0 14px 34px rgba(7, 17, 32, 0.04);
}

.products-category-presentation h2 {
    max-width: 780px;
    margin: 0;
    color: #071120;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.products-category-presentation p {
    max-width: 900px;
    margin: 12px 0 0;
    color: #59616c;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 650;
}

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

.product-card {
    background: #ffffff;
    border: 1px solid rgba(7, 17, 32, 0.10);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(7, 17, 32, 0.05);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(7, 17, 32, 0.09);
}

.product-image {
    height: 210px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

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

.product-body {
    padding: 0 18px 18px;
}

.product-body h2 {
    min-height: 42px;
    margin: 0 0 8px;
    color: #071120;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 900;
}

.product-ref {
    margin: 0 0 14px;
    color: #69707c;
    font-size: 13px;
    font-weight: 700;
}

.product-price {
    margin-bottom: 14px;
}

.product-price strong {
    display: block;
    color: #071120;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.product-price span {
    display: block;
    margin-top: 2px;
    color: #69707c;
    font-size: 13px;
    font-weight: 800;
}

.add-cart-form button,
.out-stock {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-cart-form button svg,
.out-stock svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.add-cart-form button {
    background: #071120;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(7, 17, 32, 0.18);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.add-cart-form button:hover {
    background: #14213d;
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(7, 17, 32, 0.22);
}

.add-cart-form button:active {
    transform: translateY(0);
}

.out-stock {
    background: #ece8df;
    color: #747b86;
    cursor: not-allowed;
}

.products-empty {
    background: #ffffff;
    border: 1px solid rgba(7, 17, 32, 0.10);
    border-radius: 10px;
    padding: 70px 30px;
    text-align: center;
}

.products-empty svg {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    stroke: #071120;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.products-empty h2 {
    margin: 0 0 10px;
    font-size: 26px;
}

.products-empty p {
    margin: 0;
    color: #6b7380;
    font-weight: 700;
}

@media (max-width: 1150px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .products-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-count {
        white-space: normal;
    }

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

    .products-category-presentation {
        padding: 26px 24px;
    }
}

@media (max-width: 540px) {
    .products-page {
        padding: 28px 0 46px;
    }

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

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

    .products-head h1 {
        font-size: 30px;
    }

    .products-head p {
        font-size: 14px;
    }

    .products-category-presentation {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .products-category-presentation h2 {
        font-size: 24px;
    }

    .products-category-presentation p {
        font-size: 14px;
    }
}
.products-page {
    background:
        radial-gradient(circle at 8% 0%, rgba(184, 138, 53, 0.07), transparent 24%),
        var(--fazea-ivory);
}

.products-category-label {
    background: rgba(184, 138, 53, 0.10);
    color: var(--fazea-gold-dark);
}

.products-category-presentation {
    border-color: var(--fazea-border);
    background:
        radial-gradient(circle at 92% 12%, rgba(184, 138, 53, 0.10), transparent 32%),
        linear-gradient(135deg, #ffffff, #fbfaf7);
    box-shadow: var(--fazea-shadow);
}

.product-card,
.products-empty {
    border-color: var(--fazea-border);
    box-shadow: var(--fazea-shadow);
}

.add-cart-form button {
    background: linear-gradient(135deg, var(--fazea-navy), var(--fazea-navy-soft));
    box-shadow: 0 12px 24px rgba(7, 17, 32, 0.18);
}

.add-cart-form button:hover {
    background: linear-gradient(135deg, var(--fazea-navy-soft), var(--fazea-navy));
    box-shadow: 0 16px 28px rgba(7, 17, 32, 0.22);
}

.products-empty svg {
    stroke: var(--fazea-gold-dark);
}
