/* =============================================
    ABOUT PAGE - about.css
============================================= */
@import "./productpage.css";

:root {
    --red: #ec3237;
    --orange: #f6930f;
    --lime: #c4d601;
    --bg: #fcf9f8;
}

body {
    margin: 0;
    background: #fff;
}

/* ===== LOGO OVERRIDE ===== */
.desktop-logo-wrap {
    width: 64px !important;
    height: 64px !important;
    transform-origin: center center;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
@media (min-width: 768px) {
    .desktop-logo-wrap {
        width: 104px !important;
        height: 104px !important;
    }
}

/* ===== BREADCRUMB ===== */
.product-breadcrumb-banner {
    background: #EC3237;
    margin-top: 80px;
    padding: 28px 24px;
    text-align: center;
}
@media (min-width: 768px) {
    .product-breadcrumb-banner {
        padding: 48px 24px;
    }
}
.product-breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.breadcrumb-title {
    color: #ffffff !important;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700 !important;
    margin: 0;
    line-height: 1.2;
}
@media (max-width: 767px) {
    .product-breadcrumb-banner {
        padding: 16px 24px;
    }
    .product-breadcrumb-inner br {
        display: none;
    }
}

/* ===== PAGE CONTENT ===== */
.about-section {
    padding: 56px 0 0;
    background: #fcf9f8;
}
.about-inner {
    max-width: 1360px;
    margin: 0 auto;
    text-align: center;
    padding: 0 32px 52px;
}
.about-title {
    font-family: 'Roboto', sans-serif !important;
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
    font-weight: 600 !important;
    color: #1a1a1a;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
    line-height: 1.2;
    text-transform: uppercase;
}
.about-title span {
    color: #ec3237;
}
.about-subtitle {
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    color: #6b7280;
    margin: 0 0 40px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0;
}

/* ===== IMAGE + TEXT ===== */
.about-split {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: #ffffff;
    border: 1.5px solid rgba(236,50,55,0.15);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    margin-bottom: 40px;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
}
.about-img-wrap {
    flex: 0 0 52%;
    display: flex;
    align-items: stretch;
    align-self: stretch;
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.about-text-wrap {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 44px;
    background: #fff;
}
.about-text-wrap p {
    margin: 0;
    color: #4b5563;
    line-height: 1.75;
    font-size: 1rem;
    letter-spacing: 0;
}
.about-text-wrap p + p {
    margin-top: 16px;
}

/* ===== THREE COLUMN SINGLE BOX ===== */
.about-pillars-wrap {
    width: 100%;
    background: #1f2937;
    padding: 52px 48px 60px;
}
.about-pillars {
    display: flex;
    gap: 0;
    justify-content: space-between;
    max-width: 1360px;
    margin: 0 auto;
}
.about-pillar {
    flex: 1;
    text-align: left;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 40px;
    box-shadow: none;
    transition: none;
    position: relative;
}
/* vertical divider between pillars */
.about-pillar + .about-pillar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}
.about-pillar:first-child { padding-left: 0; }
.about-pillar:last-child { padding-right: 0; }
.about-pillar h3 {
    margin: 0 0 12px;
    color: #f6930f;
    font-family: 'Roboto', sans-serif !important;
    font-size: 1.08rem;
    font-weight: 600 !important;
    letter-spacing: -0.4px;
    text-transform: uppercase;
}
.about-pillar p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    font-size: 0.97rem;
    letter-spacing: 0;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
    .about-split {
        flex-direction: column;
        gap: 0;
        border-radius: 18px;
    }
    .about-img-wrap {
        flex: unset;
        width: 100%;
    }
    .about-img-wrap img {
        min-height: 280px;
        max-height: 360px;
    }
    .about-text-wrap {
        padding: 28px 24px;
    }
    .about-pillars {
        flex-direction: column;
    }
    .about-pillar + .about-pillar::before {
        display: none;
    }
    .about-pillar {
        padding: 0 0 28px 0;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .about-pillar:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
    .about-pillars-wrap {
        padding: 36px 24px 48px;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 36px 0 0;
    }
    .about-inner {
        padding: 0 16px 32px;
    }
    .about-title {
        font-size: 1.2rem;
        letter-spacing: -0.2px;
    }
    .about-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    .about-split {
        border-radius: 14px;
    }
    .about-pillars-wrap {
        padding: 28px 16px 40px;
    }
    .about-text-wrap p {
        font-size: 0.97rem;
    }
    .about-pillar p {
        font-size: 0.93rem;
    }
    .about-pillar h3 {
        font-size: 1.06rem;
    }
    .about-img-wrap img {
        min-height: 200px;
    }
}