/* Extracted from index.html */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.product-card h3 {
    margin: 10px 0 5px;
    font-size: 1.1em;
    color: #000;
}

.product-card p {
    margin: 0;
    font-size: 1em;
    color: #333;
}

.featured-carousel {
    scrollbar-width: thin;
    scrollbar-color: #F97316 #f0f0f0;
}

.featured-carousel::-webkit-scrollbar {
    height: 8px;
}

.featured-carousel::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.featured-carousel::-webkit-scrollbar-thumb {
    background: #F97316;
    border-radius: 4px;
}

.featured-carousel::-webkit-scrollbar-thumb:hover {
    background: #FBBF24;
}

.featured-card {
    min-width: 250px;
    max-width: 250px;
    background: linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
    border: 2px solid #F97316;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    scroll-snap-align: start;
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.5);
}

.featured-card img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 10px;
}

.featured-card h3 {
    margin: 15px 0 10px;
    font-size: 1.1em;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.featured-card p {
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Custom scrollbars for chat */
.chat-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.chat-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.chat-scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(107, 114, 128, 0.8);
    border-radius: 9999px;
}

/* Fullscreen mode for chat */
#chat-window.fullscreen {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    z-index: 9999;
}