.category-products-wrapper {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ---------------- CATEGORY HERO BASE SECTION ---------------- */
.category-hero {
    position: relative;
    padding: 100px 4% 40px 4%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
}

.category-hero-container {
    max-width: 1300px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #D4AF37;
}

.category-meta-tag {
    display: block;
    color: #D4AF37;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.category-main-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}

.gold-accent {
    color: #D4AF37;
}

.category-description {
    max-width: 700px;
    font-size: 13px;
    line-height: 1.10;
    color: #94a3b8;
    margin: 0;
}

/* ---------------- CATALOG CONTAINER SPACE ---------------- */
.products-catalog-container {
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 0 120px 0;
}

.products-list-layout {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Clean spacing between rows */
}

/* ---------------- THE ROW CONTAINER (CLICKABLE ANCHOR) ---------------- */
.corporate-row-card {
    text-decoration: none;
    display: block;
    width: 100%;
    background: #070708;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.corporate-row-card:hover {
    background: #0d0d11;
    border-color: #D4AF37;
    transform: translateX(4px); /* Professional horizontal tracking response */
}

/* Flex-Grid row map */
.row-grid-structure {
    display: grid;
    grid-template-columns: 180px 2fr 1.5fr auto;
    align-items: center;
    gap: 40px;
    padding: 30px 40px;
}

/* 1. Media Area settings */
.row-media-frame {
    width: 100%;
    height: 120px;
    background: #030303;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.row-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.corporate-row-card:hover .row-product-image {
    transform: scale(1.04);
}

/* 2. Text Information Fields */
.row-core-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.product-sku {
    color: #D4AF37;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-row-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: -0.3px;
    transition: color 0.2s ease;
}

.corporate-row-card:hover .product-row-title {
    color: #D4AF37;
}

.product-row-summary {
    font-size: 14px;
    line-height: 1.5;
    color: #94a3b8;
    margin: 0;
    max-width: 540px;
}

/* 3. Tech Specs Column Frame */
.row-specifications {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.spec-group-label {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-tags-flex {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.spec-pill {
    font-size: 13px;
    color: #cbd5e1;
}

.spec-pill strong {
    color: #64748b;
    font-weight: 500;
}

/* 4. Functional CTA Trigger */
.row-action-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-arrow-cta {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow-vector {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.corporate-row-card:hover .circle-arrow-cta {
    border-color: #D4AF37;
    background: #D4AF37;
}

.corporate-row-card:hover .arrow-vector {
    color: #000000;
    transform: translateX(2px);
}

/* ==========================================================================
   BREAKPOINTS MAPPING (RESPONSIVE FALLBACKS)
   ========================================================================== */

@media (max-width: 1100px) {
    .row-grid-structure {
        grid-template-columns: 140px 1.5fr 1fr; /* Drop action chevron cleanly */
    }
    .row-action-indicator {
        display: none;
    }
}

@media (max-width: 850px) {
    .row-grid-structure {
        grid-template-columns: 1fr; /* Convert to linear stack block safely on tablets */
        gap: 20px;
        padding: 24px;
    }
    .row-media-frame {
        height: 160px;
    }
    .corporate-row-card:hover {
        transform: translateY(-2px); /* Shift hover style direction dynamically for small cards */
    }
}
