html,
body {
    margin: 0;
    font-family: "Chivo", sans-serif;
    background-color: #2b2b2b;
    user-select: none;
    display: flex;
    flex-direction: column;
    
}

#yellow-text {
    font-size: 40px;
    color: #FFD140;
}

#yellow-text-l {
    font-size: 25px;
    color: #ffffff;
}

#white-text {
    font-size: 16px;
    color: #d3d3d3;
    width: 50%;
}

#white-textt {
    font-size: 16px;
    color: #d3d3d3;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 300px;
    text-align: center;
    min-height: 200px;
    padding: 2rem;
    font-family: 'Quicksand', sans-serif;
    flex: 1 0 auto;
}

.content h2 {
    color: #ffffff;
    font-style: italic;
    font-family: "Chivo", sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    z-index: 10;
}

.logo {
    height: 5.5rem;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-menu {
    display: flex;
    gap: 150px;
    align-items: center;
}

.nav-menu.left {
    margin-left: 20px;
}

.nav-menu.right {
    margin-right: 20px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: "Chivo", sans-serif;
    transition: opacity 0.2s ease-in-out;
}

#discount-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#discount-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 0.75rem 1rem;
    margin-bottom: 0.8rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: background-color 0.2s ease;
}

#discount-list li:hover {
    background-color: #e9f5ff;
}

.discount-code-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    user-select: none;
    color: #444;
    flex-grow: 1;
}

.blurred {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

.blurred.visible {
    filter: none;
}

.button-group {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

button.toggle-visibility,
button.copy-code,
button.delete-code {
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    padding: 0.3rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

button.toggle-visibility:hover {
    background-color: #d0e7ff;
}

button.copy-code:hover {
    background-color: #d0ffd6;
}

button.delete-code:hover {
    background-color: #ffd6d6;
}

button svg {
    width: 20px;
    height: 20px;
    fill: #555;
}

button.delete-code svg {
    fill: #c0392b;
}


.nav-menu a:hover {
    opacity: 0.7;
}

.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 30;
    position: absolute;
    top: 20px;
    left: 20px;
}

.mobile-menu {
    text-align: center;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: #2b2b2b;
    display: flex;
    flex-direction: column;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    z-index: 25;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.mobile-menu.show {
    transform: scaleY(1);
    opacity: 1;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    font-family: "Chivo", sans-serif;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 90px;
    width: 200px;
    height: calc(100% - 90px);
    background-color: #f5f5f5;
    padding-top: 20px;
}

.sidebar a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: black;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: url('bilder/hero.webp') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.hero-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1;
}

.product-list {
    position: relative;
    margin-left: 220px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}

.product {
    border: 1px solid #ccc;
    border-radius: 15px;
    margin: 10px;
    width: 200px;
    padding: 10px;
    text-align: center;
}

.product img {
    width: 100%;
    border-radius: 15px;
}

.single-product-container {
    margin: 350px auto 40px;
    max-width: 900px;
    padding: 0 20px;
}

.single-product {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    border-radius: 15px;
    padding: 30px;
}

.product-image img {
    width: 450px;
    border-radius: 15px;
    object-fit: cover;
}

.product-details {
    flex: 1;
    color: #333;
}

.product-details h2 {
    margin-top: -15px;
    font-size: 4rem;
    font-family: "Chivo", sans-serif;
    margin-bottom: 10px;
    color: #FFD140;
}

.product-details .description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    color: #d3d3d3;
}

.product-details .price {
    font-weight: bold;
    color: white;
    font-size: 2.5rem;
}

.product-image-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: auto;
    overflow: hidden;
}

.product-image-slider .slider {
    position: relative;
}

.product-image-slider img {
    width: 100%;
    display: none;
    transition: opacity 0.5s ease-in-out;
    border-radius: 10px;
}

.product-image-slider img.active {
    display: block;
}

.product-image-slider .prev,
.product-image-slider .next {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 30px;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 4px;
}

.product-image-slider .prev {
    left: 10px;
}

.product-image-slider .next {
    right: 10px;
}

.site-footer {
    text-align: center;
    font-size: 0.75rem;
    color: #ccc;
    padding: 20px 10px;
    margin-top: 60px;
    font-family: 'Quicksand', sans-serif;
    flex-shrink: 0;

}

@media (max-width: 768px) {
    .header {
        flex-direction: row;
        height: 90px;
        padding: 0 15px;
    }

    .logo {
        position: static;
        transform: none;
        height: 70px;
        margin: 0 auto;
    }

    .nav-menu {
        display: none !important;
    }

    .hamburger {
        display: block;
        margin-left: auto;
    }

    .mobile-menu {
        top: 90px;
    }

    .single-product-container {
        margin-top: 30px;
        padding: 0 10px;
    }

    .single-product {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .product-details h2 {
        font-size: 2.5rem;
    }

    .product-details .description,
    .product-details {
        text-align: center;
        font-size: 1.2rem;
    }

    .price {
        font-size: 2.5rem;
    }

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

    form {
        margin-left: 0 !important;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .pp-UNCEY82J25DK6 {
        width: 90%;
    }

    .hero-image {
        height: 90px;
        background-position: center;
    }

    .content {
        margin-top: 50px;
        padding: 1.5rem;
    }

    #white-text {
        width: 90%;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-details h2 {
        margin-top: 2px;
        font-size: 4rem;
    }

    .pp-UNCEY82J25DK6 {
        width: 100%;
        padding: 0 1rem;
    }

    .content {
        margin-top: 0px;
    }
}

.order-status-box {
    background-color: #3a3a3a;
    border-radius: 15px;
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.order-status-box input[type="text"] {
    width: 80%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-family: "Chivo", sans-serif;

}

.order-status-box button {
    padding: 10px 30px;
    background-color: #FFD140;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "Chivo", sans-serif;
    color: white;
}

.order-status-box button:hover {
    background-color: #e6bf33;
}

.status-message {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.error-message {
    margin-top: 1rem;
    color: #ff6b6b;
    font-weight: bold;
}

.login-container {
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    margin: 5rem auto 2rem auto;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}

.login-container h2 {
    color: #FFD140;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
}

.login-container input[type="submit"] {
    background-color: #FFD140;
    color: #000;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.error {
    color: #FF6B6B;
    margin-top: 10px;
}


@media (min-width: 768px) {
    .login-container {
        margin-top: 12rem;
    }
}

@media (min-width: 1024px) {
    .login-container {
        margin-top: 30rem;
    }
}

.order-container {
    margin: 20px auto;
    max-width: 500px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Quicksand', sans-serif;
    text-align: center;
}

.order-container h2 {
    margin-bottom: 15px;
}
#orderDetails {
    display: none;
}


#statusOverviewList li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

#statusOverviewList li:last-child {
    border-bottom: none;
}

#totalOrders {
    display: inline-block;
    margin-top: 10px;
}

.order-dropdown,
.status-dropdown {
    width: 100%;
    padding: 10px;
    margin: 10px 0 20px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: 'Quicksand', sans-serif;
}

.show-order-btn {
    display: inline-block;
    min-width: 150px; 
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    background-color: #FFD140;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    margin-top: 8px;
}

.show-order-btn:hover {
    background-color: #e6be35;
}

.order-details {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    text-align: left;
}

  @media (min-width: 1024px) {
    .order-container {
      margin-top: 350px; 
    }
  }

.product-edit-container,
.order-details {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
    font-family: 'Quicksand', sans-serif;
}

.product-edit-container label,
.order-details label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
    font-size: 0.95rem;
}

.product-edit-container input[type="text"],
.product-edit-container input[type="number"],
.product-edit-container input[type="url"],
.order-details input[type="url"],
.product-edit-container textarea,
.product-edit-container select,
.order-details select {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 16px;
    font-size: 1rem;
    border: 1.8px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    color: #222;
    background-color: #fafafa;
}

.product-edit-container textarea {
    resize: vertical;
    min-height: 90px;
}

.product-edit-container input[type="text"]:focus,
.product-edit-container input[type="number"]:focus,
.product-edit-container input[type="url"]:focus,
.product-edit-container textarea:focus,
.product-edit-container select:focus,
.order-details input[type="url"]:focus,
.order-details select:focus {
    border-color: #FFD140;
    box-shadow: 0 0 8px rgba(255, 209, 64, 0.6);
    outline: none;
    background-color: #fff;
}

.order-dropdown,
.status-dropdown {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.show-order-btn {
    background-color: #FFD140;
    border: none;
    border-radius: 6px;
    padding: 12px 22px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: #222;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
    box-shadow: 0 3px 7px rgba(255, 209, 64, 0.6);
    user-select: none;
}

.show-order-btn:hover,
.show-order-btn:focus {
    background-color: #e6bd31;
    color: #111;
    box-shadow: 0 4px 12px rgba(230, 189, 49, 0.85);
    outline: none;
}

.show-order-btn:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

@media (max-width: 600px) {
    .product-edit-container,
    .order-details {
        max-width: 100%;
        padding: 15px;
    }

    .show-order-btn {
        width: 100%;
        padding: 14px 0;
    }
}

.user-management-container {
    margin-top: 30px;
}

.user-management-container h3,
.user-management-container h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.user-management-container .product-edit-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px auto;
    font-family: 'Quicksand', sans-serif;
}

.user-management-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
    font-size: 0.95rem;
}

.user-management-container input[type="text"],
.user-management-container input[type="password"],
.user-management-container input[type="email"],
.user-management-container select {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 16px;
    font-size: 1rem;
    border: 1.8px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    color: #222;
    background-color: #fafafa;
}

.user-management-container input:focus,
.user-management-container select:focus {
    border-color: #FFD140;
    box-shadow: 0 0 8px rgba(255, 209, 64, 0.6);
    outline: none;
    background-color: #fff;
}

.user-management-container .show-order-btn {
    background-color: #FFD140;
    border: none;
    border-radius: 6px;
    padding: 12px 22px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: #222;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
    box-shadow: 0 3px 7px rgba(255, 209, 64, 0.6);
    user-select: none;
    width: 100%;
}

.user-management-container .show-order-btn:hover,
.user-management-container .show-order-btn:focus {
    background-color: #e6bd31;
    color: #111;
    box-shadow: 0 4px 12px rgba(230, 189, 49, 0.85);
}

@media (max-width: 600px) {
    .user-management-container .product-edit-container {
        max-width: 100%;
        padding: 15px;
    }

    .user-management-container .show-order-btn {
        width: 100%;
        padding: 14px 0;
    }
}

.system-features {
  padding: 60px 20px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
} 

.feature-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.feature {
  flex: 0 1 300px;
  background: #454444;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  color: white;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.feature-desc {
  font-size: 1rem;
  color: #ccc;
}

.system-description {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #454444;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ccc;
  margin-bottom: 80px;
}


.system-specs {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #454444;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ccc;
  margin-bottom: 80px;
}

.system-contents {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #454444;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ccc;
  margin-bottom: 80px;
}

.system-installation {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #454444;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ccc;
  margin-bottom: 80px;
}

.system-knapp {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #454444;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ccc;
  margin-bottom: 80px;
}

@media (max-width: 600px) {
  .system-description {
    margin-left: 1rem;
    margin-right: 1rem;
  }
    .system-specs {
    margin-left: 1rem;
    margin-right: 1rem;
  }
    .system-contents {
    margin-left: 1rem;
    margin-right: 1rem;
  }
    .system-installation {
    margin-left: 1rem;
    margin-right: 1rem;
  }
    .system-knapp {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .social-media {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}

.section-title {
  font-size: 2rem;
  color: white;
  border-left: 6px solid #FFD140;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.section-titlee {
  font-size: 2rem;
  color: black;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

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

.spec-list li {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ddd;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

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

.spec-list strong {
  flex-shrink: 0;
  min-width: 200px;
  color: #FFD140;
}

.system-desc {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.system-warning {
  background-color: #fff3cd;
  color: #856404;
  padding: 1rem;
  border: 1px solid #ffeeba;
  border-radius: 8px;
  font-weight: 500;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .spec-list li {
    flex-direction: column;
  }

  .spec-list strong {
    min-width: auto;
    margin-bottom: 0.25rem;
  }

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


.social-media {
  margin: auto;
  padding: 1.5rem;
  background-color: #FFD140;
  border: 2px solid #d29f00;
  border-radius: 10px;
  text-align: center;
  max-width: 600px;
}

.social-media .section-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #222;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 1px solid #272727;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: background 0.3s ease;
}

.social-icon img {
  width: 24px;
  height: 24px;
}

.social-icon:hover {
  background: #e6f0ff;
  border-color: #1a73e8;
  color: #1a73e8;
}


.download-button {
    display: inline-block;
    background-color: #FFD140;
    color: #000;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.download-button:hover {
    background-color: #e6bc2d;
}


.knapp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.knapp-card {
    text-align: center;
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: white;
    padding: 0.8rem;
    font-weight: bold;
    font-size: 1.3rem;
    text-align: center;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

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

  .overlay-text {
    font-size: 1.1rem; 
    padding: 0.5rem;
  }

  .knapp-card p {
    font-size: 1rem; 
  }
}


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

.installationskort {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 1rem;
    text-align: center;
}

.installationsbild {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.installationsbild img {
    width: 100%;
    display: block;
    border-radius: 12px;
}


.installations-gif {
    width: 100%;
    border-radius: 12px;
    margin-top: 0.5rem;
}


.blur-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.installations-gif {
    width: 100%;
    border-radius: 12px;
    transition: filter 0.3s ease;
}

.blurredd {
    filter: blur(10px);
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
    user-select: none;
}

.blur-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 600px) {
  .system-installation {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .system-installation .section-title {
    margin-left: 22px;
   }
}

#language-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #2b2b2b;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgb(0 0 0 / 74%);
    color: #FFD140;
    border: 3px solid #434343;
}

.flag {
    width: 120px;
    height: auto;
    margin: 20px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 19%);
}

.flag:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
    .flag {
        width: 90px;
        border-radius: 9px;
    }

    .popup-content {
        padding: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

#language-switcher-footer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2b2b2b;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  display: flex;
  z-index: 10000;
}

#language-switcher-footer .flag {
  width: 37px;
  height: auto;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#language-switcher-footer .flag:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 600px) {
  #language-switcher-footer {
    display: none;
  } 
}

.faq-card {
    background-color: #1f1f1f;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin: 2rem auto;
    max-width: 800px;
    padding: 1.5rem 2rem;
    text-align: left;
    color: white;
    transition: transform 0.2s ease;
    border: 1px solid #FFD140;
}

.faq-card:hover {
    transform: scale(1.01);
}

.faq-card h2 {
    font-family: 'Orbitron', sans-serif;
    color: #FFD140;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.faq-card p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #f1f1f1;
}
