body {
    margin: 0;
    background: #e9e6e1;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

.simple-header {
    padding-top: 40px;
    font-size: 14px;
    letter-spacing: 2px;
}

.hero-product img {
    width: 350px;
    height: 450px;
    object-fit: cover;
    margin: 20px 0;
}

.hero-description {
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
    font-size: 14px;
}

.collection-title {
    margin-top: 60px;
    letter-spacing: 3px;
    font-size: 14px;
    color: #8c6a5d;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    padding: 60px 10%;
}

.product img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.product h4 {
    margin: 20px 0 5px;
}

.divider {
    width: 60px;
    height: 1px;
    background: #aaa;
    margin: 10px auto 20px;
}

/* Footer */
.luxury-footer {
    background: linear-gradient(to right, #1c1c1c, #2a2a2a);
    color: #eee;
    padding: 80px 10% 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 25px;
    margin-top: 40px;
}

@media(max-width:900px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}