/* ========================================
   Product Detail Page - Premium Design System
   Version 2.0 - Strukturiert & Professionell
======================================== */

/* ========================================
   1. PAGE LAYOUT
======================================== */
.product-detail-page {
    padding-top: 64px;
    /* Höhe der Navbar */
    background: #fff;
    min-height: 100vh;
}

.product-detail-page .container {
    max-width: 1200px;
    padding-bottom: var(--space-1xl);
}

/* ========================================
   2. BREADCRUMB NAVIGATION
======================================== */
.breadcrumb-nav {
    margin-bottom: var(--space-xl);
    padding: var(--space-md) 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xs);
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
    padding: 4px 8px;
    border-radius: var(--radius-md);
}

.breadcrumb-link:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

.breadcrumb-link svg {
    opacity: 0.7;
}

.breadcrumb-separator {
    color: var(--gray-300);
    display: flex;
}

.breadcrumb-current {
    color: var(--gray-800);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

/* ========================================
   3. PRODUCT HERO HEADER (Full Width)
======================================== */
.product-hero {
    position: relative;
    padding: 30px 0 40px;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 50%, #fff 100%);
    overflow: hidden;
    width: 100%;
    margin-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--gray-100);
}

.product-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.product-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Breadcrumb Anpassung im Hero */
.product-hero .breadcrumb-nav {
    margin-bottom: var(--space-lg);
    padding: 0;
}

.product-hero .breadcrumb-link {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-hero .breadcrumb-current {
    color: var(--gray-600);
}

.product-hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testsieger Ribbon - Subtle & Clean */
.testsieger-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #b45309;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
    border: 1.5px solid #fde68a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testsieger-ribbon.ribbon-blue {
    color: var(--primary-700);
    border-color: var(--primary-200);
    background: #fff;
}

.testsieger-ribbon.ribbon-green {
    color: #047857;
    border-color: #a7f3d0;
    background: #fff;
}

.ribbon-icon {
    font-size: 1.15rem;
}


/* Hero Title */
.product-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    max-width: 850px;
    letter-spacing: -0.5px;
}

/* Meta Tags */
.product-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.category-tag {
    color: var(--primary-700);
}

.score-tag {
    color: #92400e;
}

/* Hero Excerpt */
.product-hero-excerpt {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 800px;
}

/* ========================================
   4. PRODUCT LAYOUT (2 Columns)
======================================== */
.product-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    margin-bottom: var(--space-2xl);
    align-items: start;
    width: 100%;
    overflow: hidden;
    /* Prevent spillover */
}

.product-gallery {
    position: relative;
    z-index: 500;
    /* Viel höher als Info-Spalte */
}

.product-info {
    position: relative;
    /* Kein z-index hier, damit Galerie immer oben liegt */
}

@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* ========================================
   5. GALLERY CARD
======================================== */
.gallery-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
    width: 100%;
    max-width: 100%;
}

.gallery-card .main-image-container {
    position: relative;
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    width: 100%;
}

.main-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: zoom-in;
    width: 100%;
    display: flex;
    justify-content: center;
}

.gallery-card .main-image {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    max-height: 500px;
    object-fit: contain;
}

.gallery-card .main-image:hover {
    transform: none;
}

/* Image Placeholder */
.gallery-card .image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    height: 350px;
    color: var(--gray-400);
}

.gallery-card .image-placeholder svg {
    opacity: 0.5;
}

/* Floating Score Badge */
.floating-score-badge {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 10;
    border: 1px solid var(--gray-100);
    pointer-events: none;
    /* Verhindert Blockieren des Zooms */
}

.score-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.35);
}

.score-number {
    font-size: var(--font-size-lg);
    font-weight: 800;
    color: white;
}

.score-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Zoom Hint */
.zoom-hint {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: var(--radius-lg);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    opacity: 0;
    transition: opacity var(--transition-base);
    border: 1px solid var(--gray-100);
    pointer-events: none;
    /* Verhindert Blockieren des Zooms */
}

.gallery-card:hover .zoom-hint {
    opacity: 1;
}

/* Zoom Elements */
.zoom-lens {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--primary-500);
    background: rgba(14, 165, 233, 0.15);
    cursor: crosshair;
    display: none;
    z-index: 1001;
    pointer-events: none;
    border-radius: var(--radius-md);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.zoom-result {
    position: absolute;
    top: 0;
    left: calc(100% + 15px);
    width: 600px;
    /* Größeres Zoom-Fenster */
    height: 600px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    display: none;
    z-index: 10000;
    background-repeat: no-repeat;
    pointer-events: none;
    background-color: white;
}

@media (max-width: 1200px) {
    .zoom-result {
        display: none !important;
        /* Kein Zoom auf kleineren Bildschirmen neben dem Bild */
    }
}

/* Thumbnail Strip */
.thumbnail-strip {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}

.thumbnail-strip::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-strip::-webkit-scrollbar-track {
    background: transparent;
}

.thumbnail-strip::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.thumb-item {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition-fast);
}

.thumb-item:hover {
    border-color: var(--primary-300);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.thumb-item.active {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 100%;
    /* Sicherstellen, dass Höhe nicht überschritten wird */
    max-width: 100%;
    /* Sicherstellen, dass Breite nicht überschritten wird */
}

/* ========================================
   6. INFO CARDS
======================================== */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Gap komplett entfernt */
}

.info-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 10px 14px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    margin-bottom: 8px;
}

.info-card:last-child {
    margin-bottom: 0;
}

.info-card:hover {
    box-shadow: var(--shadow-md);
}

/* Price Card - Premium */
.price-card {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.price-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.price-label {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    font-weight: 500;
    color: #fff;
}

.price-availability {
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: var(--radius-lg);
}

.price-value-wrapper {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.price-value {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    display: block;
    line-height: 1.1;
    color: #fff;
    /* Weiße Schriftfarbe für den Preis */
}

.price-shipping {
    font-size: var(--font-size-sm);
    opacity: 0.7;
}

/* Animated CTA Button */
.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: 16px 24px;
    background: white;
    color: var(--primary-700);
    font-size: var(--font-size-base);
    font-weight: 700;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta .btn-icon {
    transition: transform var(--transition-base);
}

.btn-cta:hover .btn-icon {
    transform: translateX(4px);
}

.price-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.7;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* Card Header Row */
.card-header-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-100);
}

.card-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--gray-800);
    margin: 0;
}

.card-title svg {
    color: var(--primary-500);
}

/* Rating Card */
.rating-card .rating-display {
    margin-bottom: 10px;
}

/* Test Factors - Premium Design */
.test-factors {
    margin: 12px 0 8px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.test-factors-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0 0 8px 0;
    text-transform: none;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--primary-100);
}

.test-factors-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 14px;
    background: linear-gradient(180deg, var(--primary-500), var(--primary-600));
    border-radius: 2px;
}

.test-factors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.test-factor-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 999px;
    padding: 6px 10px;
    transition: all var(--transition-fast);
}

.test-factor-chip:hover {
    border-color: var(--primary-200);
    background: var(--primary-50);
}

.chip-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.2;
}

.chip-score {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-700);
    background: white;
    border: 1px solid var(--primary-100);
    padding: 2px 8px;
    border-radius: 999px;
    line-height: 1.1;
}

/* Responsive Design für Test-Faktoren */
@media (max-width: 768px) {
    .test-factors-list {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .test-factor-chip {
        width: 100%;
        justify-content: space-between;
    }
}

.rating-hint {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin: 0;
}

/* Overview Card */
.overview-text {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Specs Card */
.specs-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    border-bottom: 1px solid var(--gray-50);
}

.spec-row:nth-child(even) {
    background: var(--gray-50);
}

.spec-row:hover {
    background: var(--primary-50);
    transform: translateX(5px);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-key {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--gray-600);
}

.spec-value {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--gray-900);
}

/* ========================================
   7. CONTENT SECTIONS
======================================== */
.content-section {
    margin-bottom: var(--space-2xl);
}

.section-header-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.section-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.section-icon svg {
    color: white;
}

.section-title-group {
    flex: 1;
}

.section-heading {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.section-subtitle {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin: 0;
}

.section-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.section-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Description Content */
.description-content {
    font-size: var(--font-size-base);
}

/* ========================================
   8. PROS & CONS
======================================== */
.pros-cons-section .pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .product-layout {
        display: block;
        width: 100%;
    }

    .gallery-card {
        padding: var(--space-sm);
        position: static;
        margin-bottom: var(--space-lg);
        width: 100%;
    }

    .gallery-card .main-image-container {
        padding: var(--space-md);
        margin-bottom: var(--space-md);
    }

    .pros-cons-section .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

.pros-section,
.cons-section {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.pros-section::before,
.cons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.pros-section::before {
    background: linear-gradient(180deg, var(--green), #34d399);
}

.cons-section::before {
    background: linear-gradient(180deg, #ef4444, #f87171);
}

.pros-section h3,
.cons-section h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.pros-section h3 {
    color: var(--green);
}

.cons-section h3 {
    color: #ef4444;
}

.pros-list li,
.cons-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-sm);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.pros-list li:hover,
.cons-list li:hover {
    transform: translateX(4px);
}

.pros-list li:last-child,
.cons-list li:last-child {
    margin-bottom: 0;
}

/* ========================================
   9. CONCLUSION SECTION
======================================== */
.conclusion-section .conclusion-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    border: 1px solid var(--primary-200);
    overflow: hidden;
}

.conclusion-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
}

.deco-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
}

.deco-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -75px;
}

.conclusion-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.conclusion-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.conclusion-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.conclusion-icon svg {
    color: var(--primary-600);
}

.conclusion-title {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
}

.conclusion-body {
    margin: 0 auto;
    max-width: 800px;
}

.conclusion-text {
    font-size: var(--font-size-sm);
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

/* Lieferumfang Styles */
.delivery-scope-section {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    margin: var(--space-lg) 0;
    text-align: left;
}

.delivery-scope-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--gray-800);
    margin: 0 0 var(--space-md) 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary-100);
}

.delivery-scope-title::before {
    content: '📦';
    font-size: 1.2rem;
}

.delivery-scope-content {
    font-size: var(--font-size-sm);
    color: var(--gray-700);
    line-height: 1.6;
}

.delivery-scope-content ul {
    margin: var(--space-sm) 0;
    padding-left: var(--space-lg);
}

.delivery-scope-content li {
    margin-bottom: var(--space-xs);
}

.delivery-scope-content li:last-child {
    margin-bottom: 0;
}

.recommendation-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
}

.rec-icon {
    font-size: 1.25rem;
}

.rec-text {
    font-weight: 700;
    color: var(--primary-700);
}

.conclusion-cta {
    margin-top: var(--space-xl);
}

.btn-conclusion {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    font-size: var(--font-size-base);
    font-weight: 700;
    border-radius: var(--radius-xl);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
    transition: all var(--transition-base);
}

.btn-conclusion:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.45);
}

/* ========================================
   10. RESPONSIVE ADJUSTMENTS
======================================== */
@media (max-width: 1024px) {
    .gallery-card {
        position: static;
    }

    .product-hero {
        padding: 40px 0 30px;
    }
}

@media (max-width: 768px) {
    .product-hero-title {
        font-size: 1.75rem;
    }

    .section-header-row {
        flex-direction: column;
        gap: var(--space-md);
    }

    .conclusion-wrapper {
        padding: var(--space-xl);
    }

    .info-card {
        padding: var(--space-md);
    }
}

/* ========================================
   11. ANIMATIONS & REVEAL
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay-Klassen für gestaffeltes Einblenden */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

@media (max-width: 480px) {
    .product-meta-tags {
        flex-direction: column;
    }

    .meta-tag {
        width: 100%;
        justify-content: center;
    }

    .breadcrumb-current {
        display: block;
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ========================================
   12. PRODUCT DETAIL FAQ SECTION
   Spezifische Styles für die Produktdetailseite
   Verwendet eindeutige Klassennamen, um Konflikte mit der Startseite zu vermeiden
======================================== */
.product-faq-section .product-faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.product-faq-item {
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

.product-faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-faq-question {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    cursor: pointer;
    background: white;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-fast);
}

.product-faq-question:hover {
    background: var(--gray-50);
}

.product-faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: var(--font-size-sm);
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.25);
}

.product-faq-question-text {
    flex: 1;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
    transition: color var(--transition-fast);
}

.product-faq-question:hover .product-faq-question-text {
    color: var(--primary-600);
}

.product-faq-toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.product-faq-item.active .product-faq-toggle {
    transform: rotate(180deg);
    color: var(--primary-500);
}

.product-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    background: var(--gray-50);
}

.product-faq-item.active .product-faq-answer {
    max-height: 1000px;
}

.product-faq-answer-content {
    padding: var(--space-lg);
    font-size: var(--font-size-base);
    color: var(--gray-700);
    line-height: 1.7;
}

.product-faq-answer-content p {
    margin: 0 0 var(--space-md) 0;
}

.product-faq-answer-content p:last-child {
    margin-bottom: 0;
}

.product-no-faqs-message {
    text-align: center;
    padding: var(--space-2xl);
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
}

.product-no-faqs-message p {
    color: var(--gray-500);
    font-size: var(--font-size-base);
    margin: 0;
}

/* FAQ Animation für Produktdetailseite */
@keyframes fadeInProductFAQ {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-faq-item {
    animation: fadeInProductFAQ 0.3s ease-out forwards;
}

.product-faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.product-faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.product-faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.product-faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.product-faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.product-faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

.product-faq-item:nth-child(7) {
    animation-delay: 0.7s;
}

.product-faq-item:nth-child(8) {
    animation-delay: 0.8s;
}

.product-faq-item:nth-child(9) {
    animation-delay: 0.9s;
}

.product-faq-item:nth-child(10) {
    animation-delay: 1.0s;
}

/* Responsive FAQ für Produktdetailseite */
@media (max-width: 768px) {
    .product-faq-question {
        padding: var(--space-md);
        gap: var(--space-sm);
    }

    .product-faq-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .product-faq-question-text {
        font-size: var(--font-size-sm);
    }

    .product-faq-answer-content {
        padding: var(--space-md);
        font-size: var(--font-size-sm);
    }
}
