/* Extracted from src/pages/termek.php */

/* Header stílusok már a header.css-ben vannak definiálva */

/* Közös komponensek (notification, modal, dropdown, rainbow text, balance, cart visibility) már a common-components.css-ben vannak */

/* Kategória menü CSS már a category_menu.css-ben van definiálva */
        transform: scale(1);
        opacity: 1;
    }
}

/* Modern Button Hover Effects */
.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.modern-btn:active {
    transform: translateY(0);
}

.modern-btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%) !important;
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.4) !important;
}

.modern-btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%) !important;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4) !important;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modern-modal-content {
        width: 95% !important;
        max-width: 400px !important;
    }
    
    .modal-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .modern-btn {
        width: 100% !important;
        min-width: auto !important;
    }
}

/* Product details modern styles */
.modern-product-details { padding: 20px; background: #fff; border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.08); margin-top: 15px; }
.product-title-section { margin-bottom: 20px; border-bottom: 1px solid #f0f0f0; padding-bottom: 15px; }
.product-title { font-size: 24px; font-weight: 700; color: #2c3e50; margin: 0 0 8px 0; line-height: 1.3; }
.product-rating { display: flex; align-items: center; gap: 8px; }
.rating-stars { color: #ffa500; font-size: 18px; }
.rating-count { color: #7f8c8d; font-size: 14px; }
.product-info-cards { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.info-card { display: flex; align-items: center; padding: 12px; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); border-radius: 10px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.info-card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.info-icon { font-size: 24px; margin-right: 15px; width: 40px; text-align: center; }
.info-content { display: flex; flex-direction: column; }
.info-label { font-size: 12px; color: #7f8c8d; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
.info-value { font-size: 16px; color: #2c3e50; font-weight: 600; margin-top: 2px; }
.tooltip-trigger { position: relative; cursor: help; display: inline-flex; align-items: center; gap: 5px; }
.tooltip-icon { font-size: 12px; color: #3498db; opacity: 0.7; transition: opacity 0.2s ease; }
.tooltip-trigger:hover .tooltip-icon { opacity: 1; }
.tooltip-trigger::after { content: attr(data-tooltip); position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); background: rgba(0, 0, 0, 0.95); color: white; padding: 12px 16px; border-radius: 10px; font-size: 12px; font-weight: 500; white-space: normal; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 1000; max-width: 220px; min-width: 180px; text-align: center; line-height: 1.4; word-wrap: break-word; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); backdrop-filter: blur(10px); }
.tooltip-trigger::before { content: ''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: rgba(0, 0, 0, 0.9); opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 1000; }
.tooltip-trigger:hover::after, .tooltip-trigger:hover::before { opacity: 1; visibility: visible; bottom: calc(100% + 8px); }
@media (hover: none) { .tooltip-trigger:active::after, .tooltip-trigger:active::before { opacity: 1; visibility: visible; bottom: calc(100% + 8px); } }
.category-link { color: #3498db !important; text-decoration: none; transition: color 0.2s ease; }
.category-link:hover { color: #2980b9 !important; }
.price-section { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 20px; border-radius: 12px; margin-bottom: 20px; color: white; position: relative; overflow: hidden; }
.price-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%); pointer-events: none; }
.price-container { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.price-main { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price-secondary { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.current-price { font-size: 28px; font-weight: 800; color: #fff; }
.original-price { font-size: 18px; text-decoration: line-through; color: rgba(255,255,255,0.7); }
.discount-badge { background: #e74c3c; color: white; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.price-info { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.vat-info { font-size: 12px; color: rgba(255,255,255,0.8); }
.availability-status { font-size: 14px; font-weight: 600; padding: 6px 12px; border-radius: 20px; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.availability-status.in-stock { color: #2ecc71; }
.availability-status.out-of-stock { color: #e74c3c; }
.purchase-section { margin-bottom: 20px; }
.quantity-selector { margin-bottom: 15px; }
.quantity-label { display: block; font-size: 13px; font-weight: 600; color: #2c3e50; margin-bottom: 8px; }
.qty-limit { color: #7f8c8d; font-weight: 400; font-size: 11px; }
.quantity-controls { display: flex; align-items: center; width: fit-content; border: 2px solid #e9ecef; border-radius: 12px; overflow: hidden; }
.qty-btn { background: #f8f9fa; border: none; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 600; color: #495057; cursor: pointer; transition: all 0.2s ease; }
.qty-btn:hover { background: #e9ecef; color: #2c3e50; }
.qty-input { border: none; width: 60px; height: 45px; text-align: center; font-size: 16px; font-weight: 600; color: #2c3e50; background: white; }
.action-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-add-to-cart, .btn-buy-now { flex: 1; min-width: 120px; padding: 12px 16px; border: none; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 8px; position: relative; overflow: hidden; }
.btn-add-to-cart { background: linear-gradient(135deg, #28a745 0%, #20c997 100%); color: white; }
.btn-add-to-cart:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3); }
.btn-buy-now { background: linear-gradient(135deg, #fd7e14 0%, #e83e8c 100%); color: white; }
.btn-buy-now:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(253, 126, 20, 0.3); }
.btn-admin-view { flex: 1; min-width: 120px; }
.btn-admin-view:hover { background: #5a6268 !important; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3); }
.services-section { padding-top: 15px; border-top: 1px solid #f0f0f0; display: flex; flex-direction: column; gap: 10px; }
.service-item { display: flex; align-items: center; gap: 12px; color: #6c757d; font-size: 14px; }
.service-item i { color: #28a745; font-size: 16px; width: 20px; }
@media (max-width: 768px) { .modern-product-details { padding: 15px; margin-top: 10px; } .product-title { font-size: 22px; } .current-price { font-size: 24px; } .action-buttons { flex-direction: column; } .btn-add-to-cart, .btn-buy-now { min-width: 100%; padding: 14px 16px; } .price-container { flex-direction: column; align-items: flex-start; gap: 6px; } .price-main { flex-direction: column; align-items: flex-start; gap: 4px; } .price-secondary { flex-direction: column; align-items: flex-start; gap: 4px; margin-top: 6px; } .info-card { padding: 10px; } .price-section { padding: 15px; } }

/* Footer payment logos */
.footer-payments { display: flex; justify-content: center; align-items: center; list-style: none; padding: 0; margin: 0; }
.footer-payments li { margin: 0 10px; }
.footer-payments li a img { width: 80px; height: 50px; object-fit: contain; display: block; }

/* Modal styles */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); animation: fadeIn 0.3s ease-in-out; }
.modal-content { background-color: #fff; margin: 15% auto; padding: 30px; border-radius: 15px; width: 90%; max-width: 500px; text-align: center; position: relative; animation: slideIn 0.3s ease-in-out; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.icon-container { margin-bottom: 20px; }
.modal-title { color: #2c3e50; margin-bottom: 15px; font-size: 24px; }
#modalMessage { color: #34495e; margin-bottom: 25px; font-size: 16px; line-height: 1.5; }
.btn-container { display: flex; justify-content: center; gap: 15px; }
.btn { padding: 12px 25px; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.btn-secondary { background-color: #f8f9fa; color: #2c3e50; }
.btn-secondary:hover { background-color: #e9ecef; }
.btn-primary { background-color: #28a745; color: white; }
.btn-primary:hover { background-color: #218838; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } 

/* Product images extracted from inline styles */
#product-main-img .product-preview img { max-width: 100%; max-height: 480px; margin: 0 auto 15px auto; display: block; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
#product-imgs .product-preview img { max-width: 100%; max-height: 120px; margin: 0 auto 8px auto; display: block; border-radius: 6px; box-shadow: 0 1px 4px rgba(0,0,0,0.07); }

/* Image disclaimer extracted from inline styles */
.image-disclaimer { margin: 15px 0; text-align: center; }
.image-disclaimer p { font-size: 12px; color: #6c757d; margin: 0; padding: 10px; background: #f8f9fa; border-radius: 8px; border-left: 4px solid #007bff; }

/* Search results default hidden */
#search-results { display: none; }

/* Language dropdown specific padding - már a header.css-ben van definiálva */ 