:root {
  --header-height: 60px;
  --container-max-width: 1150px;

  scroll-behavior: smooth;

  --primary-color: #233753;
  --primary-text-color: #393939;
  --light-green-color: #53a4a7;

  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-24: 24px;
  --font-size-28: 28px;
  --font-size-32: 32px;
  --font-size-48: 48px;
}

/* UTILITIES */
.beige {
  background-color: beige;
}

.new {
  background-color: yellow;
}

.text-white {
  color: white;
}

.text-left {
  text-align: left;
}

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

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--font-size-24);
}

.flex {
  display: flex;
  align-items: center;
}

.flex-list {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.flex-16 {
  display: flex;
  align-items: center;
  gap: var(--font-size-16);
}

.flex-1 {
  flex: 1;
}

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.align-self-center {
  align-self: center;
}

.align-self-end {
  align-self: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-items-center {
  justify-items: center;
}

.justify-space-evenly {
  justify-content: space-evenly;
}

.justify-space-between {
  justify-content: space-between;
}

.flex-right {
  margin-left: auto;
}

.flex-left {
  margin-right: auto;
}

.light-green-color {
  color: var(--light-green-color);
}

.primary-color {
  color: var(--primary-color);
}

.primary-text-color {
  color: var(--primary-text-color);
}

.mr-30 {
  margin-right: 30px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-140 {
  margin-top: 140px;
}

.lh-md {
  line-height: 1.6;
}

.lh-lg {
  line-height: 1.8;
}

@font-face {
  font-family: "Cera Pro Black";
  src: url("./fonts/CeraPro-Black.eot");
  src:
    url("./fonts/CeraPro-Black.eot?#iefix") format("embedded-opentype"),
    url("./fonts/CeraPro-Black.woff2") format("woff2"),
    url("./fonts/CeraPro-Black.woff") format("woff"),
    url("./fonts/CeraPro-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Cera Pro Medium";
  src: url("./fonts/CeraPro-Medium.eot");
  src:
    url("./fonts/CeraPro-Medium.eot?#iefix") format("embedded-opentype"),
    url("./fonts/CeraPro-Medium.woff2") format("woff2"),
    url("./fonts/CeraPro-Medium.woff") format("woff"),
    url("./fonts/CeraPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Cera Pro Bold";
  src: url("./fonts/CeraPro-Bold.eot");
  src:
    url("./fonts/CeraPro-Bold.eot?#iefix") format("embedded-opentype"),
    url("./fonts/CeraPro-Bold.woff2") format("woff2"),
    url("./fonts/CeraPro-Bold.woff") format("woff"),
    url("./fonts/CeraPro-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Cera Pro";
  src: url("./fonts/CeraPro-Regular.eot");
  src:
    url("./fonts/CeraPro-Regular.eot?#iefix") format("embedded-opentype"),
    url("./fonts/CeraPro-Regular.woff2") format("woff2"),
    url("./fonts/CeraPro-Regular.woff") format("woff"),
    url("./fonts/CeraPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  min-height: 100vh;
  margin: 0;
  background-color: #f6f9fc;
  font-family: "Cera Pro", Helvetica, Arial, sans-serif;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  color: var(--primary-color);
  font-size: var(--font-size-16);
}

.font-regular {
  font-family: "Cera Pro";
}

.font-bold {
  font-family: "Cera Pro Bold";
}

.font-medium {
  font-family: "Cera Pro Medium";
}

.font-black {
  font-family: "Cera Pro Black";
}

.header {
  padding: 0 var(--font-size-32);
}

.header-actions {
  margin-top: 50px;
}

.header-actions p {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: bold;
}

.header-actions {
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, 350px);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.header-actions p i {
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 4px;
}

.location-action {
  text-align: right;
}

.location-action a {
  font-size: 18px;
}

.call-action a {
  font-size: 20px;
}

.location-action i {
  background: url("./img/icons/map-pin-line-icon.svg") no-repeat center center /
    contain;
}

.call-action i {
  background: url("./img/icons/phone-line-icon.svg") no-repeat center center /
    contain;
}

.header .container {
  display: flex;
  align-items: center;
}

.highlight-image {
  max-width: 270px;
}

.call-action {
  text-align: right;
}

.logo {
  background: no-repeat center/80% url("./img/logo.svg");
  color: transparent;
  display: block;
  width: 170px;
  height: 100px;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  line-height: 75px;
  background-color: white;
  box-shadow: 0 -20px 26px 3px rgba(0, 0, 0, 0.6);
  animation: slide-down 0.5s ease;
  z-index: 1;
}

.nav-menu li {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  justify-content: space-between;
}

.nav-menu li a {
  padding: 12px 16px;
  border-radius: 8px;
}

.nav-menu li a:hover,
.active {
  background-color: var(--primary-color);
  color: white;
}

.split-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: var(--font-size-16);
}

.split-area-50 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 5px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: var(--font-size-32);
}

.gap-16 {
  gap: var(--font-size-16);
}

.gap-24 {
  gap: var(--font-size-24);
}

/* HERO */

.hero-section {
  position: relative;
}

.hero-image {
  height: 500px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
}

.hero-image img {
  border-radius: 8px;
}

.hero-intro-text {
  position: absolute;
  left: 46px;
  top: 120px;
  text-align: left;
  max-width: 400px;
}

.hero-image::before {
  background-color: var(--primary-color);
  display: block;
  content: "";
  position: absolute;
  height: inherit;
  width: inherit;
  z-index: -1;
  border-radius: 8px;
}

.section-title {
  color: var(--primary-text-color);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  font-size: 36px;
  line-height: 45px;
}

.section-title::after {
  width: 10px;
  height: 10px;
  background-color: var(--light-green-color);
  display: block;
  content: "";
  position: absolute;
  right: -15px;
  border-radius: 100%;
  bottom: 14px;
}

.section-title::before {
  content: "";
  display: block;
  width: 20%;
  height: 4px;
  background-color: var(--primary-text-color);
  bottom: 0;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  border-radius: 4px;
}

.subtitle {
  font-size: var(--font-size-16);
  color: var(--primary-text-color);
  margin: 32px auto 64px;
  max-width: 70%;
}

.paragraph {
  font-size: var(--font-size-16);
  color: var(--primary-text-color);
  margin-bottom: var(--font-size-16);
}

.image-grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--font-size-16);
}

.image-full {
  grid-column: span 12;
}

.image-half {
  grid-column: span 6;
}

@media (max-width: 768px) {
  .image-full,
  .image-half {
    grid-column: span 12;
  }
}

.media-content {
  height: 420px;
  background: url("./img/control.jpg") no-repeat top center / cover;
  margin-right: 25px;
  border-radius: 8px;
}
.media-content + .text-content p {
  max-width: 100%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.grid-item {
  display: grid;
  align-items: center;
  grid-template-columns: 80px 1fr;
  padding: 16px;
  border-radius: 4px;
  text-align: left;
}

.services-section {
  margin-top: 800px;
}

.services-section [class^="svg-"] {
  width: 70px;
  height: 70px;
  background-size: cover;
  background-position: center;
  margin-right: 16px;
  display: block;
}

.services-section .svg-1 {
  background: url("./img/service_1.svg") no-repeat center center / contain;
}

.services-section .svg-2 {
  background: url("./img/service_2.svg") no-repeat center center / contain;
}

.services-section .svg-3 {
  background: url("./img/service_3.svg") no-repeat center center / contain;
}

.services-section .svg-4 {
  background: url("./img/service_4.svg") no-repeat center center / contain;
}

.services-section .svg-5 {
  background: url("./img/service_5.svg") no-repeat center center / contain;
}

.services-section .svg-6 {
  background: url("./img/service_6.svg") no-repeat center center / contain;
}

.services-section p {
  font-size: 14px;
}

.services-section .svg-4,
.services-section .svg-5 {
  width: 77px;
  height: 47px;
}

/* Product Categories */
.product-categories .grid-item {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.product-categories .grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-image-placeholder {
  width: 100%;
  height: 320px;
  background-color: #ffffff;
  border-radius: 6px;
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Improve image sizing within containers */
.product-image-placeholder img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Remove absolute positioning that might be causing issues */
.product-image-placeholder img {
  position: static;
  transform: none;
}

/* Add box shadow for better visual appearance */
.product-image-placeholder {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* For the first category (Ενδοκαναλικά) which has a different layout */
.category-left .product-image-placeholder {
  height: 250px;
}

.category-left .product-image-placeholder img {
  max-width: 85%;
  max-height: 85%;
}

/* Ensure all ::after and ::before elements are removed */
.product-image-iic::after,
.product-image-bte::after,
.product-image-ric::after,
.product-image-earplugs::after,
.product-image-custom::after,
.product-image-swim::after,
.product-image-shooting::after,
.product-image-sleep::after,
.product-image-placeholder::after,
.product-image-placeholder::before {
  content: none;
  display: none;
}

.product-categories h3 {
  margin: 16px 0 12px 0;
  font-size: 18px;
  color: var(--primary-text-color);
  width: 100%;
}

.subcategories {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: auto;
}

.subcategories li {
  background: #e9ecef;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 16px;
  color: #495057;
  display: inline-block;
  margin: 0;
}

/* Product category labels */
.product-image-label {
  color: white;
  font-weight: bold;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  padding: 10px;
}

/* Smaller font size for longer text */
.product-image-label.small {
  font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-image-placeholder {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .product-image-placeholder {
    height: 160px;
  }
}

#image-text {
  position: relative;
}

.left-ear {
  width: 24px;
  display: inline-block;
  position: absolute;
  height: auto;
  left: 0;
  top: -13px;
}

.credits-section p {
  position: relative;
}

.font-size-24 {
  font-size: var(--font-size-24);
}

.font-size-28 {
  font-size: var(--font-size-28);
}

.font-size-32 {
  font-size: var(--font-size-32);
}

.font-size-48 {
  font-size: var(--font-size-48);
}

.font-size-16 {
  font-size: var(--font-size-16);
}

.font-size-14 {
  font-size: 14px;
}

.font-size-18 {
  font-size: var(--font-size-18);
}

/* Adjustments for mobile view */
@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-categories .grid-item {
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
  }

  .product-categories h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #f0f0f0;
  }

  .product-item-info {
    padding-top: 10px;
    line-height: 1.6;
  }
}

/* Additional styles for very small screens */
@media (max-width: 400px) {
  .grid {
    gap: 2.5rem;
  }

  .product-categories .grid-item {
    margin-bottom: 25px;
  }
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  height: 400px;
}

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

.gallery-item.full-width {
  grid-column: span 2;
  height: 444px;
}

.soundwave {
  background: url("./img/soundwave.svg") no-repeat center center / cover;
  width: 100%;
  height: 200px;
}

/* KID */
.kid-section {
  grid-template-columns: 500px 1fr;
  gap: 54px;
}

.trust-specialists {
  grid-template-columns: minmax(auto, 60%) 1fr;
}

.button-like-phone {
  background: #233753;
  border-radius: 8px;
  font-size: 24px;
  line-height: 25px;
  color: #fff;
  align-self: baseline;
  display: inline-block;
  padding: 12px 54px;
}

.siros-item,
.tinos-item {
  margin-top: -110px;
  font-size: 42px;
  color: black;
}

.benafon {
  background: url("./img/bernafon_hero.png") no-repeat center center / cover;
  width: 100%;
  height: 480px;
  position: relative;
}

.benafon::after {
  content: "";
  display: block;
  background: #f6f9fc;
  color: white;
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
  padding: 10rem 20%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -210px;
}

.benafon .container {
  position: absolute;
  top: 100px;
  left: 150px;
}

.benafon img {
  width: 200px;
  max-width: 100%;
}

.assembled li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assembled span {
  font-size: 28px;
  font-weight: bold;
}

.assembled li:first-child img {
  opacity: 20%;
}

.assembled li:nth-child(2) img {
  opacity: 40%;
}

.assembled li:last-child img {
  opacity: 60%;
}

.contact-list-icons {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  display: grid;
  gap: 16px;
  align-items: center;
}

.contact-list-icons li {
  display: grid;
  grid-template-columns: 35px 1fr;
  text-align: left;
}

.contact-list-icons li p {
  margin-top: 0;
  margin-left: 16px;
}

.contact-list-icons li:first-child > div {
  background: url("./img/icons/gps-icon.svg") no-repeat center center / contain;
  height: 30px;
  width: auto;
}
.contact-list-icons li:nth-child(2) > div {
  background: url("./img/icons/email-round-solid-icon.svg") no-repeat center
    center / contain;
  height: 30px;
  width: auto;
}
.contact-list-icons li:nth-child(3) > div {
  background: url("./img/icons/telephone-white.svg") no-repeat center center /
    contain;
  height: auto;
  width: auto;
}
.contact-list-icons li:last-child > div {
  background: url("./img/icons/instagram-icon.svg") no-repeat center center /
    contain;
  height: auto;
  width: auto;
}

.contact .form input,
.contact .form textarea {
  height: 50px;
  background-color: #f0f5f9;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 16px;
}

.contact .form textarea {
  min-height: 200px;
  width: 100%;
}

.form button {
  padding: 12px 24px;
  border: 1px solid #a7a7a7;
  align-self: center;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.form button:hover {
  background-color: #ececec;
}

/* FOOTER */

.footer {
  background-color: var(--primary-color);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--font-size-32);
  padding: var(--font-size-32);
  box-sizing: border-box;
  align-items: start;
  justify-items: center;
  padding-top: 120px;
}

.footer-title {
  font-size: 16px;
  margin-bottom: var(--font-size-16);
}

.footer-column li:first-child {
  font-weight: 500;
  color: #fff;
}

.footer-column a {
  display: block;
  text-decoration: none;
  color: #cacaca;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-column a:hover {
  color: #fff;
}

.logo-footer {
  background: url("./img/logo_footer.svg") no-repeat center center / contain;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  padding-bottom: 180px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.no-padding {
  padding: 0;
}

@keyframes slide-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 790px) {
  .location-action a,
  .call-action a {
    font-size: 15px;
  }

  .kid-section {
    grid-template-columns: 370px 1fr;
  }

  .benafon .container {
    top: 50px;
    left: 50px;
  }

  .benafon .container p {
    margin-top: 200px;
  }

  .contact-list-icons li p {
    font-size: 15px;
  }
}

@media (max-width: 650px) {
  .nav-menu li {
    font-size: 14px;
  }

  .contact > div {
    align-items: stretch;
    flex-direction: column;
  }

  .contact .form button {
    width: 100%;
  }

  .footer-container {
    justify-items: start;
  }

  .assembled > ul {
    flex-direction: column;
  }

  .assembled li {
    width: 150px;
  }

  .assembled li:not(:last-child) {
    margin-bottom: 90px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-title::after {
    width: 8px;
    height: 8px;
    bottom: 20px;
  }

  .section-title::before {
    width: 50%;
    bottom: 7px;
  }

  .subtitle {
    margin: 24px auto 42px;
    max-width: none;
  }

  .split-area {
    grid-template-columns: 1fr;
  }

  .trust-specialists {
    justify-items: start;
  }

  .sound-of li {
    width: 90px;
  }

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

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

  .contact-list-icons {
    grid-template-columns: 2fr auto;
    grid-template-rows: repeat(4, 1fr);
    align-items: start;
    gap: 20px;
  }

  .header > div {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions {
    flex-direction: row;
  }

  .location-action {
    justify-content: unset;
    align-items: unset;
  }

  .flex-header-actions {
    align-items: start;
  }

  .header-actions {
    margin-top: 50px;
  }

  .left-ear {
    left: -6px;
  }

  .credits-section {
    .text-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    p {
      max-width: none;
    }
  }

  .button-like-phone {
    align-self: center;
  }
}

@media (max-width: 850px) {
  .header-actions {
    margin: 20px 0 0;
    grid-template-columns: repeat(2, auto);
  }
}

@media (max-width: 649px) {
  .flex-header-actions {
    align-items: center;
    flex: 1;
  }

  .flex-header-actions p {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .location-action p span,
  .call-action p span {
    margin-top: 10px;
  }

  .location-action a,
  .call-action a {
    text-align: center;
    font-size: 14px;
  }

  .nav-menu li a {
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 12px;
  }

  .nav-menu ul {
    gap: 0;
  }

  .header > div {
    margin-bottom: 60px;
    align-items: center;
  }

  .logo {
    width: 155px;
  }
}

@media (max-width: 500px) {
  .contact-list-icons {
    grid-template-columns: 1fr;
  }
}

/* asdasdasdasda */

#slideshow-container {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  height: 700px;

  box-shadow: 0 0 2px 0px #39393940;
  border: 1px solid #cde2ff;

  border-radius: 8px;
  margin-left: 20px;
  margin-right: 20px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  padding: 10px 15px;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-items: center;

  box-shadow: 0px 0px -17px 3px #c9bff3;

  border-radius: 50%;
  width: 50px;
  height: 50px;

  opacity: 0;
  transition: opacity 0.5s ease;

  i {
    opacity: 0.7;
  }
}
.prev:hover,
.next:hover {
  background-color: #eee;
}

#slideshow-container:hover {
  .prev,
  .next {
    opacity: 1;
  }
}

.prev {
  left: 20px;
}
.next {
  right: 20px;
}

/* Contact Section */
.contact-columns {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.contact-column {
  flex: 1;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-column h3 {
  margin-bottom: 25px;
  color: var(--primary-color);
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
  display: inline-block;
  font-size: 20px;
}

.contact-list-location {
  list-style: none;
  padding: 0;
}

.contact-list-location li {
  display: grid;
  grid-template-columns: 35px 1fr;
  text-align: left;
  margin-bottom: 20px;
  align-items: center;
}

.contact-list-location li p {
  margin-top: 0;
  margin-left: 16px;
  line-height: 1.5;
}

.location-icon {
  background: url("./img/icons/map-pin-line-icon.svg") no-repeat center center /
    contain;
  height: 30px;
  width: auto;
}

.phone-icon {
  background: url("./img/icons/phone-line-icon.svg") no-repeat center center /
    contain;
  height: 30px;
  width: auto;
}

.contact-common {
  display: flex;
  justify-content: center;
  margin: 60px 0 0 0;
  padding: 20px 0;
}

.contact-list-common {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 60px;
}

.contact-list-common li {
  display: grid;
  grid-template-columns: 45px 1fr;
  text-align: left;
  align-items: center;
}

.contact-list-common li p {
  margin-top: 0;
  margin-left: 16px;
  font-size: 18px;
}

.email-icon {
  background: url("./img/icons/email-round-solid-icon.svg") no-repeat center
    center / contain;
  height: 40px;
  width: 40px;
}

.instagram-icon {
  background: url("./img/icons/instagram-icon.svg") no-repeat center center /
    contain;
  height: 40px;
  width: 40px;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
  .contact-columns {
    flex-direction: column;
  }

  .contact-list-common {
    flex-direction: column;
    gap: 15px;
  }
}

.maps-container {
  display: flex;
  gap: 30px;
  margin-top: 60px;
}

.map-column {
  flex: 1;
}

.map-column h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
  display: inline-block;
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 350px;
}

/* Responsive styles for maps */
@media (max-width: 768px) {
  .maps-container {
    flex-direction: column;
  }

  .map-column:first-child {
    margin-bottom: 40px;
  }
}

/* Assembled Section - New Layout */
.bernafon-tech-container {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin: 0 auto;
  max-width: 1000px;
}

.bernafon-tech-image-container {
  flex: 0 0 45%;
  max-width: 45%;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.bernafon-tech-image {
  width: 100%;
}

.bernafon-features {
  display: flex;
  flex-direction: column;
  gap: 60px;
  flex: 0 0 50%;
  padding-top: 60px;
}

.feature-item {
  display: flex;
  align-items: center;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  height: 60px;
}

.feature-circle {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background-color: #233753;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
}

.feature-tick {
  color: white;
  font-size: 32px;
  font-weight: bold;
}

.feature-text {
  font-weight: 700;
  font-size: 22px;
  color: #333;
  white-space: nowrap;
  flex: 1;
}

/* Responsive styles for assembled section */
@media (max-width: 768px) {
  .bernafon-tech-container {
    flex-direction: column;
    gap: 30px;
  }

  .bernafon-tech-image-container {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .bernafon-features {
    gap: 25px;
    padding-top: 20px;
  }

  .feature-item {
    height: 45px;
  }

  .feature-circle {
    width: 45px;
    height: 45px;
    min-width: 45px;
    margin-right: 15px;
  }

  .feature-tick {
    font-size: 24px;
  }

  .feature-text {
    font-size: 16px;
    white-space: normal;
  }
}

/* Additional reductions for smaller screens */
@media (max-width: 480px) {
  .bernafon-tech-container {
    gap: 20px;
  }

  .bernafon-features {
    margin: 0 auto;
    gap: 15px;
    padding-top: 10px;
  }

  .feature-item {
    height: 40px;
  }

  .feature-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-right: 10px;
  }

  .feature-tick {
    font-size: 20px;
  }

  .feature-text {
    font-size: 14px;
  }

  /* Ensure the image doesn't take up too much space */
  .bernafon-tech-image-container {
    margin-bottom: 15px;
  }
}

.product-item-info {
  margin-top: 12px;
  font-size: 15px;
  color: #495057;
  line-height: 1.5;
}

.product-item-info p {
  margin-bottom: 8px;
}

.product-item-info p:last-child {
  margin-bottom: 0;
}

.product-item-info strong {
  font-weight: 600;
}

/* Full-width category layout */
.product-categories .grid-item.full-width {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  padding: 30px;
  align-items: flex-start;
}

.product-categories .grid-item.full-width .category-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-categories .grid-item.full-width .category-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.product-categories .grid-item.full-width h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
}

.product-categories .grid-item.full-width .subcategory-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.product-categories .grid-item.full-width .subcategory-tab {
  padding: 10px 20px;
  background-color: #f1f3f5;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.product-categories .grid-item.full-width .subcategory-tab.active {
  background-color: #e9ecef;
  font-weight: 800;
  color: #233753;
}

.product-categories .grid-item.full-width .subcategory-content p {
  margin-bottom: 12px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .product-categories .grid-item.full-width {
    grid-template-columns: 1fr;
  }

  .product-categories .grid-item.full-width .category-left {
    margin-bottom: 20px;
  }
}

.slideshow-container-2 {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 50px;
}

.slideshow-track {
  display: flex;
  width: calc(290px * 8); /* (250px slide + 40px margin) * 8 slides */
  animation: scroll 20s linear infinite;
}

.slide-2 {
  flex-shrink: 0;
  width: 400px;
  height: 610px;
  margin-right: 40px; /* Increased space between items */
}

.slide-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-290px * 4)); /* (250px slide + 40px margin) * 4 slides */
  }
}
