/* ===== MAIN IMAGE ===== */
.main {
    width: min(92%, 1500px);
    margin: 0 auto;
}

.main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

/* ===== INTRO ===== */
.main-text {
    width: min(90%, 900px);
    margin: 40px auto;
    padding: 45px;
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.main-text h1 {
    font-size: 42px;
    color: #845b7b;
    margin-bottom: 20px;
}

.main-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    padding: 14px 30px;
    background: #dcb6d6;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: .3s;
}

.button:hover {
    background: #c79ac0;
}

/* ===== NEW ARRIVALS ===== */
.new-arrivals {
    width: min(90%, 1100px);
    margin: 70px auto;
    text-align: center;
}

.new-arrivals h2 {
    color: #845b7b;
    font-size: 32px;
    margin-bottom: 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-items: center;
}

.product {
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    width: 100%;
    transition: .3s;
    display: flex;
    flex-direction: column;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 12px;
}

.product h3 {
    color: #845b7b;
    margin-bottom: 8px;
    font-size: 16px;
}

.product .price {
    font-size: 20px;
    font-weight: bold;
    color: #b86ca3;
    margin-bottom: 12px;
}

.product-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: .3s;
    flex: 1;
}

.btn.view {
    background: #f6d6c9;
    color: #6b4b45;
}

.btn.view:hover {
    background: #eec1af;
}

.btn.cart {
    background: #dcb6d6;
    color: white;
}

.btn.cart:hover {
    background: #c79ac0;
}

.no-products {
    color: #999;
    grid-column: 1 / -1;
    padding: 40px 0;
}

/* ===== TABLET ===== */
@media (max-width: 900px) {
    .main img {
        height: 380px;
    }

    .main-text {
        padding: 30px;
    }

    .main-text h1 {
        font-size: 34px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .main {
        width: calc(100% - 24px);
        margin: 0 12px;
    }

    .main img {
        height: 230px;
    }

    .main-text {
        width: calc(100% - 24px);
        margin: 20px 12px;
        padding: 25px;
    }

    .main-text h1 {
        font-size: 28px;
    }

    .main-text p {
        font-size: 16px;
    }

    .button {
        display: block;
    }

    .welcome {
        width: calc(100% - 24px);
        margin: 40px 12px;
    }
    
    .new-arrivals {
        width: calc(100% - 24px);
        margin: 40px 12px;
    }
    
    .new-arrivals h2 {
        font-size: 26px;
    }
    
    .products-grid {
        gap: 15px;
    }
    
    .product img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .product {
        padding: 12px;
    }
    
    .product h3 {
        font-size: 14px;
    }
    
    .product .price {
        font-size: 16px;
    }
    
    .btn {
        font-size: 11px;
        padding: 6px 8px;
    }
}