/* Product Upsell Plugin Styles */

.product-upsell-container {
    margin-top: 30px;
    padding: 0;
    background: #fff;
}

.product-upsell-container h4 {
    margin: 0 0 15px 0;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #000;
    padding-bottom: 8px;
}

.upsell-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.upsell-product-image {
    flex-shrink: 0;
}

.upsell-product-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #000;
}

.upsell-product-details {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.upsell-product-details h5 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.upsell-product-details h5 a {
    text-decoration: none;
    color: #000;
}

.upsell-product-details h5 a:hover {
    color: #333;
}

.upsell-product-details p {
    margin: 0;
    font-size: 12px;
    color: #000;
    line-height: 1.4;
}

.upsell-product-price {
    font-weight: 600;
    color: #000;
    font-size: 14px;
    margin: 0 15px 0 0;
}

.upsell-product-price .amount {
    color: #000;
}

.upsell-product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.upsell-product-actions .button {
    background: #000;
    color: white;
    border: 1px solid #000;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
}

.upsell-product-actions .button:hover {
    background: #333;
    border-color: #333;
}

.upsell-product-actions .button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.upsell-product-actions .button.hover {
    background: #333;
}



/* Responsive design */
@media (max-width: 768px) {
    .upsell-product {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .upsell-product-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .upsell-product-image img {
        width: 80px;
        height: 80px;
    }
    
    .upsell-product-actions {
        justify-content: center;
    }
    
    .upsell-product-actions .button {
        flex: 1;
        min-width: 120px;
    }
}

/* Loading state */
.upsell-product-actions .button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success state */
.upsell-product-actions .button.success {
    background: #000;
}

/* Error state */
.upsell-product-actions .button.error {
    background: #666;
}

/* Accessibility improvements */
.upsell-product-actions .button:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
} 