/* ================================
   PRIX PAGE - SPECIFIC STYLES
   ================================ */

/* Page Header */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        #FAF6F0 0%, 
        #F5EDE3 30%,
        #EDE5D8 70%,
        #E8DFD2 100%
    );
    z-index: 0;
}

.page-header-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A962' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-header p {
    font-family: var(--font-elegant);
    font-size: 1.4rem;
    color: var(--text-light);
}

/* Price Navigation */
.price-nav {
    background: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.price-nav-wrapper {
    justify-content: center; 
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--cream);
}

.price-nav-wrapper::-webkit-scrollbar {
    height: 4px;
}

.price-nav-wrapper::-webkit-scrollbar-track {
    background: var(--cream);
    border-radius: 10px;
}

.price-nav-wrapper::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.price-nav-item {
    flex-shrink: 0;
    padding: 10px 20px;
    background: var(--cream);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    white-space: nowrap;
}

.price-nav-item:hover,
.price-nav-item.active {
    background: var(--gold);
    color: white;
}

/* Price Sections */
.price-section {
    padding: 80px 0;
}

.price-section.alt-bg {
    background: var(--bg-light);
}

/* Price Grid */
.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.price-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

/* Price Card */
.price-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--gold);
}

.price-card.featured:hover {
    box-shadow: 0 8px 32px rgba(201, 169, 98, 0.25);
}

.price-card-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 25px 30px;
    position: relative;
}

.price-card.featured .price-card-header {
    background: linear-gradient(135deg, #F5EDE3 0%, #EDE5D8 100%);
}

.price-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin: 0;
}

.price-badge {
    display: inline-block;
    background: var(--taupe);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 8px;
}

.price-badge.gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.price-card-body {
    padding: 25px 30px;
}

/* Price Items */
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    gap: 20px;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.free {
    background: linear-gradient(90deg, rgba(201, 169, 98, 0.05) 0%, transparent 100%);
    margin: 0 -30px;
    padding: 15px 30px;
    border-bottom: none;
}

.price-item.premium {
    background: linear-gradient(90deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
    margin: 0 -30px;
    padding: 15px 30px;
    border-bottom: none;
    margin-top: 10px;
}

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

.price-item-info h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.price-item-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}

.price-item.free .price-value {
    color: #4CAF50;
}

.price-unit {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
}

/* Protocol Blocks */
.protocol-block {
    background: var(--cream);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.protocol-block:last-child {
    margin-bottom: 0;
}

.protocol-block h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.protocol-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.protocol-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.protocol-steps li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.protocol-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Forfaits Section */
.forfaits-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--cream-dark);
}

.forfaits-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    justify-content: center;
}

.forfaits-title svg {
    color: var(--gold);
}

.forfaits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.forfait-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.forfait-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.forfait-card.highlight {
    border-color: var(--gold);
    background: linear-gradient(135deg, #FFFBF5 0%, var(--bg-white) 100%);
}

.forfait-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.forfait-content p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.5;
}

.forfait-alt {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Price CTA Section */
.price-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a252f 100%);
    text-align: center;
}

.price-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.price-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.price-cta-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Active Navigation Link */
.nav-menu a.active {
    color: var(--gold);
}

/* ================================
   RESPONSIVE - PRIX PAGE
   ================================ */

@media (max-width: 1200px) {
    .price-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .forfaits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .price-grid {
        grid-template-columns: 1fr;
    }

    .price-grid.three-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .price-nav {
        top: 60px;
    }

    .price-nav-wrapper {
        padding: 0 10px 10px;
    }

    .price-nav-item {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .price-section {
        padding: 60px 0;
    }

    .forfaits-grid {
        grid-template-columns: 1fr;
    }

    .forfaits-title {
        font-size: 1.5rem;
    }

    .price-card-header {
        padding: 20px;
    }

    .price-card-body {
        padding: 20px;
    }

    .price-item {
        flex-direction: column;
        gap: 10px;
    }

    .price-value {
        font-size: 1.2rem;
    }

    .price-item.free,
    .price-item.premium {
        margin: 0 -20px;
        padding: 15px 20px;
    }

    .price-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .forfait-price {
        font-size: 1.8rem;
    }

    .price-card-header h3 {
        font-size: 1.2rem;
    }
}
