.hero {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.hero-image img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.badge {
    display: inline-block;
    background: #D9A441;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 13px;
    font-weight: 600;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #5B4B43;
}

.price-box {
    margin-bottom: 25px;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 35px;
    font-family: auto;
}

.new-price {
    font-size: 42px;
    color: #7A5230;
    font-weight: 700;
}

.cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: #7A5230;
    color: white;
}

.btn-primary:hover {
    background: #5e3e24;
}

.btn-secondary {
    background: white;
    border: 2px solid #7A5230;
    color: #7A5230;
}

.countdown {
    margin-top: 25px;
    background: white;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    display: inline-block;
}

#heroImage {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

@media(max-width:768px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 18px !important;
        padding-bottom: 18px !important;
        gap: 20px;
    }

    .hero>div:first-child {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-image img {
        max-height: 320px;
    }

    #heroImage {
        object-fit: cover;
    }


    .hero h1 {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 15px;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    /* =========================
    HERO BUTTONS INLINE FIX
    ========================= */
    .cta-group {
        flex-direction: row;
        gap: 10px;
    }

    .cta-group .btn {
        flex: 1;
        padding: 12px 10px;
        font-size: 14px;
        white-space: nowrap;
    }
}