/**
 * IAP-IT Shop - Globales Stylesheet
 * Kaufpsychologisch optimiertes Design
 */

/* ==========================================================================
   CSS Variables - Shop spezifisch
   ========================================================================== */
:root {
    --shop-card-bg: rgba(255, 255, 255, 0.03);
    --shop-card-border: rgba(255, 255, 255, 0.08);
    --shop-card-hover-border: rgba(28, 172, 148, 0.4);
    --shop-card-radius: 12px;
    --shop-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shop-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   Animated Background - IT Theme
   ========================================================================== */
.shop-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shop-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(28, 172, 148, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(208, 9, 141, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(28, 172, 148, 0.04) 0%, transparent 30%);
    animation: bgPulse 20s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-2%, -2%) rotate(1deg); }
}

/* Grid Pattern Overlay */
.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(28, 172, 148, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 172, 148, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

/* ==========================================================================
   Shop Layout
   ========================================================================== */
.shop-main {
    min-height: 80vh;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HERO SLIDER - Automatisch wechselnd
   ========================================================================== */
.hero-slider-section {
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
}

.hero-slides {
    position: relative;
    min-height: 500px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-slides {
        min-height: auto;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-image {
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }
    .hero-text {
        padding: 0 !important;
    }
}

.hero-text {
    padding-right: 20px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(208, 9, 141, 0.2), rgba(28, 172, 148, 0.2));
    border: 1px solid rgba(208, 9, 141, 0.4);
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-badge .badge-discount {
    background: var(--color-secondary);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
}

.hero-badge .badge-text {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge-alt {
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.2), rgba(28, 172, 148, 0.1));
    border-color: rgba(28, 172, 148, 0.4);
}

.hero-badge-alt .badge-text {
    color: var(--color-primary);
}

.hero-category {
    display: block;
    font-size: 14px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--color-light);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 500px;
}

@media (max-width: 900px) {
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Hero Price Block - Kaufpsychologie */
.hero-price-block {
    margin-bottom: 28px;
}

.price-comparison {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .price-comparison {
        justify-content: center;
    }
}

.price-original {
    display: flex;
    flex-direction: column;
}

.price-original .price-label {
    font-size: 12px;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.price-original .price-value {
    font-size: 1.3rem;
    color: var(--color-gray);
    text-decoration: line-through;
    font-weight: 500;
}

.price-now {
    display: flex;
    flex-direction: column;
}

.price-now .price-label {
    font-size: 12px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.price-now .price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.price-single .price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.price-single .price-tax {
    display: block;
    font-size: 13px;
    color: var(--color-gray);
    margin-top: 4px;
}

.savings-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(28, 172, 148, 0.15);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 10px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 15px;
}

.savings-info svg {
    color: var(--color-primary);
}

/* Stock Warning - Verknappung */
.stock-warning {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    animation: pulseWarning 2s ease-in-out infinite;
}

@keyframes pulseWarning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .hero-actions {
        justify-content: center;
    }
}

.btn-large {
    padding: 18px 36px !important;
    font-size: 16px !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(28, 172, 148, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Floating Savings Badge */
.floating-savings {
    position: absolute;
    bottom: 10%;
    right: 5%;
    background: linear-gradient(135deg, var(--color-secondary), #e91e63);
    color: white;
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(208, 9, 141, 0.4);
    animation: pulseBadge 2s ease-in-out infinite;
    z-index: 2;
}

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

.floating-savings .savings-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.floating-savings .savings-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
}

/* Hero Slider Navigation */
.hero-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-dot.active {
    background: rgba(255, 255, 255, 0.2);
}

.slider-dot .dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--color-primary);
    border-radius: 2px;
}

.slider-dot.active .dot-progress {
    animation: dotProgress 6000ms linear;
}

@keyframes dotProgress {
    from { width: 0; }
    to { width: 100%; }
}

.slider-arrows {
    display: flex;
    gap: 8px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: rgba(28, 172, 148, 0.2);
    border-color: rgba(28, 172, 148, 0.4);
    color: var(--color-primary);
}

/* Simple Hero Fallback */
.hero-simple-section {
    text-align: center;
    padding: 80px 0;
}

.hero-simple-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-simple-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--color-light);
}

.hero-simple-content p {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 32px;
}

/* ==========================================================================
   HERO DEALS - 4 Lockangebote-Kacheln
   ========================================================================== */
.hero-deals-section {
    padding: 40px 0 50px;
    position: relative;
}

.hero-deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hero-deal-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(28, 172, 148, 0.2);
    border-radius: 16px;
    padding: 24px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.hero-deal-card:hover {
    border-color: var(--iap-teal);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(28, 172, 148, 0.15);
    background: rgba(28, 172, 148, 0.05);
}

/* Deal Badge */
.deal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--iap-teal);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deal-badge-service {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.deal-badge-highlight {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    font-size: 1rem;
    padding: 6px 14px;
    font-weight: 800;
}

/* Deal Image */
.deal-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    min-height: 120px;
}

.deal-image img {
    max-width: 140px;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-deal-card:hover .deal-image img {
    transform: scale(1.05);
}

/* Deal Icon (für Vereins-Kachel) */
.deal-icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    min-height: 120px;
}

.deal-icon svg {
    stroke: var(--iap-teal);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.hero-deal-card:hover .deal-icon svg {
    stroke: var(--color-light);
    transform: scale(1.1);
}

/* Deal Content */
.deal-content {
    width: 100%;
}

.deal-content h2 {
    color: var(--color-light);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.deal-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0 0 12px 0;
}

.deal-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    justify-content: center;
}

.deal-price .price-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.deal-price .price-value {
    color: var(--iap-teal);
    font-size: 1.6rem;
    font-weight: 800;
}

.deal-cta {
    color: var(--iap-teal);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 8px 0 0 0;
    transition: color 0.3s ease;
}

.hero-deal-card:hover .deal-cta {
    color: var(--color-light);
}

/* Vereins-Kachel speziell */
.hero-deal-vereine {
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.1), rgba(28, 172, 148, 0.03));
}

.hero-deal-vereine:hover {
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.2), rgba(28, 172, 148, 0.08));
}

/* Responsive Hero Deals */
@media (max-width: 1100px) {
    .hero-deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-deal-card {
        min-height: 260px;
    }
}

@media (max-width: 600px) {
    .hero-deals-section {
        padding: 30px 0 40px;
    }
    .hero-deals-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hero-deal-card {
        min-height: auto;
        padding: 20px;
        flex-direction: row;
        text-align: left;
        gap: 16px;
    }
    .deal-image,
    .deal-icon {
        min-height: auto;
        padding: 0;
        flex: 0 0 80px;
    }
    .deal-image img {
        max-width: 80px;
        max-height: 60px;
    }
    .deal-icon svg {
        width: 50px;
        height: 50px;
    }
    .deal-content {
        flex: 1;
    }
    .deal-content h2 {
        font-size: 1rem;
    }
    .deal-price {
        justify-content: flex-start;
    }
    .deal-badge {
        top: 8px;
        left: 8px;
        padding: 4px 10px;
        font-size: 0.65rem;
    }
}

/* ==========================================================================
   TRUST SECTION - Vertrauenselemente
   ========================================================================== */
.trust-section {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1000px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: 16px;
    transition: all 0.3s;
}

.trust-item:hover {
    border-color: var(--shop-card-hover-border);
    transform: translateY(-4px);
}

.trust-icon {
    width: 52px;
    height: 52px;
    background: rgba(28, 172, 148, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-text strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-light);
}

.trust-text span {
    font-size: 13px;
    color: var(--color-gray);
}

/* ==========================================================================
   CATEGORY SECTIONS - Mit Produkten
   ========================================================================== */
.category-section {
    padding: 80px 0;
    position: relative;
}

.category-section.section-alt {
    background: rgba(0, 0, 0, 0.2);
}

.category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(28, 172, 148, 0.2), transparent);
}

.section-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

@media (max-width: 800px) {
    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-intro {
        text-align: center;
    }
}

.section-intro {
    max-width: 600px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(28, 172, 148, 0.1);
    border-radius: 20px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--color-light);
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-text {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.7;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 20px;
    background: rgba(28, 172, 148, 0.1);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 10px;
    transition: all 0.3s;
}

.section-link:hover {
    background: rgba(28, 172, 148, 0.2);
    transform: translateX(5px);
}

/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.product-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
    .product-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .product-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .product-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PRODUCT CARDS - Kaufpsychologisch optimiert
   ========================================================================== */
.product-card {
    position: relative;
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: var(--shop-card-radius);
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--shop-card-hover-border);
    box-shadow: var(--shop-shadow-hover);
}

.product-card > a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Product Image */
.product-image {
    position: relative;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 2;
}

.badge-sale {
    background: linear-gradient(135deg, var(--color-secondary), #e91e63);
    color: white;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-primary), #15a085);
    color: white;
}

.product-stock-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 12px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

/* Product Info */
.product-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-light);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc {
    font-size: 13px;
    color: var(--color-gray);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Price */
.product-price {
    margin-top: auto;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.price-old {
    font-size: 13px;
    color: var(--color-gray);
    text-decoration: line-through;
}

.price-current {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
}

.price-savings {
    display: block;
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 4px;
}

.price-tax {
    display: block;
    font-size: 11px;
    color: var(--color-gray);
    margin-top: 4px;
}

/* Product Hover CTA */
.product-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.product-card:hover .product-hover {
    opacity: 1;
    transform: translateY(0);
}

.hover-cta {
    display: block;
    text-align: center;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
}

/* ==========================================================================
   WHY SECTION - Überzeugung
   ========================================================================== */
.why-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(28, 172, 148, 0.05) 0%, transparent 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.why-text .section-label {
    margin-bottom: 16px;
}

.why-text .section-title {
    margin-bottom: 20px;
}

.why-text .section-text {
    margin-bottom: 32px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list li svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-list li span {
    font-size: 15px;
    color: var(--color-light);
    line-height: 1.5;
}

/* Stats Grid */
.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--shop-card-hover-border);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--color-gray);
    text-align: center;
}

/* ==========================================================================
   CTA SECTION - Handlungsaufforderung
   ========================================================================== */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.1), rgba(208, 9, 141, 0.1));
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

@media (max-width: 800px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
}

.cta-content h2 {
    font-size: 1.8rem;
    color: var(--color-light);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1rem;
    color: var(--color-gray);
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 800px) {
    .cta-actions {
        justify-content: center;
    }
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--color-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-ghost:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ==========================================================================
   EXISTING STYLES - Backward Compatibility
   ========================================================================== */

/* Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.category-card {
    position: relative;
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: var(--shop-card-radius);
    padding: 40px 28px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--shop-card-hover-border);
    box-shadow: var(--shop-shadow-hover);
}

.category-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--color-primary);
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-light);
}

.category-card .product-count {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 16px;
    background: rgba(28, 172, 148, 0.15);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Filter Sidebar */
.products-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
}

.products-layout > section {
    margin: 0;
    padding: 0 !important;
}

@media (max-width: 1000px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
}

.shop-sidebar {
    position: sticky;
    top: 100px;
}

.filter-section {
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.filter-section h3 {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.filter-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--color-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.filter-list a:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-light);
}

.filter-list a.active {
    background: rgba(28, 172, 148, 0.15);
    color: var(--color-primary);
    font-weight: 600;
}

/* Sort Bar */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 14px 20px;
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: 12px;
}

.result-count {
    font-size: 14px;
    color: var(--color-gray);
}

.sort-select {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select label {
    font-size: 13px;
    color: var(--color-gray);
}

.sort-select select {
    padding: 8px 12px;
    background: #1a1a2e;
    border: 1px solid var(--shop-card-border);
    border-radius: 6px;
    color: var(--color-light);
    font-size: 13px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.sort-select select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.sort-select select option {
    background: #1a1a2e;
    color: var(--color-light);
    padding: 10px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--color-gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb .current {
    color: var(--color-primary);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.pagination a {
    padding: 12px 24px;
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: 10px;
    color: var(--color-light);
    text-decoration: none;
    transition: all 0.2s;
}

.pagination a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: var(--shop-card-radius);
}

.empty-state svg {
    width: 64px;
    height: 64px;
    color: var(--color-gray);
    margin-bottom: 24px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.3rem;
    color: var(--color-light);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--color-gray);
    margin-bottom: 24px;
}

/* Mobile Filter */
.mobile-filter-btn {
    display: none;
    width: 100%;
    padding: 14px 20px;
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: 12px;
    color: var(--color-light);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 1000px) {
    .mobile-filter-btn {
        display: flex;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        background: var(--color-dark);
        z-index: 999;
        overflow-y: auto;
        transition: left 0.3s;
        padding: 20px;
    }

    .shop-sidebar.open {
        left: 0;
    }
}

/* Sidebar Header (Mobile) */
.sidebar-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--shop-card-border);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-light);
}

@media (max-width: 1000px) {
    .sidebar-header {
        display: flex;
    }
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--color-gray);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.sidebar-close:hover {
    color: var(--color-light);
}

/* Filter Search */
.filter-search {
    display: flex;
    gap: 0;
}

.filter-search input {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--shop-card-border);
    border-radius: 8px 0 0 8px;
    color: var(--color-light);
    font-size: 14px;
}

.filter-search input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.filter-search input::placeholder {
    color: var(--color-gray);
}

.filter-search button {
    padding: 10px 14px;
    background: var(--color-primary);
    border: none;
    border-radius: 0 8px 8px 0;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.filter-search button:hover {
    background: #15a085;
}

/* Filter Overlay */
.filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

.filter-overlay.open {
    display: block;
}

/* Filter List Count Badge */
.filter-list .count {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    color: var(--color-gray);
}

.filter-list a.active .count {
    background: rgba(28, 172, 148, 0.3);
    color: var(--color-primary);
}

/* Old Hero Banner Styles (kept for compatibility) */
.hero-banner {
    padding: 40px 0 80px;
    position: relative;
    overflow: hidden;
}

.shop-section {
    position: relative;
    padding: 60px 0;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(28, 172, 148, 0.3), rgba(208, 9, 141, 0.3), transparent);
    margin: 60px 0;
}

/* Badges */
.badge {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-refurbished {
    background: rgba(99, 102, 241, 0.9);
    color: white;
}

.badge-discount {
    background: rgba(208, 9, 141, 0.9);
    color: white;
}

.badge-new {
    background: rgba(28, 172, 148, 0.9);
    color: white;
}

/* Featured Star - deprecated, using badge-featured now */

/* Product Card Content (old) */
.product-card-image {
    position: relative;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%);
    overflow: hidden;
    border-radius: var(--shop-card-radius) var(--shop-card-radius) 0 0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.5s;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

/* Wishlist Button (Herz oben rechts) */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s ease;
    z-index: 5;
}

.wishlist-btn:hover {
    background: var(--color-secondary);
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: var(--color-secondary);
}

.wishlist-btn.active svg {
    fill: white;
}

.wishlist-btn svg {
    pointer-events: none;
}

/* Product Card Footer */
.product-card-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

/* Add to Cart Button (immer sichtbar) */
.add-to-cart-btn {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 209, 178, 0.3);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn svg {
    pointer-events: none;
}

/* Featured Badge */
.badge-featured {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
}

/* Toast Notifications */
.shop-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 14px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-light);
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.shop-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.shop-toast-success {
    border-color: var(--color-primary);
}
.shop-toast-success svg {
    color: var(--color-primary);
}

.shop-toast-error {
    border-color: var(--color-secondary);
}
.shop-toast-error svg {
    color: var(--color-secondary);
}

.shop-toast-info {
    border-color: rgba(255, 255, 255, 0.3);
}

.product-card-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-link:hover .product-card-title {
    color: var(--color-primary);
}

.product-card-category {
    font-size: 10px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-light);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Product Actions - Zwei Buttons (Ansehen + Warenkorb)
   ========================================================================== */
.product-actions {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px;
    background: rgba(0, 0, 0, 0.2);
}

.btn-view,
.btn-cart {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-view {
    background: rgba(255,255,255,0.08);
    color: var(--color-light);
    border: 1px solid var(--shop-card-border);
}

.btn-view:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}

.btn-cart {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(28,172,148,0.4);
}

/* Product Link Wrapper - für korrektes Flex-Layout */
.product-link-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Refurbished Badge */
.badge-refurb {
    background: linear-gradient(135deg, #2196f3, #03a9f4);
    color: white;
}

/* ==========================================================================
   Cart Icon Animation - Puls bei "In den Warenkorb"
   ========================================================================== */
@keyframes cartPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(255, 200, 0, 0));
    }
    25% {
        transform: scale(1.3);
        filter: drop-shadow(0 0 15px rgba(255, 200, 0, 0.8));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 10px rgba(255, 200, 0, 0.5));
    }
    75% {
        transform: scale(1.25);
        filter: drop-shadow(0 0 12px rgba(255, 200, 0, 0.6));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(255, 200, 0, 0));
    }
}

/* Cart Animation - Desktop (.nav-icon-link) und Legacy (.nav-cart) */
.nav-cart.cart-added,
.nav-icon-link.cart-added {
    animation: cartPulse 0.6s ease-out;
}

.nav-cart.cart-added svg,
.nav-icon-link.cart-added svg {
    stroke: #ffc800 !important;
    filter: drop-shadow(0 0 12px rgba(255, 200, 0, 0.8));
}

.nav-cart.cart-added .cart-count,
.nav-icon-link.cart-added .cart-count {
    background: #ffc800 !important;
    color: #000 !important;
    animation: cartPulse 0.6s ease-out;
}

/* Cart Animation - Mobile Icons */
.nav-mobile-icon.cart-added {
    animation: cartPulse 0.6s ease-out;
    background: rgba(255, 200, 0, 0.2) !important;
    border-color: #ffc800 !important;
}

.nav-mobile-icon.cart-added svg {
    stroke: #ffc800 !important;
    filter: drop-shadow(0 0 12px rgba(255, 200, 0, 0.8));
}

.nav-mobile-icon.cart-added .cart-count-mobile {
    background: #ffc800 !important;
    color: #000 !important;
    animation: cartPulse 0.6s ease-out;
}
.btn-checkout { text-align: center; }
.btn-checkout { display: inline-flex; justify-content: center; align-items: center; }

/* ==========================================================================
   Spec Highlights - Key-Specs mit Icons in Kurzbeschreibungen
   ========================================================================== */
.spec-highlight {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 12px;
    padding: 4px 10px;
    background: rgba(28, 172, 148, 0.1);
    border: 1px solid rgba(28, 172, 148, 0.2);
    border-radius: 6px;
    margin: 2px 4px 2px 0;
    white-space: nowrap;
}

.spec-highlight svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.9;
}

/* Specs in Produktkarten (kompakter) */
.product-card .spec-highlight {
    font-size: 11px;
    padding: 3px 8px;
    margin: 1px 3px 1px 0;
}

/* Specs auf Produktdetailseite */
.product-excerpt .spec-highlight {
    font-size: 13px;
    padding: 5px 12px;
}

/* Hero-Sektion Specs */
.hero-description .spec-highlight {
    font-size: 14px;
    padding: 6px 14px;
    background: rgba(28, 172, 148, 0.15);
}

/* ==========================================================================
   Club Banner - Vereinsrabatt
   ========================================================================== */
.club-banner {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.15) 0%, rgba(10, 1, 24, 0.9) 100%);
    border-top: 1px solid rgba(28, 172, 148, 0.2);
    border-bottom: 1px solid rgba(28, 172, 148, 0.2);
}

.club-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.club-banner-text {
    flex: 1;
    min-width: 300px;
}

.club-banner-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.club-banner h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-light);
    margin: 0 0 8px;
}

.club-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin: 0;
}

.club-banner-cta {
    flex-shrink: 0;
}

.club-banner-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.club-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 172, 148, 0.4);
}

@media (max-width: 768px) {
    .club-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .club-banner h2 {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   SERVICE TABS - Globales Template für IT-Dienstleistungen
   ========================================================================== */

.service-tabs {
    margin-top: 40px;
}

.service-tab-nav {
    display: flex;
    gap: 4px;
    background: rgba(0,0,0,0.3);
    padding: 6px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.service-tab {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.service-tab:hover {
    color: var(--color-light);
    background: rgba(255,255,255,0.05);
}

.service-tab.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
}

/* Tab Content */
.service-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.service-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Leistungen Tab */
.service-leistungen {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 30px 35px;
}

.service-leistungen h3 {
    color: var(--color-light);
    font-size: 20px;
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.service-leistungen h4 {
    color: var(--color-primary);
    font-size: 17px;
    margin: 25px 0 12px 0;
}

.service-leistungen p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.service-leistungen ul {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.service-leistungen li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.service-leistungen li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(28,172,148,0.4);
}

/* Service Hinweis Box */
.service-hinweis {
    background: rgba(102,126,234,0.1);
    border: 1px solid rgba(102,126,234,0.25);
    border-left: 4px solid #667eea;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 25px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.6;
}

.service-hinweis strong {
    color: #a8b4ff;
}

/* Prozess Steps */
.service-prozess {
    display: grid;
    gap: 20px;
}

.prozess-step {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: all 0.3s;
}

.prozess-step:hover {
    border-color: var(--color-primary);
    transform: translateX(5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--color-light);
    margin: 0 0 8px 0;
    font-size: 17px;
}

.step-content p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
}

/* Service FAQ */
.service-faq {
    display: grid;
    gap: 15px;
}

.service-faq .faq-item {
    padding: 20px 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: border-color 0.3s;
}

.service-faq .faq-item:hover {
    border-color: rgba(28,172,148,0.3);
}

.service-faq .faq-item h4 {
    color: var(--color-primary);
    margin: 0 0 10px 0;
    font-size: 16px;
}

.service-faq .faq-item p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
}

/* Buchung Section */
.service-buchung {
    display: grid;
    gap: 25px;
}

.buchung-info {
    text-align: center;
    padding: 35px;
    background: linear-gradient(135deg, rgba(28,172,148,0.12), rgba(32,201,151,0.05));
    border: 1px solid rgba(28,172,148,0.25);
    border-radius: 16px;
}

.buchung-info h4 {
    color: var(--color-light);
    font-size: 24px;
    margin: 0 0 8px 0;
}

.buchung-info p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 15px;
}

.buchung-kontakt {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.kontakt-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: all 0.3s;
}

.kontakt-item:hover {
    border-color: var(--color-primary);
    background: rgba(28,172,148,0.05);
}

.kontakt-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.kontakt-item strong {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.kontakt-item span {
    color: var(--color-light);
    font-size: 15px;
    font-weight: 600;
}

.buchung-servicegebiet {
    padding: 25px;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(102,126,234,0.05));
    border: 1px solid rgba(102,126,234,0.2);
    border-radius: 12px;
    text-align: center;
}

.buchung-servicegebiet h5 {
    color: #a8b4ff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.buchung-servicegebiet p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.buchung-hinweis {
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    text-align: center;
}

.buchung-hinweis p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.buchung-hinweis strong {
    color: var(--color-light);
}

/* Service Tabs Responsive */
@media (max-width: 900px) {
    .service-tab-nav {
        flex-wrap: wrap;
    }
    .service-tab {
        flex: 1 1 45%;
        padding: 12px 16px;
        font-size: 13px;
    }
    .buchung-kontakt {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .service-tab {
        flex: 1 1 100%;
    }
    .prozess-step {
        flex-direction: column;
        text-align: center;
    }
    .step-number {
        margin: 0 auto;
    }
    .service-leistungen {
        padding: 20px;
    }
}
