:root {
    --main-green: #82A284;
    --dark-green: rgb(240, 78, 151);
    --main-pink: #E4AEC5;
    --light-pink: #FFC4DD;

    --dark-mint: rgba(55, 126, 110, 0.97);
    --lime: #9fd563;
    --accent-pink: #d878c5;
    --accent-mint: #bfefe9;
    --accent-dark: #c54ea3;
    --accent-green: #71dd99;
    --text: #55716a;
    --gradient-pink: linear-gradient(135deg, var(--main-pink) 0%, var(--light-pink) 100%);
}

.categories-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.category-card {
    width: 180px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.category-card-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: var(--light-pink);
    position: relative;
}

.category-card:hover .category-card-circle {
    transform: translateY(-3px);
}

.category-card-circle img {
    width: 65%;
    height: 65%;
    object-fit: cover;
    margin-top: 25px;
}

.category-card p {
    text-align: center;
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    color: var(--lime);
    transition: color 0.3s ease;
}

.category-card:hover p {
    color: var(--main-pink);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 196, 221, 0.27);
    border-radius: 20px;
    padding: 18px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 2px solid transparent;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--light-pink);
}

.product-card h3 {
    color: var(--lime);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.product-card .product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.product-card .product-info p {
    color: var(--lime);
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

.product-card .product-info strong {
    color: var(--lime);
    font-weight: 600;
}

.product-card .view-details-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--main-green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-card .view-details-btn:hover {
    box-shadow: 0 4px 12px rgba(228, 174, 197, 0.6);
    background: var(--accent-green);
}

.section-title {
    color: var(--lime);
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: 40px 0 20px 0;
}

.load-more-container {
    text-align: center;
    margin: 30px 0;
}

.load-more-btn {
    padding: 12px 32px;
    background: var(--lime);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'KineksRound', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more-btn:hover {
    background: var(--main-pink);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        padding: 15px;
    }

    .product-card {
        padding: 16px;
    }

    .product-card h3 {
        font-size: 16px;
    }

    .categories-container {
        gap: 20px;
        padding: 20px 10px;
    }

    .category-card {
        width: 120px;
    }

    .category-card-circle {
        width: 120px;
        height: 120px;
    }

    .category-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .category-card {
        width: 100px;
    }

    .category-card-circle {
        width: 100px;
        height: 100px;
    }

    .category-card p {
        font-size: 13px;
    }
}