/* Black Friday Gift Стилове */

.bf-gift-notice {
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bf-gift-notice-under {
    border-left: 4px solid #e2401c;
}

.bf-gift-notice-over {
    font-size: 20px;
    line-height: 1.1em;
    border-left: 4px solid #46b450;
}

.bf-gift-notice p {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.5;
}

.bf-gift-remaining {
    font-size: 18px;
    font-weight: 500;
}

.bf-gift-remaining strong {
    color: #e2401c;
    font-size: 20px;
}

.bf-gift-success {
    color: #46b450;
    font-weight: 600;
    font-size: 16px;
}

.bf-gift-success::before {
    content: "✓ ";
    font-size: 20px;
    margin-right: 5px;
}

/* Селектор на подаръци */
.bf-gift-selector {
    margin-top: 15px;
}

.bf-gift-selector h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #333;
}

.bf-gift-products {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    list-style: none !important;
}

.bf-gift-product-item {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 0 !important;
}

.bf-gift-product-item:hover {
    border-color: #96588a;
    box-shadow: 0 2px 8px rgba(150, 88, 138, 0.2);
}

.bf-gift-product-item label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin: 0;
}

.bf-gift-product-item input[type="radio"] {
    margin: 5px 10px 0 10px;
    cursor: pointer;
}

.bf-gift-product-details {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.bf-gift-product-details img {
    max-width: 80px;
    height: auto;
    border-radius: 4px;
}

.bf-gift-product-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bf-gift-product-info strong {
    font-size: 15px;
    color: #333;
}

.bf-gift-product-sku {
    font-size: 13px;
    color: #666;
}

/* Бутон за добавяне */
.bf-add-gift-button {
    background: #96588a;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    float: none !important;
}

.bf-add-gift-button:hover {
    background: #7d4673;
}

.bf-add-gift-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.bf-gift-loading {
    margin-left: 10px;
    color: #666;
    font-style: italic;
}

/* Значка в количката */
.bf-gift-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
}

/* Грешка */
.bf-gift-error {
    color: #e2401c;
    font-weight: 500;
}

td.product-name dl.variation dt.variation-:empty {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .bf-gift-products {
        grid-template-columns: 1fr;
    }
    
    .bf-gift-product-item {
        padding: 12px;
    }
    
    .bf-gift-product-details {
        flex-direction: column;
        text-align: center;
    }
    
    .bf-gift-product-details img {
        max-width: 100%;
    }
}
