/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image:linear-gradient(to right,  rgb(115, 115, 185), rgb(228, 139, 228));
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.wrap {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Banner */
.promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

.promo-banner p {
    font-size: 18px;
    font-weight: 600;
    color: #08179e;
    margin: 0;
}

.promo-banner span {
    flex-grow: 1;
    height: 1px;
    background-color: #ccc;
    max-width: 5rem;
}

/* Deal Cards */
.deal-card {
    border: 2px solid #bb339e;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.deal-card:hover {
    border-color: #e2a2df;
}

.deal-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.deal-info {
    flex-grow: 1;
}

.deal-info h3 {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin: 0;
    flex-wrap: wrap;
    gap: 4px;
}

.deal-label {
    font-weight: bold;
}

.deal-price {
    font-weight: bold;
}

.deal-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #d9534f;
    margin-top: 6px;
}

.highlight-badge {
    font-size: 12px;
    font-weight: bold;
    color: #5a3672;
    float: right;
}

/* Variant Options */
.variant-options {
    display: none;
    margin-top: 10px;
    text-align: center;
}

.deal-card.active .variant-options {
    display: block;
}

.variant-options label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.variant-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.variant-row select {
    padding: 6px;
    width: 45%;
    min-width: 100px;
}

/* Summary Section */
.summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.summary h5 {
    color: #764c99;
    margin: 0;
}

.summary h4 {
    margin: 0;
    font-size: 16px;
}

/* Add to Cart Button */
.btn-cart {
    width: 100%;
    background-color: #4a59e4;
    color:rgb(248, 244, 244);
    padding: 12px;
    border: none;
    border-radius: 6px;
    margin-top: 16px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cart:hover {
    background-color: #051766;
}

/* -------------------------
   Responsive Adjustments
-------------------------- */

@media (max-width: 480px) {
    .promo-banner p {
        font-size: 16px;
    }

    .deal-info h3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .variant-row {
        flex-direction: column;
        align-items: center;
    }

    .variant-row select {
        width: 100%;
        max-width: 200px;
    }

    .summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
