/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #1a1a1a;
    --secondary-gold: #d4af37;
    --accent-cream: #f8f6f0;
    --text-light: #ffffff;
    --text-dark: #2c2c2c;
    --charcoal: #2c2c2c;
    --gold-light: #f4e4a1;
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --shadow-light: rgba(212, 175, 55, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--accent-cream);
    overflow-x: hidden;
}

        /* Enhanced Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 1rem 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .navbar.scrolled {
            background: rgba(26, 26, 26, 0.98);
            box-shadow: 0 8px 32px var(--shadow-dark);
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .nav-container {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }

        .brand-container {
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .brand-main {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            background: var(--gold-gradient);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
            position: relative;
            letter-spacing: 2px;
            margin-bottom: 0.2rem;
            transition: all 0.4s ease;
        }

        .brand-main::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.8s ease;
        }

        .brand-container:hover .brand-main::before {
            left: 100%;
        }

        .brand-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: clamp(0.7rem, 1.5vw, 1rem);
            color: var(--accent-cream);
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 300;
            opacity: 0.9;
            position: relative;
            animation: fadeInUp 1s ease 0.5s both;
        }

        .brand-subtitle::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: var(--secondary-gold);
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .brand-container:hover .brand-subtitle::after {
            width: 100%;
        }

        /* Decorative Elements */
        .brand-container::before,
        .brand-container::after {
            content: '◆';
            position: absolute;
            color: var(--secondary-gold);
            font-size: 0.8rem;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: all 0.6s ease;
        }

        .brand-container::before {
            left: -40px;
            animation: slideInLeft 1s ease 1s both;
        }

        .brand-container::after {
            right: -40px;
            animation: slideInRight 1s ease 1s both;
        }

        .brand-container:hover::before {
            opacity: 1;
            left: -30px;
        }

        .brand-container:hover::after {
            opacity: 1;
            right: -30px;
        }

        /* Floating Particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--secondary-gold);
            border-radius: 50%;
            opacity: 0;
            animation: float 8s infinite ease-in-out;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 1s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
        .particle:nth-child(4) { left: 70%; animation-delay: 1.5s; }
        .particle:nth-child(5) { left: 80%; animation-delay: 3s; }
        .particle:nth-child(6) { left: 90%; animation-delay: 0.5s; }


/* Hero Section */
.products-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--charcoal) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: grain 20s linear infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0); }
    70% { transform: translate(0, 10%); }
    80% { transform: translate(-15%, 0); }
    90% { transform: translate(10%, 5%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--text-light), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(248, 246, 240, 0.8);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-search {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    background: rgba(248, 246, 240, 0.1);
    border-radius: 50px;
    padding: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.search-container input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 1.1rem;
    outline: none;
}

.search-container input::placeholder {
    color: rgba(248, 246, 240, 0.6);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-gold);
    border: none;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--gold-light);
    transform: translateY(-50%) scale(1.1);
}

/* Quick Stats */
.quick-stats {
    padding: 60px 0;
    background: var(--accent-cream);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-gold);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--text-dark);
    font-weight: 500;
}

/* Filter Section */
.filter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.filter-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-black);
    font-size: 2.5rem;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.8rem;
    border: 2px solid var(--secondary-gold);
    background: transparent;
    color: var(--secondary-gold);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: var(--secondary-gold);
    color: var(--primary-black);
}

.filters-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: end;
}

.filter-group {
    position: relative;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.filter-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    background: white;
    color: var(--text-dark);
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--secondary-gold);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-dark);
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-gold);
    border-radius: 4px;
    margin-right: 0.8rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--secondary-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    opacity: 1;
}

.clear-filters {
    padding: 1rem 2rem;
    background: var(--primary-black);
    color: var(--text-light);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: end;
}

.clear-filters:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
}

/* Collections Section */
.collections-section {
    padding: 80px 0;
    display: none;
    background: var(--primary-black);
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.collections-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.collection-card {
    background: rgba(248, 246, 240, 0.1);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.collection-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
}

.collection-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-content {
    padding: 2rem;
}

.collection-content h3 {
    color: var(--secondary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.collection-content p {
    color: rgba(248, 246, 240, 0.8);
    margin-bottom: 1rem;
}

.collection-count {
    color: var(--secondary-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--accent-cream);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.products-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-black);
    font-size: 2.5rem;
}

.results-count {
    color: var(--text-dark);
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.products-grid.list-view .product-card {
    display: flex;
    max-width: none;
}

.products-grid.list-view .product-image {
    width: 200px;
    flex-shrink: 0;
}

.products-grid.list-view .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    margin: 15px;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.new {
    background: var(--secondary-gold);
    color: var(--primary-black);
}

.badge.sale {
    background: #dc3545;
    color: white;
}

.badge.featured {
    background: var(--primary-black);
    color: var(--text-light);
}

.product-info {
    padding: 1.5rem;
}

.product-brand {
    color: var(--secondary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    color: var(--primary-black);
    font-size: 1.3rem;
    margin: 0.5rem 0;
    font-weight: 600;
}

.product-description {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.note-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary-gold);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-text {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-black);
}

.original-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.discount {
    background: #dc3545;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-whatsapp {
    flex: 1;
    padding: 0.8rem;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.btn-details {
    padding: 0.8rem;
    background: transparent;
    color: var(--secondary-gold);
    border: 2px solid var(--secondary-gold);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: var(--secondary-gold);
    color: var(--primary-black);
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 4rem;
    grid-column: 1 / -1;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid var(--secondary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    padding: 1rem 2rem;
    background: var(--secondary-gold);
    color: var(--primary-black);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.btn-load-more:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 2rem;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.whatsapp-text {
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--secondary-gold);
    color: var(--primary-black);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
   
    .filter-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
   
    .filters-container {
        grid-template-columns: 1fr;
    }
   
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
   
    .products-grid.list-view .product-card {
        flex-direction: column;
    }
   
    .products-grid.list-view .product-image {
        width: 100%;
        height: 200px;
    }
   
    .collections-slider {
        grid-template-columns: 1fr;
    }
   
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
   
    .whatsapp-text {
        display: none;
    }
   
    .modal-content {
        margin: 1rem;
        max-height: 95vh;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
   
    .products-grid {
        grid-template-columns: 1fr;
    }
   
    .stats-grid {
        grid-template-columns: 1fr;
    }
   
    .search-container {
        margin: 0 1rem;
    }
}



/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--accent-cream);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--secondary-gold);
    margin-bottom: 0.5rem;
}

.footer-logo span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.footer-section p {
    margin: 1rem 0;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section h4 {
    color: var(--secondary-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--accent-cream);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-gold);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--secondary-gold);
    color: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(248, 246, 240, 0.1);
    opacity: 0.6;
}


        /* Animations */
        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 0.9;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px) translateY(-50%);
            }
            to {
                opacity: 0.7;
                transform: translateX(0) translateY(-50%);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(20px) translateY(-50%);
            }
            to {
                opacity: 0.7;
                transform: translateX(0) translateY(-50%);
            }
        }

        @keyframes float {
            0%, 100% {
                opacity: 0;
                transform: translateY(100px) rotate(0deg);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                padding: 0 1rem;
            }

            .brand-container::before,
            .brand-container::after {
                display: none;
            }

            .brand-main {
                font-size: 2.5rem;
            }

            .brand-subtitle {
                font-size: 0.8rem;
                letter-spacing: 2px;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0.8rem 0;
            }

            .brand-main {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .brand-subtitle {
                font-size: 0.7rem;
                letter-spacing: 1px;
            }
        }