body {
    background-color: #f8f9fa;
}
.hero {
    background: linear-gradient(
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.1)
    ),
    url('images/bedroom.png') center/cover no-repeat;
    padding: 200px 0px;
    text-align: center;
}
.hero h1 {
    font-family: 'Comic Neue', cursive;
    color: #42381f;
    letter-spacing: 1px;
}
@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
}
.btn-outline-dark:hover {
    color: #0d6efd;
    border-color: #0d6efd;
}
.product-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4; /* perfect for 18x24 */
    object-fit: cover;
}
.footer {
    background: #212529;
    color: white;
    padding: 20px 0;
}
.footer a {
    display: inline-block;
    margin: 5px 8px;
}
.footer a:hover {
    color: #e0ffff;
    text-decoration: underline;
    opacity: 0.8;
}