/* Sexual Health Products Section Specific Styles */
.sexual-health-section {
    padding: 60px 0;
}

.sexual-health-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.sexual-health-section .section-header h2 {
    color: #2e7d32;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.sexual-health-section .underline {
    height: 3px;
    width: 80px;
    background-color: #2e7d32;
    margin: 0 auto 20px;
}

.sexual-health-products {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.sexual-health-item {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.sexual-health-item:hover {
    transform: translateY(-10px);
}

.sexual-health-image {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sexual-health-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sexual-health-item:hover .sexual-health-image img {
    transform: scale(1.05);
}

.sexual-health-details {
    padding: 20px 10px;
}

.sexual-health-details h3 {
    color: #2e7d32;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.sexual-health-details p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sexual-health-btn {
    display: inline-block;
    background-color: #2e7d32;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.sexual-health-btn:hover {
    background-color: #1b5e20;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sexual-health-products {
        gap: 20px;
    }

    .sexual-health-item {
        max-width: 100%;
    }
}

/* Sexual Health Products Section - Matching Immunity Section Style */
.product-item[data-category="sex"] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item[data-category="sex"]:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-item[data-category="sex"] .product-image {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.product-item[data-category="sex"] .product-image img {
    transition: transform 0.5s ease;
}

.product-item[data-category="sex"]:hover .product-image img {
    transform: scale(1.05);
}

.product-item[data-category="sex"] .product-details h3 {
    color: #2e7d32;
    transition: color 0.3s ease;
}

.product-item[data-category="sex"]:hover .product-details h3 {
    color: #1b5e20;
}