
/* Mobile Fixes */
@media (max-width: 768px) {

    /* Rating Buttons Wrapper */
    .rating-section {
        width: 100%;
    }

    .rating-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 8px;
        margin-top: 10px;
    }

    .rating-links button {
        width: 100%;
        font-size: 15px !important;
        padding: 10px !important;
    }

    .rating-badge {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .divider {
        display: none; /* hide | on mobile */
    }

    /* Price Layout */
    .price-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .price-section ins,
    .price-section del,
    .price-section .offer_off {
        margin: 0 !important;
        font-size: 20px !important;
    }

    .price-section del {
        margin-top: 5px !important;
    }

    .offer_off {
        display: inline-block;
        padding: 4px 8px;
        margin-top: 6px;
        border-radius: 4px;
    }

    /* Delivery line */
    .delivery-text {
        font-size: 16px !important;
        line-height: 22px;
        text-align: left;
    }

    /* Product short description */
    .short-desc {
        font-size: 15px;
        line-height: 22px;
    }
}



.bundle-container h2 {
    text-align: center;
    font-weight: 700;
}

/* Bundle Box */
.bundle-container .bundle-box {
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 12px;
    display: block;
    cursor: pointer;
    transition: 0.3s;
	width:45%;
	float:left;
	margin-right:25px;
}

.bundle-container .bundle-box label {
	padding: 10px;
	
}

.bundle-container .bundle-box.active,
.bundle-container .bundle-box:hover {
    border-color: #000;
    background: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Content Layout */
.bundle-container .bundle-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bundle-container .title {
    font-size: 17px;
    font-weight: 700;
}

.bundle-container .subtitle {
    font-size: 13px;
    color: #555;
}

/* Right Side */
.bundle-container .save-tag {
    background: #f6b100;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

.buy-now-btn {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
	
}

.buy-now-btn:hover {
    background: #333;
    transform: translateY(-2px);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .bundle-container .bundle-box {
        width: 100% !important;
        float: none !important;
        margin: 10px 0 !important;
    }

    .bundle-container .bundle-content {
        flex-direction: column; 
        align-items: flex-start;
    }

    .bundle-container .bundle-content button {
        margin-top: 10px;
        width: 100%; /* full width button on mobile */
    }

    .bundle-container .title {
        font-size: 16px;
    }

    .bundle-container .subtitle {
        font-size: 13px;
    }
}


/* ----- PRICE BOX ----- */
.price-box {
    background: #f8fafc;
    padding: 22px 25px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin-bottom: 22px;
}

.price-box .main-price {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
}

.price-box .old-price {
    font-size: 20px;
    color: #9ca3af;
    margin-left: 12px;
    text-decoration: line-through;
}

.price-box .off-tag {
    font-size: 20px;
    color: #16a34a;
    font-weight: 700;
    margin-left: 15px;
    background: #dcfce7;
    padding: 4px 10px;
    border-radius: 20px;
}

/* ----- DELIVERY BOX ----- */
.delivery-box {
    background: #fff7ed;
    padding: 15px 22px;
    border-radius: 12px;
    border: 1px solid #fbbf24;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.delivery-box i {
    font-size: 26px;
    color: #f97316;
}

/* ----- BULLET STYLE ----- */
.desc-list {
    list-style: none;
    padding-left: 0;
}

.desc-list li {
    padding: 8px 0;
    font-size: 16px;
    position: relative;
    padding-left: 26px;
}

.desc-list li::before {
    content: "✔";
    color: #16a34a;
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 0;
}

/* ----- RATING BADGE ----- */
.rating-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-badge {
    background: #00ca81;
    padding: 6px 14px;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Buttons */
.rating-links button {
    border-radius: 25px;
    border: 2px solid #00ca81 !important;
    background: #f0fdf4;
    transition: 0.2s ease;
}

.rating-links button:hover {
    background: #00ca81;
    color: #fff !important;
}