﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Modal Message Styles */
#modalError {
    color: #dc3545 !important;
    background: #f8d7da !important;
    border: 1px solid #f5c6cb !important;
    padding: 10px !important;
    border-radius: 4px !important;
    margin: 10px 0 !important;
    font-size: 14px !important;
    animation: slideDown 0.3s ease-out;
}

#modalSuccess {
    color: #155724 !important;
    background: #d4edda !important;
    border: 1px solid #c3e6cb !important;
    padding: 10px !important;
    border-radius: 4px !important;
    margin: 10px 0 !important;
    font-size: 14px !important;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    border-bottom: 1px solid rgba(187, 225, 250, 0.3);
    transition: all 0.3s ease;
    overflow: visible !important;
    box-shadow: 0 2px 20px rgba(15, 52, 96, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    min-height: 80px;
    position: relative;
    flex-wrap: nowrap;
    gap: 2rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    position: relative;
    height: 100%;
    flex-shrink: 0;
    margin: 0;
}

.nav-menu > li {
    display: flex;
    align-items: center;
    height: 100%;
}

    .nav-menu a {
        color: #64748b;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        position: relative;
        padding: 0.5rem 0.75rem;
        white-space: nowrap;
    }

        .nav-menu a:hover {
            color: #667eea;
            transform: translateY(-2px);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

.nav-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.cart-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-right: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.4rem;
}

.cart-icon-link:hover {
    color: #0f4c75;
    transform: translateY(-2px);
}

.btn-login {
    background: transparent;
    border: 2px solid #e2e8f0;
    padding: 0.5rem 1rem;
    color: #64748b;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.875rem;
    white-space: nowrap;
}

    .btn-login:hover {
        border-color: #0f4c75;
        color: #0f4c75;
        transform: translateY(-2px);
    }

.btn-cta {
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    border: none;
    padding: 0.5rem 1.25rem;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.4);
    white-space: nowrap;
}

    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    }

/* User greeting and auth controls */
.user-greeting {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 0.5rem;
    white-space: nowrap;
}

.nav-buttons form {
    display: inline-flex;
    margin: 0;
}

.nav-buttons .btn-primary {
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    border: none;
    padding: 0.5rem 1rem;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(15, 76, 117, 0.3);
}

/* Navigation dropdown styles */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu .dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 180px;
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
}

.nav-menu .dropdown-menu li {
    list-style: none;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #64748b;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.nav-menu .dropdown-menu a:hover {
    background: #f1f5f9;
    color: #667eea;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #64748b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-logo {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list > li {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-list a {
    display: block;
    padding: 1rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-list a:hover {
    background: #f9fafb;
    color: #667eea;
}

/* Mobile Dropdown */
.mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f9fafb;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu a {
    padding-left: 3rem;
    font-size: 0.95rem;
    font-weight: 400;
}

.mobile-dropdown-toggle i {
    float: right;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.mobile-cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f3f4f6;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.mobile-cart-link:hover {
    background: #e5e7eb;
    color: #667eea;
}

.mobile-cart-badge {
    margin-left: auto;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.mobile-user-info {
    text-align: center;
    margin-bottom: 1rem;
}

.mobile-user-info p {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.mobile-btn-logout,
.mobile-btn-login {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.mobile-btn-logout {
    background: #f3f4f6;
    color: #374151;
}

/* Responsive adjustments for navigation */
@media (max-width: 1200px) {
    .nav-container {
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-menu a {
        padding: 0.5rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .btn-login,
    .btn-cta,
    .nav-buttons .btn-primary {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .user-greeting {
        font-size: 0.8rem;
    }
}

/* Mobile Navigation - Hide desktop nav and show mobile toggle */
@media (max-width: 768px) {
    .nav-wrapper,
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 1rem;
        gap: 0;
        justify-content: space-between;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .header {
        padding: 0;
    }
    
    body {
        padding-top: 60px;
    }
    
    .nav-container {
        min-height: 60px;
    }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 100%;
        height: 200%;
        background: linear-gradient(45deg, rgba(102, 126, 234, 0.05), rgba(168, 85, 247, 0.05));
        border-radius: 50%;
    }

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.hero .gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    border: none;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 1rem 2rem;
    color: #64748b;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.5);
    background: linear-gradient(135deg, #3282b8 0%, #0f4c75 100%);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #0f4c75;
    color: #0f4c75;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.floating-cards {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(100, 116, 139, 0.1);
    transition: all 0.3s ease;
    width: 200px;
    text-align: center;
}

    .floating-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .floating-card:nth-child(1) {
        top: 50px;
        left: 0;
    }

    .floating-card:nth-child(2) {
        top: 200px;
        right: 50px;
    }

    .floating-card:nth-child(3) {
        bottom: 100px;
        left: 100px;
    }

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 28px auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(100, 116, 139, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .category-card:hover::before {
        left: 100%;
    }

    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        border-color: var(--accent-color);
    }

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.category-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.category-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-features {
    list-style: none;
    margin-bottom: 2rem;
}

    .category-features li {
        padding: 0.5rem 0;
        color: #64748b;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .category-features li::before {
            content: '✓';
            color: white;
            background: var(--accent-gradient);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: bold;
        }

.category-btn {
    width: 100%;
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .category-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

/* Category Colors */
.school-category {
    --accent-color: #f59e0b;
    --accent-gradient: linear-gradient(135deg, #f59e0b, #d97706);
}

.security-category {
    --accent-color: #3b82f6;
    --accent-gradient: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.corporate-category {
    --accent-color: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.sports-category {
    --accent-color: #10b981;
    --accent-gradient: linear-gradient(135deg, #10b981, #059669);
}

.medical-category {
    --accent-color: #ef4444;
    --accent-gradient: linear-gradient(135deg, #ef4444, #dc2626);
}

.hospitality-category {
    --accent-color: #f97316;
    --accent-gradient: linear-gradient(135deg, #f97316, #ea580c);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .close-btn:hover {
        color: #1e293b;
        background: #f8fafc;
    }

/* School Modal */
.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: #64748b;
}

.search-container {
    position: relative;
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

    .search-input:focus {
        border-color: #f59e0b;
    }

.schools-list {
    display: grid;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.school-option {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .school-option:hover {
        background: white;
        border-color: #f59e0b;
        transform: translateX(4px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

.school-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.school-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    background-color: #f8fafc;
}

.school-details h3 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.school-details p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Login Modal */
.login-content {
    max-width: 450px;
}

.user-type-toggle {
    display: flex;
    background: #f8fafc;
    border-radius: 50px;
    padding: 0.25rem;
    margin-bottom: 2rem;
}

.toggle-option {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #64748b;
}

    .toggle-option.active {
        background: white;
        color: #0f4c75;
        box-shadow: 0 2px 8px rgba(15, 76, 117, 0.2);
    }

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    color: #1e293b;
    background-color: white;
}

    .form-input:focus {
        border-color: #667eea;
        color: #1e293b;
        background-color: white;
    }

/* Fix for autofill and input text color */
.login-form .form-input,
.login-form input[type="email"],
.login-form input[type="password"] {
    color: #1e293b !important;
    background-color: white !important;
    -webkit-text-fill-color: #1e293b !important;
}

.login-form .form-input::placeholder {
    color: #94a3b8;
    opacity: 1;
}

/* Chrome autofill override */
.login-form input:-webkit-autofill,
.login-form input:-webkit-autofill:hover,
.login-form input:-webkit-autofill:focus,
.login-form input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #1e293b !important;
    box-shadow: 0 0 0 30px white inset !important;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
}

.checkbox {
    accent-color: #667eea;
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .forgot-password:hover {
        color: #5b21b6;
    }

.login-btn {
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    border: none;
    padding: 1rem;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.4);
    width: 100%;
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(15, 76, 117, 0.5);
        background: linear-gradient(135deg, #3282b8 0%, #0f4c75 100%);
    }

.signup-link {
    text-align: center;
    margin-top: 2rem;
    color: #64748b;
}

    .signup-link a {
        color: #0f4c75;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    
    .signup-link a:hover {
        color: #3282b8;
        text-decoration: underline;
    }

.admin-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: none;
}

    .admin-badge.show {
        display: block;
    }

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    opacity: 0.9;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: white;
    padding: 4rem 0 2rem;
    box-shadow: 0 -10px 30px rgba(15, 52, 96, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #bbe1fa;
}

.footer-section a {
    color: rgba(187, 225, 250, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

    .footer-section a:hover {
        color: #bbe1fa;
        transform: translateX(5px);
    }

.footer-bottom {
    border-top: 1px solid rgba(187, 225, 250, 0.2);
    padding-top: 2rem;
    color: #94a3b8;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-bottom-content p {
    margin: 0;
    flex: 1;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(103, 126, 234, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social .social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.footer-payment {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-payment i {
    font-size: 1.5rem;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-payment i:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-cards {
        height: 300px;
    }

    .floating-card {
        width: 150px;
        padding: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer responsive styles */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-content p {
        order: 2;
        font-size: 0.875rem;
    }

    .footer-social {
        order: 1;
        margin-bottom: 1rem;
    }

    .footer-payment {
        flex-wrap: wrap;
        font-size: 0.75rem;
    }

    .footer-payment i {
        font-size: 1.25rem;
    }

    /* Login Message Styles */
    .login-message {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem;
        border-radius: 0.75rem;
        margin-bottom: 1.5rem;
        font-weight: 500;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .login-success {
        background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
        color: #065f46;
        border: 1px solid #34d399;
    }

    .login-error {
        background: linear-gradient(135deg, #fee2e2 0%, #fca5a5 100%);
        color: #991b1b;
        border: 1px solid #f87171;
    }

    .message-icon {
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .message-text {
        flex: 1;
        line-height: 1.4;
    }

    /* Enhanced form input focus states */
    .form-input:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        transform: translateY(-1px);
    }

    .form-input.error {
        border-color: #ef4444;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }

    /* Login button disabled state */
    .login-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none !important;
        box-shadow: none !important;
    }

    /* Enhanced modal animations */
    .modal-content {
        animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes modalSlideIn {
        from {
            transform: translate(-50%, -60%);
            opacity: 0;
            scale: 0.9;
        }

        to {
            transform: translate(-50%, -50%);
            opacity: 1;
            scale: 1;
        }
    }

    /* Loading indicator for login button */
    .login-btn.loading {
        position: relative;
        color: transparent;
    }

        .login-btn.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid currentColor;
            border-radius: 50%;
            animation: buttonSpin 1s linear infinite;
            color: white;
        }

    @keyframes buttonSpin {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    /* Form validation styles */
    .form-group.has-error .form-input {
        border-color: #ef4444;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }

    .form-group.has-success .form-input {
        border-color: #10b981;
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    }

    /* Improved toggle buttons */
    .toggle-option {
        position: relative;
        overflow: hidden;
    }

        .toggle-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .toggle-option:hover::before {
            left: 100%;
        }

    /* Responsive adjustments for mobile */
    @media (max-width: 768px) {
        .modal-content {
            width: 95%;
            margin: 1rem;
            max-height: 90vh;
        }

        .login-message {
            padding: 0.75rem;
            font-size: 0.9rem;
        }

        .message-icon {
            font-size: 1.1rem;
        }

        .form-input {
            padding: 0.875rem 1.25rem;
        }

        .login-btn {
            padding: 0.875rem;
            font-size: 0.95rem;
        }
    }

    /* Login Message Styles */
    .login-message {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem;
        border-radius: 0.75rem;
        margin-bottom: 1.5rem;
        font-weight: 500;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .login-success {
        background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
        color: #065f46;
        border: 1px solid #34d399;
    }

    .login-error {
        background: linear-gradient(135deg, #fee2e2 0%, #fca5a5 100%);
        color: #991b1b;
        border: 1px solid #f87171;
    }

    .message-icon {
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .message-text {
        flex: 1;
        line-height: 1.4;
    }

    /* Enhanced form input focus states */
    .form-input:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        transform: translateY(-1px);
    }

    .form-input.error {
        border-color: #ef4444;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }

    /* Login button disabled state */
    .login-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none !important;
        box-shadow: none !important;
    }

    /* Enhanced modal animations */
    .modal-content {
        animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes modalSlideIn {
        from {
            transform: translate(-50%, -60%);
            opacity: 0;
            scale: 0.9;
        }

        to {
            transform: translate(-50%, -50%);
            opacity: 1;
            scale: 1;
        }
    }

    /* Loading indicator for login button */
    .login-btn.loading {
        position: relative;
        color: transparent;
    }

        .login-btn.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid currentColor;
            border-radius: 50%;
            animation: buttonSpin 1s linear infinite;
            color: white;
        }

    @keyframes buttonSpin {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    /* Form validation styles */
    .form-group.has-error .form-input {
        border-color: #ef4444;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }

    .form-group.has-success .form-input {
        border-color: #10b981;
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    }

    /* Improved toggle buttons */
    .toggle-option {
        position: relative;
        overflow: hidden;
    }

        .toggle-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .toggle-option:hover::before {
            left: 100%;
        }

    /* Simplified User Menu Styles */
    .user-greeting {
        color: #64748b;
        font-weight: 500;
        font-size: 0.95rem;
        margin-right: 1.5rem;
        white-space: nowrap;
        padding: 0.5rem 0;
    }

    .btn-logout {
        background: transparent;
        border: 2px solid #dc2626;
        padding: 0.75rem 1.5rem;
        color: #dc2626;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        font-family: inherit;
    }

        .btn-logout:hover {
            background: #dc2626;
            color: white;
            transform: translateY(-2px);
        }

    .user-dropdown {
        display: none;
        position: absolute;
        right: 0;
        top: calc(100% + 0.5rem);
        background: white;
        border-radius: 0.75rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        border: 1px solid #e5e7eb;
        min-width: 220px;
        z-index: 9999;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.2s ease-out;
    }
    
    /* When dropdown is shown */
    .user-dropdown.show,
    .user-dropdown[style*="block"] {
        display: block !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
    }

    @keyframes dropdownSlide {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-item {
        display: block;
        padding: 0.875rem 1.25rem;
        color: #374151;
        text-decoration: none;
        border: none;
        background: transparent;
        width: 100%;
        text-align: left;
        cursor: pointer;
        font-size: 0.95rem;
        transition: all 0.2s ease;
        font-family: inherit;
        border-bottom: 1px solid #f1f5f9;
    }
    
        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: #f8fafc;
            color: #667eea;
            padding-left: 1.5rem;
        }

    .logout-btn {
        border-top: 1px solid #e5e7eb !important;
        color: #dc2626 !important;
        margin-top: 0.25rem;
    }

        .logout-btn:hover {
            background: #fef2f2 !important;
            color: #dc2626 !important;
            padding-left: 1.5rem !important;
        }
        
    /* Fix form inside dropdown */
    .user-dropdown form {
        margin: 0;
        padding: 0;
        width: 100%;
        display: block;
    }
    
    .user-dropdown form button {
        width: 100%;
        text-align: left;
        font-size: 0.95rem;
    }

    /* Notification styles */
    .notification {
        position: fixed;
        top: 1rem;
        right: 1rem;
        background: white;
        border-radius: 0.75rem;
        padding: 1rem 1.5rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        border: 1px solid #e5e7eb;
        z-index: 9999;
        max-width: 350px;
        animation: notificationSlide 0.3s ease-out;
    }

    @keyframes notificationSlide {
        from {
            opacity: 0;
            transform: translateX(100%);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .notification.success {
        border-left: 4px solid #10b981;
    }

    .notification.error {
        border-left: 4px solid #ef4444;
    }

    .notification.warning {
        border-left: 4px solid #f59e0b;
    }

    .notification.info {
        border-left: 4px solid #3b82f6;
    }

    /* Loading spinner */
    .loading-spinner {
        width: 40px;
        height: 40px;
        border: 4px solid #f3f4f6;
        border-left: 4px solid #3b82f6;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* Responsive adjustments for mobile */
    @media (max-width: 768px) {
        .nav-menu {
            display: none;
        }

        .user-menu {
            position: static;
        }

        .user-dropdown {
            position: fixed;
            top: 60px;
            right: 1rem;
            left: 1rem;
            width: auto;
            min-width: auto;
        }

        .login-message {
            padding: 0.75rem;
            font-size: 0.9rem;
        }

        .message-icon {
            font-size: 1.1rem;
        }

        .form-input {
            padding: 0.875rem 1.25rem;
        }

        .login-btn {
            padding: 0.875rem;
            font-size: 0.95rem;
        }

        .user-greeting {
            font-size: 0.9rem;
            margin-right: 0.5rem;
        }

        .dropdown-item {
            padding: 1rem;
            font-size: 1rem;
        }

        .notification {
            top: auto;
            bottom: 1rem;
            left: 1rem;
            right: 1rem;
            max-width: none;
        }
    }

    /* Focus styles for accessibility */
    .btn-login:focus,
    .btn-cta:focus,
    .btn-primary:focus,
    .btn-secondary:focus,
    .form-input:focus,
    .toggle-option:focus,
    .dropdown-item:focus {
        outline: 2px solid #667eea;
        outline-offset: 2px;
    }

    /* High contrast mode support */
    @media (prefers-contrast: high) {
        .login-success {
            background: #dcfce7;
            color: #14532d;
            border: 2px solid #16a34a;
        }

        .login-error {
            background: #fef2f2;
            color: #7f1d1d;
            border: 2px solid #dc2626;
        }

        .user-dropdown {
            border: 2px solid #374151;
        }

        .dropdown-item:hover {
            background: #e5e7eb;
            color: #1f2937;
        }
    }

    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        .login-message,
        .modal-content,
        .user-dropdown,
        .notification {
            animation: none;
        }

        .btn-primary:hover,
        .btn-secondary:hover,
        .btn-login:hover,
        .btn-cta:hover {
            transform: none;
        }

        .form-input:focus {
            transform: none;
        }
    }

    /* Print styles */
    @media print {
        .header,
        .footer,
        .modal,
        .user-dropdown,
        .notification {
            display: none !important;
        }

        .login-message {
            border: 1px solid #000 !important;
            background: white !important;
            color: black !important;
        }
    }


/* Dropdown menu styles */
.nav-menu .dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Debug: Ensure dropdown is not hidden by overflow */
.nav-menu {
    overflow: visible !important;
}

.nav-container {
    overflow: visible !important;
}

.nav-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    user-select: none;
}

.nav-menu .dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 0.75rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 9999;
    list-style: none;
    margin: 0;
    margin-top: 10px;
    display: none;
}

.nav-menu .dropdown.active .dropdown-menu {
    display: block !important;
}

.nav-menu .dropdown-menu li {
    margin: 0;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.nav-menu .dropdown-menu a:hover {
    background-color: #f8fafc;
    color: #667eea;
    border-left-color: #667eea;
    transform: translateX(2px);
}

/* Dropdown arrow and hover states */
.nav-menu .dropdown-toggle:hover {
    color: #667eea;
}

.nav-menu .dropdown-toggle::after {
    display: none;
}

/* CSS hover fallback */
@media (min-width: 769px) {
    .nav-menu .dropdown:hover .dropdown-menu {
        display: block !important;
    }
}

/* Enhanced dropdown for mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        display: none;
    }
    
    .nav-menu.mobile-active {
        display: flex !important;
    }
    
    .nav-menu .dropdown {
        width: 100%;
    }
    
    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 8px;
        margin-top: 0.5rem;
        display: none;
        width: 100%;
    }
    
    .nav-menu .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-menu .dropdown-menu a {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    
    .nav-menu .dropdown-menu a:last-child {
        border-bottom: none;
    }
}

/* Global Loading Spinner */
.loading-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    display: none;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999999 !important;
}

.loading-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f4f6;
    border-left-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-text {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 500;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Product Card Styles (Reusable) */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 20px rgba(15, 52, 96, 0.08);
    border: 1px solid rgba(187, 225, 250, 0.2);
    text-decoration: none;
    display: block;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(15, 52, 96, 0.15);
    border-color: rgba(187, 225, 250, 0.4);
    text-decoration: none;
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f7f9fc;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info .product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.product-info .product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f4c75;
    margin-bottom: 0.5rem;
}

.product-info .product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f39c12;
    font-size: 0.9rem;
}