/**
 * COFIS CZ Upsell - Frontend Styles
 *
 * @author COFIS CZ (www.cofis.cz)
 * @copyright 2025 COFIS CZ, s.r.o.
 * @license Proprietary
 */

.cofisczupsell-container {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.cofisczupsell-title {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.cofisczupsell-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cofisczupsell-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.cofisczupsell-item:hover {
    border-color: #adb5bd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cofisczupsell-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.cofisczupsell-checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #ced4da;
    border-radius: 4px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: white;
}

.cofisczupsell-item input:checked ~ .cofisczupsell-checkmark {
    background: #E41F47;
    border-color: #E41F47;
}

.cofisczupsell-checkmark:after {
    content: '';
    display: none;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.cofisczupsell-item input:checked ~ .cofisczupsell-checkmark:after {
    display: block;
}

.cofisczupsell-image {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0;
}

.cofisczupsell-info {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.cofisczupsell-name {
    font-size: 14px;
    color: #212529;
    flex: 1;
}

a.cofisczupsell-name {
    text-decoration: none;
    transition: color 0.2s ease;
}

a.cofisczupsell-name:hover {
    color: #E41F47;
    text-decoration: underline;
}

.cofisczupsell-quickview-link {
    cursor: pointer;
}

.cofisczupsell-quickview-link img:hover {
    opacity: 0.8;
}

.cofisczupsell-stock {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.cofisczupsell-stock.in-stock {
    background: #d4edda;
    color: #155724;
}

.cofisczupsell-stock.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.cofisczupsell-price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.cofisczupsell-discount-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    background: #E41F47;
    color: white;
}

.cofisczupsell-price-original {
    font-size: 13px;
    color: #6c757d;
    text-decoration: line-through;
}

.cofisczupsell-price {
    font-size: 14px;
    font-weight: 600;
    color: #E41F47;
    white-space: nowrap;
}

/* Quantity selector */
.cofisczupsell-qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 12px;
}

.cofisczupsell-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ced4da;
    background: #f8f9fa;
    color: #212529;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.cofisczupsell-qty-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.cofisczupsell-qty-btn:active {
    background: #dee2e6;
}

.cofisczupsell-qty-minus {
    border-radius: 4px 0 0 4px;
    border-right: none;
}

.cofisczupsell-qty-plus {
    border-radius: 0 4px 4px 0;
    border-left: none;
}

.cofisczupsell-qty-input {
    width: 40px;
    height: 28px;
    border: 1px solid #ced4da;
    background: white;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    padding: 0;
    -moz-appearance: textfield;
}

.cofisczupsell-qty-input::-webkit-outer-spin-button,
.cofisczupsell-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Error state */
.cofisczupsell-item.cofisczupsell-error {
    border-color: #dc3545;
    background: #fff5f5;
    animation: cofisczupsell-shake 0.3s ease;
}

.cofisczupsell-error-msg {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #dc3545;
    font-weight: 500;
    padding: 2px 8px;
    background: #f8d7da;
    border-radius: 4px;
    white-space: nowrap;
}

@keyframes cofisczupsell-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Responsive */
@media (max-width: 576px) {
    .cofisczupsell-container {
        padding: 15px;
        margin: 15px 0;
    }

    .cofisczupsell-item {
        padding: 10px 12px;
    }

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

    .cofisczupsell-name {
        font-size: 13px;
    }

    .cofisczupsell-stock {
        font-size: 11px;
        padding: 1px 6px;
    }

    .cofisczupsell-price-wrapper {
        gap: 6px;
    }

    .cofisczupsell-discount-badge {
        font-size: 10px;
        padding: 1px 4px;
    }

    .cofisczupsell-price-original {
        font-size: 12px;
    }

    .cofisczupsell-price {
        font-size: 13px;
    }

    .cofisczupsell-image {
        width: 60px;
        height: 40px;
    }

    .cofisczupsell-qty-selector {
        margin-left: 8px;
    }

    .cofisczupsell-qty-btn {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .cofisczupsell-qty-input {
        width: 32px;
        height: 24px;
        font-size: 12px;
    }
}
