/* ============================================
   Pricing Section (Premium)
   ============================================ */
#preise {
    background-color: #F9FAFB;
}

#preise .hdp-section-header {
    margin-bottom: 2.5rem;
}

.hdp-pricing-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hdp-pricing-slider {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.hdp-pricing-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card Styles */
.hdp-pricing-card {
    flex: 0 0 100%;
    background: white;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    padding: 1.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: visible;
}

@media (min-width: 768px) {
    .hdp-pricing-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .hdp-pricing-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
}

/* .hdp-pricing-card:hover {
    transform: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
} */

/* Popular Card Highlight */
.hdp-pricing-card:nth-child(2) {
    border: 2px solid #111827;
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

/* .hdp-pricing-card:nth-child(2):hover {
    transform: scale(1.02);
} */

/* Badge */
.hdp-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 4px;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: none;
    z-index: 20;
}

.hdp-pricing-badge-spacer {
    display: none;
}

/* Icons */
.hdp-pricing-icon {
    width: 100px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: relative;
    z-index: 1;
}

.hdp-pricing-card:hover .hdp-pricing-icon {
    transform: none;
    box-shadow: none;
}

.hdp-pricing-icon svg,
.hdp-pricing-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    color: var(--hdp-primary);
    display: block !important;
    margin: 0 !important;
}

/* Price */
.hdp-pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--hdp-dark);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    letter-spacing: -0.02em;
}

.hdp-pricing-currency {
    font-size: 1.5rem;
    margin-left: 4px;
    font-weight: 700;
}

.hdp-pricing-vat {
    font-size: 0.875rem;
    color: var(--hdp-gray-500);
    margin-bottom: 0.75rem;
}

/* Features */
.hdp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.hdp-pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.9375rem;
    font-weight: 500;
}

.hdp-pricing-feature-icon {
    width: 22px;
    height: 22px;
    background: #EF4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

/* Slider Navigation */
.hdp-pricing-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hdp-primary);
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hdp-pricing-slider-nav:hover {
    background: var(--hdp-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hdp-pricing-slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.5);
    color: var(--hdp-gray-400);
    transform: translateY(-50%) scale(1);
}

.hdp-pricing-slider-prev {
    left: -24px;
}

.hdp-pricing-slider-next {
    right: -24px;
}

@media (max-width: 1280px) {
    .hdp-pricing-slider-prev {
        left: 0;
    }

    .hdp-pricing-slider-next {
        right: 0;
    }
}