/* Compact Special Pricing Section */
.special-pricing-section {
    margin: 20px 0;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    border-left: 4px solid #28a745;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* Compact Header */
.pricing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.pricing-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-icon {
    width: 18px;
    height: 18px;
    fill: #28a745;
}

/* Compact Price Display */
.price-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.old-price {
    font-size: 16px;
    font-weight: 600;
    color: #dc3545;
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 24px;
    font-weight: 700;
    color: #28a745;
}

.new-price::after {
    content: '€';
    font-size: 16px;
    margin-left: 2px;
}

.promo-text {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
    background: rgba(40, 167, 69, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
}

/* Toggle Button */
.toggle-details-btn {
    background: none;
    border: 1px solid #0066cc;
    color: #0066cc;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.toggle-details-btn:hover {
    background: #0066cc;
    color: white;
}

.toggle-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.toggle-details-btn.expanded .toggle-arrow {
    transform: rotate(180deg);
}

/* Expandable Details */
.pricing-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
}

.pricing-details.show {
    max-height: 400px;
    margin-top: 16px;
}

.details-content {
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

/* Quick Benefits */
.quick-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2c3e50;
}

.benefit-icon {
    width: 16px;
    height: 16px;
    fill: #28a745;
    flex-shrink: 0;
}

/* Detailed List */
.detailed-list {
    background: rgba(40, 167, 69, 0.05);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
}

.detailed-list h4 {
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.detailed-list li {
    font-size: 13px;
    color: #2c3e50;
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.detailed-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: #28a745;
    border-radius: 50%;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: space-around;
    gap: 8px;
    margin-bottom: 16px;
}

.trust-badge {
    text-align: center;
    flex: 1;
}

.trust-badge-icon {
    width: 20px;
    height: 20px;
    fill: #0066cc;
    margin-bottom: 4px;
}

.trust-badge-text {
    font-size: 10px;
    color: #6c757d;
    font-weight: 600;
    line-height: 1.2;
}

/* CTA in Details */
.details-cta {
    text-align: center;
}

.details-cta-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.details-cta-btn:hover {
    color: white;
    background: linear-gradient(135deg, #218838 0%, #1c7430 100%);
    transform: translateY(-1px);
}

.cta-note {
    font-size: 11px;
    color: #6c757d;
    margin-top: 6px;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .pricing-card {
        margin: 0 16px;
        padding: 14px;
    }
    
    .pricing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .price-display {
        justify-content: space-between;
        width: 100%;
    }
    
    .quick-benefits {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 8px;
    }
    
    .trust-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        text-align: left;
    }
    
    .details-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        margin: 0 8px;
        padding: 12px;
    }
    
    .pricing-title {
        font-size: 14px;
    }
    
    .new-price {
        font-size: 20px;
    }
    
    .old-price {
        font-size: 14px;
    }
}