﻿.brand-showcase {
    width: 100%;
}

.brand-row {
    display: flex;
    align-items: center;
    min-height: 500px;
    padding: 4rem 8%;
    position: relative;
    overflow: hidden;
}

/* White theme for Al-Agha with subtle orange accent */
.brand-row.agha-theme {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

/* White theme for Satr with subtle red accent */
.brand-row.Satr-theme {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    border-bottom: 1px solid rgba(196, 30, 58, 0.1);
}

.brand-row.reverse {
    flex-direction: row-reverse;
}

.brand-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Circular badge container */
.brand-image-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
}

/* Orange gradient border for Al-Agha (Mango) */
.agha-theme .brand-image-circle {
    border: 8px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #FF9500, #FF6B00, #FFB347, #FF8C00) border-box;
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.25),
        0 0 0 4px rgba(255, 165, 0, 0.1);
}

.agha-theme .brand-image-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 140, 0, 0.35),
        0 0 0 8px rgba(255, 165, 0, 0.15);
}

/* Red gradient border for Satr */
.Satr-theme .brand-image-circle {
    border: 8px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #DC143C, #8B0000, #FF4444, #C41E3A) border-box;
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.25),
        0 0 0 4px rgba(196, 30, 58, 0.1);
}

.Satr-theme .brand-image-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(196, 30, 58, 0.35),
        0 0 0 8px rgba(196, 30, 58, 0.15);
}

/* Hot Sauce theme - Orange-Red gradient */
.brand-row.hotsauce-theme {
    background: linear-gradient(135deg, #ffffff 0%, #fff0e6 100%);
    border-bottom: 1px solid rgba(255, 69, 0, 0.1);
}

.hotsauce-theme .brand-image-circle {
    border: 8px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #FF4500, #CC3300, #FF6347, #FF5722) border-box;
    box-shadow: 0 20px 60px rgba(255, 69, 0, 0.25),
        0 0 0 4px rgba(255, 69, 0, 0.1);
}

.hotsauce-theme .brand-image-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 69, 0, 0.35),
        0 0 0 8px rgba(255, 69, 0, 0.15);
}

.hotsauce-theme .brand-content {
    color: #333;
}

.hotsauce-theme .brand-content h2 {
    color: #FF4500;
}

.hotsauce-theme .brand-content h2 i {
    color: #FF6347;
}

.brand-btn.hotsauce {
    background: linear-gradient(135deg, #FF4500, #CC3300);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

.brand-btn.hotsauce:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.4);
}

.hotsauce-theme .brand-image-wrapper::before {
    background: radial-gradient(circle, #FF4500 0%, transparent 70%);
}

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

.brand-content {
    flex: 1;
    padding: 2rem;
    text-align: right;
}

/* Dark text for white background */
.agha-theme .brand-content {
    color: #333;
}

.agha-theme .brand-content h2 {
    color: #FF8C00;
}

.agha-theme .brand-content h2 i {
    color: #FFB347;
}

.Satr-theme .brand-content {
    color: #333;
}

.Satr-theme .brand-content h2 {
    color: #C41E3A;
}

.Satr-theme .brand-content h2 i {
    color: #DC143C;
}

.brand-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-content h2 i {
    font-size: 2rem;
}

.brand-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.brand-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-btn.agha,
.brand-btn.Satr,
.brand-btn.hotsauce {
    background: linear-gradient(135deg, #2d5a27 0%, #3e7a36 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-btn.agha:hover,
.brand-btn.Satr:hover,
.brand-btn.hotsauce:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(45, 90, 39, 0.4);
    background: linear-gradient(135deg, #3e7a36 0%, #2d5a27 100%);
}

.hero-banner {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-banner h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Decorative circle accent behind the product image */
.brand-image-wrapper::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    transition: all 0.5s ease;
}

.agha-theme .brand-image-wrapper::before {
    background: radial-gradient(circle, #FF9500 0%, transparent 70%);
}

.Satr-theme .brand-image-wrapper::before {
    background: radial-gradient(circle, #DC143C 0%, transparent 70%);
}

.brand-row:hover .brand-image-wrapper::before {
    transform: scale(1.2);
    opacity: 0.15;
}

@media (max-width: 992px) {
    .brand-row {
        flex-direction: row !important;
        text-align: right;
        padding: 2rem 3%;
        min-height: auto;
        gap: 1rem;
    }

    .brand-row.reverse {
        flex-direction: row-reverse !important;
    }

    .brand-content {
        text-align: right;
        flex: 1;
    }

    .brand-content h2 {
        font-size: 1.3rem;
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .brand-content h2 i {
        font-size: 1.1rem;
    }

    .brand-content p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .brand-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .brand-image-circle {
        width: 150px;
        height: 150px;
        flex-shrink: 0;
    }

    .brand-image-wrapper {
        flex: 0 0 auto;
    }

    .brand-image-wrapper::before {
        width: 175px;
        height: 175px;
    }
}

@media (max-width: 480px) {
    .brand-row {
        padding: 1.5rem 3%;
        gap: 1.5rem;
    }

    .brand-content h2 {
        font-size: 1.1rem;
    }

    .brand-content p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .brand-image-circle {
        width: 140px;
        height: 140px;
    }

    .brand-image-wrapper::before {
        width: 150px;
        height: 150px;
    }
}
