/* --- CONSUMER & RETAIL PAGE STYLES --- */

.br-red {
    color: var(--primary-red);
}

/* Hero */
.br-hero {
    display: flex;
    height: 420px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.br-hero-left {
    flex: 1;
    padding: 40px 20px 40px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.br-breadcrumb {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    margin-bottom: 25px;
}

.br-subtitle-top {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.br-hero-left h1 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.br-hero-desc {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 30px;
}

.br-hero-btn {
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 800;
    width: fit-content;
}

.br-hero-right {
    flex: 1.2;
    position: relative;
}

.br-hero-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.br-hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.br-hero-slant {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    clip-path: polygon(0 0, 15% 0, -10% 100%, 0 100%);
    z-index: 2;
}

/* Brands Section */
.br-brands-section {
    padding: 80px 0;
}

.br-subtitle {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.br-title-line {
    width: 30px;
    height: 3px;
    background: var(--primary-red);
    margin-bottom: 40px;
}

.br-brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.br-brand-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.br-brand-flex {
    display: flex;
    height: 320px;
}

.br-brand-content {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.br-brand-image {
    flex: 1;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.br-brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.br-brand-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.incenio-logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: #4a2c2a;
    line-height: 1;
}

.polpo-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #1a3c34;
    line-height: 1;
}

.br-brand-logo small {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #888;
    margin-top: 5px;
}

.br-brand-tag {
    font-size: 11px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.br-brand-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 25px;
}

.br-brand-btn {
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 800;
}

/* Icon Bar */
.br-icon-bar {
    padding-bottom: 80px;
}

.br-features-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.br-icon-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
}

.br-icon-box {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.br-icon-text strong {
    display: block;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 3px;
    color: var(--dark-text);
}

.br-icon-text p {
    font-size: 11px;
    color: var(--gray-text);
    line-height: 1.4;
}

.br-divider {
    width: 1px;
    height: 40px;
    background: #eee;
    flex-shrink: 0;
}

@media (max-width: 1100px) {
    .br-features-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 40px;
    }

    .br-divider {
        width: 100%;
        height: 1px;
    }

    .br-icon-item {
        padding: 0;
    }
}

/* Bottom CTA */
.br-cta-bar {
    background: var(--primary-red);
    padding: 40px 0;
    color: white;
}

.br-cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.br-cta-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.br-cta-text h2 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 5px;
}

.br-cta-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.btn-white {
    background: white;
    color: var(--primary-red);
    border: none;
}

.br-find-btn {
    padding: 14px 30px;
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 992px) {
    .br-hero {
        height: auto;
        flex-direction: column;
    }

    .br-hero-left {
        padding: 40px 20px;
    }

    .br-hero-right {
        height: 300px;
    }

    .br-hero-slant {
        display: none;
    }

    .br-brands-grid {
        grid-template-columns: 1fr;
    }

    .br-icon-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .br-brand-flex {
        flex-direction: column;
        height: auto;
    }
    .br-brand-image {
        clip-path: none;
        height: 250px;
    }
    .br-brand-content {
        padding: 30px;
    }
    .br-cta-flex {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .br-cta-main {
        flex-direction: column;
        gap: 15px;
    }
}