.woo-bogo-bundle {
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.woo-bogo-bundle-header {
    text-align: center;
    margin-bottom: 20px;
	background-color: #000;
}

.woo-bogo-bundle-header h3 {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 0;
	color: #fff;
	text-transform: uppercase;
	padding: 10px;
}

.bogo-tier {
    background: #faf8f5;
    border: 2px solid #e0d9d0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bogo-tier:hover {
    border-color: #c0b5a8;
}

.bogo-tier.selected {
    border: 3px solid #333;
    background: #fff;
}

.bogo-tier-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bogo-tier input[type="radio"] {
    margin: 0;
    width: 22px;
    height: 22px;
}

.tier-name {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.tier-discount {
    background: #f0e6d2;
    color: #8b6f47;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.tier-price {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    min-width: 140px;
    text-align: right;
    white-space: nowrap;
}

.tier-price small {
    font-weight: 500;
    opacity: .8;
}

.bogo-selections {
    display: none !important;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0d9d0;
}

.bogo-selections.active {
    display: block !important;
}

.bogo-selections-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.bogo-item-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.bogo-item-number {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    min-width: 20px;
}

.bogo-variation-selectors {
    display: flex;
    gap: 8px;
    flex: 1;
}

.bogo-variation-selectors select {
    flex: 1;
    padding: 10px 32px 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.bogo-variation-selectors select:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

@media (max-width: 600px) {
    .bogo-variation-selectors {
        flex-direction: column;
    }
}
