/* Supportive Care & Supplies Section */
.supportive-care-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        #ffffff 0%, 
        rgba(250, 252, 255, 0.8) 100%
    );
    position: relative;
}

/* Support Grid Layout */
.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Support Category Cards */
.support-category {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.support-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--color-primary) 0%, 
        var(--color-secondary) 100%
    );
    opacity: 0.8;
}

.support-category.essential::before {
    background: linear-gradient(90deg, 
        #4facfe 0%, 
        #00f2fe 100%
    );
}

.support-category.mental-health::before {
    background: linear-gradient(90deg, 
        #fa709a 0%, 
        #fee140 100%
    );
}

.support-category.dermatology::before {
    background: linear-gradient(90deg, 
        #30cfd0 0%, 
        #330867 100%
    );
}

/* Category Icons */
.category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, 
        rgba(146, 110, 204, 0.1) 0%, 
        rgba(112, 109, 156, 0.1) 100%
    );
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-primary);
}

.support-category h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2rem;
}

/* Essential Supplies Grid */
.supplies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Supply Cards */
.supply-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(250, 250, 252, 1) 100%
    );
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.supply-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(146, 110, 204, 0.2);
}

.supply-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, 
        rgba(79, 172, 254, 0.05) 0%, 
        rgba(0, 242, 254, 0.05) 100%
    );
    border-color: rgba(79, 172, 254, 0.2);
}

/* Card Header */
.supply-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.supply-icon {
    width: 48px;
    height: 48px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.supply-icon svg {
    width: 24px;
    height: 24px;
    fill: #4facfe;
}

.card-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    flex: 1;
}

.duration-tag {
    padding: 0.375rem 0.75rem;
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Supply Contents */
.supply-contents {
    margin-bottom: 1.5rem;
}

.supply-contents h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.supply-contents ul {
    list-style: none;
}

.supply-contents li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
    color: #495057;
}

.supply-contents li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: 700;
}

/* Price Tags */
.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-tag .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.price-tag .per {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Buttons */
.btn-add-kit {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    border: none;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-kit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
}

/* Test Options */
.test-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.test-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(146, 110, 204, 0.05);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.test-option:hover {
    background: rgba(146, 110, 204, 0.1);
    transform: translateX(5px);
}

.test-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

.test-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Mental Health Grid */
.mental-health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.mental-card, .resource-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 250, 252, 1) 100%
    );
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.mental-card:hover, .resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.medication-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.med-name {
    padding: 0.25rem 0.625rem;
    background: rgba(250, 112, 154, 0.1);
    color: #e91e63;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Resource List */
.resource-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.resource-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list svg {
    width: 20px;
    height: 20px;
    fill: #fa709a;
    flex-shrink: 0;
}

.resource-list span {
    font-size: 0.875rem;
    color: #495057;
}

/* Dermatology Products */
.derm-products {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.derm-card.main {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.product-highlight {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #30cfd0, #330867);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0 16px 0 16px;
}

.product-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.strength-options {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.strength {
    padding: 0.375rem 0.75rem;
    background: rgba(48, 207, 208, 0.1);
    color: #00897b;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Bottom Information */
.support-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(146, 110, 204, 0.05) 0%, 
        rgba(112, 109, 156, 0.05) 100%
    );
    border-radius: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

.info-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.info-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

.info-link:hover {
    color: var(--color-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-category {
        padding: 2rem;
    }
    
    .supplies-grid {
        grid-template-columns: 1fr;
    }
    
    .supply-card.featured {
        grid-column: span 1;
    }
    
    .derm-products {
        grid-template-columns: 1fr;
    }
    
    .support-info {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    .supply-card.featured {
        grid-column: span 1;
    }
    
    .supplies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}