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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 40px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 30px;
    font-size: 13px;
}

nav a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.6;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 80px 40px;
    text-align: center;
    background: #f8f8f8;
}

.hero-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-divider {
    width: 30px;
    height: 1px;
    background: #000;
    margin: 0 auto 40px;
}

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

.btn {
    padding: 12px 30px;
    font-size: 13px;
    text-decoration: none;
    color: #000;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background: #000;
    color: #fff;
}

/* Main Content */
main {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 80px;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
}

/* Collection Section */
.collection {
    margin-bottom: 100px;
}

.collection-header {
    margin-bottom: 50px;
}

.collection-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.collection-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    text-decoration: none;
    color: #000;
    transition: opacity 0.3s;
}

.product-card:hover {
    opacity: 0.7;
}

.product-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: #f0f0f0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999;
}

.product-vendor {
    font-size: 11px;
    color: #999;
    margin-bottom: 5px;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-price {
    font-size: 13px;
    color: #666;
}

/* Footer */
footer {
    border-top: 1px solid #e0e0e0;
    padding: 60px 40px 40px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        gap: 15px;
        font-size: 11px;
    }

    .hero {
        padding: 60px 20px;
    }

    main {
        padding: 40px 20px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }

    .collection-title {
        font-size: 22px;
    }
}
