/* ════════════════════════════════════════════════════════════════
   CREDITS PRICING PAGE – DirtyDeluxe
   SSOT Preisliste Styles
   ════════════════════════════════════════════════════════════════ */

/* Header Section */
.cp-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.cp-header__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-ivory);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cp-header__subtitle {
    font-size: 1rem;
    color: var(--text-ivory);
    opacity: 0.8;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Credit Notice (Header) */
.cp-credit-notice {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.cp-credit-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 8px;
    padding: 12px 20px;
    color: var(--text-ivory);
}

.cp-credit-icon {
    font-size: 1.5rem;
}

.cp-credit-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cp-credit-text strong {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
}

.cp-credit-text span {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Container */
.cp-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* Grid Layout: 2 Columns */
.cp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .cp-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Overrides */
.cp-card {
    max-width: 100%;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cp-card-header {
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.cp-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-ivory);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cp-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Intro Text */
.cp-intro-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-ivory);
    opacity: 0.9;
    margin: 0;
}

.cp-intro-text--highlight {
    font-size: 1.05rem;
    color: var(--text-ivory);
    opacity: 1;
    font-weight: 500;
    border-left: 3px solid var(--index-red);
    padding-left: 15px;
    margin: 15px 0;
}

/* Sections */
.cp-section {
    padding: 15px 0;
    border-top: 1px solid rgba(220, 38, 38, 0.15);
}

.cp-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.cp-section-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cp-section-title--boost {
    color: #fbbf24;
}

.cp-section-title--featured {
    color: #f59e0b;
}

.cp-section-title--unlock {
    color: var(--index-red);
}

.cp-section-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-ivory);
    opacity: 0.85;
    margin: 0;
}

/* Price List (Verkäufer) */
.cp-price-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.cp-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(220, 38, 38, 0.05);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.cp-price-item:last-child {
    border-bottom: none;
}

.cp-price-item--last {
    background: rgba(220, 38, 38, 0.1);
}

.cp-price-range {
    font-size: 0.9rem;
    color: var(--text-ivory);
    opacity: 0.9;
}

.cp-price-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Courier New', monospace;
}

/* Feature List (Käufer) */
.cp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cp-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-ivory);
}

.cp-check {
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Unlock Box (Käufer) */
.cp-unlock-box {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 8px;
    padding: 15px;
}

.cp-unlock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.cp-unlock-row:last-child {
    border-bottom: none;
}

.cp-unlock-row--total {
    margin-top: 5px;
    padding-top: 12px;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
}

.cp-unlock-label {
    font-size: 0.9rem;
    color: var(--text-ivory);
    opacity: 0.8;
}

.cp-unlock-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-ivory);
}

.cp-unlock-row--total .cp-unlock-value {
    color: var(--success-green);
}

/* Euro Hint */
.cp-euro-hint {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 400;
    margin-left: 4px;
}

/* Info Boxes */
.cp-info-box {
    margin-top: auto;
    padding: 15px;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 8px;
    border-left: 3px solid var(--index-red);
}

.cp-info-box--accent {
    border-left-color: var(--gold);
    background: rgba(251, 191, 36, 0.08);
}

.cp-info-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--index-red);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.cp-info-box--accent .cp-info-title {
    color: var(--gold);
}

.cp-info-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-ivory);
    opacity: 0.85;
    margin: 0;
}

/* Small Variant für Info Text */
.cp-info-text--small {
    margin-top: 8px;
    font-size: 0.85rem;
}

/* Footer Box */
.cp-footer-box {
    margin-top: 30px;
}

.cp-footer-card {
    max-width: 100%;
    margin: 0;
    text-align: center;
}

.cp-footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--index-red);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cp-footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-ivory);
    opacity: 0.8;
    margin: 0;
}

.cp-usp-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cp-usp-list li {
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
    color: var(--text-ivory);
    opacity: 0.9;
}

.cp-usp-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.cp-footer-closing {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    padding-top: 15px;
}

.cp-credit-footer-hint {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    font-size: 0.85rem;
    opacity: 0.8;
    color: var(--text-ivory);
}

.cp-credit-footer-hint span {
    color: var(--gold);
    font-weight: 600;
}

/* Back Navigation */
.cp-back-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .cp-header__title {
        font-size: 1.5rem;
    }
    
    .cp-card-title {
        font-size: 1.1rem;
    }
    
    .cp-grid {
        gap: 20px;
    }
    
    .cp-price-item {
        padding: 10px 12px;
    }
    
    .cp-unlock-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
}

/* Subtle Glow Effects */
.cp-card {
    position: relative;
}

.cp-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(145deg, 
        rgba(220, 38, 38, 0.1) 0%, 
        transparent 50%, 
        rgba(220, 38, 38, 0.05) 100%);
    border-radius: 12px;
    z-index: -1;
    pointer-events: none;
}