:root {
    --black: #0A0A0A;
    --dark-gray: #1E1E1E;
    --darker-gray: #161616;
    --light: #F5F5F5;
    --gold: #D4AF37;
    --bronze: #8B7355;
    --platinum: #E5E4E2;
    --accent-gold: #F7E7A3;
    --surface: rgba(245, 245, 245, 0.02);
    --border: rgba(245, 245, 245, 0.08);
    --hover-border: rgba(212, 175, 55, 0.3);
    }

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

    html {
    scroll-behavior: smooth;
    }

    body {
    background: var(--black);
    color: var(--light);
    font-family: 'Nunito Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    }

    /* Navigation */
    nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    }

    .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    }

    .logo img {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
    }

    .logo:hover img {
    transform: scale(1.05);
    }

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

    .nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    }

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

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

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

    /* Hero Section */
    .hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    }

    #three-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    }

    .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 2rem;
    }

    .hero h1 {
    font-family: 'Spectral', serif;
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 300;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--platinum) 0%, var(--gold) 40%, var(--bronze) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: fadeInUp 1.5s ease-out 0.5s both;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    }

    .hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: var(--platinum);
    opacity: 0.9;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeInUp 1.5s ease-out 0.8s both;
    margin-bottom: 3rem;
    }

    /* Main Content */
    .main-content {
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, var(--black) 0%, var(--darker-gray) 100%);
    }

    .section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    }

    .section-title {
    font-family: 'Spectral', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-gold) 50%, var(--bronze) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -0.01em;
    }

    .section-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--light);
    opacity: 0.85;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    }

    /* Collections Section */
    .collections-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    }

    .diamond {
    color: var(--gold);
    font-size: 1.8rem;
    animation: pulse 2s ease-in-out infinite;
    }

    .collections-title {
    font-family: 'Spectral', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--platinum);
    letter-spacing: 0.02em;
    }

    .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    }

    .product-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    position: relative;
    }

    .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    }

    .product-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px var(--hover-border),
        0 0 40px rgba(212, 175, 55, 0.15);
    border-color: var(--hover-border);
    }

    .product-card:hover::before {
    opacity: 1;
    }

    .product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--dark-gray) 50%, var(--bronze) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    }

    .product-image img {
    width: auto;
    height: 80%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
    filter: brightness(1.1) contrast(1.1);
    }

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

    .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(22, 22, 22, 0.8) 100%);
    }

    .product-info {
    padding: 1.8rem;
    }

    .product-title {
    font-family: 'Spectral', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--platinum);
    letter-spacing: 0.01em;
    }

    .product-description {
    font-size: 0.95rem;
    color: var(--light);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    }

    .product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    }

    .product-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
    }

    .product-link:hover {
    transform: translateX(6px);
    color: var(--accent-gold);
    }

    .product-link:hover::after {
    width: calc(100% - 2rem);
    }

    .coming-note {
    text-align: center;
    color: var(--light);
    opacity: 0.7;
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 3rem;
    font-family: 'Lora', serif;
    }

    /* Footer */
    footer {
    background: var(--darker-gray);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border);
    }

    .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
    }

    .footer-brand {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 12px;
    }

    .footer-tagline {
    font-size: 1rem;
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 400px;
    line-height: 1.6;
    }

    .social-links {
    display: flex;
    gap: 1rem;
    }

    .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--surface);
    backdrop-filter: blur(10px);
    }

    .social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    }

    .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--light);
    opacity: 0.6;
    font-size: 0.9rem;
    }

    /* Animations */
    @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    @keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    }

    /* Scroll Animations */
    .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    }

    .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 6rem 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .collections-header {
        flex-direction: column;
        gap: 1rem;
    }

    .diamond {
        font-size: 1.5rem;
    }
    }

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

    .products-grid {
        max-width: 300px;
    }

    .product-info {
        padding: 1.5rem;
    }
    }