/* ==================== Section 1: Main Brand Image ==================== */
.section1 {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Darken the main image with overlay */
.main-image-wrapper img.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    filter: brightness(60%); /* darker */
}

.main-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25); /* semi-transparent overlay */
    z-index: 5;
}

/* Circular text SVG */
.circle-text-svg {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    pointer-events: none;
    z-index: 10;
    animation: rotateCircle 50s linear infinite;
}

.circle-text-svg text {
    fill: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== Section 2: Sub Brand ==================== */
.section2 {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 20px;
}

.section2-image-wrapper img.section2-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(55%); /* darker */
    display: block;
}

.section2-text-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    color: #fff;
    z-index: 10;
}

.section2-text-wrapper .slogan {
    font-size: 1.8rem;
    font-weight: 700;
    max-width: 45%;
    line-height: 1.2;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.section2-text-wrapper .subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 45%;
    text-align: right;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

/* ==================== Section 3: Reviews ==================== */
.section3 {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 20px;
}

.section3-image-wrapper img.section3-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.section3-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 40px;
    gap: 20px;
    z-index: 10;
}

.slogan-left {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    max-width: 40%;
    line-height: 1.3;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.reviews-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 45%;
}

.review-card {
    background: rgba(0,0,0,0.65);
    padding: 15px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 700;
}

.review-header .client-email {
    font-style: italic;
    color: #ddd;
    font-size: 0.8rem;
}

.review-header .review-score {
    color: #ffdd00;
}

.review-comment {
    font-size: 0.9rem;
    line-height: 1.3;
}

/* ==================== Section 4: Stats ==================== */
.section4 {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    margin-top: 20px;
}

.section4-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.section4-stats {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.stat-card {
    padding: 25px;
    border-radius: 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(16px);
    color: #fff;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.55);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* ==================== Section 5: Brand Split ==================== */
.section5 {
    width: 100%;
    padding: 80px 0;
    text-align: center;
    margin-top: 20px;
}

.section5-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.center-img img {
    width: 380px;
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    filter: brightness(60%);
}

.brand-left,
.brand-right {
    font-size: 3.8rem;
    font-weight: 700;
    color: #444;
    letter-spacing: 4px;
    white-space: nowrap;
}

.section5-slogan {
    font-size: 1.7rem;
    color: #666;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== Section 6: Gallery ==================== */
.section6 {
    width: 100%;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.x-gallery {
    display: flex;
    align-items: center;
    gap: 40px;
}

.col-left, .col-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.x-img {
    width: 210px;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: brightness(55%);
}

.x-img:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.center-img {
    width: 280px;
    height: 350px;
}

/* ==================== Section 7: Items Grid ==================== */
.section7 {
    padding: 80px 0;
    margin-top: 20px;
}

.items-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.item-card {
    width: 100%;
    background: var(--color-primary);
    border-radius: 15px;
    color: #fff;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 600px;
}

.item-info {
    position: absolute;
    left: 50px;
    top: 120px;
    max-width: 300px;
    z-index: 2;
    text-align: left;
}

.item-img-wrapper {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(70%);
}

.btn-cart {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: #fff;
    color: var(--color-primary);
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-cart:hover {
    background: #eee;
}

@keyframes rotateCircle {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}
/* ==================== Responsive Media Queries ==================== */

/* ===== Tablets (768px - 1024px) ===== */
@media (max-width: 1024px) {
    .section1, .section2, .section3, .section4 {
        height: 400px;
    }

    .section2-text-wrapper .slogan {
        font-size: 1.5rem;
        max-width: 50%;
    }

    .section2-text-wrapper .subtitle {
        font-size: 1rem;
        max-width: 50%;
    }

    .slogan-left {
        font-size: 1.8rem;
        max-width: 50%;
    }

    .reviews-wrapper {
        max-width: 50%;
    }

    .section4-stats {
        width: 60%;
        right: 20px;
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .section5-wrapper {
        gap: 25px;
        flex-wrap: wrap;
    }

    .center-img img {
        width: 300px;
    }

    .brand-left, .brand-right {
        font-size: 3rem;
    }

    .section6 .x-img {
        width: 180px;
        height: 220px;
    }

    .center-img {
        width: 240px;
        height: 300px;
    }

    .item-card {
        height: 500px;
    }

    .item-info {
        left: 30px;
        top: 100px;
        max-width: 250px;
    }

    .item-img-wrapper {
        width: 200px;
        height: 200px;
    }
}

/* ===== Mobile (480px - 767px) ===== */
@media (max-width: 767px) {
    .section1, .section2, .section3, .section4 {
        height: 300px;
    }

    .section2-text-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .section2-text-wrapper .slogan,
    .section2-text-wrapper .subtitle {
        max-width: 100%;
        font-size: 1.2rem;
    }

    .slogan-left {
        font-size: 1.5rem;
        max-width: 100%;
        text-align: center;
    }

    .reviews-wrapper {
        max-width: 100%;
        gap: 15px;
    }

    .section4-stats {
        width: 100%;
        top: auto;
        bottom: 20px;
        right: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        transform: none;
    }

    .stat-card {
        width: 45%;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .section5-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .center-img img {
        width: 90%;
    }

    .brand-left, .brand-right {
        font-size: 2.2rem;
    }

    .section6 .x-gallery {
        flex-direction: column;
        gap: 20px;
    }

    .col-left, .col-right {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .x-img {
        width: 140px;
        height: 180px;
    }

    .center-img {
        width: 200px;
        height: 250px;
    }

    .item-card {
        height: 450px;
        padding: 15px;
    }

    .item-info {
        left: 20px;
        top: 80px;
        max-width: 200px;
    }

    .item-img-wrapper {
        width: 160px;
        height: 160px;
    }

    .btn-cart {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== Small Mobile (below 480px) ===== */
@media (max-width: 480px) {
    .section1, .section2, .section3, .section4 {
        height: 250px;
    }

    .section2-text-wrapper .slogan,
    .section2-text-wrapper .subtitle,
    .slogan-left {
        font-size: 1rem;
    }

    .section4-stats {
        flex-direction: column;
        gap: 10px;
    }

    .stat-card {
        width: 90%;
    }

    .section5-wrapper {
        padding: 0 10px;
    }

    .brand-left, .brand-right {
        font-size: 1.8rem;
    }

    .section6 .x-img {
        width: 120px;
        height: 160px;
    }

    .center-img {
        width: 160px;
        height: 200px;
    }

    .item-card {
        height: 400px;
    }

    .item-info {
        left: 15px;
        top: 60px;
        max-width: 180px;
    }

    .item-img-wrapper {
        width: 140px;
        height: 140px;
    }
}
