/* [project]/src/app/globals.css [app-client] (css) */
html, body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  margin: 0;
}

body {
  flex-direction: column;
  font-family: Arial, sans-serif;
  display: flex;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

a, button, input[type="checkbox"] {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  flex: 1;
  gap: 20px;
  padding: 20px;
  display: flex;
}

.column {
  flex: 1;
}

article {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 20px;
}

footer {
  text-align: center;
  color: #fff;
  background-color: #333;
  padding: 20px;
}

.topnav {
  background-color: #333;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  top: 0;
}

.topnav a {
  color: #f2f2f2;
  text-align: center;
  white-space: nowrap;
  padding: 14px 12px;
  font-size: 17px;
  text-decoration: none;
}

.topnav a:hover {
  color: #000;
  background-color: #ddd;
}

.topnav a.active {
  color: #fff;
  background-color: #4caf50;
}

.topnav .logo {
  color: #f2f2f2;
  cursor: default;
  margin-right: 0;
  padding: 14px 16px;
  font-size: 20px;
  font-weight: bold;
}

.topnav .menu-icon {
  cursor: pointer;
  color: #f2f2f2;
  margin-left: auto;
  padding: 14px 16px;
  font-size: 24px;
  display: none;
}

.topnav .nav-links {
  flex: 1;
  align-items: center;
  display: flex;
}

.dropdown {
  position: relative;
  overflow: visible;
}

.dropdown .dropbtn {
  color: #fff;
  background-color: inherit;
  cursor: pointer;
  text-align: left;
  touch-action: manipulation;
  border: none;
  outline: none;
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 17px;
}

.dropdown .dropbtn:hover {
  color: #f2f2f2;
  background-color: #555;
}

.dropdown .dropbtn:active {
  background-color: #666;
}

.dropdown .dropbtn.dark-mode {
  color: #f2f2f2;
  background-color: #333;
}

.dropdown .dropbtn.dark-mode:hover {
  color: #f2f2f2;
  background-color: #555;
}

.dropdown-content {
  color: #333;
  z-index: 1000;
  min-width: 160px;
  display: none;
  position: absolute;
  box-shadow: 0 8px 16px #0003;
}

.dropdown-content a {
  float: none;
  color: #f2f2f2;
  text-align: left;
  touch-action: manipulation;
  background-color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  color: #333;
  background-color: #ddd;
}

.dropdown-content a:active {
  background-color: #ccc;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media (hover: none) {
  .dropdown:hover .dropdown-content {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .topnav .menu-icon {
    display: block;
  }

  .topnav .nav-links {
    z-index: 999;
    background-color: #333;
    flex-direction: column;
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .topnav .nav-links.active {
    display: flex;
  }

  .topnav a {
    text-align: left;
    width: 100%;
    padding: 14px 16px;
  }

  .topnav .dropdown {
    width: 100%;
  }

  .topnav .dropdown-content {
    width: 100%;
    box-shadow: none;
    display: none;
    position: static;
  }

  .topnav .dropdown:hover .dropdown-content {
    display: none;
  }

  .topnav .dropdown.active .dropdown-content {
    display: block;
  }

  .topnav .dark-mode-switch {
    justify-content: flex-start;
    width: 100%;
    margin-left: 0;
    padding: 14px 16px;
  }

  .column {
    width: 100%;
  }

  .container {
    flex-direction: column;
    flex: 1;
    gap: 20px;
    padding: 15px;
    display: flex;
  }

  article {
    padding: 15px;
  }

  .product-page {
    flex-direction: column;
  }

  .product-info {
    flex-basis: 100%;
  }

  .slideshow-container {
    max-width: 100%;
    max-height: 400px;
  }

  .mySlides img {
    max-height: 400px;
  }
}

@media screen and (max-width: 600px) {
  .topnav .logo {
    padding: 14px 12px;
    font-size: 18px;
  }

  .manual-info h2 {
    font-size: 1.1em;
  }

  .manual-info p {
    font-size: .85em;
  }

  .view-btn, .download-btn {
    margin-right: 5px;
    padding: 8px 12px;
    font-size: .9em;
  }

  footer {
    padding: 15px 10px;
    font-size: .9em;
  }
}

.manuals-grid {
  flex: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  display: grid;
}

@media (max-width: 1400px) {
  .manuals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .manuals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .manuals-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .manuals-grid {
    gap: 12px;
    padding: 10px;
  }
}

.manual {
  text-align: center;
  background-color: #f3f3f3;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  transition: transform .3s, box-shadow .3s;
  display: block;
  box-shadow: 0 4px 8px #0000001a;
}

.manual:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px #0003;
}

.manual:active {
  transform: scale(1.02);
}

.manual-link-wrapper {
  color: inherit;
  text-decoration: none;
  display: block;
}

@media (hover: none) {
  .manual:hover {
    transform: none;
    box-shadow: 0 4px 8px #0000001a;
  }

  .manual:active {
    transform: scale(.98);
    box-shadow: 0 2px 4px #0000001a;
  }
}

.manual-img {
  object-fit: contain;
  border-radius: 8px;
  width: 100%;
  height: 200px;
}

.manual-info {
  padding: 15px;
}

.manual-info h2 {
  color: #333;
  word-wrap: break-word;
  margin: 10px 0 5px;
  font-size: 1.2em;
}

.manual-info p {
  color: #666;
  word-wrap: break-word;
  margin: 5px 0 0;
  font-size: .9em;
}

.manuals-grid.dark-mode {
  background-color: #1e1e1e;
}

.manual.dark-mode {
  background-color: #242424;
  border-color: #555;
}

.manual.dark-mode .manual-info h2 {
  color: #f2f2f2;
}

.manual.dark-mode .manual-info p {
  color: #ccc;
}

.dark-mode-switch {
  white-space: nowrap;
  align-items: center;
  margin-left: auto;
  padding: 14px 12px;
  display: flex;
}

.dark-mode-switch label {
  color: #f2f2f2;
  margin-right: 8px;
  font-size: 15px;
}

.switch {
  width: 34px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  cursor: pointer;
  background-color: #ccc;
  border-radius: 34px;
  transition: all .4s;
  position: absolute;
  inset: 0;
}

.slider:before {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  transition: all .4s;
  position: absolute;
  bottom: 3px;
  left: 3px;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:checked + .slider:before {
  transform: translateX(14px);
}

body.dark-mode {
  color: #e0e0e0;
  background-color: #121212;
}

.topnav.dark-mode {
  background-color: #333;
}

.topnav.dark-mode a {
  color: #f2f2f2;
}

article.dark-mode {
  background-color: #1e1e1e;
  border-color: #333;
}

footer.dark-mode {
  color: #f2f2f2;
  background-color: #1e1e1e;
}

.topnav.dark-mode a:hover {
  color: #f2f2f2;
  background-color: #555;
}

.dropdown-content.dark-mode {
  color: #f2f2f2;
  background-color: #333;
}

.dropdown-content.dark-mode a:hover {
  color: #fff;
  background-color: #555;
}

.manual-buttons {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  display: flex;
}

.view-btn, .download-btn {
  color: #fff;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  background-color: #007bff;
  border-radius: 5px;
  padding: 10px 15px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color .3s;
  display: inline-block;
}

.view-btn:hover, .download-btn:hover {
  background-color: #0056b3;
}

.view-btn:active, .download-btn:active {
  transform: scale(.98);
}

.slideshow-container {
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  max-width: 1200px;
  max-height: 800px;
  margin: auto;
  position: relative;
}

.mySlides {
  display: none;
}

.mySlides.active {
  display: block;
}

.mySlides img {
  object-fit: contain;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  width: 100%;
  max-height: 800px;
}

@media screen and (max-width: 768px) {
  .slideshow-container, .mySlides img {
    max-height: 500px;
  }
}

@media screen and (max-width: 480px) {
  .slideshow-container, .mySlides img {
    max-height: 300px;
  }
}

.prev, .next {
  cursor: pointer;
  color: #fff;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  background-color: #00000080;
  border-radius: 0 3px 3px 0;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  transition: all .6s;
  position: absolute;
  top: 50%;
}

.next {
  border-radius: 3px 0 0 3px;
  right: 0;
}

.prev:hover, .next:hover {
  background-color: #000c;
}

.prev:active, .next:active {
  background-color: #000000e6;
}

@media screen and (max-width: 600px) {
  .prev, .next {
    padding: 12px;
    font-size: 16px;
  }
}

.product-page {
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  display: flex;
}

.product-info {
  flex-basis: 50%;
}

.product-info h2 {
  word-wrap: break-word;
}

.product-info ul {
  padding-left: 20px;
}

.product-info ul li {
  word-wrap: break-word;
  margin-bottom: 8px;
}

.manual-section {
  padding: 20px;
}

.manual-section h3 {
  word-wrap: break-word;
  margin-top: 0;
}

@media screen and (max-width: 600px) {
  .manual-section {
    padding: 15px;
  }
}

.product-info.dark-mode h2, .manual-section h3 {
  color: #fff;
}

.view-btn.dark-mode, .download-btn.dark-mode {
  background-color: #555;
}

.view-btn.dark-mode:hover, .download-btn.dark-mode:hover {
  background-color: #777;
}

.cookie-banner {
  z-index: 1000;
  background-color: #f8f9fa;
  padding: 1rem;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -2px 10px #0000001a;
}

.cookie-banner.dark-mode {
  color: #fff;
  background-color: #2d2d2d;
}

.cookie-banner-content {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.cookie-banner-buttons {
  gap: .5rem;
  display: flex;
}

.cookie-btn {
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: .5rem 1rem;
  font-weight: 500;
}

.allow-cookies {
  color: #fff;
  background-color: #4caf50;
}

.deny-cookies {
  color: #fff;
  background-color: #f44336;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    text-align: center;
    flex-direction: column;
  }

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

  .product-page {
    flex-direction: column;
  }

  .product-image-slideshow {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.5em;
  }

  h2 {
    font-size: 1.3em;
  }

  h3 {
    font-size: 1.1em;
  }

  .container {
    gap: 15px;
    padding: 10px;
  }

  article {
    padding: 12px;
  }
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/