/* Variables CSS - Design Lumineux */

:root {
    --primary-blue: #0066ff;
    --primary-gradient: linear-gradient(135deg, #0066ff 0%, #0099ff 100%);
    --secondary-blue: #e6f2ff;
    --accent-green: #00c853;
    --accent-purple: #7c4dff;
    --accent-orange: #ff6d00;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}


/* Section principale */

.vps-pricing-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}


/* Hero Header Simple */

.vps-hero-simple {
    background: white;
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border-light);
}

.hero-content-simple {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title-simple {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-description-simple {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}


/* Container */

.vps-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}


/* Gaming Banner */

.gaming-vps-banner {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 30px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gaming-banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.gaming-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c4dff 0%, #b388ff 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gaming-icon i {
    font-size: 28px;
    color: white;
}

.gaming-info {
    flex: 1;
}

.gaming-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.gaming-info .highlight {
    color: var(--accent-purple);
}

.gaming-info p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
}

.gaming-specs-preview {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.spec-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.spec-pill i {
    color: var(--accent-purple);
    font-size: 14px;
}

.gaming-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-purple);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gaming-cta-btn:hover {
    background: #6a3de8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 77, 255, 0.3);
    color: white;
}

.gaming-banner-badge {
    position: absolute;
    top: -10px;
    right: 30px;
    background: linear-gradient(135deg, #ff1744 0%, #ff6b6b 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 23, 68, 0.3);
}


/* Offers Grid */

.vps-offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


/* Offer Card */

.vps-offer-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.vps-offer-card:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}


/* Card Badges */

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    z-index: 5;
}

.card-badge-blue {
    background: linear-gradient(135deg, #2196f3 0%, #64b5f6 100%);
    color: white;
}

.card-badge-green {
    background: linear-gradient(135deg, #00c853 0%, #69f0ae 100%);
    color: white;
}

.card-badge-purple {
    background: linear-gradient(135deg, #7c4dff 0%, #b388ff 100%);
    color: white;
}


/* Card Header */

.card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}


/* Card header avec promo - background grisé */

.vps-offer-card:has(.promo-ribbon:not([style*="display: none"])) .card-header {
    background: linear-gradient(135deg, #fff5f5 0%, #ffebeb 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: -30px -30px 25px -30px;
    padding: 30px 30px 25px 30px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-from {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}


/* Prix barré avec rouge plus fort */

.price-original {
    text-decoration: line-through;
    color: #dc2626;
    font-size: 22px;
    font-weight: 600;
    margin-right: 10px;
}


/* Prix current normal (sans promo) */

.price-current {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}


/* Prix current avec promo - style différencié */

.vps-offer-card:has(.promo-ribbon:not([style*="display: none"])) .price-current {
    font-size: 40px;
    font-weight: 900;
    color: #00c853;
}

.price-period {
    color: var(--text-secondary);
    font-size: 16px;
}


/* Badge économisez */

.price-savings {
    display: none;
    background: linear-gradient(135deg, #ff1744 0%, #ff6b6b 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 8px;
    animation: pulse 2s ease-in-out infinite;
}

.vps-offer-card:has(.promo-ribbon:not([style*="display: none"])) .price-savings {
    display: inline-block;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


/* Location Selector */

.location-selector {
    margin-bottom: 25px;
}

.selector-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.location-dropdown {
    position: relative;
}

.location-selected {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.location-selected:hover {
    border-color: var(--border-medium);
    background: var(--bg-gray);
}

.location-dropdown.active .location-selected {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.location-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag-icon {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.dropdown-icon {
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.location-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.location-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 10;
    max-height: 300px;
    overflow-y: auto;
}

.location-dropdown.active .location-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.location-option {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
    position: relative;
}

.location-option:hover {
    background: var(--bg-light);
}

.location-option span {
    flex: 1;
    color: var(--text-primary);
}

.location-promo {
    background: linear-gradient(135deg, #ff1744 0%, #ff6b6b 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-left: auto;
    margin-right: 8px;
}

.status-icon {
    font-size: 14px;
}

.status-icon.available {
    color: var(--accent-green);
}

.status-icon.unavailable {
    color: #ef4444;
}


/* Shake animation for unavailable */

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

.location-option.shake {
    animation: shake 0.5s ease-in-out;
}


/* Card Specs */

.card-specs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.spec-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-line .spec-icon {
    color: var(--primary-blue);
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.spec-line .spec-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.spec-line .spec-text strong {
    color: var(--text-primary);
    font-weight: 700;
}


/* Card Features */

.card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature i {
    color: var(--accent-green);
    font-size: 12px;
}


/* Order Button */

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    color: white;
}

.order-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.order-btn:hover i {
    transform: translateX(3px);
}


/* Configurator Card */

.configurator-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e6f2ff 100%);
    border: 2px dashed var(--primary-blue);
    text-align: center;
}

.configurator-card:hover {
    border-style: solid;
    background: linear-gradient(135deg, #e6f2ff 0%, #d4e8ff 100%);
}

.configurator-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.configurator-icon i {
    font-size: 28px;
    color: white;
}

.configurator-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.configurator-description {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 30px;
}

.configurator-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.config-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.config-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.config-value {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
}

.configurator-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.configurator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}


/* Modal */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    overflow-y: auto;
}

.modal.active {
    display: block;
}

.modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    max-width: 1100px;
    width: 90%;
    margin: 50px auto;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    border-bottom: 1px solid var(--border-light);
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-secondary);
}

.modal-close:hover {
    background: var(--bg-gray);
    color: var(--text-primary);
}

.modal-body {
    padding: 30px;
}

.configurator-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}


/* Config Panel */

.config-group {
    margin-bottom: 35px;
}

.config-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.config-group-title i {
    color: var(--primary-blue);
}


/* Datacenter Options Compact */

.datacenter-options-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.datacenter-option-compact {
    position: relative;
}

.datacenter-option-compact input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.datacenter-card-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.datacenter-option-compact input[type="radio"]:checked+.datacenter-card-compact {
    background: var(--secondary-blue);
    border-color: var(--primary-blue);
}

.datacenter-card-compact:hover {
    border-color: var(--border-medium);
}

.datacenter-card-compact img {
    width: 32px;
    height: 20px;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.datacenter-card-compact .datacenter-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.datacenter-card-compact .datacenter-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.datacenter-card-compact .eco-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--accent-green);
    font-weight: 500;
}


/* Info Buttons */

.info-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    transition: color 0.2s ease;
    font-size: 16px;
}

.info-btn:hover {
    color: var(--primary-blue);
}

.info-btn-small {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.info-btn-small:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}


/* Info Modals */

.info-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.info-modal.active {
    display: flex;
}

.info-modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.info-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.info-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.info-modal-close {
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-secondary);
}

.info-modal-close:hover {
    background: var(--bg-gray);
    color: var(--text-primary);
}

.info-modal-body {
    padding: 24px;
    overflow-y: auto;
}

.info-modal-body p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.info-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-primary);
}

.info-feature i {
    color: var(--accent-green);
    margin-top: 2px;
    flex-shrink: 0;
}

.info-note {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 16px;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
}

.info-note strong {
    color: var(--primary-blue);
}


/* Resource Sliders */

.resource-item {
    margin-bottom: 25px;
}

.resource-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.resource-label i {
    color: var(--primary-blue);
    width: 20px;
}

.resource-value {
    margin-left: auto;
    color: var(--primary-blue);
    font-weight: 700;
}

.resource-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-gray);
    outline: none;
    -webkit-appearance: none;
}

.resource-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-blue);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.resource-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}


/* Network Options */

.network-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.network-option {
    position: relative;
}

.network-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.network-card {
    display: block;
    padding: 12px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.network-option input[type="radio"]:checked+.network-card {
    background: var(--secondary-blue);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.network-card:hover {
    border-color: var(--border-medium);
}


/* Add-ons */

.addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.addon-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-primary);
}

.addon-label i {
    color: var(--primary-blue);
}

.addon-selector {
    display: flex;
    align-items: center;
    gap: 16px;
}

.addon-btn {
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.addon-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.addon-value {
    min-width: 40px;
    text-align: center;
    font-weight: 700;
    color: var(--text-primary);
}


/* Summary Panel - NOUVEAU DESIGN AMÉLIORÉ */

.summary-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-xl);
    padding: 0;
    position: sticky;
    top: 30px;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.15);
    overflow: hidden;
}


/* Summary Header - NOUVEAU */

.summary-header {
    background: var(--primary-gradient);
    padding: 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.summary-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.summary-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.summary-title i {
    font-size: 24px;
}


/* Summary Body */

.summary-body {
    padding: 30px;
}

.summary-content {
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}


/* Summary Items avec meilleur visuel */

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 102, 255, 0.05);
    transition: all 0.2s ease;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item:hover {
    background: rgba(0, 102, 255, 0.02);
    margin: 0 -10px;
    padding: 12px 10px;
    border-radius: var(--radius-sm);
}

.summary-label {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-label i {
    color: var(--primary-blue);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.summary-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-flag {
    width: 20px;
    height: 13px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.summary-price {
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 600;
    background: rgba(0, 102, 255, 0.08);
    padding: 2px 8px;
    border-radius: 12px;
}


/* Summary Total - NOUVEAU DESIGN */

.summary-total {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f0ff 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.summary-total::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.total-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
    position: relative;
    z-index: 1;
}

.total-price {
    font-size: 40px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    display: block;
    line-height: 1;
}

.total-price-suffix {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: 5px;
}


/* Order Summary Button - AMÉLIORÉ */

.order-summary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.order-summary-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.order-summary-btn:hover::before {
    width: 300px;
    height: 300px;
}

.order-summary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.order-summary-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.order-summary-btn:hover i {
    transform: translateX(3px);
}


/* Ruban de promotion diagonal - AMÉLIORÉ */

.promo-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    width: 140px;
    height: 30px;
    background: linear-gradient(135deg, #ff0066 0%, #ff4488 100%);
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.4);
    z-index: 10;
    overflow: hidden;
}

.promo-percentage {
    display: block;
    text-align: center;
    color: white;
    font-size: 14px;
    font-weight: 800;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.promo-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}


/* Bordure subtile pour les cards avec promo */

.vps-offer-card:has(.promo-ribbon:not([style*="display: none"])) {
    border: 1.5px solid rgba(255, 23, 68, 0.15);
}

.vps-offer-card:has(.promo-ribbon:not([style*="display: none"])):hover {
    border-color: rgba(255, 23, 68, 0.3);
    box-shadow: 0 12px 35px rgba(255, 23, 68, 0.12);
}


/* Groupes de datacenters */

.datacenter-group {
    margin-bottom: 8px;
}

.datacenter-group:last-child {
    margin-bottom: 0;
}

.datacenter-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: var(--bg-gray);
}

.group-divider {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
}


/* Responsive */

@media (max-width: 1200px) {
    .vps-offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gaming-banner-content {
        flex-wrap: wrap;
        gap: 20px;
    }
    .gaming-specs-preview {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 20px;
    }
    .trust-indicators {
        gap: 20px;
    }
    .trust-item {
        font-size: 14px;
    }
    .vps-offers-grid {
        grid-template-columns: 1fr;
    }
    .gaming-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .gaming-specs-preview {
        justify-content: center;
    }
    .configurator-layout {
        grid-template-columns: 1fr;
    }
    .summary-panel {
        position: static;
        margin-top: 30px;
    }
    .datacenter-options {
        grid-template-columns: 1fr;
    }
    .network-options {
        grid-template-columns: 1fr;
    }
    .card-specs {
        grid-template-columns: 1fr;
    }
}


/* Scrollbar personnalisée */

.location-options::-webkit-scrollbar {
    width: 6px;
}

.location-options::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.location-options::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}


/* Hero Modern Design - REMPLACEZ TOUT L'ANCIEN CSS DU HERO PAR CECI */

.vps-hero-modern {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.03) 0%, /* Légère teinte sombre en haut pour transition douce */
    var(--bg-light) 20%, /* Transition vers le gris clair */
    var(--bg-light) 100%/* Gris clair comme le reste de la section */
    );
    padding: 40px 0 30px;
    position: relative;
    overflow: hidden;
}


/* Background Pattern Subtil */

.hero-background-pattern {
    position: absolute;
    top: 0;
    right: -20%;
    width: 60%;
    height: 100%;
    opacity: 0.03;
    background-image: radial-gradient(circle at 20% 50%, var(--primary-blue) 0%, transparent 50%), radial-gradient(circle at 80% 80%, var(--accent-purple) 0%, transparent 50%), radial-gradient(circle at 40% 20%, var(--primary-blue) 0%, transparent 50%);
}


/* Hero Content */

.hero-content-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


/* Badge de confiance */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease-out;
}

.hero-badge i {
    font-size: 14px;
}


/* Titre moderne */

.hero-title-modern {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.1;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}


/* Description */

.hero-description-modern {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.desktop-only {
    display: inline;
}


/* Features Pills */

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.hero-feature i {
    color: var(--primary-blue);
    font-size: 16px;
}


/* Stats */

.hero-stats {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 20px 32px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, var(--border-light) 50%, transparent 100%);
}


/* Animations */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive */

@media (max-width: 768px) {
    .vps-hero-modern {
        padding: 30px 0 40px;
    }
    .hero-title-modern {
        font-size: 32px;
    }
    .hero-description-modern {
        font-size: 16px;
    }
    .desktop-only {
        display: none;
    }
    .hero-features {
        gap: 12px;
    }
    .hero-feature {
        font-size: 13px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
    }
    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }
    .stat-number {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .hero-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
}

.hero-spec-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.hero-spec-pill:hover {
    background: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.hero-spec-pill svg {
    width: 16px;
    height: 16px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--primary-blue);
}

.hero-spec-pill i {
    color: var(--primary-blue);
    font-size: 14px;
}


/* Bandeau économies horizontal étendu */

.savings-banner-compact {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f2ff 100%);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.08);
}

.savings-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.savings-intro-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.savings-intro-compact i {
    color: var(--primary-blue);
    font-size: 18px;
}

.savings-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.savings-option {
    position: relative;
    cursor: pointer;
}

.savings-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.savings-card-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    min-width: 100px;
    position: relative;
    overflow: visible;
}

.savings-option:hover .savings-card-compact {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.savings-option input[type="radio"]:checked+.savings-card-compact {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.25);
}

.savings-card-compact .duration {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.savings-card-compact .discount {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.8;
}

.savings-option input[type="radio"]:checked+.savings-card-compact .discount {
    opacity: 1;
}

.savings-card-compact .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.savings-option.popular .badge {
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: white;
}

.savings-option.best .badge {
    background: linear-gradient(135deg, #ff1744 0%, #ff5252 100%);
    color: white;
}


/* Animation de sélection */

.savings-card-compact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.savings-option input[type="radio"]:checked+.savings-card-compact::before {
    width: 150%;
    height: 150%;
}


/* Nouveau style pour les prix avec engagement */

.engagement-price-original {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 20px;
    font-weight: 500;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.engagement-savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #0066ff 0%, #0099ff 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.engagement-savings-badge.active {
    opacity: 1;
    transform: translateY(0);
}

.engagement-savings-badge i {
    font-size: 11px;
}


/* Info cumulable pour promo + engagement */

.cumulative-info-text {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 6px;
    text-align: center;
    opacity: 0.7;
    line-height: 1.4;
}


/* Style spécial quand promo + engagement sont actifs */

.vps-offer-card.has-engagement:has(.promo-ribbon:not([style*="display: none"])) .engagement-savings-badge {
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
}


/* Ajuster le header de la card quand un engagement est actif */

.vps-offer-card.has-engagement .card-header {
    padding-bottom: 30px;
}


/* Responsive */

@media (max-width: 768px) {
    .savings-content {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    .savings-intro-compact {
        justify-content: center;
    }
    .savings-options {
        justify-content: center;
    }
    .savings-card-compact {
        min-width: 80px;
        padding: 10px 15px;
        padding-top: 18px;
    }
    .savings-card-compact .duration {
        font-size: 13px;
    }
    .savings-card-compact .discount {
        font-size: 12px;
    }
}


/* Information taxes - Style minimal */

.tax-info-minimal {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 30px;
    margin-bottom: 10px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tax-info-minimal svg {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.6;
}

.tax-info-minimal p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-muted);
    opacity: 0.8;
}


/* Responsive */

@media (max-width: 768px) {
    .tax-info-minimal {
        margin: 20px 16px;
    }
    .tax-info-minimal p {
        font-size: 11px;
    }
}


/* ========================================
   CARTE IPv6 - DESIGN PROFESSIONNEL
   ======================================== */

.ipv6-medium-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 50%, #e6f2ff 100%);
    border: 1.5px solid rgba(0, 102, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 25px;
    margin: 30px 0;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 102, 255, 0.08);
}

.ipv6-medium-card:hover {
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.12);
    transform: translateY(-2px);
}


/* Top badges */

.ipv6-top-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ipv6-badge-medium {
    background: var(--primary-gradient);
    color: white;
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* Stock */

.ipv6-stock-medium {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

.ipv6-stock-medium.available {
    color: #00c853;
}

.ipv6-stock-medium.warning {
    color: #ff9800;
}

.ipv6-stock-medium.critical {
    color: #f44336;
}

.ipv6-stock-medium.out {
    color: #9e9e9e;
}

.stock-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}


/* Layout principal */

.ipv6-medium-content {
    display: flex;
    gap: 40px;
}

.ipv6-info-section {
    flex: 1;
}

.ipv6-title-medium {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.ipv6-subtitle-medium {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
}

.ipv6-description-medium {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px 0;
}


/* Row compact */

.ipv6-compact-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
    align-items: center;
    margin-bottom: 15px;
}

.ipv6-location-wrapper {
    flex: 0 0 280px;
}

.ipv6-specs-inline {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.spec-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-inline i {
    color: var(--primary-blue);
    font-size: 16px;
}

.spec-inline span {
    font-size: 14px;
    color: var(--text-secondary);
}


/* Features */

.ipv6-features-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ipv6-features-row span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.ipv6-features-row i {
    color: #00c853;
    font-size: 12px;
}


/* SECTION PRIX AMÉLIORÉE */

.ipv6-price-section-medium {
    width: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: var(--radius-lg);
}

.price-box-medium {
    margin-bottom: 8px;
    width: 100%;
}

.price-label-medium {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}


/* Prix aligné horizontalement comme les autres cards */

.ipv6-price-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.ipv6-price-line .engagement-price-original {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 20px;
    font-weight: 500;
    display: none;
}

.ipv6-medium-card.has-engagement .ipv6-price-line .engagement-price-original {
    display: inline;
}

.ipv6-price-current-wrapper {
    display: inline-flex;
    align-items: baseline;
}

.price-big {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.ipv6-medium-card.has-engagement .price-big {
    color: var(--primary-blue);
    font-size: 38px;
}

.price-euro {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-month {
    font-size: 14px;
    color: var(--text-secondary);
}

.price-vat {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}


/* Badge d'économies avec espace */

.ipv6-savings-wrapper {
    margin: 12px 0;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ipv6-medium-card .engagement-savings-badge {
    background: linear-gradient(135deg, #0066ff 0%, #0099ff 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    display: none;
    align-items: center;
    gap: 4px;
}

.ipv6-medium-card.has-engagement .engagement-savings-badge {
    display: inline-flex;
}


/* Bouton de commande */

.ipv6-order-btn-medium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 8px;
    margin-bottom: 12px;
}

.ipv6-order-btn-medium:hover:not(.disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    color: white;
}

.ipv6-order-btn-medium.disabled {
    background: var(--bg-gray);
    color: var(--text-muted);
    cursor: not-allowed;
}

.guarantee-text {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-muted);
}


/* Dropdown */

.ipv6-dropdown .location-selected {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ipv6-dropdown:hover .location-selected,
.ipv6-dropdown.active .location-selected {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.ipv6-dropdown .location-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 10;
}

.ipv6-dropdown.active .location-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Responsive */

@media (max-width: 992px) {
    .ipv6-compact-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .ipv6-medium-content {
        flex-direction: column;
        gap: 25px;
    }
    .ipv6-price-section-medium {
        width: 100%;
    }
}


/* Animations pour le point de stock */

@keyframes pulse-dot {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes pulse-dot-warning {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(255, 152, 0, 0);
    }
}

@keyframes pulse-dot-critical {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7);
    }
    25% {
        transform: scale(1.3);
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(244, 67, 54, 0);
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}


/* Application des animations selon l'état du stock */

.ipv6-stock-medium.available .stock-pulse-dot {
    background: #00c853;
    animation: pulse-dot 2s ease-in-out infinite;
}

.ipv6-stock-medium.warning .stock-pulse-dot {
    background: #ff9800;
    animation: pulse-dot-warning 1.5s ease-in-out infinite;
}

.ipv6-stock-medium.critical .stock-pulse-dot {
    background: #f44336;
    animation: pulse-dot-critical 1s ease-in-out infinite;
}


/* Frais d'installation sous l'option */

.addon-setup-fee {
    margin: -10px 0 15px 0;
    padding: 8px 12px;
    background: rgba(255, 109, 0, 0.08);
    border-radius: 8px;
    font-size: 12px;
    color: #ff6d00;
    display: flex;
    align-items: center;
    gap: 6px;
}

.addon-setup-fee i {
    font-size: 14px;
    color: #ff6d00;
}


/* Prix avec frais d'installation */

.price-breakdown {
    background: linear-gradient(135deg, #fff8f0 0%, #fff5eb 100%);
    border: 1px solid rgba(255, 109, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.monthly-price,
.setup-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.total-today {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 4px 0;
    margin-top: 8px;
    border-top: 2px solid rgba(255, 109, 0, 0.3);
}

.price-label {
    font-size: 13px;
    color: #64748b;
}

.price-label-strong {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.price-amount {
    font-size: 16px;
    font-weight: 600;
    color: #0066ff;
}

.price-amount-strong {
    font-size: 24px;
    font-weight: 800;
    color: #ff6d00;
}


/* Style de la ligne BGP dans le résumé */

#summaryBgpRow .summary-price {
    color: #ff6d00 !important;
    font-weight: 700 !important;
    background: rgba(255, 109, 0, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px !important;
}