/**
 * Ajándék termék rendszer CSS
 * Mimiko e-commerce rendszer
 */

/* Ajándék modal stílusok */
.gift-modal .modal-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-bottom: none;
}

.gift-modal .modal-header .modal-title {
    font-weight: 600;
}

.gift-product-item {
    transition: all 0.3s ease;
    border: 2px solid #e9ecef !important;
}

.gift-product-item:hover {
    border-color: #28a745 !important;
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.15);
    transform: translateY(-2px);
}

.gift-product-item img {
    max-height: 80px;
    object-fit: cover;
}

.gift-product-item .btn {
    transition: all 0.3s ease;
}

.gift-product-item .btn:hover {
    transform: scale(1.05);
}

/* Kosár ajándék jelzés */
.gift-indicator {
    border-left: 4px solid #28a745;
    background: linear-gradient(90deg, #d4edda, #f8f9fa);
    animation: giftPulse 2s infinite;
}

@keyframes giftPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.gift-indicator i {
    color: #28a745;
    margin-right: 5px;
}

/* Kosár ajándék termék megjelenítés */
.cart-item.gift-item {
    background: linear-gradient(90deg, #f8f9fa, #e8f5e8);
    border-left: 4px solid #28a745;
    position: relative;
}

.cart-item.gift-item::before {
    content: "AJÁNDÉK";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.cart-item.gift-item .item-price {
    text-decoration: line-through;
    color: #6c757d;
}

.cart-item.gift-item .gift-price {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1em;
}

.cart-item.gift-item .gift-price::after {
    content: " (Ajándék)";
    font-size: 0.8em;
    color: #6c757d;
    font-weight: normal;
}

/* Értesítések */
.gift-notification {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.gift-notification .close {
    font-size: 1.2em;
    opacity: 0.8;
}

.gift-notification .close:hover {
    opacity: 1;
}

/* Ajándék gomb stílusok */
.accept-gift-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.accept-gift-btn:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.decline-gift-btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.decline-gift-btn:hover {
    transform: translateY(-1px);
}

.remove-gift-btn {
    background: #dc3545;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-gift-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

/* Kosár összesítő módosítások */
.cart-summary .gift-items {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    border-left: 4px solid #28a745;
}

.cart-summary .gift-items h6 {
    color: #28a745;
    margin-bottom: 10px;
    font-weight: 600;
}

.cart-summary .gift-items .gift-item-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #e9ecef;
}

.cart-summary .gift-items .gift-item-summary:last-child {
    border-bottom: none;
}

.cart-summary .gift-items .gift-item-name {
    font-size: 0.9em;
    color: #495057;
}

.cart-summary .gift-items .gift-item-price {
    color: #28a745;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .gift-product-item .row {
        text-align: center;
    }
    
    .gift-product-item .col-md-3,
    .gift-product-item .col-md-6,
    .gift-product-item .col-md-3 {
        margin-bottom: 10px;
    }
    
    .gift-notification {
        left: 10px;
        right: 10px;
        min-width: auto;
    }
    
    .cart-item.gift-item::before {
        position: static;
        display: inline-block;
        margin-bottom: 5px;
    }
}

/* Admin felület stílusok */
.admin-gift-rules .card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-gift-rules .table th {
    background: #f8f9fa;
    border-top: none;
    font-weight: 600;
}

.admin-gift-rules .badge {
    font-size: 0.8em;
}

.admin-gift-rules .btn-group .btn {
    margin-right: 2px;
}

.admin-gift-rules .custom-switch {
    padding-left: 2.25rem;
}

.selected-product {
    transition: all 0.3s ease;
}

.selected-product:hover {
    background: #e8f5e8 !important;
}

/* Select2 testreszabás ajándék termékekhez */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #28a745;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #28a745;
    border-color: #28a745;
}

/* Animációk */
@keyframes giftBounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

.gift-bounce {
    animation: giftBounce 1s ease-in-out;
}

/* Töltés animáció */
.gift-loading {
    position: relative;
    overflow: hidden;
}

.gift-loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Hover effektek */
.gift-hover-effect {
    transition: all 0.3s ease;
}

.gift-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Ajándék ikon animáció */
.gift-icon {
    display: inline-block;
    animation: giftRotate 2s ease-in-out infinite;
}

@keyframes giftRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

/* Sötét téma támogatás */
@media (prefers-color-scheme: dark) {
    .gift-indicator {
        background: linear-gradient(90deg, #1e3a2e, #2d3748);
        color: #e2e8f0;
    }
    
    .cart-item.gift-item {
        background: linear-gradient(90deg, #2d3748, #1e3a2e);
    }
    
    .gift-notification {
        background: #2d3748;
        color: #e2e8f0;
        border-color: #4a5568;
    }
}