/* ===== AJUSTES VISUAIS - TEMA AURORA ===== */

/* Global reset and settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d0d1a; /* um pouco mais escuro */
    color: #e8e8e8;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive utility classes */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Header com emojis - Responsivo */
header {
    background: linear-gradient(135deg, #0f1a2e, #1a0e2e); /* degrade sutil */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(100, 40, 200, 0.15); /* sombra roxa */
    border-bottom: 1px solid rgba(100, 40, 200, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #7c4dff; /* roxo vibrante */
    text-shadow: 0 0 30px rgba(124, 77, 255, 0.15);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.currency-selector select {
    background-color: #1e1e3a;
    color: #c8d6e5;
    border: 1px solid rgba(124, 77, 255, 0.2);
    padding: 8px 15px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.currency-selector select:hover {
    border-color: #7c4dff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #c8d6e5;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #0f1a2e, #1a0e2e);
    z-index: 2000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(124, 77, 255, 0.1);
    border-bottom: 1px solid rgba(124, 77, 255, 0.1);
}

.mobile-menu-header h3 {
    color: #7c4dff;
    font-size: 1.2rem;
}

.close-mobile-menu {
    background: none;
    border: none;
    color: #8899aa;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-filters {
    padding: 20px;
}

.mobile-filter-btn {
    display: block;
    width: 100%;
    background-color: #1e1e3a;
    color: #c8d6e5;
    border: 1px solid rgba(124, 77, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-filter-btn.active {
    background: linear-gradient(135deg, #7c4dff, #b388ff);
    color: white;
    border-color: transparent;
}

.mobile-filter-btn:hover {
    background-color: #2a2a4a;
}

.mobile-currency {
    padding: 20px;
    border-top: 1px solid rgba(124, 77, 255, 0.05);
}

.mobile-currency label {
    display: block;
    margin-bottom: 10px;
    color: #8899aa;
}

.mobile-currency select {
    width: 100%;
    background-color: #1e1e3a;
    color: #c8d6e5;
    border: 1px solid rgba(124, 77, 255, 0.2);
    padding: 12px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}

.mobile-support {
    padding: 20px;
    border-top: 1px solid rgba(124, 77, 255, 0.05);
}

.mobile-support-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #7c4dff, #b388ff);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-support-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(124, 77, 255, 0.3);
}

/* Mobile Filter Header */
.mobile-filter-header {
    margin: 20px 0;
}

.mobile-filter-toggle {
    width: 100%;
    background: linear-gradient(135deg, #7c4dff, #b388ff);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Filters com emojis - Desktop */
.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
    padding: 20px 0;
}

.filter-btn {
    background-color: #1a1a36;
    color: #c8d6e5;
    border: 1px solid rgba(124, 77, 255, 0.08);
    padding: 12px 24px;
    border-radius: 30px; /* mais arredondado */
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.filter-btn:hover {
    background-color: #2a2a4a;
    border-color: rgba(124, 77, 255, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #7c4dff, #b388ff);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 25px rgba(124, 77, 255, 0.25);
}

/* Products Grid - Responsivo */
.products-container {
    padding: 20px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.product-card {
    background: linear-gradient(145deg, #16162e, #12122a);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 77, 255, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(124, 77, 255, 0.12);
    border-color: rgba(124, 77, 255, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(124, 77, 255, 0.05);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #b388ff; /* roxo claro */
    line-height: 1.3;
    font-weight: 600;
}

.product-description {
    color: #9aa8b9;
    margin-bottom: 15px;
    font-size: 0.9rem;
    flex-grow: 1;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #69db7c; /* verde suave */
    margin-bottom: 10px;
}

.product-size {
    background-color: rgba(124, 77, 255, 0.08);
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #b388ff;
    border: 1px solid rgba(124, 77, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Botão de Preview */
.preview-container {
    margin-bottom: 15px;
}

.btn-preview-video {
    width: 100%;
    padding: 12px 15px;
    background: linear-gradient(135deg, #7c4dff, #b388ff);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-preview-video:hover {
    background: linear-gradient(135deg, #6c3df5, #a87bff);
    transform: scale(1.02);
    box-shadow: 0 4px 25px rgba(124, 77, 255, 0.3);
}

.btn-preview-video:disabled {
    background: #444466;
    cursor: not-allowed;
    opacity: 0.6;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.btn-buy {
    padding: 12px 15px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    width: 100%;
}

.btn-buy {
    background: linear-gradient(135deg, #7c4dff, #b388ff);
    color: white;
}

.btn-buy:hover:not(:disabled) {
    background: linear-gradient(135deg, #6c3df5, #a87bff);
    transform: scale(1.02);
    box-shadow: 0 4px 25px rgba(124, 77, 255, 0.25);
}

.btn-buy:disabled {
    background: #444466;
    cursor: not-allowed;
    opacity: 0.6;
}

.product-category {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(124, 77, 255, 0.15);
    color: #b388ff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(124, 77, 255, 0.15);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(145deg, #16162e, #12122a);
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(124, 77, 255, 0.06);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(124, 77, 255, 0.05);
    border-bottom: 1px solid rgba(124, 77, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1;
}

.modal-header h2 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b388ff;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: #8899aa;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #7c4dff;
}

/* Video Preview Player - MÚLTIPLOS VÍDEOS */
.video-preview-player {
    padding: 20px;
}

/* Container para múltiplos vídeos */
.multiple-videos-container {
    background: #0a0a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(124, 77, 255, 0.05);
}

/* Navegação entre vídeos */
.video-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(124, 77, 255, 0.05);
}

.video-nav-btn {
    background: linear-gradient(135deg, #7c4dff, #b388ff);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.video-nav-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #6c3df5, #a87bff);
    transform: scale(1.05);
}

.video-nav-btn:disabled {
    background: #444466;
    cursor: not-allowed;
    opacity: 0.5;
}

.video-counter {
    color: #c8d6e5;
    font-size: 1.1rem;
    font-weight: 500;
}

.video-counter span {
    color: #b388ff;
    font-weight: bold;
}

/* Container do player de vídeo */
.video-player-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-player-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Miniaturas para navegação rápida */
.video-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
}

.video-thumb-btn {
    padding: 8px 15px;
    background: rgba(124, 77, 255, 0.05);
    color: #8899aa;
    border: 1px solid rgba(124, 77, 255, 0.08);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    min-width: 80px;
}

.video-thumb-btn:hover {
    background: rgba(124, 77, 255, 0.1);
    transform: translateY(-2px);
}

.video-thumb-btn.active {
    background: linear-gradient(135deg, #7c4dff, #b388ff);
    color: white;
    border-color: transparent;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.2);
}

/* Informações do vídeo */
.video-info {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(124, 77, 255, 0.05);
}

.video-info h3 {
    color: #b388ff;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.video-info p {
    color: #9aa8b9;
    font-size: 0.95rem;
    line-height: 1.5;
}

.video-note {
    font-size: 0.85rem;
    color: #8899aa;
    margin-top: 10px;
    padding: 8px;
    background: rgba(124, 77, 255, 0.05);
    border-radius: 5px;
    border-left: 3px solid #7c4dff;
}

.video-note i {
    color: #7c4dff;
    margin-right: 5px;
}

/* Estilo para erro de vídeo */
.video-error {
    text-align: center;
    padding: 40px 20px;
    background: rgba(244, 67, 54, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(244, 67, 54, 0.2);
    margin-top: 20px;
}

.video-error p {
    color: #ef5350;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(124, 77, 255, 0.05);
    text-align: center;
}

.btn-preview-close {
    background-color: #2a2a4a;
    color: #c8d6e5;
    border: 1px solid rgba(124, 77, 255, 0.1);
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-preview-close:hover {
    background-color: #3a3a5a;
}

/* Support Section */
.support-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #12122a, #0f0f1f);
    border-top: 1px solid rgba(124, 77, 255, 0.05);
    margin-top: 40px;
}

.support-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.support-option {
    background: linear-gradient(145deg, #16162e, #12122a);
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(124, 77, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
}

.support-option:hover {
    border-color: rgba(124, 77, 255, 0.12);
    box-shadow: 0 8px 30px rgba(124, 77, 255, 0.05);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7c4dff, #b388ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: white;
}

.support-option h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b388ff;
}

.support-option p {
    color: #9aa8b9;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.support-btn {
    background: linear-gradient(135deg, #7c4dff, #b388ff);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.support-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 25px rgba(124, 77, 255, 0.25);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 2rem;
    margin-top: 15px;
}

.payment-icons i {
    color: #8899aa;
    transition: color 0.3s;
}

.payment-icons i:hover {
    color: #b388ff;
}

.delivery-time {
    background: rgba(124, 77, 255, 0.08);
    padding: 8px 15px;
    border-radius: 20px;
    color: #b388ff;
    margin-top: 10px;
    font-weight: 500;
}

/* Invoice Modal Styles */
.invoice-section {
    padding: 20px;
}

.invoice-details {
    background-color: rgba(124, 77, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(124, 77, 255, 0.05);
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(124, 77, 255, 0.05);
}

.invoice-item strong {
    color: #b388ff;
    font-weight: 600;
}

.invoice-item span {
    color: #c8d6e5;
}

.invoice-item:last-child {
    border-bottom: none;
}

.invoice-total {
    border-top: 2px solid #69db7c;
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.2rem;
}

.invoice-total strong {
    color: #69db7c;
}

.invoice-total span {
    color: #69db7c;
    font-weight: bold;
}

/* Botões no modal de pagamento */
.stripe-payment-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #7c4dff, #b388ff);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

.stripe-payment-btn:hover {
    background: linear-gradient(135deg, #6c3df5, #a87bff);
    transform: scale(1.02);
    box-shadow: 0 4px 30px rgba(124, 77, 255, 0.25);
}

/* Footer */
footer {
    background: linear-gradient(180deg, #12122a, #0d0d1a);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(124, 77, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.5rem;
    color: #7c4dff;
    margin-bottom: 10px;
}

.footer-info p {
    color: #8899aa;
    margin-bottom: 5px;
}

.footer-disclaimer {
    color: #ef5350 !important;
    font-weight: 500;
}

.footer-payment h4,
.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b388ff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #8899aa;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #b388ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(124, 77, 255, 0.05);
    color: #666688;
    font-size: 0.9rem;
}

.footer-legal {
    font-size: 0.8rem;
    color: #444466;
    margin-top: 10px;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .support-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .video-navigation {
        padding: 12px;
    }
    
    .video-nav-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-option {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .modal-content {
        width: 95%;
        max-width: 95%;
    }
    
    .video-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .video-thumbnails {
        gap: 5px;
    }
    
    .video-thumb-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 70px;
    }
}

/* Mobile Portrait (max 576px) */
@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        margin-bottom: 10px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .btn-preview-video {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .btn-buy {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .mobile-menu {
        width: 100%;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .video-player-container {
        padding-top: 75%; /* Mais alto para mobile */
    }
    
    .stripe-payment-btn {
        padding: 12px;
        font-size: 1rem;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-info h3 {
        font-size: 1.3rem;
    }
    
    .payment-icons {
        font-size: 1.5rem;
    }
}

/* Small Mobile (max 375px) */
@media (max-width: 375px) {
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .currency-selector select {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-filter-toggle {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    .btn-preview-video {
        font-size: 0.85rem;
        padding: 8px;
    }
    
    .btn-buy {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .support-option h3 {
        font-size: 1.2rem;
    }
    
    .support-option p {
        font-size: 0.9rem;
    }
    
    .video-thumbnails {
        justify-content: center;
    }
    
    .video-thumb-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
        min-width: 60px;
    }
}

/* High Resolution Displays */
@media (min-resolution: 192dpi) {
    .product-card,
    .modal-content,
    .support-option {
        border-width: 0.5px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #0a0a12;
    }
    
    .product-card,
    .support-option {
        background: linear-gradient(145deg, #12122a, #0e0e22);
    }
}