.elementor-kit-8{--e-global-color-primary:#1B3777;--e-global-color-secondary:#212121;--e-global-color-text:#7A7A7A;--e-global-color-accent:#F08223;--e-global-color-d806179:#3E5BA6;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-d82900e-font-family:"Varela Round";--e-global-typography-d82900e-font-size:23px;--e-global-typography-d82900e-font-weight:500;--e-global-typography-d82900e-text-transform:capitalize;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* A-Labs Switzerland Medical Analysis Selector Styles */

/* Use A-Labs orange branding */
:root {
    --alabs-orange: #f47f00;
    --alabs-orange-light: #ff8f1a;
    --alabs-orange-dark: #d96d00;
    --text-dark: #2c2c2c;
    --text-gray: #666;
    --border-gray: #ddd;
    --background-light: #f9f9f9;
    --white: #ffffff;
    --success-green: #28a745;
    --danger-red: #dc3545;
}

.analysis-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: var(--text-dark);
}

/* Controls Section */
.controls-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border: 2px solid var(--alabs-orange);
    border-radius: 8px;
}

.search-container {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: var(--alabs-orange);
}

.search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.category-select,
.sort-select {
    padding: 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    font-size: 16px;
    min-width: 180px;
    background: var(--white);
    cursor: pointer;
}

.category-select:focus,
.sort-select:focus {
    outline: none;
    border-color: var(--alabs-orange);
}

/* Analysis Grid */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.analysis-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s;
    position: relative;
}

.analysis-card:hover {
    border-color: var(--alabs-orange);
    box-shadow: 0 4px 12px rgba(244, 127, 0, 0.1);
}

.analysis-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.analysis-code {
    font-weight: bold;
    color: var(--alabs-orange);
    font-size: 16px;
}

.analysis-price {
    font-weight: bold;
    color: var(--text-dark);
    font-size: 16px;
}

.analysis-name {
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.4;
}

.analysis-details {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.analysis-chapter {
    display: inline-block;
    background: var(--background-light);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 10px 16px;
    background: var(--alabs-orange);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.add-to-cart-btn:hover {
    background: var(--alabs-orange-dark);
}

.add-to-cart-btn:disabled {
    background: var(--text-gray);
    cursor: not-allowed;
}

/* Shopping Cart */
.cart-section {
    background: var(--white);
    border: 2px solid var(--alabs-orange);
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
}

.cart-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: var(--alabs-orange);
    font-size: 20px;
}

.cart-count {
    background: var(--alabs-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    margin-bottom: 10px;
    background: var(--background-light);
}

.cart-item-info {
    flex: 1;
}

.cart-item-code {
    font-weight: bold;
    color: var(--alabs-orange);
    margin-bottom: 4px;
}

.cart-item-name {
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--text-gray);
    font-size: 14px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-gray);
    background: var(--white);
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.quantity-btn:hover {
    background: var(--background-light);
}

.quantity-value {
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background: var(--danger-red);
    color: var(--white);
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.remove-btn:hover {
    background: #c82333;
}

.cart-total {
    border-top: 2px solid var(--alabs-orange);
    padding-top: 15px;
    margin-bottom: 20px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

.total-amount {
    color: var(--alabs-orange);
    font-size: 24px;
}

.cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.action-btn {
    flex: 1;
    min-width: 160px;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.download-btn {
    background: var(--success-green);
    color: var(--white);
}

.download-btn:hover {
    background: #218838;
}

.print-btn {
    background: #007bff;
    color: var(--white);
}

.print-btn:hover {
    background: #0056b3;
}

.clear-btn {
    background: var(--danger-red);
    color: var(--white);
}

.clear-btn:hover {
    background: #c82333;
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: var(--text-gray);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-gray);
    border-top: 4px solid var(--alabs-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .analysis-container > *:not(.print-view) {
        display: none !important;
    }
    
    .print-view {
        display: block !important;
    }
    
    .print-header {
        text-align: center;
        margin-bottom: 30px;
        border-bottom: 2px solid var(--alabs-orange);
        padding-bottom: 20px;
    }
    
    .print-header h1 {
        color: var(--alabs-orange);
        margin: 0 0 10px 0;
    }
    
    .print-header h2 {
        margin: 0 0 15px 0;
        color: var(--text-dark);
    }
    
    .print-date {
        margin: 0;
        color: var(--text-gray);
    }
    
    .print-content {
        margin-bottom: 40px;
    }
    
    .print-analysis {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-gray);
    }
    
    .print-analysis:last-child {
        border-bottom: 2px solid var(--alabs-orange);
        margin-bottom: 20px;
    }
    
    .print-total {
        text-align: right;
        font-size: 18px;
        font-weight: bold;
        padding-top: 15px;
        color: var(--alabs-orange);
    }
    
    .print-footer {
        text-align: center;
        font-size: 12px;
        color: var(--text-gray);
        border-top: 1px solid var(--border-gray);
        padding-top: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .analysis-container {
        padding: 15px;
    }
    
    .controls-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-container {
        flex-direction: column;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .action-btn {
        min-width: auto;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
}

.empty-state h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.cart-empty {
    text-align: center;
    padding: 40px;
    color: var(--text-gray);
    font-style: italic;
}/* End custom CSS */