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

    :root {
        --primary-dark: #1a1a1a;
        --soft-white: #f5f5f5;
        --accent-gold: #c9a961;
        --medium-gray: #6b6b6b;
        --border-light: #e0e0e0;
    }

    body {
        font-family: 'Lato', sans-serif;
        background: #fafafa;
        color: var(--primary-dark);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Navigation */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1.5rem 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        animation: slideDown 0.6s ease-out;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 60px;
        width: auto;
    }

    .nav-links {
        display: flex;
        gap: 2.5rem;
        list-style: none;
    }

    .nav-links a {
        color: var(--medium-gray);
        text-decoration: none;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--accent-gold);
        transition: width 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--primary-dark);
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    /* Contact Overlay */
    .contact-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
        z-index: 2500;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        backdrop-filter: blur(5px);
        animation: fadeIn 0.3s ease;
    }

    .contact-overlay.active {
        display: flex;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .contact-content {
        background: white;
        max-width: 550px;
        width: 100%;
        padding: 3.5rem 3rem;
        position: relative;
        animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .close-contact {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: var(--medium-gray);
        transition: all 0.3s ease;
        z-index: 10;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .close-contact:hover {
        color: var(--primary-dark);
        background: rgba(0, 0, 0, 0.05);
    }

    .contact-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.5rem;
        font-weight: 300;
        color: var(--primary-dark);
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .contact-divider {
        width: 60px;
        height: 2px;
        background: var(--accent-gold);
        margin: 0 auto 3rem;
    }

    .contact-info-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info-item {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem;
        background: #fafafa;
        border-left: 3px solid var(--accent-gold);
        transition: all 0.3s ease;
    }

    .contact-info-item:hover {
        background: #f5f5f5;
        transform: translateX(5px);
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 50%;
        color: var(--accent-gold);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .contact-details h3 {
        font-family: 'Lato', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--medium-gray);
        margin-bottom: 0.5rem;
    }

    .contact-details a {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.4rem;
        color: var(--primary-dark);
        text-decoration: none;
        transition: color 0.3s ease;
        display: block;
    }

    .contact-details a:hover {
        color: var(--accent-gold);
    }

    /* Hero Section */
    .hero {
        margin-top: 80px;
        padding: 4rem 5%;
        text-align: center;
        background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    }

    .hero-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 4rem;
        font-weight: 300;
        color: var(--primary-dark);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        color: var(--medium-gray);
        letter-spacing: 1px;
    }

    /* Products Section */
    .products-section {
        padding: 4rem 5%;
        max-width: 1600px;
        margin: 0 auto;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2.5rem;
    }

    .product-card {
        background: white;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }

    .product-image-container {
        width: 100%;
        height: 420px;
        overflow: hidden;
        background: #f5f5f5;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-placeholder {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.5rem;
        color: var(--medium-gray);
        opacity: 0.2;
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .product-card:hover .product-image {
        transform: scale(1.08);
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-name {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--primary-dark);
        margin-bottom: 0.5rem;
    }

    .product-description {
        font-size: 0.9rem;
        color: var(--medium-gray);
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .product-price {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--accent-gold);
    }

    /* Modal */
    .modal {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
        z-index: 2000;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        backdrop-filter: blur(5px);
        animation: fadeIn 0.3s ease;
    }

    .modal.active {
        display: flex;
    }

    .modal-content {
        background: white;
        max-width: 1000px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 3rem;
        animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .close-modal {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: var(--medium-gray);
        transition: color 0.3s ease;
        z-index: 10;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close-modal:hover {
        color: var(--primary-dark);
    }

    .modal-image-container {
        width: 100%;
        height: 600px;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .modal-details {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .modal-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.5rem;
        font-weight: 600;
        color: var(--primary-dark);
        margin-bottom: 1rem;
    }

    .modal-price {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--accent-gold);
        margin-bottom: 2rem;
    }

    .modal-description {
        font-size: 1.05rem;
        color: var(--medium-gray);
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .modal-info {
        border-top: 1px solid var(--border-light);
        padding-top: 2rem;
    }

    .info-item {
        display: flex;
        justify-content: space-between;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .info-label {
        font-weight: 600;
        color: var(--primary-dark);
    }

    .info-value {
        color: var(--medium-gray);
    }

    /* Footer */
    footer {
        background: var(--primary-dark);
        color: var(--soft-white);
        padding: 3rem 5%;
        text-align: center;
        margin-top: 5rem;
    }

    footer p {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .contact-content {
            padding: 2.5rem 2rem;
        }

        .contact-title {
            font-size: 2rem;
        }

        .contact-info-item {
            padding: 1.2rem;
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            min-width: 45px;
        }

        .contact-details a {
            font-size: 1.2rem;
        }

        .modal-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 2rem;
        }

        .modal-image-container {
            height: 400px;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .nav-links {
            gap: 1.5rem;
            font-size: 0.85rem;
        }

        .logo img {
            height: 45px;
        }
    }

    @media (max-width: 480px) {
        .contact-overlay {
            padding: 1rem;
        }

        .contact-content {
            padding: 2rem 1.5rem;
        }

        .contact-title {
            font-size: 1.8rem;
        }

        .contact-info-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
        }
    }