/* =====================================================
   COMPONENTS.CSS — Konsolidierte Komponenten-Styles
   Zusammengeführt aus: inline <style>-Blöcke (index.html),
   youtube.css, video-slider.css
   Developed by Toni Sciacca - mail@tonisciacca.com
   ===================================================== */


/* =====================================================
   COOKIE BANNER & COOKIE SETTINGS MODAL
   ===================================================== */

#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    z-index: 99999;
    padding: 25px 0;
    display: none;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

#cookie-consent-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner-grid {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

.cookie-banner-text p {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: "Montserrat", sans-serif;
    padding: 12px 24px;
    border: none;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-primary {
    background: #ffff1b;
    color: #000;
    font-weight: 600;
    border: 2px solid #000;
}

.cookie-btn-primary:hover {
    background: #000;
    color: #ffff1b;
}

.cookie-btn-secondary {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.cookie-btn-secondary:hover {
    background: #e8e8e8;
}

#cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 100000;
    overflow-y: auto;
    animation: cookieFadeIn 0.3s ease;
}

@keyframes cookieFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#cookie-settings-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal-content {
    background: #fff;
    border-radius: 5px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: cookieSlideIn 0.3s ease-out;
}

@keyframes cookieSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-modal-header {
    padding: 25px;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

.cookie-modal-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.cookie-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
}

.cookie-modal-close:hover {
    color: #333;
}

.cookie-modal-body {
    padding: 25px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-category-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.cookie-category-description {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #ffff1b;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #e8e8e8;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    position: sticky;
    bottom: 0;
    background: #fff;
}

#cookie-settings-trigger {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 99998;
    transition: all 0.3s ease;
}

#cookie-settings-trigger:hover {
    background: #f5f5f5;
    transform: scale(1.05);
}

#cookie-settings-trigger svg {
    width: 24px;
    height: 24px;
    fill: #666;
}

.cookie-always-active {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* Video / Social / Map Placeholder */
.video-placeholder,
.social-placeholder,
.map-placeholder {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    margin: 30px 0;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.video-placeholder:hover,
.social-placeholder:hover,
.map-placeholder:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.video-placeholder::before,
.social-placeholder::before,
.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #ffff1b 0%, #e6e600 100%);
}

.placeholder-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    width: 100%;
}

.placeholder-icon {
    font-size: 72px;
    margin-bottom: 25px;
    color: #ffff1b;
    animation: placeholderPulse 2.5s ease-in-out infinite;
    text-shadow: 0 2px 8px rgba(255, 255, 27, 0.3);
}

@keyframes placeholderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }
}

.placeholder-content h4 {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #2c3e50;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.3px;
}

.placeholder-content p {
    margin: 0 0 30px 0;
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    font-family: "Roboto", sans-serif;
}

.cookie-btn-accept {
    padding: 14px 36px;
    border: 2px solid #000;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Montserrat", sans-serif;
    background: #ffff1b;
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 255, 27, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.cookie-btn-accept:hover {
    background: #000;
    color: #ffff1b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 255, 27, 0.4);
}

.placeholder-content small {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    font-family: "Roboto", sans-serif;
}

.placeholder-content small a {
    color: #666;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.placeholder-content small a:hover {
    color: #ffff1b;
}

@media (max-width: 768px) {
    .cookie-banner-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-banner-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .cookie-modal-content {
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
    }

    .video-placeholder,
    .social-placeholder,
    .map-placeholder {
        padding: 30px 20px;
        min-height: 300px;
    }

    .placeholder-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .placeholder-content h4 {
        font-size: 20px;
    }
}


/* =====================================================
   SONNENSCHUTZ MODAL
   ===================================================== */

.sonnenschutz-modal * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.sonnenschutz-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
}

.sonnenschutz-modal-dialog {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sonnenschutz-modal-content {
    background: white;
    width: 100%;
    max-width: 1400px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: sonnenschutzSlideIn 0.3s ease-out;
}

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

.sonnenschutz-modal-header {
    background: #ffff1b;
    color: #000;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sonnenschutz-modal-header h2 {
    margin: 0;
    font-size: 24px;
    color: #000;
    font-weight: 600;
}

.sonnenschutz-close-btn {
    font-family: "Roboto", sans-serif;
    background: rgba(255, 255, 255, 0.2);
    border: solid 2px #000;
    color: #000;
    font-size: 28px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.sonnenschutz-close-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.sonnenschutz-modal-body {
    display: flex;
    height: calc(100vh - 200px);
    min-height: 600px;
    max-height: 800px;
}

.sonnenschutz-form-section {
    width: 350px;
    background: #f8f9fa;
    padding: 30px;
    border-right: 1px solid #e0e0e0;
    overflow-y: auto;
}

.sonnenschutz-info-section {
    margin-bottom: 30px;
}

.sonnenschutz-info-section h2 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.sonnenschutz-info-step {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid #ffff1b;
}

.sonnenschutz-info-step h4 {
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.sonnenschutz-info-step p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.sonnenschutz-info-important {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #ffff1b;
}

.sonnenschutz-info-important h4 {
    font-size: 14px;
    color: #856404;
    margin-bottom: 10px;
}

.sonnenschutz-info-important ul {
    list-style: none;
    padding: 0;
}

.sonnenschutz-info-important li {
    font-size: 13px;
    color: #856404;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.sonnenschutz-info-important li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffff1b;
}

.sonnenschutz-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 10px;
    margin-bottom: 30px;
}

.sonnenschutz-progress::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.sonnenschutz-progress-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sonnenschutz-progress-circle {
    width: 36px;
    height: 36px;
    background: white;
    color: #999;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 6px;
    transition: all 0.3s;
    font-size: 14px;
}

.sonnenschutz-progress-label {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

.sonnenschutz-progress-item.active .sonnenschutz-progress-circle {
    background: #ffff1b;
    color: #000;
    border-color: #ffff1b;
    box-shadow: 0 0 0 4px rgba(255, 255, 27, 0.2);
}

.sonnenschutz-progress-item.active .sonnenschutz-progress-label {
    color: #000;
    font-weight: 600;
}

.sonnenschutz-progress-item.completed .sonnenschutz-progress-circle {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.sonnenschutz-progress-item.completed .sonnenschutz-progress-circle::after {
    content: '✓';
}

.sonnenschutz-progress-item.completed .sonnenschutz-progress-label {
    color: #28a745;
}

.sonnenschutz-content-section {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

.sonnenschutz-step {
    display: none;
}

.sonnenschutz-step.active {
    display: block;
    animation: sonnenschutzFadeIn 0.3s ease-out;
}

@keyframes sonnenschutzFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sonnenschutz-step h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.sonnenschutz-step-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.sonnenschutz-option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

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

.sonnenschutz-option-card {
    position: relative;
    cursor: pointer;
}

.sonnenschutz-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sonnenschutz-option-content {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.sonnenschutz-option-card:hover .sonnenschutz-option-content {
    border-color: #ffff1b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.sonnenschutz-option-card input:checked + .sonnenschutz-option-content {
    border-color: #ffff1b;
    background: #fffef0;
    box-shadow: 0 4px 12px rgba(255, 255, 27, 0.2);
}

.sonnenschutz-option-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.sonnenschutz-option-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.sonnenschutz-option-content p {
    font-size: 14px;
    color: #666;
}

.sonnenschutz-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.sonnenschutz-form-group {
    display: flex;
    flex-direction: column;
}

.sonnenschutz-full-width {
    grid-column: 1 / -1;
}

.sonnenschutz-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.sonnenschutz-required {
    color: #e74c3c;
}

.sonnenschutz-form-group input[type="text"],
.sonnenschutz-form-group input[type="email"],
.sonnenschutz-form-group input[type="tel"],
.sonnenschutz-form-group input[type="number"],
.sonnenschutz-form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.sonnenschutz-form-group input:focus,
.sonnenschutz-form-group textarea:focus {
    outline: none;
    border-color: #ffff1b;
    box-shadow: 0 0 0 3px rgba(255, 255, 27, 0.1);
}

.sonnenschutz-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.sonnenschutz-form-group.error input,
.sonnenschutz-form-group.error textarea {
    border-color: #e74c3c;
}

.sonnenschutz-error-msg {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.sonnenschutz-form-group.error .sonnenschutz-error-msg {
    display: block;
}

.sonnenschutz-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sonnenschutz-checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.sonnenschutz-checkbox-wrapper label {
    font-size: 14px;
    font-weight: normal;
    color: #666;
    cursor: pointer;
}

.sonnenschutz-checkbox-wrapper a {
    color: #007bff;
    text-decoration: none;
}

.sonnenschutz-checkbox-wrapper a:hover {
    text-decoration: underline;
}

.sonnenschutz-button-group {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.sonnenschutz-btn {
    padding: 1px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sonnenschutz-btn-primary {
    background: #ffff1b;
    color: #000;
}

.sonnenschutz-btn-primary:hover:not(:disabled) {
    background: #e6e600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 27, 0.3);
}

.sonnenschutz-btn-primary:disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

.sonnenschutz-btn-secondary {
    background: white;
    color: #666;
    border: 2px solid #ddd;
}

.sonnenschutz-btn-secondary:hover {
    border-color: #999;
    color: #333;
}

.sonnenschutz-success-container {
    text-align: center;
    padding: 60px 40px;
}

.sonnenschutz-success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 20px;
}

.sonnenschutz-success-container h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.sonnenschutz-success-container p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.sonnenschutz-form-section::-webkit-scrollbar,
.sonnenschutz-content-section::-webkit-scrollbar {
    width: 6px;
}

.sonnenschutz-form-section::-webkit-scrollbar-track,
.sonnenschutz-content-section::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sonnenschutz-form-section::-webkit-scrollbar-thumb,
.sonnenschutz-content-section::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.sonnenschutz-form-section::-webkit-scrollbar-thumb:hover,
.sonnenschutz-content-section::-webkit-scrollbar-thumb:hover {
    background: #999;
}

@media (max-width: 1200px) {
    .sonnenschutz-modal-body {
        flex-direction: column;
        height: auto;
    }

    .sonnenschutz-form-section {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .sonnenschutz-content-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .sonnenschutz-modal-header {
        padding: 15px 20px;
    }

    .sonnenschutz-modal-header h2 {
        font-size: 20px;
    }

    .sonnenschutz-option-grid {
        grid-template-columns: 1fr;
    }

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

    .sonnenschutz-form-grid {
        grid-template-columns: 1fr;
    }

    .sonnenschutz-button-group {
        flex-direction: column-reverse;
    }

    .sonnenschutz-btn {
        width: 100%;
        justify-content: center;
    }

    .sonnenschutz-progress-label {
        display: none;
    }

    .sonnenschutz-progress-circle {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .sonnenschutz-content-section {
        padding: 20px;
    }

    .sonnenschutz-step h3 {
        font-size: 22px;
    }

    .sonnenschutz-option-icon {
        font-size: 36px;
    }
}

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


/* =====================================================
   WHATSAPP CHAT BUTTON & WINDOW
   ===================================================== */

.whatsapp-chat-button {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 60px;
    padding: 15px 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.whatsapp-chat-button:hover {
    background-color: #22c55e;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-label {
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
}

.whatsapp-chat-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 360px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: whatsappSlideInRight 0.3s ease-out;
}

@keyframes whatsappSlideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.whatsapp-chat-window.active {
    display: flex;
}

.whatsapp-chat-header {
    background: #075e54;
    color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.whatsapp-avatar img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.whatsapp-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.whatsapp-info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.whatsapp-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.whatsapp-chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #e5ddd5;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAASklEQVQYlY3QsQ0AIAwDQXeWkBHYjsXYjmUYgZIihBAF7Ey91B2hJZmZmVlL1OJqW2sVEQARsYzMbKqIyCJpLvDtFJEku8A3+wYASI1AwcqtggAAAABJRU5ErkJggg==');
}

.whatsapp-message {
    max-width: 70%;
    margin-bottom: 15px;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    word-wrap: break-word;
}

.whatsapp-message.received {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.whatsapp-message.sent {
    background: #dcf8c6;
    align-self: flex-end;
    margin-left: auto;
    border-bottom-right-radius: 0;
}

.whatsapp-message p {
    margin: 0 0 5px 0;
    color: #303030;
}

.message-time {
    font-size: 11px;
    color: #999;
    display: block;
    text-align: right;
}

.whatsapp-quick-replies {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.whatsapp-quick-replies h5 {
    margin: 0 0 10px 0;
    color: #075e54;
    font-size: 14px;
}

.whatsapp-quick-replies button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-size: 14px;
}

.whatsapp-quick-replies button:hover {
    background: #075e54;
    color: white;
    border-color: #075e54;
}

.whatsapp-chat-footer {
    padding: 10px;
    background: #f0f0f0;
    border-top: 1px solid #ddd;
}

#whatsapp-form {
    display: flex;
    gap: 10px;
}

#whatsapp-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
}

#whatsapp-input:focus {
    border-color: #25d366;
}

#whatsapp-form button {
    background: #25d366;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

#whatsapp-form button:hover {
    background: #22c55e;
}

.whatsapp-chat-body::-webkit-scrollbar {
    width: 6px;
}

.whatsapp-chat-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.whatsapp-chat-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 0px;
}

.whatsapp-chat-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (max-width: 768px) {
    .whatsapp-chat-button {
        bottom: 20px;
        right: 20px;
        padding: 12px;
    }

    .whatsapp-label {
        display: none;
    }

    .whatsapp-chat-window {
        right: 10px;
        left: 10px;
        width: auto;
        bottom: 80px;
        height: 70vh;
        max-height: 500px;
    }
}


/* =====================================================
   YOUTUBE LIGHTBOX MODAL (inline)
   ===================================================== */

.youtube-lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10002;
    animation: kontaktFadeIn 0.3s ease;
}

@keyframes kontaktFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.youtube-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    padding-top: 56.25%;
}

.youtube-lightbox-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-lightbox-video-container iframe {
    width: 100%;
    height: 100%;
}

.youtube-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.2s;
}

.youtube-lightbox-close:hover {
    transform: scale(1.2);
}

@media screen and (max-width: 768px) {
    .youtube-lightbox-content {
        width: 95%;
        margin: 50px auto;
    }

    .youtube-lightbox-close {
        top: -40px;
        font-size: 35px;
    }
}


/* =====================================================
   POLSTER KONFIGURATOR MODAL
   ===================================================== */

.polster-konfigurator-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10002;
    overflow-y: auto;
}

.polster-konfigurator-modal * {
    box-sizing: border-box;
}

.polster-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 10px;
    margin-bottom: 30px;
}

.polster-progress::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.polster-progress-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.polster-progress-circle {
    width: 36px;
    height: 36px;
    background: white;
    color: #999;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 6px;
    transition: all 0.3s;
    font-size: 14px;
}

.polster-progress-item.active .polster-progress-circle {
    background: #ffff1b !important;
    color: #000 !important;
    border-color: #ffff1b !important;
}

.polster-progress-item.completed .polster-progress-circle {
    background: #ffff1b !important;
    color: white !important;
    border-color: #ffff1b !important;
}

.polster-progress-label {
    font-size: 12px;
    color: #666;
}

.polster-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.polster-step {
    display: none !important;
    flex: 1;
    flex-direction: column;
}

.polster-step.active {
    display: flex !important;
    animation: polsterFadeIn 0.3s ease;
}

@keyframes polsterFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.polster-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.polster-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.polster-btn-primary {
    background: #ffff1b !important;
    color: #000 !important;
}

.polster-btn-primary:hover:not(:disabled) {
    background: #ffe016 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.polster-btn-secondary {
    background: #6c757d !important;
    color: white !important;
}

.polster-btn-secondary:hover:not(:disabled) {
    background: #545b62 !important;
}

.polster-btn-success {
    background: #ffff1b !important;
    color: white !important;
}

.polster-btn-success:hover:not(:disabled) {
    background: #218838 !important;
}

.polster-form-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 20px;
}

.polster-button-group {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 30px;
}

.polster-button-group.single {
    justify-content: flex-end;
}

.polster-summary {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
}

.polster-summary h3 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 15px;
}

.polster-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.polster-konfigurator-dialog {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.polster-konfigurator-content {
    background: white;
    width: 100%;
    max-width: 1400px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: polsterSlideIn 0.3s ease-out;
}

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

.polster-konfigurator-header {
    background: #ffff1b;
    color: #000;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.polster-konfigurator-header h2 {
    margin: 0;
    font-size: 24px;
    color: #000;
    font-weight: 600;
}

.polster-konfigurator-close {
    font-family: "Roboto", sans-serif;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #000000;
    font-size: 28px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.polster-konfigurator-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.polster-konfigurator-body {
    display: flex;
    min-height: 700px;
}

.polster-konfigurator-sidebar {
    width: 400px;
    padding: 30px;
    background: #f8f9fa;
    overflow-y: auto;
}

.polster-summary-item:last-child {
    border-bottom: none;
}

.polster-summary-label {
    color: #666;
}

.polster-summary-value {
    color: #333;
    font-weight: 500;
}

.polster-step h2 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
}

.polster-step > p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.polster-shapes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    padding: 5px;
}

.polster-shape-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.polster-shape-item:hover {
    border-color: #ffff1b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.polster-shape-item.selected {
    border-color: #ffff1b;
    background: #e8f5e9;
}

.polster-shape-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.polster-shape-icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.polster-shape-item.selected .polster-shape-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #ffff1b;
    border-radius: 8px;
    z-index: 2;
    pointer-events: none;
}

.polster-shape-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: none;
    z-index: 1;
}

.polster-view-gallery {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    font-size: 12px;
    z-index: 3;
}

.polster-shape-item:hover .polster-view-gallery {
    opacity: 1;
}

.polster-view-gallery:hover {
    background: #ffff1b;
    color: #000;
}

.polster-shape-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.polster-form-group {
    margin-bottom: 25px;
}

.polster-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.polster-form-group label i {
    margin-right: 8px;
    color: #ffff1b;
}

.polster-dimension-visual {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.polster-shape-diagram {
    position: relative;
    display: inline-block;
    margin: 20px auto;
}

.polster-dimension-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.polster-dimension-label {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.polster-dimension-marker {
    width: 30px;
    height: 30px;
    background: #ffff1b;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.polster-dimension-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.polster-dimension-input {
    display: flex;
    flex-direction: column;
}

.polster-dimension-input label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.polster-dimension-input input {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.polster-dimension-input input:focus {
    outline: none;
    border-color: #ffff1b;
}

.polster-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.polster-select:focus {
    outline: none;
    border-color: #ffff1b;
}

.polster-radio-group {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.polster-radio-item {
    flex: 1;
}

.polster-radio-item input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.polster-radio-item label {
    display: block;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.polster-radio-item input[type="radio"]:checked + label {
    background: #e8f5e9;
    border-color: #ffff1b;
    color: #000;
    font-weight: 500;
}

.polster-category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0;
}

.polster-category-tab {
    padding: 10px 20px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.polster-category-tab:hover {
    color: #ffff1b;
}

.polster-category-tab.active {
    color: #ffff1b;
}

.polster-category-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffff1b;
}

.polster-material-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.polster-material-item {
    position: relative;
    cursor: pointer;
}

.polster-material-item input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.polster-material-item label {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
}

.polster-material-swatch {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    margin: 0 auto 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.polster-material-name {
    font-size: 12px;
    color: #666;
}

.polster-material-item:hover .polster-material-swatch {
    transform: scale(1.05);
}

.polster-material-item input[type="radio"]:checked + label {
    background: #e8f5e9;
    border-radius: 8px;
}

.polster-material-item input[type="radio"]:checked + label .polster-material-swatch {
    border-color: #ffff1b;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
}

.polster-file-upload {
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    background: #fafafa;
}

.polster-file-upload:hover {
    border-color: #ffff1b;
    background: #fffbf0;
}

.polster-file-upload.dragover {
    background: #e8f5e9;
    border-color: #ffff1b;
}

.polster-file-upload-icon {
    font-size: 48px;
    color: #ffff1b;
    margin-bottom: 15px;
}

.polster-file-upload-text {
    color: #666;
    font-size: 16px;
    margin-bottom: 5px;
}

.polster-file-upload-text small {
    display: block;
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.polster-success {
    text-align: center;
    padding: 60px 40px;
}

.polster-success-icon {
    font-size: 80px;
    color: #ffff1b;
    margin-bottom: 25px;
}

.polster-success h2 {
    color: #ffff1b;
    margin-bottom: 15px;
    font-size: 28px;
}

.polster-success p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.polster-notice {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    color: #000;
    font-size: 14px;
    border: 1px solid #a5d6a7;
}

.polster-notice i {
    margin-right: 8px;
}

.polster-gallery-modal {
    display: none;
    position: fixed;
    z-index: 10005;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: polsterGalleryFadeIn 0.3s;
}

@keyframes polsterGalleryFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.polster-gallery-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    margin: 5vh auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.polster-gallery-close {
    font-family: "Roboto", sans-serif;
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.polster-gallery-close:hover {
    background: #f0f0f0;
}

#polster-gallery-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.polster-gallery-main {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.polster-gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.polster-gallery-thumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    max-height: 120px;
    overflow-x: auto;
    overflow-y: hidden;
}

.polster-gallery-thumb {
    width: 80px;
    height: 80px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.polster-gallery-thumb:hover,
.polster-gallery-thumb.active {
    border-color: #ffff1b;
    transform: scale(1.05);
}

.polster-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.polster-konfigurator-sidebar::-webkit-scrollbar,
.polster-content::-webkit-scrollbar,
.polster-material-grid::-webkit-scrollbar,
.polster-form-content::-webkit-scrollbar,
.polster-gallery-thumbs::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.polster-konfigurator-sidebar::-webkit-scrollbar-track,
.polster-content::-webkit-scrollbar-track,
.polster-material-grid::-webkit-scrollbar-track,
.polster-form-content::-webkit-scrollbar-track,
.polster-gallery-thumbs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.polster-konfigurator-sidebar::-webkit-scrollbar-thumb,
.polster-content::-webkit-scrollbar-thumb,
.polster-material-grid::-webkit-scrollbar-thumb,
.polster-form-content::-webkit-scrollbar-thumb,
.polster-gallery-thumbs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.polster-konfigurator-sidebar::-webkit-scrollbar-thumb:hover,
.polster-content::-webkit-scrollbar-thumb:hover,
.polster-material-grid::-webkit-scrollbar-thumb:hover,
.polster-form-content::-webkit-scrollbar-thumb:hover,
.polster-gallery-thumbs::-webkit-scrollbar-thumb:hover {
    background: #999;
}

@media (max-width: 1200px) {
    .polster-konfigurator-body {
        flex-direction: column;
    }

    .polster-konfigurator-sidebar {
        width: 100%;
        padding: 20px;
        order: 2;
    }

    .polster-content {
        padding: 20px;
        order: 1;
    }
}

@media (max-width: 768px) {
    .polster-konfigurator-header {
        padding: 15px 20px;
    }

    .polster-konfigurator-header h2 {
        font-size: 20px;
    }

    .polster-dimension-inputs {
        grid-template-columns: 1fr;
    }

    .polster-radio-group {
        flex-direction: column;
    }

    .polster-button-group {
        flex-direction: column-reverse;
    }

    .polster-btn {
        width: 100%;
        justify-content: center;
    }

    .polster-progress-label {
        display: none;
    }

    .polster-shapes-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .polster-material-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}


/* =====================================================
   WELCOME OVERLAY / GALLERY
   ===================================================== */

.welcome-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    overflow-y: auto;
}

.welcome-modal-dialog {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.welcome-modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: welcomeSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes welcomeSlideIn {
    from {
        transform: translateY(50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.welcome-modal-header {
    background: linear-gradient(135deg, #ffff1b 0%, #ffe016 100%);
    color: #000000;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-modal-header h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
}

.welcome-close-btn {
    font-family: "Roboto", sans-serif;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #000000;
    font-size: 28px;
    border: solid 2px #000;
    width: 44px;
    line-height: 0rem !important;
    padding: 0 rem !important;
    margin: 0 !important;
    color: #000 !important;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.welcome-close-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #000000;
    transform: rotate(90deg);
}

.welcome-modal-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.welcome-info-section {
    width: 380px;
    padding: 32px;
    background: #f8f9fa;
    overflow-y: auto;
    border-right: 1px solid #e9ecef;
}

.welcome-info-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

.welcome-info-box h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 12px;
}

.welcome-info-box h4 {
    color: #495057;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.welcome-info-box h4 i {
    color: #ffff1b;
}

.welcome-info-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.welcome-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.welcome-btn-secondary {
    background: #6c757d;
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
}

.welcome-btn-secondary:hover {
    background: #545b62;
}

.welcome-content-section {
    flex: 1;
    padding: 32px 40px;
    overflow-y: auto;
}

.welcome-content-section h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.welcome-content-section h3 {
    color: #495057;
    font-size: 20px;
    margin: 25px 0 15px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.welcome-content-section h3 i {
    color: #ffff1b;
    font-size: 24px;
}

.welcome-content-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.welcome-media-display {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin: 25px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.welcome-media-display iframe,
.welcome-media-display img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: contain;
}

.welcome-gallery-slider {
    position: relative;
    margin-top: 20px;
}

.welcome-gallery-slider .owl-carousel {
    position: relative;
}

.welcome-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    transition: all 0.2s;
    margin: 0 5px;
}

.welcome-gallery-item:hover {
    border-color: #ffff1b;
    transform: scale(1.05);
}

.welcome-gallery-item.active {
    border-color: #ffff1b;
    border-width: 3px;
}

.welcome-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-gallery-item.video-item {
    background: #000;
    position: relative;
}

.welcome-gallery-item.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: all 0.3s;
}

.welcome-gallery-item.video-item:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

.welcome-gallery-item.video-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.welcome-gallery-item.video-item .play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 52%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #000;
    transform: translate(-50%, -50%);
}

.welcome-gallery-item.video-item:hover .play-icon {
    background: #ffff1b;
    transform: translate(-50%, -50%) scale(1.15);
}

.welcome-gallery-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.welcome-gallery-slider .owl-nav button {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 193, 7, 0.9) !important;
    color: #000 !important;
    border-radius: 50%;
    font-size: 24px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-gallery-slider .owl-nav {
    background: #ffff1b !important;
    transform: scale(1.1);
}

.welcome-gallery-slider .owl-nav .owl-prev {
    left: -15px;
}

.welcome-gallery-slider .owl-nav .owl-next {
    right: -15px;
}

.welcome-gallery-slider .owl-nav button span {
    font-size: 28px;
    line-height: 1;
}

.welcome-gallery-slider .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.welcome-gallery-slider .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.welcome-gallery-slider .owl-dot.active {
    background: #ffff1b;
    width: 30px;
    border-radius: 5px;
}

.welcome-info-section::-webkit-scrollbar,
.welcome-content-section::-webkit-scrollbar {
    width: 6px;
}

.welcome-info-section::-webkit-scrollbar-track,
.welcome-content-section::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.welcome-info-section::-webkit-scrollbar-thumb,
.welcome-content-section::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

@media (max-width: 992px) {
    .welcome-modal-body {
        flex-direction: column;
    }

    .welcome-info-section {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 20px;
    }

    .welcome-content-section {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .welcome-modal-header {
        padding: 16px 20px;
    }

    .welcome-modal-header h2 {
        font-size: 20px;
    }

    .welcome-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }
}


/* =====================================================
   STOFFKATALOG MODAL
   ===================================================== */

.stoffkatalog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999999;
    overflow: hidden;
    animation: stoffFadeIn 0.3s ease;
}

@keyframes stoffFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stoffkatalog-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stoffkatalog-modal-content {
    background: #ffffff;
    width: 95%;
    height: 90vh;
    max-width: 1400px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    animation: stoffSlideIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes stoffSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.stoffkatalog-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #ffff1b;
    border-bottom: 2px solid #f0f0f0;
}

.stoffkatalog-modal-header h2 {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.stoffkatalog-close {
    background: transparent;
    border: none;
    font-size: 28px;
    color: #000;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stoffkatalog-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.stoffkatalog-modal-body {
    flex: 1;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.stoffkatalog-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.stoffkatalog-trigger-btn {
    font-family: "Roboto", sans-serif;
    padding: 12px 25px;
    background: #ffff1b;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.stoffkatalog-trigger-btn:hover {
    background: #f0f000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 27, 0.4);
}

.stoffkatalog-trigger-btn i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .stoffkatalog-modal-content {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        max-width: none;
    }

    .stoffkatalog-modal-header {
        padding: 15px 20px;
    }

    .stoffkatalog-modal-header h2 {
        font-size: 18px;
    }

    .stoffkatalog-close {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    .stoffkatalog-trigger-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stoffkatalog-modal-header h2 {
        font-size: 16px;
    }
}


/* =====================================================
   YOUTUBE LIGHTBOX (youtube.css)
   ===================================================== */

.youtube-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.youtube-lightbox.active {
    background-color: rgba(0, 0, 0, 0.95);
}

.youtube-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    cursor: default;
}

.youtube-lightbox-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background-color: #000;
}

.youtube-lightbox-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-lightbox-close {
    position: absolute;
    top: -50px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    padding: 0;
    z-index: 10000;
}

.youtube-lightbox-close:hover {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .youtube-lightbox-content {
        width: 95%;
    }

    .youtube-lightbox-close {
        top: -40px;
        right: 0;
        font-size: 35px;
        width: 35px;
        height: 35px;
    }
}

/* YouTube Video Position Fix */
.s-hero .hero-video-container {
    position: relative !important;
    right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding-bottom: 0 !important;
    background-color: transparent !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.s-hero .hero-video-container::before {
    content: "";
    display: block;
    padding-bottom: 56.25%;
}

.s-hero .hero-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.s-about .hero-video-container {
    position: relative !important;
    right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    background-color: transparent !important;
    overflow: visible !important;
}

.s-about .hero-video-container::before {
    display: none !important;
    padding-bottom: 0 !important;
}

.s-about .hero-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-content__inner {
    display: flex !important;
    align-items: flex-start !important;
    gap: 3rem !important;
}

.hero-content__inner .column.large-half:first-child {
    flex: 0 0 60% !important;
}

.hero-content__inner .column.large-half:last-child {
    flex: 0 0 40% !important;
    align-self: flex-start !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.s-about .about-content {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
}

.hero-right-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content__inner .large-7 {
    flex: 0 0 60%;
}

.hero-content__inner .large-5 {
    flex: 0 0 40%;
}

.hero-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #000;
    overflow: hidden;
    margin-bottom: 2rem;
}

.youtube-thumbnail-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.youtube-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    transition: transform 0.2s;
}

.youtube-thumbnail-wrapper:hover .youtube-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-right-section .hero-content__buttons {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.hero-right-section .hero-content__buttons .bttn {
    width: 100%;
    margin: 0;
}

@media screen and (max-width: 1200px) {
    .hero-content__inner {
        flex-direction: column;
    }

    .hero-content__buttons .bttn {
        display: none;
    }

    .hero-video-container {
        display: block !important;
    }

    .hero-content__inner .large-7,
    .hero-content__inner .large-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-content__buttons_more {
        display: block;
    }
}

/* Desktop: Textspalte 60%, Videospalte 40% */
.s-about .column.large-half {
    flex: 0 0 60% !important;
    max-width: 60% !important;
}

.s-about .column.large-5 {
    flex: 0 0 40% !important;
    max-width: 40% !important;
    align-self: flex-start !important;
}

@media screen and (max-width: 1200px) {
    .s-about .about-content {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .s-about .column.large-half,
    .s-about .column.large-5 {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        align-self: stretch !important;
    }

    .about-actions {
        display: block !important;
    }

    .about-actions p {
        display: block !important;
    }
}


/* =====================================================
   VIDEO SLIDER (video-slider.css)
   ===================================================== */

.video-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-slider-track {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.video-slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.video-slider-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.video-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-slider-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.video-slider-nav.prev {
    left: 15px;
}

.video-slider-nav.next {
    right: 15px;
}

.video-slider-nav svg {
    width: 24px;
    height: 24px;
}

.video-slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.video-slider-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-slider-indicators .indicator.active {
    background: #fff;
    transform: scale(1.2);
}

.video-slider-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Hero Video Container Ausrichtung */
.s-hero .hero-video-container {
    padding: 0 !important;
    margin: 0 !important;
    align-self: flex-start !important;
}

.s-hero .hero-video-container::before {
    display: none !important;
    padding-bottom: 0 !important;
}

.s-hero .video-slider-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.s-hero .hero-content__inner {
    align-items: flex-start !important;
}

.s-hero .hero-content__inner .column {
    align-self: flex-start !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.s-hero .hero-content__inner .column.large-half:last-child {
    padding-top: 0 !important;
    margin-top: 0 !important;
    align-self: flex-start !important;
}

.s-hero .video-slider-nav.prev:hover {
    border: solid 2px #fff;
}

.s-hero .video-slider-nav.next:hover {
    border: solid 2px #fff;
}

/* About Section: 3 Videos vertikal - Desktop */
@media screen and (min-width: 769px) {
    .s-about .hero-video-container {
        margin: 0 !important;
        align-self: flex-start !important;
    }

    .s-about .video-slider-wrapper {
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .s-about .video-slider-track-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        order: 0;
    }

    .s-about .video-slider-track {
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: relative;
        height: auto;
        width: 100%;
        transition: transform 0.5s ease-in-out;
    }

    .s-about .video-slider-item {
        position: relative;
        opacity: 1;
        visibility: visible;
        width: 100%;
        height: auto;
        padding-bottom: 56.25%;
        flex-shrink: 0;
    }

    .s-about .video-slider-item .youtube-thumbnail-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .s-about .video-slider-nav {
        position: relative;
        width: 100%;
        height: 60px;
        background: #000;
        border: 2px solid #000;
        border-radius: 0;
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
        margin: 0 !important;
        padding: 0;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        transform: none !important;
        box-sizing: border-box;
    }

    .s-about .video-slider-nav:hover {
        background: #ffff1b;
        border: solid 2px #000;
        color: #000;
    }

    .s-about .video-slider-nav.prev {
        order: -1;
        margin-bottom: 15px !important;
    }

    .s-about .video-slider-nav.next {
        order: 999;
        margin-top: 15px !important;
    }

    .s-about .video-slider-indicators {
        position: absolute;
        left: -50px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 15px;
        bottom: auto;
        z-index: 20;
    }

    .s-about .video-slider-indicators .indicator {
        width: 15px;
        height: 15px;
    }

    .s-about .about-content {
        align-items: flex-start !important;
    }

    .s-about .column.large-half {
        align-self: flex-start !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}

/* Mobile: 1 Video mit Rotation */
@media screen and (max-width: 768px) {
    .s-about .hero-video-container {
        height: 0 !important;
        padding-bottom: 56.25% !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .s-about .video-slider-wrapper {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
    }

    .s-about .video-slider-track {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        padding-bottom: 0 !important;
    }

    .s-about .video-slider-item {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 0;
        visibility: hidden;
    }

    .s-about .video-slider-item.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .video-slider-nav {
        width: 40px;
        height: 40px;
    }

    .video-slider-nav.prev {
        left: 10px;
    }

    .video-slider-nav.next {
        right: 10px;
    }

    .video-slider-indicators {
        bottom: 10px;
    }

    .video-slider-indicators .indicator {
        width: 10px;
        height: 10px;
    }
}

.video-slider-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
}

.video-slider-item .youtube-thumbnail-wrapper {
    transition: transform 0.3s ease;
}

.video-slider-item .youtube-thumbnail-wrapper:hover {
    transform: scale(1.05);
}

@media (hover: none) {
    .video-slider-item .youtube-thumbnail-wrapper:hover {
        transform: none;
    }
}
