/* Universal Vendor Page Styles - Based on Abu Auf Reference */
/* This CSS provides consistent styling for all vendor pages */

/* Vendor Page Background with BG.svg */
.vendor-page {
    min-height: 100vh;
    background: #FFD15C url('../images/BG.svg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
}

/* Background overlay for better readability */
.vendor-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* Ensure content is above overlay */
.vendor-page > .container {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* EXACT NAVBAR STYLING FROM HOME PAGE - Navigation Styles with Enhanced BG.svg Background */
.navbar {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    background: #FFD15C !important; /* Fallback color */
    background-image: url('../images/BG.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
}

/* Additional background enforcement - EXACT COPY FROM HOME PAGE */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/BG.svg') center center/cover no-repeat;
    z-index: -1;
    opacity: 0.9;
}

/* Ensure background shows even with inline styles - EXACT COPY FROM HOME PAGE */
.navbar[style] {
    background-image: url('../images/BG.svg') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

/* Multiple selector approaches for maximum compatibility - EXACT COPY FROM HOME PAGE */
nav.navbar,
.navbar,
nav,
header.navbar,
[class*="navbar"] {
    background: #FFD15C !important;
    background-image: url('../images/BG.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
}

/* CSS class for JavaScript application - EXACT COPY FROM HOME PAGE */
.navbar.bg-applied,
.navbar[data-bg-applied="true"] {
    background: #FFD15C !important;
    background-image: url('../images/BG.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
}

/* Ultimate fallback with highest specificity - EXACT COPY FROM HOME PAGE */
html body .navbar,
html body nav.navbar,
html body header.navbar {
    background: #FFD15C !important;
    background-image: url('../images/BG.svg') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-attachment: scroll !important;
}

/* Nav Container Styling - EXACT COPY FROM HOME PAGE */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

/* Logo Styling - EXACT COPY FROM HOME PAGE */
.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #eab308, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Logo in navbar - EXACT COPY FROM HOME PAGE */
.logo img {
    height: 60px !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: none !important;
    transition: box-shadow 0.2s;
}

/* Nav Menu Styling - EXACT COPY FROM HOME PAGE */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Make nav menu section titles bolder and bigger - EXACT COPY FROM HOME PAGE */
.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-menu a:hover {
    color: #7EB143;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7EB143;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Download Button Styling - EXACT COPY FROM HOME PAGE */
.download-btn {
    background: linear-gradient(135deg, #7EB143, #6BA037);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(126, 177, 67, 0.3);
}

/* Hamburger Menu - EXACT COPY FROM HOME PAGE */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Promo Section - Universal Yellow Theme */
.promo-section {
    margin-bottom: 40px;
}

.promo-card-large {
    background: linear-gradient(135deg, #ffe082 0%, #ffcc02 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 204, 2, 0.3);
    position: relative;
    overflow: hidden;
}

.promo-card-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    background: #FFD15C url('../images/BG.svg') no-repeat center center;
    background-size: cover;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.promo-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    z-index: -1;
}

.promo-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.vendor-promo-title {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.vendor-promo-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    background: #ffffff;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.promo-badge {
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.copy-btn-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.promo-code {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a202c;
    background: white;
    padding: 15px 30px;
    border-radius: 15px;
    border: 3px dashed #1a202c;
    letter-spacing: 3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.copy-btn {
    background: #7EB143;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 140px;
    margin: 0 auto;
}

.copy-btn:hover {
    background: #6BA037;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(126, 177, 67, 0.3);
}

.copy-btn.copied {
    background: #059669;
    animation: success 0.5s ease;
}

@keyframes success {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.promo-instruction {
    font-size: 1.2rem;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.promo-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo-discount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #7EB143;
}

.promo-expiry {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* About Section Styling */
.about-section, .partnership-section {
    margin-bottom: 40px;
}

.about-card, .partnership-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-header, .partnership-header {
    text-align: center;
    margin-bottom: 30px;
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-rabbit-logo,
.about-noon-logo,
.about-senem-logo,
.about-buffalo-logo,
.about-vendor-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: none;
    border: none;
    box-shadow: none;
}

.about-header h2, .partnership-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.about-content p, .partnership-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 30px;
    text-align: center;
}

/* Features Grid */
.features-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.feature-item, .benefit-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover, .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i, .benefit-item i {
    font-size: 2rem;
    color: #ffe082;
    margin-bottom: 15px;
}

.feature-item h4, .benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.feature-item p, .benefit-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Highlights Section */
.rabbit-highlights {
    background: linear-gradient(135deg, #ffe082 0%, #ffcc02 100%);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.rabbit-highlights h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    text-align: center;
}

.rabbit-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rabbit-highlights li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    font-size: 1rem;
    color: #1a202c;
    font-weight: 600;
}

.rabbit-highlights li i {
    color: #059669;
    font-size: 1.2rem;
}

/* Partnership Section */
.partnership-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.foodidu-logo, 
.rabbit-logo,
.noon-logo,
.senem-logo,
.buffalo-logo,
.vendor-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.partnership-symbol {
    font-size: 2rem;
    color: #ffe082;
}

.partnership-benefits {
    margin-top: 30px;
}

.partnership-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 25px;
    text-align: center;
}

/* How It Works Steps */
.how-it-works {
    margin-top: 80px !important;
    padding-top: 20px !important;
}

.how-it-works h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 40px;
    margin-top: -10px;
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #ffe082 0%, #ffcc02 100%);
    color: #1a202c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 60px !important;
    margin-top: -10px;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Download Section */
.download-section {
    margin-bottom: 40px;
}

.download-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 40px;
}

.app-group {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app-group h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.app-group p {
    color: #64748b;
    margin-bottom: 25px;
    font-size: 1rem;
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.download-btn i {
    font-size: 1.5rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text .small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.btn-text .large {
    font-size: 1rem;
    font-weight: 700;
}

.app-store {
    background: #000;
    color: white;
}

.app-store:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.google-play {
    background: #01875f;
    color: white;
}

.google-play:hover {
    background: #016a4a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(1, 135, 95, 0.3);
}

.website {
    background: #3b82f6;
    color: white;
}

.website:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Back Section */
.back-section {
    text-align: center;
    margin-bottom: 40px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    color: #1a202c;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #ffe082;
    background: #1a202c;
}

/* Clean Logo Styling - No Background/Container */
.clean-logo {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Ensure all vendor logos are clean */
.vendor-logo-container {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 20px 0 !important;
}

/* Override any existing logo containers */
.promo-logo,
.vendor-logo-wrapper,
.logo-container {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vendor-page {
        padding-top: 100px;
        padding-bottom: 40px;
        background-attachment: scroll;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Promo Code Section Mobile */
    .promo-section {
        margin-bottom: 30px;
    }
    
    .promo-card-large {
        margin: 0 10px 30px 10px;
        padding: 25px 20px;
    }
    
    .promo-code {
        font-size: 1.8rem;
        padding: 12px 20px;
        letter-spacing: 2px;
        margin: 15px 0;
    }
    
    .promo-code-display {
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .copy-btn-container {
        margin-bottom: 20px;
    }
    
    .copy-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        max-width: 140px;
    }
    
    .promo-details {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-top: 20px;
    }
    
    /* About and Partnership Sections Mobile */
    .about-section, .partnership-section {
        margin-bottom: 30px;
    }
    
    .about-card, .partnership-card {
        margin: 0 10px;
        padding: 25px 20px;
    }
    
    .about-header, .partnership-header {
        margin-bottom: 20px;
    }
    
    .features-grid, .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 25px 0;
    }
    
    .feature-item, .benefit-item {
        padding: 20px 15px;
    }
    
    /* Download Section Mobile */
    .download-section {
        margin-bottom: 30px;
    }
    
    .app-group {
        margin: 0 10px 25px 10px;
        padding: 25px 20px;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .download-btn {
        min-width: auto;
        padding: 15px 20px;
    }
    
    /* Partnership specific mobile adjustments */
    .partnership-logos {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .step-number {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    
    /* Highlights section mobile */
    .rabbit-highlights {
        margin: 25px 10px;
        padding: 20px 15px;
    }
    
    .rabbit-highlights li {
        padding: 8px 0;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .vendor-page {
        padding-top: 90px;
        padding-bottom: 30px;
    }
    
    /* Extra small mobile adjustments */
    .promo-card-large {
        margin: 0 5px 25px 5px;
        padding: 20px 15px;
    }
    
    .promo-code {
        font-size: 1.4rem;
        padding: 10px 15px;
        letter-spacing: 1px;
    }
    
    .copy-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        max-width: 120px;
    }
    
    .about-card, .partnership-card {
        margin: 0 5px;
        padding: 20px 15px;
    }
    
    .app-group {
        margin: 0 5px 20px 5px;
        padding: 20px 15px;
    }
    
    .about-header h2, .partnership-header h2 {
        font-size: 1.4rem;
    }
    
    .feature-item, .benefit-item {
        padding: 15px 10px;
    }
    
    .rabbit-highlights {
        margin: 20px 5px;
        padding: 15px 10px;
    }
    
    .rabbit-highlights li {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .step {
        padding: 15px 10px;
    }
    
    .download-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    /* Reduce section spacing on very small screens */
    .about-section, .partnership-section, .download-section {
        margin-bottom: 25px;
    }
}

/* Specific adjustments for 398x906 mobile viewport */
@media (max-width: 400px) and (min-height: 800px) {
    .container {
        padding: 0 12px;
    }
    
    .vendor-page {
        padding-top: 85px;
        padding-bottom: 25px;
    }
    
    /* Ultra-compact card spacing */
    .promo-card-large {
        margin: 0 3px 20px 3px;
        padding: 18px 12px;
    }
    
    .about-card, .partnership-card {
        margin: 0 3px;
        padding: 18px 12px;
    }
    
    .app-group {
        margin: 0 3px 18px 3px;
        padding: 18px 12px;
    }
    
    /* Compact promo code section */
    .promo-code {
        font-size: 1.3rem;
        padding: 8px 12px;
        letter-spacing: 0.5px;
    }
    
    .copy-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        max-width: 110px;
    }
    
    .promo-details {
        gap: 12px;
        margin-top: 15px;
    }
    
    /* Compact feature grids */
    .features-grid, .benefits-grid {
        gap: 15px;
        margin: 20px 0;
    }
    
    .feature-item, .benefit-item {
        padding: 12px 8px;
    }
    
    /* Compact highlights */
    .rabbit-highlights {
        margin: 18px 3px;
        padding: 12px 8px;
    }
    
    .rabbit-highlights li {
        font-size: 0.85rem;
        gap: 8px;
        padding: 6px 0;
    }
    
    /* Compact steps */
    .steps-container {
        gap: 15px;
    }
    
    .step {
        padding: 12px 8px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    /* Compact download buttons */
    .download-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .download-buttons {
        gap: 12px;
    }
    
    /* Reduce section margins for tight spacing */
    .about-section, .partnership-section, .download-section {
        margin-bottom: 20px;
    }
    
    /* Compact headers */
    .about-header h2, .partnership-header h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .download-section h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
}

/* Mobile Navigation - Enhanced for Vendor Pages */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        cursor: pointer !important;
        gap: 6px !important;
        padding: 8px !important;
        z-index: 1001 !important;
    }
    
    .hamburger span {
        width: 28px !important;
        height: 3px !important;
        background: #333 !important;
        transition: all 0.3s ease !important;
        border-radius: 3px !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: #FFD15C url('../images/BG.svg') no-repeat center center !important;
        background-size: cover !important;
        flex-direction: column !important;
        padding: 6rem 0 2rem 0 !important;
        gap: 0 !important;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15) !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 999 !important;
        overflow-y: auto !important;
        border-top-left-radius: 20px !important;
        border-bottom-left-radius: 20px !important;
        list-style: none !important;
        margin: 0 !important;
    }
    
    .nav-menu::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(255, 255, 255, 0.3) !important;
        z-index: -1 !important;
        border-top-left-radius: 20px !important;
        border-bottom-left-radius: 20px !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .nav-menu li a {
        display: block !important;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        border-bottom: 1px solid rgba(51, 51, 51, 0.1) !important;
        transition: all 0.3s ease !important;
        color: #333 !important;
        text-decoration: none !important;
    }
    
    .nav-menu li a:hover {
        background: rgba(255, 255, 255, 0.3) !important;
        padding-left: 2.5rem !important;
        color: #1a1a1a !important;
    }
}

.drawer-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.drawer-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}