.bundle-pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    font-family: 'Arial', sans-serif; /* Adjust to match your theme's font */
    margin: 20px 0;
}

.bundle-card {
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    width: 30%;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

/* Card 1: Single Item - Pinkish/Beige Background, Gold Border */
.bundle-card[data-qty="1"] {
    background-color: #fceeee; /* Matches the left card bg */
    border: 2px solid #bfa063; /* Gold border */
}

/* Card 2: 2 Items (Best Seller) - Light Blue */
.bundle-card.best-seller {
    background-color: #eef9ff; /* Light blue bg */
    border: 1px solid #dcdcdc; /* Subtle grey border */
}

/* Card 3: 3 Items (Best Value) - Light Pink */
.bundle-card.best-value {
    background-color: #fff0f7; /* Light pink bg */
    border: 1px solid #dcdcdc;
}

/* Hover effects */
.bundle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Selected State */
.bundle-card.selected {
    border: 2px solid #bfa063 !important; /* Force gold border on selection */
    background-color: #fceeee !important;
    position: relative;
    box-shadow: 0 0 10px rgba(191, 160, 99, 0.3);
}

/* Typography & Layout Elements */
.bundle-header {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.4;
}

.bundle-qty {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 5px;
}

.bundle-price-large {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    margin: 5px 0;
}

.bundle-old-price {
    text-decoration: line-through;
    color: #c0392b; /* Red strikethrough color */
    font-size: 14px;
    margin-bottom: -5px;
}

.bundle-subtext {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.bundle-total-note {
    font-size: 11px;
    color: #555;
    margin-bottom: 10px;
}

.bundle-footer {
    font-weight: bold;
    color: #333;
    margin-top: auto;
    padding-top: 10px;
}

/* Badges (Best Seller / Best Value) */
.badge-yellow {
    background: #ffeb3b; /* Bright Yellow */
    color: #000;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 2;
}

/* The "Package Deal" Pill */
.bundle-header-pill {
    background: #fff;
    border-radius: 10px;
    font-size: 10px;
    padding: 3px 10px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Plain Header Text */
.bundle-header-plain {
    font-size: 10px;
    font-weight: bold;
    margin-top: 15px;
    text-transform: uppercase;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bundle-pricing-container {
        flex-direction: column;
        align-items: center;
    }
    .bundle-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 15px;
    }
}