     /* ========================================
       /* ========================================
   ENHANCED CART & PRICING STYLES
   ======================================== */

/* Enhanced Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-tab {
    padding: 12px 20px;
    background: white;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #666;
    min-width: 120px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pricing-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.pricing-tab:hover::before {
    left: 100%;
}

.pricing-tab i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.pricing-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #333;
}

.pricing-tab:hover i {
    transform: scale(1.1);
}

.pricing-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pricing-tab.active:hover {
    transform: translateY(-1px);
}

/* Enhanced Button States */
.btn-add-to-cart {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-add-to-cart.btn-loading {
    background: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #000 !important;
    cursor: not-allowed;
}

.btn-add-to-cart.btn-success {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
    animation: successPulse 0.6s ease;
}

.btn-add-to-cart.btn-error {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: white !important;
    animation: errorShake 0.6s ease;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Enhanced Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    max-width: 400px;
    border-left: 4px solid;
    animation: slideInRight 0.3s ease;
    font-weight: 500;
}

.notification.success {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.notification.success i {
    color: #28a745;
}

.notification.warning {
    border-left-color: #ffc107;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}

.notification.warning i {
    color: #ffc107;
}

.notification.error {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #f8d7da 0%, #f1c2c7 100%);
    color: #721c24;
}

.notification.error i {
    color: #dc3545;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced Cart Counter */
.cart-count, .mobile-cart-count {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -8px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.cart-count.animate, .mobile-cart-count.animate {
    animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(0.9); }
    50% { transform: scale(1.1); }
    75% { transform: scale(0.95); }
}

/* Conflict Modal Styles */
.conflict-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.conflict-modal {
    background: white;
    border-radius: 16px;
    max-width: 520px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.conflict-modal-header {
    padding: 24px 28px 0;
    border-bottom: 1px solid #eef2f5;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px 16px 0 0;
}

.conflict-modal-header h3 {
    margin: 0 0 24px;
    color: #2d3748;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.conflict-modal-header i {
    color: #ff6b35;
    font-size: 24px;
}

.conflict-modal-body {
    padding: 24px 28px;
    line-height: 1.6;
    color: #4a5568;
}

.conflict-modal-body p {
    margin: 0 0 20px;
    font-size: 16px;
}

.existing-items, .new-item {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid #e2e8f0;
}

.existing-items h4, .new-item h4 {
    margin: 0 0 12px;
    color: #2d3748;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.existing-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.existing-items li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.existing-items li:last-child {
    border-bottom: none;
}

.existing-items li strong {
    color: #2d3748;
}

.new-item p {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new-item strong {
    color: #2d3748;
}

.conflict-modal-actions {
    padding: 0 28px 28px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.conflict-btn {
    min-width: 120px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
}

.conflict-btn.btn-outline {
    background: transparent;
    color: #718096;
    border-color: #e2e8f0;
}

.conflict-btn.btn-outline:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.conflict-btn:not(.btn-outline) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
}

.conflict-btn:not(.btn-outline):hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Cart Icon Wrapper Position */
.cart-icon-wrapper {
    position: relative;
    margin-right: 15px;
    display: inline-block;
}

/* ========================================
   SHARED HOSTING PAGE SPECIFIC STYLES
   ======================================== */
   
/* Shared Hosting Hero Section */
.shared-hero {
    background: linear-gradient(135deg, #0078ff 0%, #004cbf 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.shared-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><path d="M0,192L48,181.3C96,171,192,149,288,154.7C384,160,480,192,576,186.7C672,181,768,139,864,138.7C960,139,1056,181,1152,181.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat bottom;
    background-size: 100% 100px;
}

.shared-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.shared-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.shared-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Features Comparison Grid */
.shared-features {
    padding: 80px 0;
}

.features-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #0078ff;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-box i {
    font-size: 3rem;
    color: #0078ff;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Pricing Showcase */
.shared-pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.shared-plan {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.shared-plan:hover {
    transform: translateY(-10px);
}

.shared-plan.recommended {
    border: 3px solid #0078ff;
    transform: scale(1.05);
}

.shared-plan.recommended::before {
    content: "Recommandé";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0078ff;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: #0078ff;
    margin-bottom: 0.5rem;
}

.plan-duration {
    color: #666;
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* WordPress Section */
.wordpress-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.wordpress-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.wordpress-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.wordpress-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.wordpress-features {
    list-style: none;
    padding: 0;
}

.wordpress-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.wordpress-features li i {
    color: #0078ff;
    margin-right: 10px;
    font-size: 1.1rem;
}

.wordpress-image {
    text-align: center;
}

.wordpress-icon {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0078ff 0%, #004cbf 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.wordpress-icon::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.wordpress-icon i {
    font-size: 6rem;
    color: white;
    z-index: 2;
    position: relative;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.7; }
}

/* Migration Section */
.migration-section {
    padding: 80px 0;
}

.migration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.migration-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0078ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.migration-step h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Support CTA */
.support-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0078ff 0%, #004cbf 100%);
    color: white;
    text-align: center;
}

.support-content {
    max-width: 600px;
    margin: 0 auto;
}

.support-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: #fff;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guarantee-item {
    text-align: center;
    padding: 1.5rem;
}

.guarantee-item i {
    font-size: 2.5rem;
    color: #0078ff;
    margin-bottom: 1rem;
}

.guarantee-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.guarantee-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .shared-hero h1 {
        font-size: 2.5rem;
    }
    
    .wordpress-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-showcase {
        grid-template-columns: 1fr;
    }
    
    .shared-plan.recommended {
        transform: none;
    }
    
    .wordpress-icon {
        width: 200px;
        height: 200px;
    }
    
    .wordpress-icon i {
        font-size: 4rem;
    }

    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .conflict-modal {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .conflict-modal-actions {
        flex-direction: column;
    }
}