/**
 * Related Products Styles
 * Mobile-first CSS for RelatedProducts component
 * Integrates with ProductCardCarousel component
 */

/* ============================================
   Related Products Container
   ============================================ */
.related-products__card {
    /* Inherits from card-base */
}

.related-products__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.related-products__icon {
    color: var(--brand-color);
    font-size: 1.125rem;
}

.related-products__title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* ============================================
   Related Products Item Wrapper
   ============================================ */
.related-products__item {
    padding: 0;
    cursor: pointer;
    height: 100%;
}

.related-products__item .product-card-carousel {
    height: 100%;
}

/* ============================================
   Responsive - Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
    .related-products__title {
        font-size: 1.0625rem;
    }
}

/* ============================================
   Responsive - Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .related-products__title {
        font-size: 1.125rem;
    }
}
