:root {
    --primary-color: #ff87cf;
    --primary-light: #ffb1df;
    --primary-dark: #cc6ca6;
    --accent-color: #830059;
    --text-color: #4a4a4a;
    --light-bg: #fff5f9;
    --white: #ffffff;
}

.group {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

h2 {
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: none;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.group-link-top {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: none;
    letter-spacing: normal;
}

.group-link-top:hover {
    color: var(--primary-color);
}

.products li {
    margin-bottom: 2rem;
}

.container-product {
    color: var(--text-color);
    font-weight: 500;
    text-align: center;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 135, 207, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.container-product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 135, 207, 0.2);
    border-color: var(--primary-light);
}

.product-img {
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.container-product:hover .product-img {
    transform: scale(1.1);
}

.product-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}
