:root {
    --primary-color: #f7698a;
    --secondary-color: #ffd6e0;
    --dark-color: #333;
    --light-color: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 100%;
    margin: 0%;
    padding-bottom: 20px;
}

.main-content {
    padding-bottom: 30px;
}
.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 30px 0;
    text-align: center;
    position: relative;
}
.section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
}

.swiper-pagination-bullet {
    background: #f7698a !important; /* Tu color rosa */
    opacity: 0.4;
}
.swiper-pagination-bullet-active {
    background: #f7698a !important;
    opacity: 1;
}

.product-card {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.384);
    transition: transform 0.3s;
    margin: 10px;
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.product-title {
    padding: 15px;
    font-size: 1.2rem;
    text-align: center;
    color: var(--dark-color);
}
.product-description {
    background: var(--secondary-color);
    padding: 15px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(.4,0,.2,1), opacity 0.7s cubic-bezier(.4,0,.2,1);
    display: block; /* Siempre block para animar altura */
}
.product-description.active {
    max-height: 300px; /* Ajusta según el contenido esperado */
    opacity: 1;
}
.request-button {
    display: block;
    margin: 15px auto 0;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}
.request-button:hover {
    background: #ff6b8e;
}

.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 10px 0;
    text-align: center;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.social-icon:hover {
    background: #ff6b8e;
}
.social-icon a {
    color: var(--light-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .product-image img { 
        height: 280px;
    }
    .footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding-top: 5px;
    padding-bottom: 0;
    text-align: center;
    font-size: 10px;
    color: rgb(175, 175, 175);
    }
    
}

