    :root {
        /* Wood-inspired color palette */
        --primary-wood: #8B4513;
        --secondary-wood: #D2691E;
        --dark-wood: #654321;
        --light-wood: #DEB887;
        --cream: #F5F5DC;
        --warm-brown: #A0522D;
        --mahogany: #C04000;
        --oak: #CD853F;
        
        /* Gradients */
        --wood-gradient: linear-gradient(135deg, #8B4513, #D2691E);
        --warm-gradient: linear-gradient(135deg, #F5F5DC, #DEB887);
        --dark-gradient: linear-gradient(135deg, #654321, #8B4513);
        
        /* Glass effects */
        --glass-bg: rgba(245, 245, 220, 0.15);
        --glass-border: rgba(139, 69, 19, 0.3);
        
        /* Text colors */
        --text-primary: #2F1B14;
        --text-secondary: #654321;
        --text-accent: #8B4513;
        
        /* Effects */
        --wood-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
        --hover-glow: 0 0 20px rgba(210, 105, 30, 0.4);
        
        scroll-padding-top: 100px;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Inter', sans-serif;
        background: var(--warm-gradient);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    /* Animated Wood Texture Background */
    .wood-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
        pointer-events: none;
        background: 
            repeating-linear-gradient(
                90deg,
                rgba(139, 69, 19, 0.03) 0px,
                rgba(210, 105, 30, 0.02) 2px,
                rgba(139, 69, 19, 0.03) 4px
            ),
            radial-gradient(circle at 25% 30%, rgba(222, 184, 135, 0.1), transparent 60%),
            radial-gradient(circle at 75% 70%, rgba(160, 82, 45, 0.08), transparent 60%);
        animation: woodGrain 20s linear infinite;
    }
    
    @keyframes woodGrain {
        0% { transform: translateX(0); }
        100% { transform: translateX(20px); }
    }
    
    /* Navigation */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: rgba(245, 245, 220, 0.95) !important;
    transform: translateZ(0);
}

body {
    padding-top: 100px; /* Adjust based on your navbar height */
}
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
    }
    
    .logo {
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        font-weight: 900;
        color: var(--primary-wood);
        text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .logo i {
        color: var(--mahogany);
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
    }
    
    .nav-menu a {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        position: relative;
        padding: 0.5rem 1rem;
        border-radius: 8px;
    }
    
    .nav-menu a:hover {
        color: var(--primary-wood);
        background: rgba(139, 69, 19, 0.1);
    }
    
    .auth-buttons {
        display: flex;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .btn-outline {
        background: transparent;
        color: var(--primary-wood);
        border: 2px solid var(--primary-wood);
    }
    
    .btn-outline:hover {
        background: var(--primary-wood);
        color: white;
    }
    
    .btn-primary {
        background: var(--wood-gradient);
        color: white;
        box-shadow: var(--wood-shadow);
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--hover-glow);
    }
    
    /* Modal Overlay */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        z-index: 2000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Modal Container */
    .modal {
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(139, 69, 19, 0.3);
        max-width: 450px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        transform: scale(0.9) translateY(20px);
        transition: all 0.3s ease;
        border: 3px solid var(--glass-border);
    }
    
    .modal-overlay.active .modal {
        transform: scale(1) translateY(0);
    }
    
    /* Modal Header */
    .modal-header {
        background: var(--wood-gradient);
        color: white;
        padding: 2rem 2rem 1rem;
        border-radius: 20px 20px 0 0;
        text-align: center;
        position: relative;
    }
    
    .modal-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    .modal-header p {
        opacity: 0.9;
        font-size: 1rem;
    }
    
    .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }
    
    /* Modal Body */
    .modal-body {
        padding: 2rem;
    }
    
    /* Form Styles */
    .form-group {
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--text-primary);
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group select {
        width: 100%;
        padding: 1rem 1rem 1rem 3rem;
        border: 2px solid #e1e5e9;
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: white;
        font-family: inherit;
    }
    
    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--primary-wood);
        box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    }
    
    .form-group .input-icon {
        position: absolute;
        top: 2.2rem;
        left: 1rem;
        color: var(--text-secondary);
        font-size: 1.1rem;
        pointer-events: none;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .checkbox-group input[type="checkbox"] {
        width: auto;
        margin: 0;
        padding: 0;
        transform: scale(1.2);
    }
    
    .checkbox-group label {
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.4;
        color: var(--text-secondary);
    }
    
    .checkbox-group a {
        color: var(--primary-wood);
        text-decoration: none;
        font-weight: 600;
    }
    
    .checkbox-group a:hover {
        text-decoration: underline;
    }
    
    /* Submit Button */
    .submit-btn {
        width: 100%;
        padding: 1rem;
        background: var(--wood-gradient);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
        box-shadow: var(--wood-shadow);
    }
    
    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--hover-glow);
    }
    
    .submit-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }
    
    /* Social Login */
    .social-login {
        text-align: center;
        margin: 1.5rem 0;
    }
    
    .social-login p {
        color: var(--text-secondary);
        margin-bottom: 1rem;
        position: relative;
    }
    
    .social-login p::before,
    .social-login p::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 40%;
        height: 1px;
        background: #e1e5e9;
    }
    
    .social-login p::before {
        left: 0;
    }
    
    .social-login p::after {
        right: 0;
    }
    
    .social-buttons {
        display: flex;
        gap: 1rem;
    }
    
    .social-btn {
        flex: 1;
        padding: 0.8rem;
        border: 2px solid #e1e5e9;
        background: white;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-weight: 600;
        text-decoration: none;
        color: var(--text-primary);
    }
    
    .social-btn:hover {
        border-color: var(--primary-wood);
        background: rgba(139, 69, 19, 0.05);
    }
    
    .social-btn.google {
        color: #db4437;
    }
    
    .social-btn.facebook {
        color: #4267B2;
    }
    
    /* Toggle Between Forms */
    .form-toggle {
        text-align: center;
        padding-top: 1rem;
        border-top: 1px solid #e1e5e9;
        color: var(--text-secondary);
    }
    
    .form-toggle a {
        color: var(--primary-wood);
        text-decoration: none;
        font-weight: 600;
    }
    
    .form-toggle a:hover {
        text-decoration: underline;
    }
    
    /* Success/Error Messages */
    .message {
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        display: none;
    }
    
    .message.success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    
    .message.error {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
    
    /* Loading State */
    .loading {
        position: relative;
        overflow: hidden;
    }
    
    .loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: loading 1.5s infinite;
    }
    
    @keyframes loading {
        0% { left: -100%; }
        100% { left: 100%; }
    }
    
    /* Hero Section (simplified for demo) */
    .hero {
        min-height: 20vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        padding-top: 40px;
        background: 
            linear-gradient(rgba(245, 245, 220, 0.8), rgba(245, 245, 220, 0.6)),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wood" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect fill="%23DEB887" width="20" height="20"/><path d="M0 10h20M0 20h20" stroke="%23CD853F" stroke-width="0.5"/></pattern></defs><rect fill="url(%23wood)" width="100" height="100"/></svg>');
        background-size: cover;
    }
    
    .hero-content {
        max-width: 900px;
        z-index: 2;
    }
    
    .hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(3rem, 6vw, 5rem);
        font-weight: 900;
        margin-bottom: 2rem;
        color: var(--dark-wood);
        text-shadow: 2px 2px 8px rgba(139, 69, 19, 0.3);
    }
    
    .hero p {
        font-size: 1.2rem;
        color: var(--text-secondary);
        margin-bottom: 3rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Mobile Responsive */
    .hamburger {
        display: none;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--primary-wood);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    /* Auth section (login/register or user info) */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Logged in user info block */
.auth-buttons .user-info {
    background: #ffffff;
    color: #333;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    white-space: nowrap;
}

/* Guest login/register button styles */
.auth-buttons .guest-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #0f4c75;
    border: 2px solid #0f4c75;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
}

.modal-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #0f4c75;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-wood);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Category Sections */
.product-category {
    margin-bottom: 4rem;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-wood);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--wood-gradient);
    border-radius: 2px;
}


.product-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mahogany);
    font-family: 'Inter', sans-serif;
}

.product-stock {
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: rgba(139, 69, 19, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}
.product-image:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    z-index: 2;
}


/* Product Actions */
.product-actions {
    display: flex;
    gap: 0.5rem;
}

.add-to-cart {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: var(--wood-gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.add-to-cart:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

.add-to-cart:disabled {
    background: #ccc;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

/* Error and Loading States */
.error-message {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    margin: 2rem 0;
}

.error-message p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.no-products {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    margin: 2rem 0;
}

/* Loading Animation */
.loading-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-skeleton {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    position: relative;
}

.product-skeleton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Cart Count Badge */
.cart-count {
    background: var(--mahogany);
    color: white;
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    text-align: center;
    line-height: 1;
}

/* Filter and Sort Controls */
.product-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    max-width: 300px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 3rem;
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-wood);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.filter-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-select {
    padding: 0.8rem 1rem;
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-wood);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}
.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin: 15px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.product-image {
    height: 200px;
    object-fit: cover;
}

.product-details {
    padding: 15px;
    text-align: center;
}


@media (max-width: 768px) {
    body {
        padding-top: 40px;
    }
    
    .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: rgba(245, 245, 220, 0.95) !important;
    transform: translateZ(0);
}

body {
    padding-top: 100px; /* Adjust based on your navbar height */
}
    .products-section {
        padding: 2rem 0;
    }
    
    .products-container {
        padding: 0 1rem;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1.3rem;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .product-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: none;
    }
    
    .filter-controls {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        margin: 0 0.5rem;
    }
    
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.p-2 {
    padding: 1rem;
}

.rounded {
    border-radius: 10px;
}

.shadow {
    box-shadow: var(--wood-shadow);
}
    
    @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }
        
        .nav-menu {
            position: fixed;
            top: 100px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 100px);
            background: rgba(245, 245, 220, 0.95);
            flex-direction: column;
            align-items: center;
            padding-top: 2rem;
            transition: left 0.3s ease;
        }
        
        .nav-menu.active {
            left: 0;
        }
        
        .auth-buttons {
            flex-direction: column;
            width: 100%;
            gap: 1rem;
            padding: 0 2rem;
        }
        
        .btn {
            width: 100%;
            justify-content: center;
        }
        
        .modal {
            width: 95%;
            margin: 1rem;
        }
        
        .modal-body {
            padding: 1.5rem;
        }
        
        .form-row {
            grid-template-columns: 1fr;
        }
        
        .social-buttons {
            flex-direction: column;
        }
    }