/* ============================================
   PRODUKT DETAIL SEITE - MODERN & PREMIUM
   ============================================ */

/* ===== Page Container ===== */
.product-detail-page {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.product-detail-container {
    padding: 3rem 0;
}

/* ===== Intro Section ===== */
.product-intro-section {
    margin-bottom: 5rem;
}

.product-intro-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.product-intro-label {
    display: inline-block;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #718096;
    background: rgba(0, 150, 255, 0.1);
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-intro-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.product-intro-text {
    font-size: 1.063rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Features Grid */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.product-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1) 0%, rgba(0, 150, 255, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0096ff;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.product-feature-content h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.product-feature-content p {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

/* Meta Grid */
.product-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.product-meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.product-meta-item:hover {
    background: rgba(0, 150, 255, 0.03);
    border-color: rgba(0, 150, 255, 0.2);
    transform: translateY(-2px);
}

.product-meta-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1) 0%, rgba(0, 150, 255, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0096ff;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.product-meta-text {
    flex: 1;
}

.product-meta-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #718096;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.product-meta-value {
    font-size: 0.938rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    line-height: 1.3;
}

/* ===== Pricing Sidebar ===== */
.product-pricing-sidebar {
    background: linear-gradient(135deg, #0096ff 0%, #0077cc 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 150, 255, 0.3);
    height: 100%;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.product-pricing-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.product-pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.813rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.product-pricing-header {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.product-pricing-label {
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: block;
}

.product-pricing-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.product-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.product-pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.product-pricing-period {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.9);
}

.product-pricing-note {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.product-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
}

.product-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.95);
}

.product-pricing-features li:last-child {
    margin-bottom: 0;
}

.product-pricing-features i {
    color: #22c55e;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.product-pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.product-pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-pricing-btn--primary {
    background: #ffffff;
    color: #0096ff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-pricing-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    color: #0077cc;
    text-decoration: none;
}

.product-pricing-btn--outline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.product-pricing-btn--outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    text-decoration: none;
}

.product-pricing-info {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.product-pricing-info i {
    margin-right: 0.5rem;
}

/* ===== Spectrum Section ===== */
.product-spectrum-section {
    margin-bottom: 5rem;
}

.product-spectrum-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.product-section-header {
    margin-bottom: 3rem;
}

.product-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.product-section-subtitle {
    font-size: 1.125rem;
    color: #718096;
    margin: 0;
    line-height: 1.7;
}

.product-spectrum-block {
    margin-bottom: 2rem;
}

.product-spectrum-block:last-child {
    margin-bottom: 0;
}

.product-spectrum-block-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1rem 0;
}

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

.product-spectrum-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.938rem;
    color: #4a5568;
    line-height: 1.6;
}

.product-spectrum-list li:last-child {
    margin-bottom: 0;
}

.product-spectrum-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 150, 255, 0.1);
    color: #0096ff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ===== Modern Slider Section ===== */
.product-gallery-section {
    margin-bottom: 5rem;
}

.product-gallery-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.product-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Slider Container */
.product-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-slider-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.product-slider-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
}

/* Slider Image - DEUTLICH KLEINER */
.product-slider-image {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    max-height: 400px; /* WICHTIG: Maximale Höhe */
}

.product-slider-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-slider-image img {
    width: 100%;
    height: 100%;
    max-height: 400px; /* WICHTIG: Maximale Höhe */
    object-fit: contain; /* Bild wird komplett sichtbar */
    display: block;
    transition: transform 0.5s ease;
}

.product-slider-image:hover img {
    transform: scale(1.02);
}

/* Slider Info */
.product-slider-info {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0.5rem 0;
}

.product-slider-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0096ff 0%, #0077cc 100%);
    color: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 150, 255, 0.3);
}

.product-slider-text-content {
    flex: 1;
}

.product-slider-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.product-slider-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0096ff;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.product-slider-text {
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Slider Controls */
.product-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.product-slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: #1a202c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    flex-shrink: 0;
}

.product-slider-btn:hover {
    background: #0096ff;
    color: #ffffff;
    border-color: #0096ff;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 150, 255, 0.3);
}

.product-slider-btn:active {
    transform: scale(0.95);
}

/* Slider Dots */
.product-slider-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.product-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.product-slider-dot:hover {
    background: rgba(0, 150, 255, 0.5);
    transform: scale(1.3);
}

.product-slider-dot.is-active {
    width: 24px;
    border-radius: 4px;
    background: #0096ff;
}

/* Progress Bar */
.product-slider-progress {
    height: 3px;
    background: rgba(0, 0, 0, 0.08);
    margin-top: 1.25rem;
    border-radius: 2px;
    overflow: hidden;
}

.product-slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0096ff 0%, #0077cc 100%);
    width: 0%;
    transition: width 5000ms linear;
    border-radius: 2px;
}

/* ===== Aerate Section ===== */
.product-aerate-section {
    margin-bottom: 5rem;
}

.product-aerate-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.product-aerate-item {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-aerate-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.product-aerate-image {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.product-aerate-image figure {
    margin: 0;
}

.product-aerate-image img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.product-aerate-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-aerate-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1rem 0;
}

.product-aerate-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-aerate-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0096ff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.product-aerate-download:hover {
    gap: 0.75rem;
    color: #0077cc;
    text-decoration: underline;
}

/* ===== Final Section ===== */
.product-final-section {
    margin-bottom: 5rem;
}

.product-requirements-card,
.product-benefits-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.product-requirements-title,
.product-benefits-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1rem 0;
}

.product-requirements-subtitle {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.product-requirements-table {
    margin-top: 2rem;
}

.product-requirements-table table {
    font-size: 0.938rem;
}

.product-requirements-table thead th {
    background: rgba(0, 150, 255, 0.05);
    color: #1a202c;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.875rem 1rem;
    border: none;
}

.product-requirements-table tbody td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #4a5568;
}

.product-requirements-table tbody tr:last-child td {
    border-bottom: none;
}

.product-requirements-table tbody td:first-child {
    font-weight: 600;
    color: #1a202c;
}

.product-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.product-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    font-size: 0.938rem;
    color: #4a5568;
    transition: all 0.2s ease;
}

.product-benefits-list li:hover {
    background: rgba(0, 150, 255, 0.03);
    border-color: rgba(0, 150, 255, 0.2);
}

.product-benefits-list li:last-child {
    margin-bottom: 0;
}

.product-benefits-list i {
    color: #22c55e;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.product-benefits-cta {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.product-benefits-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1rem 0;
}

.product-benefits-cta-text {
    font-size: 1rem;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-benefits-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #ffffff;
    font-size: 1.063rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.product-benefits-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* ===== Lightbox ===== */
.product-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-lightbox.open {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.product-lb-inner {
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.product-lb-img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-lb-cap {
    color: #ffffff;
    font-size: 1rem;
    text-align: center;
    max-width: 800px;
    padding: 0 1rem;
}

.product-lb-close,
.product-lb-prev,
.product-lb-next {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10000;
}

.product-lb-close:hover,
.product-lb-prev:hover,
.product-lb-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.product-lb-close {
    top: 2rem;
    right: 2rem;
}

.product-lb-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.product-lb-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.product-lb-btn-icon {
    line-height: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 1199.98px) {
    .product-meta-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-slider-wrapper {
        max-width: 800px;
    }

    .product-slider-image {
        max-height: 350px;
    }

    .product-slider-image img {
        max-height: 350px;
    }

    .product-slider-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 991.98px) {
    .product-detail-container {
        padding: 2.5rem 0;
    }

    .product-intro-section,
    .product-spectrum-section,
    .product-gallery-section,
    .product-aerate-section,
    .product-final-section {
        margin-bottom: 3.5rem;
    }

    .product-intro-card,
    .product-pricing-sidebar,
    .product-spectrum-card,
    .product-gallery-card,
    .product-aerate-card,
    .product-requirements-card,
    .product-benefits-card {
        padding: 2.5rem;
    }

    .product-features-grid {
        grid-template-columns: 1fr;
    }

    .product-intro-title,
    .product-section-title {
        font-size: 1.875rem;
    }

    .product-pricing-name {
        font-size: 1.5rem;
    }

    .product-pricing-amount {
        font-size: 2.5rem;
    }

    .product-slider-wrapper {
        max-width: 100%;
    }

    .product-slider-content {
        padding: 1.25rem;
        gap: 1rem;
    }

    .product-slider-image {
        max-height: 300px;
    }

    .product-slider-image img {
        max-height: 300px;
    }

    .product-slider-title {
        font-size: 1.063rem;
    }

    .product-slider-subtitle {
        font-size: 0.813rem;
    }

    .product-slider-text {
        font-size: 0.813rem;
    }

    .product-slider-badge {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .product-slider-controls {
        margin-top: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .product-detail-container {
        padding: 2rem 0;
    }

    .product-intro-section,
    .product-spectrum-section,
    .product-gallery-section,
    .product-aerate-section,
    .product-final-section {
        margin-bottom: 2.5rem;
    }

    .product-intro-card,
    .product-pricing-sidebar,
    .product-spectrum-card,
    .product-gallery-card,
    .product-aerate-card,
    .product-requirements-card,
    .product-benefits-card {
        padding: 2rem;
    }

    .product-intro-title,
    .product-section-title {
        font-size: 1.625rem;
    }

    .product-pricing-amount {
        font-size: 2rem;
    }

    .product-slider-content {
        gap: 0.875rem;
        padding: 1rem;
    }

    .product-slider-image {
        max-height: 250px;
    }

    .product-slider-image img {
        max-height: 250px;
    }

    .product-slider-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.875rem;
    }

    .product-slider-title {
        font-size: 1rem;
    }

    .product-slider-subtitle {
        font-size: 0.75rem;
    }

    .product-slider-text {
        font-size: 0.75rem;
    }

    .product-slider-badge {
        width: 32px;
        height: 32px;
        font-size: 0.938rem;
    }

    .product-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.938rem;
    }

    .product-slider-controls {
        gap: 1rem;
        margin-top: 1rem;
    }

    .product-slider-progress {
        margin-top: 1rem;
    }

    .product-requirements-table table {
        font-size: 0.875rem;
    }

    .product-requirements-table thead th,
    .product-requirements-table tbody td {
        padding: 0.75rem 0.875rem;
    }

    .product-lb-close,
    .product-lb-prev,
    .product-lb-next {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .product-lb-close {
        top: 1.5rem;
        right: 1.5rem;
    }

    .product-lb-prev {
        left: 1.5rem;
    }

    .product-lb-next {
        right: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .product-intro-card,
    .product-pricing-sidebar,
    .product-spectrum-card,
    .product-gallery-card,
    .product-aerate-card,
    .product-requirements-card,
    .product-benefits-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .product-intro-title,
    .product-section-title {
        font-size: 1.5rem;
    }

    .product-pricing-amount {
        font-size: 2rem;
    }

    .product-pricing-currency {
        font-size: 1.25rem;
    }

    .product-slider-content {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .product-slider-image {
        max-height: 200px;
    }

    .product-slider-image img {
        max-height: 200px;
    }

    .product-slider-badge {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }

    .product-slider-title {
        font-size: 0.938rem;
    }

    .product-slider-subtitle {
        font-size: 0.688rem;
    }

    .product-slider-text {
        font-size: 0.688rem;
    }

    .product-slider-btn {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .product-slider-controls {
        gap: 0.75rem;
        margin-top: 0.875rem;
    }

    .product-slider-progress {
        margin-top: 0.875rem;
        height: 2px;
    }

    .product-slider-dot {
        width: 6px;
        height: 6px;
    }

    .product-slider-dot.is-active {
        width: 18px;
    }

    .product-meta-item {
        padding: 0.875rem;
    }

    .product-meta-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .product-meta-label {
        font-size: 0.688rem;
    }

    .product-meta-value {
        font-size: 0.875rem;
    }

    .product-spectrum-list li {
        font-size: 0.875rem;
    }

    .product-benefits-list li {
        font-size: 0.875rem;
        padding: 0.875rem;
    }

    .product-benefits-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .product-lb-close,
    .product-lb-prev,
    .product-lb-next {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .product-lb-close {
        top: 1rem;
        right: 1rem;
    }

    .product-lb-prev {
        left: 1rem;
    }

    .product-lb-next {
        right: 1rem;
    }

    .product-lb-cap {
        font-size: 0.938rem;
    }
}

/* ===== Utility Classes ===== */
html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

figure {
    margin: 0;
}