* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #faf6f1;
    color: #2d2a24;
}

/* soft, warm aesthetic */
.header {
    background: rgba(255, 253, 250, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.1rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #ece1d3;
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.7rem;
    font-weight: 320;
    letter-spacing: -0.02em;
    color: #4d3e30;
}

.logo span {
    background: #e5d5c0;
    padding: 0.2rem 0.9rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 450;
    color: #3b2f22;
    margin-left: 0.2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    font-weight: 400;
    color: #5c4f3f;
    font-size: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    border-bottom: 1px dotted transparent;
    transition: border-color 0.2s;
}

.nav-links a:hover {
    border-bottom: 1px dotted #b7a48b;
}

.icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.3rem;
    color: #5c4f3f;
}

/* hero */
.hero {
    max-width: 1280px;
    margin: 2.5rem auto 1.5rem;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
}

.hero-text {
    flex: 1 1 300px;
}

.hero-text h2 {
    font-size: 2.9rem;
    font-weight: 340;
    line-height: 1.1;
    color: #342b21;
    margin-bottom: 0.8rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: #6b5d4d;
    max-width: 480px;
    margin-bottom: 2rem;
}

.soft-button {
    background: #e2cfb5;
    border: none;
    padding: 0.9rem 2.3rem;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 500;
    color: #2e261e;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: background 0.2s;
    border: 1px solid #dacbb6;
}

.soft-button:hover {
    background: #d4bfa3;
}

.hero-image {
    flex: 1 1 300px;
    background: #e7dbcd;
    border-radius: 40px;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1618354691373-d851c5c3a990?q=80&w=2060&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&w=600&h=400&fit=crop');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
}

.hero-image::after {
    content: "✨ drape elegance";
    position: absolute;
    bottom: 18px;
    right: 22px;
    background: rgba(255, 250, 240, 0.7);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    color: #4d3b2b;
    border: 1px solid #fff2e2;
}

/* COLLECTION GRID */
.collection-grid {
    max-width: 1280px;
    margin: 1rem auto 2.5rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
}

/* product card */
.product-card {
    background: #ffffffd6;
    backdrop-filter: blur(2px);
    border-radius: 28px;
    padding: 1.2rem 1rem 1.5rem;
    box-shadow: 0 18px 28px -16px rgba(70, 50, 35, 0.2);
    transition: transform 0.2s ease;
    border: 1px solid #efe3d7;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    border-radius: 24px;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
    transition: all 0.2s;
}

/* banner */
.feature-banner {
    background: #f1e8de;
    max-width: 1280px;
    margin: 1.8rem auto;
    padding: 1.4rem 2rem;
    border-radius: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: #3b3228;
    font-size: 1.05rem;
    border: 1px solid #e0d2c1;
}

.badge {
    background: #fff9f0;
    padding: 0.4rem 1.4rem;
    border-radius: 60px;
    font-weight: 500;
    border: 1px solid #d8c6b1;
}

/* SVG ICONS SECTION - NEW */
.svg-section {
    max-width: 1280px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.svg-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.svg-item {
    text-align: center;
}

.svg-icon-img {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto;
}

.svg-label {
    margin-top: 0.5rem;
    color: #6b5d4d;
    font-size: 0.9rem;
}

/* footer */
.footer {
    background: #e5d9cd;
    padding: 2.2rem;
    text-align: center;
    color: #4d4032;
    font-size: 0.95rem;
    margin-top: 3rem;
    border-top: 1px solid #d4c3b2;
}

.footer-text {
    margin-top: 0.8rem;
    color: #7e6e5d;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* micro meta */
.micro-meta {
    opacity: 0.25;
    font-size: 0.6rem;
    margin-top: 0.5rem;
    pointer-events: none;
}

/* ===== responsive ===== */
@media (max-width: 900px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .collection-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-text h2 {
        font-size: 2.2rem;
    }
    .header-content {
        justify-content: center;
        text-align: center;
    }
    .nav-links {
        gap: 1.2rem;
    }
    .svg-container {
        gap: 1rem;
    }
}