body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0 0 40px 0;
  background: #f4f4f4;
  
}

h1, h2 {
  color: #333;
  text-align: center;
}

p {
  color: #555;
}

header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.logo-img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: visible;
}

.nav-links li {
  flex: 0 0 auto;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 5px;
}

.nav-links a:hover {
  background: #eee;
  border-radius: 4px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 180px;
  white-space: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.dropdown-content li a {
  display: block;
  padding: 10px 16px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  color: #333;
  text-decoration: none;
}

.dropdown-content li a:hover {
  background: #eee;
}

.dropdown-content li + li {
  margin-top: 6px;
}

.search-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-container input {
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-container button {
  padding: 6px 10px;
  border: none;
  background: #333;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.slideshow-container {
  position: relative;
  margin: auto;
  overflow: hidden;
  max-width: 100%;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.fade {
  animation: fade 1.5s;
}

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

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
}

.prev { left: 10px; }
.next { right: 10px; }
.dot-container {
  text-align: center;
  padding: 10px 0;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active,
.dot:hover {
  background: #717171;
}

.slide-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.8);
  color: #fff !important;
  padding: 10px;
  border-radius: 5px;
  font-size: 1.2rem;
}

.info-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
  background: #fff;
}

.box {
  position: relative;
  width: 30%;
  margin: 10px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.box img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px;
  text-align: center;
}

.overlay p {
  color: #fff;
}

.info-boxes h3 {
  flex: 0 0 100%;
  text-align: center;
  margin-bottom: 20px;
}

.slide-cta {
  position: absolute;
  bottom: 23px;
  right: 50px;
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  z-index: 10;
}

.slide-cta:hover {
  background-color: #0056b3;
}

.section-desks .desk-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.floating-box {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 280px;
}

.floating-box img {
  width: 100%;
  border-radius: 8px;
}

.price {
  font-weight: bold;
  color: green;
  margin: 10px 0;
}

.add-to-basket:hover {
  background-color: #add8e6; 
  color: #fff;
}

.health-image {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
}

.video-container iframe,
.audio-container audio {
  display: block;
  margin: 20px auto;
  width: 100%;
  max-width: 800px;
  height: 400px;
}

.audio-container {
  text-align: center;
  margin-top: 20px;
}

.audio-container a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #007bff;
}

.contact-form,
.basket-section {
  background: #fff;
  padding: 20px;
  margin: 20px auto;
  width: 90%;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 15px;
}

label,
input,
textarea {
  width: 100%;
  display: block;
}

input,
textarea {
  padding: 8px;
  margin-top: 5px;
}

.btn-primary,
.btn-secondary,
.add-to-basket {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-primary {
  background: #333;
  color: #fff;
}

.btn-secondary {
  background: #888;
  color: #fff;
}

.cart-total {
  margin-top: 15px;
  text-align: right;
  font-size: 1.2rem;
}

.cart-badge {
  background: #007bff;
  color: #fff;
  padding: 2px 6px;
  border-radius: 12px;
  font-size: 0.9rem;
  vertical-align: middle;
}

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

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  text-align: center;
}

.close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}

.btn-primary:hover,
.btn-secondary:hover {
  background-color: #add8e6;
  color: #fff;
}

.site-footer {
  background: #222;
  color: #ccc;
  padding: 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-logo-img {
  height: 40px;
}

.social-links a {
  color: #ccc;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #fff;
}

.footer-copy {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
}

.site-footer {
  margin-top: 60px;
}

.benefits-table {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  border-collapse: collapse;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.benefits-table thead {
  background: #007bff;
  color: #fff;
}

.benefits-table th,
.benefits-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.benefits-table tbody tr:nth-child(odd) {
  background: #f9f9f9;
}

.benefits-table tbody tr:hover {
  background: rgba(0,123,255,0.1);
}

.benefits-table a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.benefits-table a:hover {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .search-container {
    margin-top: 10px;
  }
  .box,
  .floating-box {
    width: 90%;
  }
  .site-footer .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .social-links {
    margin-top: 10px;
  }  .benefits-table thead {
    display: none;
  }
  .benefits-table,
  .benefits-table tbody,
  .benefits-table tr,
  .benefits-table td {
    display: block;
    width: 100%;
  }
  .benefits-table tr {
    margin-bottom: 1em;
  }
  .benefits-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }
  .benefits-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    width: calc(50% - 32px);
    white-space: nowrap;
    font-weight: bold;
    text-align: left;
  }

  .dropdown-content {
    position: static !important;
    display: block !important;
    box-shadow: none !important;
    background: #f9f9f9 !important;
    margin-top: 5px !important;
  }

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

