:root {
    --primary-color: #f472b6;
    --secondary-color: #ec4899;
    --accent-color: #fdf2f8;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefefe;
}

.logo-font {
    font-family: 'Playfair Display', serif;
}

.heading-font {
    font-family: 'Playfair Display', serif;
}

/* Glassy Navbar */
.navbar-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-gradient {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 25%, #be185d 75%, #9d174d 100%);
}

.card-glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.category-btn {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-btn:hover,
.category-btn.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.floating-chatbot {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.subcategory-grid {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.subcategory-grid.show {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.price-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    font-weight: 600;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 3000;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Chatbot Modal */
.chatbot-messages {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.chatbot-message {
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.chatbot-message.user {
    background: #f472b6;
    color: white;
    text-align: right;
}

.chatbot-message.bot {
    background: #e5e7eb;
    color: #1f2937;
}

/* Mobile Menu */
@media (max-width: 1023px) {
    .navbar-glass .hidden.lg\\:flex {
        display: none;
    }

    .navbar-glass .hidden.lg\\:flex:not(.hidden) {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .navbar-glass .hidden.lg\\:flex:not(.hidden) button {
        margin: 0.5rem 0;
    }
}