.item-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.item-page {
    background-color: #fdf8ec;
    font-family: 'Inter', sans-serif;
    padding: 4rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.item-name {
    font-size: 2.5rem;
    color: #e55a1c;
    margin-bottom: 0.2rem;
}

.item-tagline {
    color: #2d814d;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.item-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.item-image {
    max-width: 300px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.item-info {
    max-width: 500px;
    margin: 0 auto;
}

.item-description {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
}

.item-price {
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 1.5rem;
    font-weight: bold;
}


.whatsapp-btn {
    background-color: #f26722;
    color: #fff;
    font-weight: 600;
    padding: 0.8rem 1.4rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 14px;
}


.whatsapp-btn img {
    height: 32px;
    width: 32px;
}