﻿.products-hero { background: linear-gradient(rgba(0,0,0,.56), rgba(0,0,0,.78)), url('../images/products/products-banner.webp') center/cover no-repeat; }
.products-category { padding: 34px 0; background: #101010; border-bottom: 1px solid var(--border); }
.product-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.product-search { position: relative; width: min(100%, 380px); }
.product-search input { width: 100%; height: 52px; padding: 0 48px 0 18px; border: 1px solid var(--border); border-radius: 999px; background: #0b0b0b; color: #fff; outline: 0; }
.product-search i { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--gray); }
.category-wrapper { display: flex; gap: 10px; flex-wrap: wrap; }
.category-btn { padding: 11px 18px; border-radius: 999px; background: #181818; color: #fff; border: 1px solid var(--border); font-weight: 700; transition: var(--transition); }
.category-btn.active, .category-btn:hover { background: var(--primary); border-color: var(--primary); }
.products-section { background: #020202; }
.products-section > .container {
    max-width: 1540px;
    padding-left: 10px;
    padding-right: 10px;
}
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-image { position: relative; display: flex; align-items: center; justify-content: center; padding: 28px; background: #101010; min-height: 300px; }
.product-image img { max-height: 250px; object-fit: contain; transition: var(--transition); }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-image span { position: absolute; top: 18px; left: 18px; padding: 7px 12px; border-radius: 999px; background: var(--primary); font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.product-content { flex: 1; display: flex; flex-direction: column; padding: 26px; }
.product-content small { margin-bottom: 10px; color: var(--primary); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.product-content h3 { margin-bottom: 12px; font-size: 1.35rem; }
.product-content p { margin-bottom: 22px; color: var(--gray); }
.product-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.product-bottom strong { font-size: 1.15rem; }
.no-product { display: none; margin-top: 34px; padding: 34px; text-align: center; border: 1px solid var(--border); border-radius: var(--radius); background: #151515; }
.no-product p { color: var(--gray); }
@media (max-width: 992px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .product-grid { grid-template-columns: 1fr; } .product-toolbar { align-items: stretch; } .product-search { width: 100%; } }
.product-faq { background: #101010; }
.faq-list { display: grid; gap: 16px; max-width: 900px; margin: 0 auto; }
.faq-item { padding: 24px 26px; border: 1px solid var(--border); border-radius: 16px; background: #151515; }
.faq-item h3 { margin-bottom: 8px; }
.faq-item p { color: var(--gray); }
/*==================================================
PRODUCT SYSTEM SVG WORDMARK
==================================================*/
.product-system-wordmark {
    width: min(100%, 760px);
    margin: 0 0 20px;
}
.product-system-wordmark svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}
.ps-main,
.ps-outline {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: 92px;
    font-weight: 700;
    letter-spacing: 3px;
    font-style: italic;
}
.ps-small {
    font-size: 66px;
    letter-spacing: 8px;
}
.ps-main {
    fill: url(#productSystemFill);
}
.ps-outline {
    fill: transparent;
    stroke: rgba(0,0,0,.72);
    stroke-width: 10px;
    paint-order: stroke;
}
.ps-blade {
    fill: url(#productSystemRed);
    opacity: .9;
    filter: drop-shadow(0 16px 24px rgba(216,31,38,.22));
}
.ps-line,
.ps-speed {
    fill: none;
    stroke: url(#productSystemRed);
    stroke-width: 5;
    stroke-linecap: round;
    opacity: .88;
}
.ps-speed {
    stroke-width: 3;
    opacity: .5;
    stroke-dasharray: 130 24;
}
@media (max-width: 680px) {
    .product-system-wordmark {
        width: 100%;
        margin-bottom: 18px;
    }
    .ps-main,
    .ps-outline {
        font-size: 84px;
        letter-spacing: 1px;
    }
    .ps-small {
        font-size: 58px;
        letter-spacing: 5px;
    }
}
/*==================================================
PRODUCT SYSTEM WORDMARK POSITION ALIGNMENT
==================================================*/
.products-hero .product-system-wordmark {
    width: min(100%, 680px);
    margin-top: 8px;
    margin-bottom: 18px;
    transform: translateX(-6px);
}
.products-hero .product-system-wordmark svg {
    transform: scaleY(.92);
    transform-origin: left center;
}
.products-hero p {
    max-width: 690px;
}
.products-hero::after {
    background: radial-gradient(circle at 18% 54%, rgba(255,255,255,.012), transparent 28%) !important;
    opacity: .45 !important;
}
@media (max-width: 680px) {
    .products-hero .product-system-wordmark {
        width: 100%;
        margin-top: 6px;
        margin-bottom: 14px;
        transform: translateX(-3px);
    }
    .products-hero .product-system-wordmark svg {
        transform: scaleY(.9);
    }
}

/* Unified metallic uppercase title treatment */
main h1,
main h2,
main h3,
main h4 {
    color: #d4d0c8 !important;
    text-transform: uppercase !important;
    letter-spacing: .4px;
    text-shadow: 0 18px 34px rgba(0,0,0,.45);
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
    main h1,
    main h2,
    main h3,
    main h4 {
        color: transparent !important;
        background: linear-gradient(180deg, #f0eee9 0%, #c8c2b7 48%, #8f8a82 100%) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
    }
}
/* Larger product cards */
.products-section .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    max-width: 1480px;
    margin: 0 auto;
}
.products-section .product-card {
    min-height: 460px;
    border-radius: 18px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(3, 5, 7, .2) 0%, rgba(3, 5, 7, .5) 52%, rgba(3, 5, 7, .86) 100%),
        url("../images/products/product-card-bg.webp") center / cover no-repeat;
}
.products-section .product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 18%, rgba(255,255,255,.1), transparent 34%),
        linear-gradient(90deg, rgba(0,0,0,.28), transparent 48%, rgba(0,0,0,.42));
    pointer-events: none;
}
.products-section .product-image {
    min-height: 230px;
    padding: 24px;
    background: rgba(0,0,0,.14);
}
.products-section .product-image img {
    max-height: 190px;
    max-width: 92%;
}
.products-section .product-content {
    padding: 22px;
    background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.46));
}
.products-section .product-content h3 {
    font-size: clamp(1.02rem, 1.1vw, 1.2rem);
    line-height: 1.22;
}
.products-section .product-content p {
    font-size: .86rem;
    line-height: 1.5;
}
.products-section .product-bottom strong {
    font-size: 1.05rem;
}
@media (max-width: 992px) {
    .products-section .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
    .products-section .product-card {
        min-height: 520px;
    }
    .products-section .product-image {
        min-height: 280px;
    }
    .products-section .product-image img {
        max-height: 230px;
    }
}
@media (max-width: 680px) {
    .products-section > .container {
        padding-left: 18px;
        padding-right: 18px;
    }
    .products-section .product-grid {
        grid-template-columns: 1fr;
        max-width: 430px;
    }
    .products-section .product-card {
        min-height: auto;
        border-radius: 18px;
    }
    .products-section .product-image {
        min-height: 320px;
        padding: 28px;
    }
    .products-section .product-image img {
        max-height: 270px;
        max-width: 92%;
    }
    .products-section .product-content {
        padding: 26px;
    }
}
