/* Products Carousel Section */
.products-section {
    padding: 80px 0;
    background-color: #f9fafb;
    /* Light gray background */
    overflow: hidden;
    /* Hide overflow for carousel */
}

.products-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.products-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* Swiper Container */
.swiper-container {
    width: 100%;
    padding-bottom: 50px;
    /* Space for pagination/scrollbar if needed */
    overflow: visible !important;
    /* Allow shadow to be seen */
}

.swiper-wrapper {
    transition-timing-function: linear;
}

.swiper-slide {
    width: 380px;
    /* Fixed width for cards */
    height: auto;
    transition: transform 0.3s ease;
}

/* Product Card Styling */
.product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
    border-color: #d1d5db;
}

.card-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for badge text color if gradient not supported */
    color: #8b5cf6;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-right: 16px;
    object-fit: contain;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.verified-badge {
    margin-left: 8px;
    color: #F97316;
    font-size: 1rem;
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 32px;
    flex-grow: 1;
}

.card-footer {
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-info-row {
    display: flex;
    justify-content: space-between;
    color: #6b7280;
}

.card-info-label {
    font-weight: 500;
    color: #9ca3af;
}

.compliance-tags {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.tag {
    background-color: #f3f4f6;
    color: #374151;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .products-section h2 {
        font-size: 2rem;
    }

    .swiper-slide {
        width: 300px;
    }
}