* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.top-bar {
    background: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.help-section i {
    margin-right: 8px;
}

.social-links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
    border-radius: 50%;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #d4af37;
    margin-bottom: -5px;
}

.logo p {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.search-bar {
    display: flex;
    max-width: 400px;
    flex: 1;
    margin: 0 40px;
    position: relative;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-bar input:focus {
    border-color: #d4af37;
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #d4af37;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #b8941f;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-menu a:hover {
    color: #d4af37;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #d4af37;
}

.cart-icon {
    position: relative;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.cart-icon:hover {
    color: #d4af37;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    transition: transform 0.2s;
}

/* Glow Effect for Cards */
.glow-card {
    transition: all 0.3s ease;
    position: relative;
}

.glow-card:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 
                0 0 40px rgba(212, 175, 55, 0.2),
                0 0 60px rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: white;
    z-index: 10;
}

.slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.shop-now-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.shop-now-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 15;
}

.slider-nav button {
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.slider-nav button:hover {
    background: rgba(255,255,255,0.5);
}

/* Slider Container Styles */
.slider-container {
    position: relative;
    overflow: hidden;
}

.cards-slider,
.products-slider,
.bestselling-slider,
.brides-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-btn {
    background: rgba(212, 175, 55, 0.8);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(212, 175, 55, 1);
    transform: scale(1.1);
}

/* New Designs Section */
.new-designs {
    padding: 80px 0;
    background: #f8f9fa;
}

.new-designs h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.design-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-width: 300px;
    flex-shrink: 0;
}

.design-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.design-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-left: 10px;
}

.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.add-to-cart-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.add-to-cart-btn.adding {
    background: #27ae60;
    transform: scale(0.95);
}

.add-to-cart-btn.added {
    background: #27ae60;
}

.add-to-cart-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.add-to-cart-btn:active::after {
    width: 200%;
    height: 200%;
}

/* Categories Section */
.categories {
    padding: 80px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    min-width: 250px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.product-card p {
    font-size: 16px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 15px;
}

.quick-add {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 12px;
}

.quick-add:hover {
    background: #d4af37;
    color: white;
}

.quick-add.adding {
    background: #27ae60;
    border-color: #27ae60;
    color: white;
}

.sale-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
}

/* Trending Collection */
.trending-collection {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.trending-bg {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.trending-bg h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.trending-bg p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.explore-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.explore-btn:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Bestselling Products */
.bestselling {
    padding: 80px 0;
    background: #f8f9fa;
}

.bestselling h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.bestselling-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    min-width: 300px;
    flex-shrink: 0;
    cursor: pointer;
}

.bestselling-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.bestselling-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.rating {
    margin-bottom: 15px;
}

.rating i {
    color: #f39c12;
    margin: 0 2px;
}

.bestselling-item p {
    font-size: 18px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 20px;
}

/* Updates Section */
.updates {
    padding: 80px 0;
}

.updates h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.update-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.update-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.update-card h4 {
    padding: 20px 25px 10px;
    font-size: 20px;
    color: #2c3e50;
}

.update-card p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.6;
}

/* Brides Section */
.brides {
    padding: 80px 0;
    background: #f8f9fa;
}

.brides h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.bride-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    min-width: 300px;
    flex-shrink: 0;
    position: relative;
}

.bride-image:hover {
    transform: scale(1.05);
}

.bride-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.bride-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.bride-image:hover .bride-overlay {
    transform: translateY(0);
}

.bride-overlay h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.bride-overlay p {
    font-size: 14px;
    color: #ddd;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.cart-content {
    background-color: white;
    margin: 3% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow: hidden;
    animation: slideIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-header {
    background: #d4af37;
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.cart-header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.close-cart {
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-cart:hover {
    color: #f1c40f;
}

.cart-items {
    flex: 1;
    padding: 20px 30px;
    overflow-y: auto;
    max-height: 50vh;
}

.cart-items::-webkit-scrollbar {
    width: 8px;
}

.cart-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 16px;
}

.item-details p {
    margin: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 16px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.qty-btn {
    background: #d4af37;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: #b8941f;
    transform: scale(1.1);
}

.quantity {
    font-weight: bold;
    min-width: 30px;
    text-align: center;
    font-size: 16px;
}

.remove-item {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
}

.remove-item:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.cart-footer {
    background: #f8f9fa;
    padding: 20px 30px;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}

.cart-total {
    text-align: center;
    margin-bottom: 20px;
}

.cart-total h3 {
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
}

.cart-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.continue-shopping,
.checkout-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.continue-shopping {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.continue-shopping:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
}

.checkout-btn {
    background: #27ae60;
    color: white;
}

.checkout-btn:hover {
    background: #229954;
    transform: translateY(-2px);
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.empty-cart i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ddd;
}

.empty-cart h3 {
    margin-bottom: 10px;
    color: #666;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 10px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    color: #bdc3c7;
    font-size: 20px;
    margin-right: 15px;
    transition: all 0.3s;
    border-radius: 50%;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Button Animation States */
.btn-success {
    background: #27ae60 !important;
    color: white !important;
}

.btn-adding {
    position: relative;
    overflow: hidden;
}

.btn-adding::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: loading 1s ease-in-out;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 0.3s ease;
}

/* Image loading states */
img {
    transition: opacity 0.3s;
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .search-bar {
        margin: 0;
        max-width: 100%;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content {
        left: 20px;
        right: 20px;
    }
    
    .trending-bg h2 {
        font-size: 32px;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .cards-slider,
    .products-slider,
    .bestselling-slider,
    .brides-slider {
        gap: 15px;
    }
    
    .design-card,
    .product-card,
    .bestselling-item,
    .bride-image {
        min-width: 280px;
    }
    
    .cart-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .cart-buttons {
        flex-direction: column;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cart-item img {
        margin: 0;
    }
    
    .quantity-controls {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .design-card,
    .product-card,
    .bestselling-item,
    .bride-image {
        min-width: 250px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .cart-header {
        padding: 15px 20px;
    }
    
    .cart-items {
        padding: 15px 20px;
    }
    
    .cart-footer {
        padding: 15px 20px;
    }
    
    .social-links a {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .nav-menu.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}