/* Category Intro Section - Product/Category Page (1440px baseline) */

.cat-intro-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 6.944vw 0; /* 100px / 1440 */
}

.cat-intro-container {
    padding-left: 1.528vw; /* 22px / 1440 - Matches Hero/Features */
    padding-right: 1.528vw;
    width: 100%;
}

/* BIG HEADING */
.cat-intro-title h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: calc((62 / 1440) * 100vw); /* Precise 62px */
    font-weight: 300;
    line-height: calc((68 / 1440) * 100vw); /* 68px */
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 4.167vw 0; /* 60px gap */
    max-width: 90vw;
}

.cat-intro-title h1 span.text-red {
    color: #CC4443;
}

/* TWO COLUMN TEXT */
.cat-intro-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5.556vw; /* 80px / 1440 */
    row-gap: 2.778vw;
}

.cat-intro-text-column {
    width: 39.861vw; /* 574px / 1440 */
}

.cat-intro-text-column p {
    font-family: 'Open Sans', sans-serif;
    font-size: calc((16 / 1440) * 100vw); /* Precise 16px at 1440 */
    font-weight: 400;
    line-height: calc((24 / 1440) * 100vw); /* Precise 24px at 1440 */
    color: #444; /* Synchronized with Product Features */
    margin: 0;
}

/* BUTTON WRAP */
.cat-intro-btn-wrap {
    margin-top: 2.778vw; /* 40px / 1440 */
}

.cat-intro-btn-outline {
    width: 15.486vw; /* 223px / 1440 */
    height: 2.917vw; /* 42px / 1440 */
    border: 1px solid #D3423D;
    color: #D3423D;
    background: transparent;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.111vw; /* 16px / 1440 */
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.cat-intro-btn-outline:hover {
    background-color: #D3423D;
    color: #FFFFFF;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .cat-intro-container { padding: 0 5%; }
    .cat-intro-title h1 { font-size: 32px; line-height: 1.2; text-align: center; }
    .cat-intro-content-grid { grid-template-columns: 1fr; gap: 30px; }
    .cat-intro-text-column { width: 100%; text-align: center; }
    
    .cat-intro-text-column p { 
        font-size: 16px; 
        line-height: 24px; 
        text-align: center;
    }

    .cat-intro-btn-wrap { display: flex; justify-content: center; }
    .cat-intro-btn-outline { width: 100%; height: 50px; font-size: 16px; }
}
