/* iZap Combos WooCommerce - Frontend Styles */

.combos-wc-container {
    position: relative;
    margin: 30px 0;
    display: flex;
    background-color: #e0f2f7;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.combos-wc-tab {
    background-color: #0099e6;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 0 0 8px;
    padding: 20px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.combos-wc-tab-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: rotate(180deg);
}

.combos-wc-content {
    flex: 1;
    padding: 25px;
    background-color: #e0f2f7;
}

.combos-wc-title {
    color: #0099e6;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.combos-wc-selector-wrapper {
    position: relative;
}

.combos-wc-select {
    width: 100%;
    padding: 15px 45px 15px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #ffffff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230099e6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    color: #333;
    transition: all 0.3s ease;
}

.combos-wc-select:focus {
    outline: none;
    border-color: #0099e6;
    box-shadow: 0 0 0 3px rgba(0, 153, 230, 0.1);
}

.combos-wc-select option {
    padding: 10px;
}

.combos-wc-info {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #b8d9e6;
}

.combo-price-display,
.combo-quantity-display {
    flex: 1;
    text-align: center;
}

.combo-price-display .label,
.combo-quantity-display .label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.combo-price-display .combo-price,
.combo-quantity-display .combo-quantity {
    display: block;
    font-size: 24px;
    color: #0099e6;
    font-weight: bold;
}

.combo-price,
.combo-quantity {
    transition: all 0.3s ease;
}

@media (max-width: 600px) {
    .combos-wc-container {
        flex-direction: column;
    }

    .combos-wc-tab {
        min-width: 100%;
        min-height: 50px;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        border-radius: 8px 8px 0 0;
        padding: 15px;
    }

    .combos-wc-tab-text {
        transform: none;
        letter-spacing: 3px;
    }

    .combos-wc-content {
        padding: 20px;
    }

    .combos-wc-info {
        flex-direction: column;
        gap: 15px;
    }

    .combos-wc-title {
        font-size: 16px;
    }
}
