/**
 * Service Details Component
 * Displays delivery time, membership notice, and service features
 * Uses ERA branding colors and typography
 */

/* Delivery Timeframe */
.product-info-delivery {
    padding: 16px 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--era-light-blue);
    font-family: var(--font-secondary);
}

.product-info-delivery strong {
    color: var(--era-navy);
    font-weight: 600;
    font-size: 1rem;
}

/* Membership Notice */
.service-membership-notice {
    background: linear-gradient(135deg, var(--era-red) 0%, var(--era-dark-red) 100%);
    color: #ffffff;
    padding: 20px 24px;
    border-radius: 8px;
    margin: 24px 0;
    box-shadow: 0 4px 12px rgba(228, 0, 42, 0.15);
}

.service-membership-notice strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.service-membership-notice p {
    margin-bottom: 12px;
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.service-membership-notice .btn-learn-more {
    display: inline-block;
    background: #ffffff;
    color: var(--era-red);
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.service-membership-notice .btn-learn-more:hover {
    background: var(--era-navy);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Service Features */
.product-info-features {
    margin-top: 32px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--era-red);
}

.product-info-features h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--era-navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--era-light-blue);
}

.product-info-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-info-features ul li {
    padding: 12px 0;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.product-info-features ul li i {
    color: var(--era-red);
    margin-right: 12px;
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.product-info-features ul li:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
}

/* Responsive */
@media (max-width: 768px) {
    .product-info-features {
        padding: 16px;
    }

    .product-info-features h3 {
        font-size: 1.25rem;
    }

    .service-membership-notice {
        padding: 16px 20px;
    }

    .service-membership-notice strong {
        font-size: 1.1rem;
    }
}
