/* Produkt-Seiten Styling */
/* Nutzt CSS-Variablen und Schriftarten aus style.css */

/* Light Mode Overrides */
body.theme-light .protectors-section h2,
body.theme-light .protectors-section h3,
body.theme-light .protectors-section p,
body.theme-light .protectors-section .legend-item h3,
body.theme-light .protectors-section .legend-text,
body.theme-light .protectors-section .legend-text strong {
    color: #ffffff !important;
}

body.theme-light .page-hero h1,
body.theme-light .page-hero .hero-subtitle,
body.theme-light .page-hero .hero-price,
body.theme-light .page-hero .hero-price-note,
body.theme-light .page-hero .hero-shipping {
    color: #ffffff !important;
}

/* Page Hero */
.page-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-content h1 {
    font-family: 'Play', sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.hero-divider {
    width: 120px;
    height: 3px;
    background: var(--primary);
    margin: 1.5rem auto;
}

.hero-price {
    font-family: 'Play', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0 0.3rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-price-note {
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-shipping {
    font-size: 1rem;
    margin: 0 0 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-shadow: none;
}

.btn-hero:hover {
    background: var(--primary-hover);
    transform: translateZ(-3px);
}

.btn-hero i {
    font-size: 1.2rem;
}

/* Product Intro */
.product-intro {
    padding: 80px 0;
    background: var(--bg-elev);
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text p {
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.intro-text p:first-child {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
}

/* Design Overview */
.design-overview {
    padding: 80px 0;
    background: var(--bg);
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 0 auto;
}

.design-card {
    background: var(--bg-elev);
    border-radius: 12px;
    overflow: hidden;
}


.design-card img {
    width: 100%;
    height: auto;
    display: block;
}

.design-card h3 {
    font-family: 'Play', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem;
    color: var(--text);
}

.design-card p {
    margin: 0 1.5rem 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dim);
}

/* Product Features - Horizontal 3-Column Layout */
.product-features {
    padding: 80px 0;
    background: var(--bg);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-column {
    padding: 0 1rem;
}

.feature-column h2 {
    font-family: 'Play', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-column p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.feature-column strong {
    color: var(--text);
    font-weight: 600;
}

.feature-column a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-column a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Feature List for Gloves/Boots */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dim);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Two Column Design Grid */
.design-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.certificate-badge {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.certificate-badge img {
    max-width: 150px;
    height: auto;
}

/* Besonderheiten Section */
.besonderheiten-section {
    padding: 80px 0;
    background: var(--bg-elev);
}

.besonderheiten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.besonderheit-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.besonderheit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: var(--primary);
}

.besonderheit-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.besonderheit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.besonderheit-text {
    padding: 1.5rem;
}

.besonderheit-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dim);
    margin: 0;
}

/* Nach einem Crash Section */
.crash-section {
    padding: 80px 0;
    background: var(--bg);
}

.crash-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.crash-text h2 {
    font-family: 'Play', sans-serif;
    font-size: 2.5rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.crash-text h3 {
    font-family: 'Play', sans-serif;
    font-size: 1.5rem;
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.crash-text h3:first-of-type {
    margin-top: 2rem;
}

.crash-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.crash-text p strong {
    color: var(--primary);
    font-weight: 600;
}

.crash-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

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

.crash-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(220, 53, 69, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-family: 'Play', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Protectors Section */
.protectors-section {
    padding: 80px 0;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Play', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.protector-main-image {
    margin: 0 auto 3rem;
    text-align: center;
}

/* Legende mit farbigen Boxen */
.protector-legend {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legend-item {
    text-align: center;
}

.legend-color {
    width: 35px;
    height: 35px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.legend-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dim);
}

.legend-text strong {
    color: var(--text);
    display: block;
    margin-bottom: 0.3rem;
}

/* Design Gallery Section */
.design-gallery-section {
    padding: 80px 0;
    background: var(--bg-elev);
}

/* Filter Buttons */
.design-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0 2rem;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: var(--bg);
    color: var(--text);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.filter-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Design Note */
.design-note {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: var(--bg);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    text-align: center;
}

.design-note p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dim);
    margin: 0.5rem 0;
}

.design-note strong {
    color: var(--primary);
    font-weight: 700;
}

.design-gallery-wrapper {
    position: relative;
    margin-top: 3rem;
}

.design-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

.design-gallery:not(.expanded) {
    max-height: 1050px; /* Ca. 3 Reihen x 350px pro Zeile (9 Items) */
}

.design-gallery.expanded {
    max-height: 10000px; /* Sehr hoch für viele Designs */
}

.design-item {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border);
}

.design-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.design-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--bg-elev);
    cursor: pointer;
}

.design-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.design-item:hover .design-image-wrapper img {
    transform: scale(1.05);
}

.design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.design-item:hover .design-overlay {
    opacity: 1;
}

.view-icon svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.design-item h3 {
    font-family: 'Play', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 1.5rem 0.5rem;
    color: var(--text);
    margin: 0;
}

.design-category {
    display: block;
    font-size: 0.9rem;
    color: var(--muted);
    padding: 0 1.5rem 1.5rem;
    text-transform: capitalize;
}

.show-more-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-family: 'Play', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.show-more-btn.hidden {
    display: none;
}

.no-designs {
    text-align: center;
    padding: 4rem 2rem;
}

.no-designs p {
    font-size: 1.2rem;
    color: var(--text-dim);
}

/* Modal Backdrop */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    display: flex;
    opacity: 1;
}

.modal-dialog {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--bg-elev);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.modal-dialog img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    background: var(--bg);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.modal-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.modal-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.modal-info {
    padding: 1.5rem;
    background: var(--bg-elev);
}

.modal-info h3 {
    font-family: 'Play', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.modal-info p {
    font-size: 1rem;
    color: var(--text-dim);
    margin: 0;
    text-transform: capitalize;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-family: 'Play', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-section .btn-primary:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background: var(--white);
}

/* Products Overview Page */
.products-grid-section {
    padding: 80px 0;
    background: var(--bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-category-card {
    background: var(--bg-elev);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.product-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: var(--primary);
}

.product-category-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(220, 53, 69, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-category-card:hover .product-category-overlay {
    opacity: 1;
}

.view-category-text {
    color: white;
    font-family: 'Play', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.product-category-content h2 {
    font-family: 'Play', sans-serif;
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.product-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.product-highlights li {
    font-size: 0.95rem;
    color: var(--text-dim);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-product-category {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-family: 'Play', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-product-category:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Additional Categories Section */
.additional-categories-section {
    padding: 80px 0;
    background: var(--bg-elev);
}

.additional-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.additional-category-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.additional-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.additional-category-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elev);
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.additional-category-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.additional-category-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.additional-category-content {
    flex: 1;
}

.additional-category-content h3 {
    font-family: 'Play', sans-serif;
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.additional-category-content p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.5;
}

.additional-category-arrow {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.additional-category-card:hover .additional-category-arrow {
    transform: translateX(5px);
}

/* Features Overview Section */
.features-overview-section {
    padding: 80px 0;
    background: var(--bg);
}

.features-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-overview-item {
    text-align: center;
    padding: 2rem;
}

.feature-overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.feature-overview-icon svg {
    color: var(--primary);
}

.feature-overview-icon i {
    color: var(--primary);
    font-size: 2.5rem;
}

.feature-overview-item h3 {
    font-family: 'Play', sans-serif;
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-overview-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dim);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        min-height: 500px;
        background-position: 30% center; /* Bild weiter nach links */
    }
    
    /* Spezifische Anpassung für Stiefel-Seite */
    .page-hero[style*="hero-boots.jpg"] {
        background-position: 66% center !important;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-price {
        font-size: 2rem;
    }

    .hero-price-note,
    .hero-shipping {
        font-size: 0.85rem;
    }

    .btn-hero {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .design-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .design-grid-two {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-column {
        padding: 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-category-image {
        height: 250px;
    }

    .features-overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .besonderheiten-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .crash-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .crash-text h2 {
        font-size: 2rem;
    }

    .crash-text h3 {
        font-size: 1.3rem;
    }

    .crash-text p {
        font-size: 1rem;
    }

    .protector-legend {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .legend-color {
        width: 80px;
        height: 80px;
    }

    .legend-text {
        font-size: 0.85rem;
    }

    .design-filters {
        gap: 0.8rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .design-note {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .design-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .design-gallery:not(.expanded) {
        max-height: 1400px; /* Ca. 5 Reihen */
    }

    .design-gallery.expanded {
        max-height: 8000px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .modal-dialog {
        max-width: 95vw;
        max-height: 95vh;
    }

    .modal-nav-btn {
        width: 40px;
        height: 40px;
    }

    .modal-nav-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        background-position: 85% center; /* Noch weiter nach links auf kleinen Screens */
    }
    
    /* Spezifische Anpassung für Stiefel-Seite */
    .page-hero[style*="hero-boots.jpg"] {
        background-position: 66% center !important;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-price {
        font-size: 1.5rem;
    }

    .btn-hero {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .design-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .design-note {
        font-size: 0.9rem;
    }

    .design-gallery {
        grid-template-columns: 1fr;
    }

    .design-gallery:not(.expanded) {
        max-height: 2400px; /* Ca. 9 Reihen */
    }

    .design-gallery.expanded {
        max-height: 6000px;
    }

    .show-more-btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .besonderheiten-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .besonderheit-image {
        height: 200px;
    }

    .crash-text h2 {
        font-size: 1.75rem;
    }

    .crash-text h3 {
        font-size: 1.2rem;
    }

    .crash-text p {
        font-size: 0.95rem;
    }

    .crash-image-badge {
        padding: 0.75rem 1rem;
        bottom: 15px;
        left: 15px;
    }

    .badge-icon {
        font-size: 1.2rem;
    }

    .badge-text {
        font-size: 0.85rem;
    }

    .protector-legend {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .legend-color {
        width: 70px;
        height: 70px;
    }

    .legend-text {
        font-size: 0.8rem;
    }

    .additional-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .additional-category-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .additional-category-icon i {
        font-size: 1.2rem;
    }

    .additional-category-icon img {
        width: 25px;
    }

    .feature-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-overview-icon {
        width: 70px;
        height: 70px;
    }

    .feature-overview-icon i {
        font-size: 2rem;
    }
}
