
/* DIABETES SECTION STYLES */
.diabetes-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

/* Diabetes Navigation */
.diabetes-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.nav-pill {
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #6c757d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-pill:hover {
    background: white;
    border-color: #6c63ff;
    transform: translateY(-2px);
}

.nav-pill.active {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

/* Diabetes Content Areas */
.diabetes-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.diabetes-content.active {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

/* Insulin Grid */
.insulin-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.insulin-category {
    margin-bottom: 3rem;
}

.insulin-category .category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.header-icon {
    flex-shrink: 0;
}

.insulin-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.onset-time {
    margin-left: auto;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

/* Insulin Products */
.insulin-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.insulin-products.horizontal {
    grid-template-columns: 1fr;
}

.insulin-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.insulin-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #6c63ff;
}

.insulin-card.featured {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 142, 83, 0.05));
}

.insulin-card.popular {
    border-color: #28a745;
}

.featured-badge,
.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.popular-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
}

/* Insulin Header */
.insulin-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.insulin-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 12px;
}

.insulin-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.25rem;
}

.manufacturer {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Insulin Details */
.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.875rem;
}

.detail-row .label {
    color: #6c757d;
    font-weight: 500;
}

.detail-row .value {
    color: #495057;
    text-align: right;
}

.feature-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.feature {
    padding: 0.25rem 0.75rem;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Pricing */
.pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    padding-top: 1rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6c63ff;
}

.insurance-tag,
.savings-badge {
    padding: 0.25rem 0.75rem;
    background: #d4edda;
    color: #155724;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.savings-badge {
    background: #fff3cd;
    color: #856404;
}

/* Add to Plan Button */
.btn-add-to-plan {
    width: 100%;
    padding: 0.75rem;
    background: white;
    color: #6c63ff;
    border: 2px solid #6c63ff;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-plan:hover {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Combination Options */
.combo-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.combo-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.combo-card:hover {
    border-color: #6c63ff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.combo-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.combo-card p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* GLP-1 Showcase */
.glp1-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.glp1-category {
    margin-bottom: 3rem;
}

.glp1-category .category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.glp1-category .category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    border-radius: 2px;
}

/* GLP-1 Grid */
.glp1-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.glp1-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* GLP-1 Cards */
.glp1-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.glp1-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.glp1-card.spotlight {
    transform: scale(1.02);
}

.spotlight-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spotlight-badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffb300);
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

/* Card Visual */
.card-visual {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-visual img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.glp1-card:hover .card-visual img {
    transform: scale(1.1) rotate(5deg);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glp1-card:hover .visual-overlay {
    opacity: 1;
}

.benefits-preview {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.benefits-preview span {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Card Details */
.card-details {
    padding: 1.5rem;
}

.card-details h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.indication {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Dosing Info */
.dosing-info {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dose-badge {
    padding: 0.5rem 0.75rem;
    background: #f0f0f0;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #495057;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dose-badge:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.dose-badge.active {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.monthly-cost {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #6c63ff;
}

.coverage {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.btn-consult,
.btn-learn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-learn {
    background: white;
    color: #6c63ff;
    border: 2px solid #6c63ff;
}

.btn-consult:hover,
.btn-learn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

/* Compact GLP-1 Cards */
.glp1-card-compact {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.glp1-card-compact:hover {
    border-color: #6c63ff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.glp1-card-compact h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.glp1-card-compact p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.glp1-card-compact .price {
    color: #6c63ff;
    font-weight: 600;
}

.oral-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: #28a745;
    color: white;
    border-radius: 15px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Technology Grid */
.tech-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-category {
    margin-bottom: 3rem;
}

.tech-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.tech-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
}

.tech-badge {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Tech Products */
.tech-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tech-card.premium {
    border: 2px solid #6c63ff;
}

.tech-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tech-image img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.tech-features {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-card:hover .tech-features {
    opacity: 1;
}

.tech-features span {
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tech-info {
    padding: 1.5rem;
}

.tech-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.tech-info p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.compatibility {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.compatibility span {
    padding: 0.25rem 0.75rem;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tech-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-prescribe {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prescribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

/* Smart Devices */
.smart-devices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.device-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.device-card:hover {
    border-color: #6c63ff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.device-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.device-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.device-card p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.compatibility-note {
    font-size: 0.75rem;
    color: #28a745;
    font-weight: 500;
}

/* Supplies Grid */
.supplies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.supply-category {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.supply-category:hover {
    border-color: #6c63ff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.supply-category h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.supply-list {
    list-style: none;
}

.supply-list li {
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.875rem;
}

.supplies-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(139, 133, 255, 0.05));
    border-radius: 16px;
}

.supplies-cta p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* FERTILITY SECTION STYLES */
.fertility-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff, #fef8f8);
    position: relative;
    overflow: hidden;
}

.fertility-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.1), transparent);
    border-radius: 50%;
}

/* Journey Selector */
.journey-selector {
    text-align: center;
    margin-bottom: 3rem;
}

.journey-selector h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.journey-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.journey-option {
    padding: 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
}

.journey-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journey-option.active {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 142, 83, 0.05));
}

.option-icon {
    margin-bottom: 0.5rem;
}

.journey-option span {
    display: block;
    font-weight: 600;
    color: var(--color-text);
}

/* Fertility Content */
.fertility-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.fertility-content.active {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

/* Treatment Timeline */
.treatment-timeline {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.treatment-timeline h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2rem;
    text-align: center;
}

.timeline-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-marker {
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    color: #6c757d;
    transition: all 0.3s ease;
}

.timeline-step.active .step-marker {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-color: transparent;
    color: white;
    transform: scale(1.1);
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6c757d;
    font-size: 0.875rem;
}

.timeline-connector {
    position: absolute;
    top: 50px;
    left: 25%;
    right: 25%;
    height: 3px;
    background: #e0e0e0;
    z-index: 1;
}

/* Medication Protocols */
.medication-protocols {
    max-width: 1200px;
    margin: 0 auto;
}

.protocol-section {
    margin-bottom: 3rem;
}

.protocol-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2rem;
    text-align: center;
}

.medication-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Fertility Med Cards */
.fertility-med-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.fertility-med-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.fertility-med-card.recommended {
    border: 2px solid #28a745;
}

.recommendation-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.med-visual {
    position: relative;
    height: 150px;
    background: linear-gradient(135deg, #fff5f5, #ffe0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.med-visual img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.success-rate {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #28a745;
}

.med-content {
    padding: 1.5rem;
}

.med-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.med-type {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.protocol-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.info-row .label {
    color: #6c757d;
    font-weight: 500;
}

.info-row .value {
    color: #495057;
    text-align: right;
}

.med-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-protocol {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-protocol:hover {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    border-color: transparent;
}

/* Injectable Showcase */
.injectable-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.injectable-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.injectable-card:hover {
    border-color: #ff6b6b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.injectable-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
}

.product-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.header-info h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.header-info p {
    color: #6c757d;
    font-size: 0.875rem;
}

.injectable-card .card-body {
    padding: 1.5rem;
}

.strength-options {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.strength {
    padding: 0.25rem 0.75rem;
    background: #e0e0e0;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #495057;
}

.usage-info p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.price-range {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff6b6b;
}

/* Trigger Options */
.trigger-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.trigger-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 1.5rem;
}

.trigger-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.trigger-products {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.product-option .name {
    font-weight: 600;
    color: #495057;
}

.product-option .dose {
    color: #6c757d;
    font-size: 0.875rem;
}

.product-option .price {
    font-weight: 600;
    color: #ff6b6b;
}

/* IVF Package Builder */
.ivf-package-builder {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.ivf-package-builder h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2rem;
    text-align: center;
}

.package-steps {
    margin-bottom: 2rem;
}

.package-step {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.duration {
    margin-left: auto;
    padding: 0.25rem 0.75rem;
    background: white;
    border-radius: 15px;
    font-size: 0.75rem;
    color: #6c757d;
}

.medication-selector h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.med-option {
    display: block;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.med-option input {
    display: none;
}

.option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.med-option:hover .option-content {
    border-color: #ff6b6b;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.med-option input:checked + .option-content {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 142, 83, 0.05));
}

.med-name {
    font-weight: 600;
    color: var(--color-text);
}

/* Package Summary */
.package-summary {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 142, 83, 0.05));
    border-radius: 16px;
    padding: 2rem;
}

.package-summary h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid #e0e0e0;
    margin-top: 1rem;
}

.total-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b6b;
}

.summary-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.summary-actions button {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save-package {
    background: white;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.btn-consult {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
}

.btn-save-package:hover,
.btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.disclaimer {
    text-align: center;
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Male Fertility Styles */
.male-fertility-overview {
    max-width: 1000px;
    margin: 0 auto;
}

.overview-header {
    text-align: center;
    margin-bottom: 3rem;
}

.overview-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.overview-header p {
    color: #6c757d;
}

.treatment-pathways {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.pathway-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pathway-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pathway-header {
    margin-bottom: 1.5rem;
}

.pathway-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.indication {
    color: #6c757d;
    font-size: 0.875rem;
}

.med-combo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.primary-med,
.secondary-med {
    flex: 1;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.primary-med img,
.secondary-med img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.med-details h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.med-details p {
    color: #6c757d;
    font-size: 0.875rem;
}

.purpose {
    display: block;
    color: #28a745;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c757d;
}

.pathway-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.pathway-price span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6c63ff;
}

.btn-select-pathway {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-pathway:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.protocol-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stack-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stack-item.optional {
    opacity: 0.7;
    border: 1px dashed #e0e0e0;
}

.stack-item img {
    width: 30px;
    height: 30px;
}

.stack-item span {
    color: #495057;
    font-size: 0.875rem;
}

/* Analysis Integration */
.analysis-integration {
    margin-top: 3rem;
}

.analysis-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(139, 133, 255, 0.05));
    border-radius: 20px;
}

.card-icon {
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.card-content p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.card-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.card-content ul li {
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.875rem;
    padding-left: 1.5rem;
    position: relative;
}

.card-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6c63ff;
    font-weight: 700;
}

.btn-order-test {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #6c63ff;
    border: 2px solid #6c63ff;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-order-test:hover {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border-color: transparent;
}

/* Preservation Options */
.preservation-options {
    text-align: center;
}

.preservation-options h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.preservation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.preservation-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.preservation-card:hover {
    border-color: #ffc107;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.preservation-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.preservation-card p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.protocol-summary {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.protocol-summary span {
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.875rem;
    color: #495057;
}

.btn-learn {
    width: 100%;
    padding: 0.75rem;
    background: white;
    color: #ffc107;
    border: 2px solid #ffc107;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background: #ffc107;
    color: white;
}

/* Fertility CTA */
.fertility-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 142, 83, 0.05));
    border-radius: 24px;
}

.fertility-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.fertility-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.fertility-cta p {
    color: #6c757d;
    margin-bottom: 2rem;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
}

.cta-features .icon {
    font-size: 2rem;
}

.cta-features span:last-child {
    color: #495057;
    font-size: 0.875rem;
    text-align: center;
}

.btn-primary-large {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Diabetes & Fertility */
@media (max-width: 1200px) {
    .glp1-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .treatment-pathways {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .diabetes-nav {
        gap: 0.75rem;
    }
    
    .nav-pill {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .insulin-products,
    .glp1-grid,
    .tech-products,
    .medication-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-track {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .journey-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .med-combo {
        flex-direction: column;
    }
    
    .plus {
        transform: rotate(90deg);
    }
    
    .analysis-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .insulin-category .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .onset-time {
        margin-left: 0;
    }
    
    .glp1-card.spotlight {
        transform: scale(1);
    }
    
    .journey-options {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
    
    .btn-primary-large {
        width: 100%;
        padding: 1rem 2rem;
    }
}