/*
* TGM Product Popup Styles
* Responsive popup for promotional products
*/

/* Popup Overlay */
.tgm-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tgm-popup-overlay.tgm-popup-visible {
    opacity: 1;
}

/* Popup Container */
.tgm-popup-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease-in-out;
}

.tgm-popup-overlay.tgm-popup-visible .tgm-popup-container {
    transform: scale(1);
}

/* Close Button */
.tgm-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease;
    border: 1px solid #dee2e6;
}

.tgm-popup-close:hover {
    background: #e9ecef;
}

.tgm-popup-close span {
    font-size: 18px;
    color: #6c757d;
    font-weight: bold;
    line-height: 1;
}

/* Popup Content */
.tgm-popup-content {
    padding: 30px;
    padding-top: 45px; /* Extra space for close button */
}

.tgm-popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.tgm-popup-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.3;
    padding-right: 60px; /* Space for close button */
    word-wrap: break-word;
}

.tgm-popup-description {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Product Display */
.tgm-popup-product {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tgm-popup-product-image {
    flex: 0 0 200px;
    text-align: center;
}

.tgm-popup-product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.no-image-placeholder {
    width: 200px;
    height: 200px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
}

.no-image-placeholder i {
    font-size: 48px;
    color: #adb5bd;
}

.tgm-popup-product-info {
    flex: 1;
}

.tgm-popup-product-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.tgm-popup-product-price {
    margin-bottom: 15px;
}

.tgm-popup-product-price .price {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.tgm-popup-product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.tgm-popup-actions {
    margin-top: 20px;
}

.tgm-popup-view-product {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.tgm-popup-view-product:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
}

/* Footer */
.tgm-popup-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.tgm-popup-note {
    font-size: 12px;
    color: #868e96;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tgm-popup-overlay {
        padding: 10px;
    }
    
    .tgm-popup-container {
        max-height: 95vh;
    }
    
    .tgm-popup-content {
        padding: 20px;
        padding-top: 50px; /* Extra space for close button on mobile */
    }
    
    .tgm-popup-title {
        font-size: 20px;
        padding-right: 50px; /* Less space on mobile */
    }
    
    .tgm-popup-product {
        flex-direction: column;
        gap: 15px;
    }
    
    .tgm-popup-product-image {
        flex: none;
        align-self: center;
    }
    
    .tgm-popup-product-image img,
    .no-image-placeholder {
        width: 150px;
        height: 150px;
        object-fit: cover;
    }
    
    .tgm-popup-product-name {
        font-size: 18px;
        text-align: center;
    }
    
    .tgm-popup-product-price {
        text-align: center;
    }
    
    .tgm-popup-actions {
        text-align: center;
    }
    
    .tgm-popup-view-product {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tgm-popup-content {
        padding: 15px;
        padding-top: 45px; /* Extra space for close button on small screens */
    }
    
    .tgm-popup-title {
        font-size: 18px;
        padding-right: 45px; /* Less space on small screens */
    }
    
    .tgm-popup-product-image img,
    .no-image-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .tgm-popup-product-name {
        font-size: 16px;
    }
    
    .tgm-popup-product-price .price {
        font-size: 20px;
    }
}

/* Animation for smooth appearance */
@keyframes tgmPopupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes tgmPopupFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .tgm-popup-container {
        background: #2c3e50;
        color: #ecf0f1;
    }
    
    .tgm-popup-title {
        color: #ecf0f1;
    }
    
    .tgm-popup-description {
        color: #bdc3c7;
    }
    
    .tgm-popup-product-name {
        color: #ecf0f1;
    }
    
    .tgm-popup-product-description {
        color: #bdc3c7;
    }
    
    .tgm-popup-close {
        background: #34495e;
        border-color: #495057;
    }
    
    .tgm-popup-close:hover {
        background: #495057;
    }
    
    .tgm-popup-close span {
        color: #bdc3c7;
    }
    
    .no-image-placeholder {
        background: #34495e;
        border-color: #495057;
    }
    
    .tgm-popup-footer {
        border-top-color: #495057;
    }
    
    .tgm-popup-note {
        color: #95a5a6;
    }
}
