       /* Case Carousel Styles - Fixed Height Version */
.case-carousel {
    margin-bottom: 2rem;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 20px;
    background: linear-gradient(to bottom, #fafafa, #ffffff);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.case-option {
    padding: 20px;
    text-align: center;
    border: 2px solid #eee;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 320px; /* Vaste minimale hoogte */
}



.case-option.selected {
    border-color: #ff6a00;
    background: linear-gradient(135deg, #fff0e6, #ffffff);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2), 0 8px 25px rgba(255, 106, 0, 0.15);
}

.case-option img {
    max-height: 140px;
    width: auto;
    margin: 0 auto 15px;
    object-fit: contain;
    flex-shrink: 0;
}

.case-radio {
    position: absolute;
    opacity: 0;
}

.carousel-control-prev, .carousel-control-next {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    border: 2px solid #eaeaea;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background: #ff6a00;
    border-color: #ff6a00;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -24px;
}

.carousel-control-next {
    right: -24px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(350deg) brightness(102%) contrast(101%);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.case-name {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Beperk tot 2 regels */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 42px; /* Vaste hoogte voor 2 regels */
    max-height: 42px;
    width: 100%;
    text-align: center;
}

.case-price {
    color: #ff6a00;
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
    padding: 8px 16px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 8px;
    min-width: 100px;
}

/* Case features/info */
.case-info {
    width: 100%;
    margin-top: 10px;
}

.case-features {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 32px;
}

/* Fixed height container for consistent layout */
.case-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.case-image-container {
    height: 160px; /* Vaste hoogte voor afbeeldingen */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
}

/* Mobile carousel fixes */
@media (max-width: 767.98px) {
    .case-carousel {
        padding: 15px;
        margin-left: -10px;
        margin-right: -10px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .case-carousel .carousel-inner .carousel-item > .row {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        margin-right: -8px;
        margin-left: -8px;
        padding-bottom: 10px;
        scrollbar-width: thin;
        scrollbar-color: #ff6a00 #f0f0f0;
    }
    
    .case-carousel .carousel-inner .carousel-item > .row::-webkit-scrollbar {
        height: 6px;
    }
    
    .case-carousel .carousel-inner .carousel-item > .row::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 3px;
    }
    
    .case-carousel .carousel-inner .carousel-item > .row::-webkit-scrollbar-thumb {
        background: #ff6a00;
        border-radius: 3px;
    }
    
    .case-carousel .carousel-inner .carousel-item > .row > .col-md-4 {
        flex: 0 0 auto;
        width: 85%;
        padding-right: 8px;
        padding-left: 8px;
    }
    
    .carousel-control-prev, .carousel-control-next {
        display: none;
    }
    
    .case-option {
        min-height: 300px;
        padding: 15px;
    }
    
    .case-name {
        font-size: 14px;
        min-height: 38px;
        max-height: 38px;
    }
    
    .case-price {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .case-image-container {
        height: 140px;
    }
    
    .case-option img {
        max-height: 120px;
    }
}

@media (max-width: 575.98px) {
    .case-carousel .carousel-inner .carousel-item > .row > .col-md-4 {
        width: 90%;
    }
    
    .case-option {
        min-height: 280px;
    }
    
    .case-name {
        font-size: 13px;
        min-height: 36px;
        max-height: 36px;
    }
}
        
        /* Modern Dropdown Styles */
        .component-card {
            background: white;
            border: 1px solid #eaeaea;
            border-radius: 12px;
            padding: 0;
            margin-bottom: 16px;
       
            overflow: hidden;
         
        }
        
 
 
        .component-header {
            display: flex;
            align-items: center;
            padding: 18px 20px;
            background: linear-gradient(to right, #fafafa, #ffffff);
            border-bottom: 1px solid #f0f0f0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .component-header:hover {
            background: linear-gradient(to right, #f5f5f5, #fefefe);
        }
        
        .component-img-container {
            width: 80px;
            height: 80px;
            min-width: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            border-radius: 10px;
            padding: 8px;
            margin-right: 18px;
            border: 1px solid #eee;
            transition: all 0.3s ease;
        }
        
        .component-card:hover .component-img-container {
            border-color: #ffd1b3;
            background: linear-gradient(135deg, #fff8f3, #fff);
        }
        
        .component-img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
       
        }
        
        .component-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .component-title {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .component-category {
            font-size: 13px;
            color: #ff6a00;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .component-price {
            font-size: 18px;
            font-weight: 700;
            color: #ff6a00;
            margin-top: 4px;
            display: none;  
        }
        
        .component-selector {
            width: 280px;
            min-width: 280px;
            position: relative;
        }
        
        .modern-select {
            width: 100%;
            padding: 14px 50px 14px 18px;
            font-size: 15px;
            font-weight: 500;
            color: #333;
            background: white;
            border: 2px solid #eaeaea;
            border-radius: 10px;
            cursor: pointer;
            appearance: none;
            transition: all 0.3s ease;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ff6a00' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 18px center;
            background-size: 14px;
        }
        
        .modern-select:hover {
            border-color: #ffb380;
            background-color: #fffaf5;
        }
        
        .modern-select:focus {
            outline: none;
            border-color: #ff6a00;
            box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
        }
        
        .modern-select option {
            padding: 12px;
            font-size: 14px;
            background: white;
            color: #333;
        }
        
        .modern-select option:hover {
            background: #fffaf5;
        }
        
        .select-wrapper {
            position: relative;
        }
        
        .select-wrapper::after {
            content: '';
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ff6a00' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }
        
        .option-details {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        
        .option-name {
            font-weight: 500;
            color: #333;
        }
        
        .price-difference {
            margin-left: 8px;
            font-size: 13px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 12px;
        }
        
        .price-positive {
            color: #28a745;
            background: rgba(40, 167, 69, 0.1);
        }
        
        .price-negative {
            color: #dc3545;
            background: rgba(220, 53, 69, 0.1);
        }
        
        .price-neutral {
            color: #6c757d;
        }
        
        .selected-option .price-difference {
            display: none;
        }
        
        /* Option badges for special items */
        .option-badge {
            display: inline-block;
            padding: 2px 8px;
            font-size: 11px;
            font-weight: 600;
            border-radius: 4px;
            margin-left: 8px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        
        . {
            background: linear-gradient(135deg, #ff9741, #ff6a00);
            color: white;
        }
        
        . {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
        }
        
        .badge- {
            background: linear-gradient(135deg, #6c757d, #495057);
            color: white;
        }
        
        /* Storage Component Special Layout */
        .storage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin-top: 12px;
        }
        
        .storage-option {
            background: #f8f9fa;
            border: 2px solid #eaeaea;
            border-radius: 10px;
            padding: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }
        
        .storage-option:hover {
            border-color: #ffb380;
            background: #fffaf5;
            transform: translateY(-2px);
        }
        
        .storage-option.selected {
            border-color: #ff6a00;
            background: linear-gradient(135deg, #fff8f3, #fff);
            box-shadow: 0 4px 12px rgba(255, 106, 0, 0.15);
        }
        
        .storage-label {
            font-size: 13px;
            color: #666;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
@media (max-width: 991.98px) {
    .component-header {
        flex-direction: column;
        align-items: center; /* Verander van flex-start naar center */
        text-align: center; /* Optioneel: tekst ook centreren */
    }
    
    .component-img-container {
        margin-right: 0;
        margin-bottom: 12px;
        width: 175px; /* Vaste breedte */
        height: 175px; /* Vaste hoogte */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Optioneel: als je de afbeelding zelf ook 200x200px wilt maken */
    .component-img-container img {
        max-width: 175px;
        max-height: 175px;
        width: auto;
        height: auto;
        object-fit: contain; /* Zorgt dat de afbeelding goed binnen de ruimte past */
    }
    
    .component-selector {
        width: 100%;
        min-width: 100%;
        margin-top: 12px;
    }
    
    .component-info {
        width: 100%;
    }
}
        
      @media (max-width: 767.98px) {
    .storage-grid {
        grid-template-columns: 1fr;
    }
    
    .case-carousel .carousel-inner .carousel-item > .row {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        margin-right: -15px;
        margin-left: -15px;
        justify-content: center; /* Voeg deze toe om horizontaal te centreren */
    }
    
    .case-carousel .carousel-inner .carousel-item > .row > .col-md-4 {
        flex: 0 0 auto;
        width: 80%;
        max-width: 300px; /* Optioneel: maximale breedte voor consistentie */
        padding-right: 15px;
        padding-left: 15px;
    }
    
    .carousel-control-prev, .carousel-control-next {
        display: none;
    }
}
        
        /* Tab Navigation Styles */
        .info-tabs {
            margin-top: 20px;
            border: 1px solid #dee2e6;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .tab-header {
            display: flex;
            background: linear-gradient(to right, #fafafa, #f5f5f5);
            border-bottom: 1px solid #eaeaea;
        }
        
        .tab-button {
            flex: 1;
            padding: 16px 24px;
            background: none;
            border: none;
            font-size: 15px;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
        }
        
        .tab-button:hover {
            background: rgba(255, 106, 0, 0.05);
            color: #ff6a00;
        }
        
        .tab-button.active {
            background: white;
            color: #ff6a00;
        }
        
        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, #ff9741, #ff6a00);
        }
        
        .tab-content {
            display: none;
            padding: 24px;
            background: white;
            animation: fadeIn 0.3s ease;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .specs-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .spec-item {
            display: flex;
            align-items: flex-start;
            padding: 12px 0;
            border-bottom: 1px solid #f5f5f5;
            transition: background 0.2s ease;
        }
        
        .spec-item:hover {
            background: #fafafa;
            border-radius: 8px;
            padding: 12px;
            margin: 0 -12px;
        }
        
        .spec-item:last-child {
            border-bottom: none;
        }
        
        .spec-icon {
            color: #ff6a00;
            font-size: 20px;
            margin-right: 14px;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .spec-text {
            flex: 1;
        }
        
        .spec-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
            font-size: 15px;
        }
        
        .spec-value {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .description-content {
            line-height: 1.7;
            color: #444;
        }
        
        .description-content h6 {
            color: #333;
            margin-top: 20px;
            margin-bottom: 12px;
            font-size: 16px;
            font-weight: 600;
        }
        
        .description-content ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .description-content li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 5px;
        }
        
        .description-content li::before {
            content: '•';
            color: #ff6a00;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
  
        
        .btn-icon {
            font-size: 20px;
        }
        
        /* Popup v2 – compacte, moderne stijl */
        .modal-overlay-v2{
          position:fixed; inset:0; display:none; align-items:center; justify-content:center;
          background:rgba(0,0,0,.65); z-index:9999; backdrop-filter:saturate(120%) blur(4px);
        }
        .modal-overlay-v2.show{ display:flex; animation:popfade .15s ease-out; }

        .modal-content-v2{
          background:#fff; border-radius:16px; padding:28px 24px; max-width:440px; width:92%;
          box-shadow:0 25px 60px rgba(0,0,0,.3); text-align:center; position:relative;
          border:1px solid rgba(255,255,255,.1);
        }
        .modal-title-v2{ font-size:20px; margin:0 0 8px; font-weight:600; }
        .modal-msg-v2{ font-size:16px; color:#444; margin:0 0 20px; line-height:1.5; }

        .modal-actions-v2{ display:flex; gap:12px; justify-content:center; margin-top:16px; }
        .btn-v2{ border:0; border-radius:12px; padding:14px 20px; cursor:pointer; font-weight:600; font-size:15px; transition:all 0.3s ease; }
        .btn-primary-v2{ background:linear-gradient(135deg, #ff9741, #ff6a00); color:#fff; box-shadow:0 4px 12px rgba(255,106,0,.3); }
        .btn-primary-v2:hover{ transform:translateY(-2px); box-shadow:0 6px 16px rgba(255,106,0,.4); }
        .btn-ghost-v2{ background:#f5f5f5; color:#333; border:1px solid #e0e0e0; }
        .btn-ghost-v2:hover{ background:#eaeaea; transform:translateY(-2px); }

        .modal-close-x-v2{
          position:absolute; right:16px; top:16px; border:0; background:transparent; font-size:24px; cursor:pointer; color:#999; transition:color 0.2s ease;
          width:32px; height:32px; display:flex; align-items:center; justify-content:center; border-radius:50%;
        }
        .modal-close-x-v2:hover{ color:#ff6a00; background:rgba(255,106,0,.05); }

        .modal-content-v2.success .modal-title-v2{ color:#2ecc71; }
        .modal-content-v2.error   .modal-title-v2{ color:#e74c3c; }
        .modal-content-v2.info    .modal-title-v2{ color:#ff6a00; }

        @keyframes popfade{ from{opacity:0; transform:translateY(-10px) scale(0.95)} to{opacity:1; transform:translateY(0) scale(1)} }
/* Enhanced Modern Dropdown Styles */
.modern-select {
    width: 100%;
    padding: 14px 50px 14px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background: white;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ff6a00' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
    position: relative;
    z-index: 1;
}

.modern-select:hover {
    border-color: #ffb380;
    background-color: #fffaf5;
}

.modern-select:focus {
    outline: none;
    border-color: #ff6a00;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

/* Custom dropdown container for better styling */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ff6a00' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

/* Styling for dropdown options */
.modern-select option {
    padding: 12px 16px;
    font-size: 14px;
    background: white;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    position: relative;
}

.modern-select option:hover {
    background: linear-gradient(to right, #fff8f3, #fff);
    color: #ff6a00;
}

.modern-select option:checked {
    background: linear-gradient(to right, #fff0e6, #fff);
    color: #ff6a00;
    font-weight: 600;
}

.modern-select option:disabled {
    color: #999;
    background: #f9f9f9;
}

/* Custom option display */
.option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.option-main {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.option-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 2px;
}

.option-specs {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.option-price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.option-price {
    font-weight: 700;
    color: #ff6a00;
    font-size: 14px;
    white-space: nowrap;
}

.price-difference {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.price-positive {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.price-negative {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.price-neutral {
    color: #6c757d;
    background: rgba(108, 117, 125, 0.1);
}

/* Option badges for special items */
.option-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border: 1px solid transparent;
}

. {
    background: linear-gradient(135deg, #ff9741, #ff6a00);
    color: white;
    border-color: #ff6a00;
}

. {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-color: #20c997;
}

.badge- {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    border-color: #495057;
}

.badge-default {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-color: #2980b9;
}
/* Modal PC info styling */
.modal-content-v2 .pc-info-container {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    border-left: 4px solid #28a745;
    border: 1px solid #eaeaea;
}

.modal-content-v2 .pc-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 16px;
}

.modal-content-v2 .pc-image-container {
    margin: 12px 0;
    padding: 8px;
    background: white;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.modal-content-v2 .pc-image-container img {
    max-height: 120px;
    max-width: 100%;
    border-radius: 8px;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .modal-dialog {
        margin: 10px; /* Iets meer ruimte aan de zijkanten */
        max-width: calc(100% - 20px); /* 100% min 20px margin */
    }
    
    .modal-content-v2 {
        max-height: 90vh; /* Max 90% van schermhoogte */
        overflow-y: auto; /* Scrollbaar indien nodig */
        border-radius: 12px;
        margin: 0 auto;
    }
    
    .modal-body {
        padding: 12px;
    }
    
    .pc-info-container {
        margin: 10px 0 !important;
        padding: 10px !important;
    }
    
    /* Compacte afbeelding op mobiel */
    .pc-image-container {
        margin: 8px auto;
        padding: 6px;
        width: 60%; /* Percentage breedte ipv vaste grootte */
        max-width: 120px;
    }
    
    .pc-image-container img {
        max-height: 80px; /* Kleinere hoogte op mobiel */
        max-width: 50%%;
    }
    
    .pc-name {
        font-size: 14px; /* Kleinere tekst op mobiel */
        margin-bottom: 6px;
    }
    
    /* Knoppen compact houden */
    .modal-footer {
        flex-direction: row; /* Knoppen naast elkaar op mobiel */
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 12px !important;
        background: #f8f9fa;
        border-top: 1px solid #dee2e6;
    }
    
    .modal-footer .btn {
        flex: 1;
        min-width: 45%; /* Knoppen naast elkaar passen */
        margin: 0 !important;
    }
}/* Sticky bar animations - DESKTOP */
#sticky-bar {
    position: sticky;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    font-size: 20px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(30, 30, 30, 0.95));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #f8f9fa;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    
    /* Start off-screen - DESKTOP VERSIE */
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

#sticky-bar.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Price animation */
.total-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.total-label {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

#sticky-bar.visible .total-label {
    opacity: 1;
    transform: translateX(0);
}

#total-price {
    font-size: 32px;
    font-weight: 700;
    color: #ff6a00;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.5s ease 0.4s, 
                transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s,
                color 0.3s ease;
}

#sticky-bar.visible #total-price {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Button animation */
#sticky-bar button {
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #ff9741, #ff6a00);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    
    /* Start state */
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    transition: opacity 0.5s ease 0.5s, 
                transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}

#sticky-bar.visible button {
    opacity: 1;
    transform: translateX(0) scale(1);
}

#sticky-bar button:hover {
    background: linear-gradient(135deg, #ff6a00, #ff9741);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.6);
}

#sticky-bar button:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-icon {
    font-size: 20px;
}

/* Euro sign styling */
#total-price::before {
    content: "€";
    color: #ff6a00;
    margin-right: 4px;
    font-weight: 700;
}

/* MOBILE VERSIE - overschrijft desktop alleen binnen media query */
@media (max-width: 767.98px) {
    /* Reset de transform voor mobile om te beginnen vanaf 30px ipv 100px */
    #sticky-bar {
        padding: 14px 16px;
        border-radius: 12px 12px 0 0;
        transform: translateY(30px); /* MOBILE start positie */
        transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    #sticky-bar.visible {
        transform: translateY(0); /* Eind positie voor beide */
    }
    
    /* Mobile interne element animaties */
    .total-label {
        font-size: 12px;
        margin-bottom: 3px;
        transform: translateX(-10px); /* Kleinere X beweging voor mobile */
        transition: opacity 0.25s ease 0.1s, 
                    transform 0.25s ease 0.1s;
    }
    
    #total-price {
        font-size: 26px;
        transform: translateY(8px) scale(0.97); /* Kleinere Y beweging voor mobile */
        transition: opacity 0.25s ease 0.15s, 
                    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
    }
    
    #sticky-bar button {
        padding: 12px 20px;
        font-size: 15px;
        transform: translateX(15px) scale(0.97); /* Kleinere X beweging voor mobile */
        transition: opacity 0.25s ease 0.2s, 
                    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
    }
    
    /* Visible states voor mobile */
    #sticky-bar.visible .total-label {
        transform: translateX(0);
    }
    
    #sticky-bar.visible #total-price {
        transform: translateY(0) scale(1);
    }
    
    #sticky-bar.visible button {
        transform: translateX(0) scale(1);
    }
    
    /* Compactere layout op mobile */
    #sticky-bar {
        gap: 12px;
    }
    
    .total-price-container {
        min-width: 120px;
    }
    
    .btn-icon {
        font-size: 18px;
    }
    
    /* Snellere price pulse op mobile */
    .price-updated {
        animation-duration: 0.3s;
    }
    
    /* Euro sign mobile fix */
    #total-price::before {
        margin-right: 3px;
        font-size: 26px; /* Gelijk aan mobile #total-price font-size */
    }
}

/* EXTRA: Voor tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    #sticky-bar {
        transform: translateY(60px); /* Tussen desktop en mobile in */
        transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    #total-price {
        font-size: 30px;
    }
    
    #sticky-bar button {
        padding: 14px 28px;
        font-size: 16px;
    }
}
/* RG.highend.css - Alleen link onderstreping verwijderen */
section.section-with-shape-divider.bg-transparent.border-0.m-0.p-0:last-of-type a {
    text-decoration: none !important;
}

section.section-with-shape-divider.bg-transparent.border-0.m-0.p-0:last-of-type a:hover {
    text-decoration: none !important;
}