@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --header-top-bar-height: 46px;
  --header-height: 80px;

  --color-primary: #1d3362;
  --color-dark: #252525;
  --color-muted: #656565;
  --color-gray: #d8d8d8;
  --color-light: #f8f8f8;

  --rgb-color-primary: 29, 51, 98;

  --color-primary-50: #eaf0f9;
  --color-primary-100: #cddaf0;
  --color-primary-200: #aec3e6;
  --color-primary-300: #8ea9db;
  --color-primary-400: #6c8ecd;
  --color-primary-500: #4a73ba;
  --color-primary-600: #375a9a;
  --color-primary-700: #2a467b;
  --color-primary-800: #1d3362;
  --color-primary-900: #142346;
}

*,
*::before,
*::after {
  outline: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ol:not(.list),
ul:not(.list) {
  list-style: none;
}

a {
  text-decoration: none;
  color: #1d3362;
}

input,
textarea {
  font-family: "Open Sans";
}

body {
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

body.sticky-header {
  padding-top: var(--header-height);
}

.container {
  width: 95%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* * Loader Start */
.loader-rean {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f8f8f8;
  will-change: opacity, visibility, transform;
  transition: opacity 300ms ease, visibility 300ms ease, transform 300ms ease;
}
.loader-rean.hide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.5);
}
.loader-rean .rean-text {
  display: flex;
  gap: 0.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-primary-100);
  -webkit-text-stroke: 1px var(--color-primary-900);
  font-family: "Arial Black", sans-serif;
}
.loader-rean .rean-text span {
  display: inline-block;

  animation: neonBounce 1.5s infinite ease-in-out;
  text-shadow: 0 0 5px var(--color-primary-100),
    0 0 10px var(--color-primary-100), 0 0 20px var(--color-primary-100),
    0 0 40px var(--color-primary-100), 0 0 80px var(--color-primary-100);
}
.loader-rean .rean-text span:nth-child(1) {
  animation-delay: 0s;
}
.loader-rean .rean-text span:nth-child(2) {
  animation-delay: 0.2s;
}
.loader-rean .rean-text span:nth-child(3) {
  animation-delay: 0.4s;
}
.loader-rean .rean-text span:nth-child(4) {
  animation-delay: 0.6s;
}
.loader-rean img {
  animation: bounce 1s infinite ease-in-out;
}

@keyframes neonBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
    text-shadow: 0 0 5px var(--color-primary-100),
      0 0 10px var(--color-primary-100), 0 0 20px var(--color-primary-100),
      0 0 40px var(--color-primary-100), 0 0 80px var(--color-primary-100);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-15px) scale(1.1);
    text-shadow: 0 0 10px var(--color-primary-100),
      0 0 20px var(--color-primary-100), 0 0 40px var(--color-primary-100),
      0 0 60px var(--color-primary-100), 0 0 100px var(--color-primary-100);
    opacity: 1;
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-15px) scale(1.01);
    opacity: 0.9;
  }
}
/* * Loader End */

/* * Loader Mobile Start */
.loader-rean .rean-text {
  font-size: 3rem;
}
/* * Loader Mobile End */

/* * Header Top Bar Start */
header.header-top-bar {
  background-color: var(--color-primary);
  color: white;
  height: var(--header-top-bar-height);
}
header.header-top-bar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header-top-bar .container .contact-informations {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
}
header.header-top-bar .container .contact-informations a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: #d8d8d8;
}
header.header-top-bar .container .contact-informations a:hover {
  color: white;
}
header.header-top-bar .container .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}
header.header-top-bar .container .social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d8d8d8;
}
header.header-top-bar .container .social-media a:hover {
  color: white;
}

/* * Header Top Bar End */

/* * Header Top Bar Mobile Start */
@media (max-width: 450px) {
  header.header-top-bar {
    height: max-content;
  }
  header.header-top-bar .container {
    gap: 0.5rem;
    padding: 0.75rem 0;
  }
  header.header-top-bar .container .contact-informations {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem !important;
  }
  header.header-top-bar .container .contact-informations a {
    font-size: 0.85rem;
  }
  header.header-top-bar .container .social-media {
    margin-top: 0.5rem;
    gap: 0.75rem;
  }
}
/* * Header Top Bar Mobile End */

/* * Header Start */
header.header {
  height: var(--header-height);
  background-color: white;
  border-bottom: 1px solid #e8e8e8;
  transition: all 300ms ease;
  position: relative;
  z-index: 100;
  left: 0;
  right: 0;
  transform: translateY(0);
}
header.header.sticky {
  position: fixed;
  top: calc(var(--header-height) * -1);
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transform: translateY(100%);
}
header.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header .container .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
header.header .container .menu a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-muted);
  position: relative;
  padding: 0.5rem;
  transition: all 300ms ease;
}
header.header .container .menu a .dropdown-icon {
  transition: all 300ms ease;
}
header.header .container .menu a .effect-dot {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
header.header .container .menu a .effect-dot::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100px;
  border: 2px solid var(--color-primary);
  transform: translateY(-50%) scale(0);
  transition: all 300ms ease;
}
header.header .container .menu a .effect-dot::after {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 50%;
  width: calc(100% - 0.5rem);
  height: 0.2rem;
  border-radius: 100px;
  background-color: var(--color-primary);
  transform-origin: left;
  transform: translateY(-50%) scaleX(0);
  transition: all 300ms ease;
}
header.header .container .menu li:hover a,
header.header .container .menu li.active a {
  color: var(--color-primary);
}
header.header .container .menu li:hover a .effect-dot::before,
header.header .container .menu li.active a .effect-dot::before {
  transform: translateY(-50%) scale(1);
}
header.header .container .menu li:hover a .effect-dot::after,
header.header .container .menu li.active a .effect-dot::after {
  transform: translateY(-50%) scaleX(1);
}
header.header .container .menu li:hover a .dropdown-icon {
  transform: rotateX(180deg);
}
header.header .menu .has-submenu {
  position: relative;
}
header.header .menu .submenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: #fff;
  min-width: 230px;
  padding: 0.5rem 0;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: perspective(100px) rotateX(5deg);
  transition: all 300ms ease;
}
header.header .menu .submenu li a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--color-muted);
  font-weight: 600;
  max-width: 300px;
  transition: all 300ms ease;
}
header.header .menu .submenu li a:hover {
  color: var(--color-primary);
  background-color: #e8e8e8;
}
header.header .menu .has-submenu:hover .submenu {
  transform: perspective(100px) rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
header.header .lang-switcher {
  position: relative;
  margin-left: 1.5rem;
}
header.header .lang-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
header.header .lang-toggle img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid #ddd;
}
header.header .lang-arrow {
  display: inline-block;
  margin-left: 0.4rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
header.header .lang-switcher:hover .lang-arrow {
  transform: rotate(-135deg);
}
header.header .lang-dropdown {
  position: absolute;
  top: 130%;
  right: 0;
  background: white;
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  list-style: none;
  min-width: 140px;
  z-index: 100;
  transform: perspective(100px) rotateX(3deg);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
header.header .lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-muted);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.4rem;
  padding: 0.5rem;
  margin: 0.5rem;
  transition: all 300ms ease;
}
header.header .lang-dropdown li a:hover {
  color: var(--color-primary);
  background-color: #e8e8e8;
}
header.header .lang-dropdown img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  filter: brightness(0.75);
  transition: all 300ms ease;
}
header.header .lang-dropdown li a:hover img {
  filter: brightness(1);
}
header.header .lang-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: perspective(100px) rotateX(0deg);
}
header.header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 1.25rem;
  position: relative;
}
header.header .mobile-menu-toggle span {
  position: absolute;
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 100px;
  background-color: var(--color-primary);
  transition: all 300ms ease;
}
/* * Header End */

/* * Header Mobile Start */
@media screen and (max-width: 500px) {
  header.header .brand-logo img {
    order: 2;
  }
  header.header .brand-logo img {
    height: 64px;
  }
  header.header .mobile-menu-toggle {
    display: flex;
  }
  header.header .mobile-menu-toggle span:nth-child(1) {
    top: 0;
  }
  header.header .mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  header.header .mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
  }
  header.header .mobile-menu-toggle.show span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 120%;
    transition: all 300ms ease 300ms;
  }
  header.header .mobile-menu-toggle.show span:nth-child(2) {
    transform: translateX(200%);
    opacity: 0;
  }
  header.header .mobile-menu-toggle.show span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    width: 120%;
    transition: all 300ms ease 300ms;
  }
  header.header .container .menu {
    overflow-y: auto;
    display: flex;
    position: fixed;
    z-index: 9999 !important;
    top: 100%;
    bottom: 0;
    left: 0;
    padding: 2.5rem 2rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: white;
    min-width: 280px;
    height: calc(
      100vh - (var(--header-height) + var(--header-top-bar-height) + 1rem)
    );
    opacity: 0;
    transform: translateX(-100%);
    transition: all 300ms ease;
  }
  header.header .menu.show {
    opacity: 1;
    transform: translateX(0);
  }
  header.header .menu li a {
    font-size: 1rem;
  }
  header.header .menu .has-submenu .submenu {
    position: static;
    transform: perspective(0) rotateX(0);
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  header.header .menu .has-submenu .submenu li a {
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    background-color: transparent;
  }
  header.header .mobile-menu-toggle {
    display: flex;
    order: -1;
  }
  header.header .lang-switcher {
    order: 3;
    margin-left: 0;
    z-index: 9999;
  }
  .menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .menu-backdrop.show {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
  }
}
/* * Header Mobile End */

/* * Home Hero Start */
section.home-hero {
  padding: 3rem 0;
}
section.home-hero .container {
  display: flex;
  gap: 3rem;
}
section.home-hero .container .hero-image-swiper,
section.home-hero .container .hero-content-swiper {
  flex: 1;
}
section.home-hero .container .hero-image-swiper .product-image {
  width: 100%;
  height: 500px;
  object-fit: contain;
}
section.home-hero .container .hero-content-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.home-hero .container .hero-content-swiper h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 125%;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  max-width: 460px;
}
section.home-hero .container .hero-content-swiper p {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 150%;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
section.home-hero .container .hero-content-swiper .btn-detail {
  display: inline-flex;
  width: max-content;
  padding: 0.75rem 1.25rem;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  border-radius: 0.25rem;
  border: 2px solid var(--color-primary);
  transition: all 300ms ease;
}
section.home-hero .container .hero-content-swiper .btn-detail:hover {
  background-color: var(--color-primary);
  color: white;
  gap: 1.25rem;
}
section.home-hero .container .hero-swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
section.home-hero .container .hero-swiper-pagination .swiper-pagination-bullet {
  border: 2px solid var(--color-primary);
  background-color: transparent;
  opacity: 1;
  width: 0.75rem;
  height: 0.75rem;
  transition: all 300ms ease;
}
section.home-hero
  .container
  .hero-swiper-pagination
  .swiper-pagination-bullet:hover {
  background-color: var(--color-primary-100);
}
section.home-hero
  .container
  .hero-swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
/* * Home Hero End */

/* * Home Hero Mobile Start */
@media (max-width: 450px) {
  section.home-hero {
    padding: 2rem 1rem;
  }
  section.home-hero .container {
    flex-direction: column;
    gap: 1.5rem;
  }
  section.home-hero .container .hero-image-swiper,
  section.home-hero .container .hero-content-swiper {
    flex: none;
    width: 100%;
  }
  section.home-hero .container .hero-image-swiper .product-image {
    height: 300px;
  }
  section.home-hero .container .hero-content-swiper .swiper-slide {
    align-items: flex-start;
    text-align: left;
    padding: 0 0.5rem;
  }
  section.home-hero .container .hero-content-swiper h2 {
    font-size: 1.8rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  section.home-hero .container .hero-content-swiper p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  section.home-hero .container .hero-content-swiper .btn-detail {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  section.home-hero .container .hero-swiper-pagination {
    margin-top: 0.5rem;
  }
  section.home-hero
    .container
    .hero-swiper-pagination
    .swiper-pagination-bullet {
    width: 0.6rem;
    height: 0.6rem;
  }
}
/* * Home Hero Mobile End */

/* * Home Products Start */
section.home-products {
  background-color: var(--color-light);
  padding: 5rem 0;
}
section.home-products .section-header {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-primary);
  margin-bottom: 3rem;
}
section.home-products .category-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
}
section.home-products .category-tabs a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.5rem;
  border: 1px solid transparent;
  background-color: var(--color-primary-50);
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 0.5rem;
  transition: all 300ms ease;
}
section.home-products .category-tabs a.active,
section.home-products .category-tabs a:hover {
  border: 1px solid var(--color-primary-300);
}
section.home-products .category-tabs a .total-product {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -75%);
  font-size: 0.9rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.25rem 0.75rem;
  background-color: white;
  border-radius: 0.25rem;
}
section.home-products .home-product-tab-panes .tab-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  filter: blur(4px);
  z-index: 0;
  transition: all 300ms ease;
}
section.home-products .home-product-tab-panes .tab-pane.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  filter: blur(0);
  z-index: 1;
}
section.home-products .home-product-tab-panes {
  position: relative;
}
/* * Home Products End */

/* * Home Products Mobile Start */
@media (max-width: 450px) {
  section.home-products {
    padding: 1.5rem 1rem;
  }
  section.home-products .section-header {
    font-size: 2rem;
    margin-bottom: 0rem;
    -webkit-text-stroke: 1.5px var(--color-primary);
  }
  section.home-products .category-tabs {
    padding: 0.85rem 0 0;
    gap: 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    margin: 2rem 0;
  }
  section.home-products .category-tabs::-webkit-scrollbar {
    display: none;
  }
  section.home-products .category-tabs a {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 0.4rem;
  }
  section.home-products .category-tabs a .total-product {
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    transform: translate(-50%, -70%);
  }
  section.home-products .home-product-tab-panes .tab-pane {
    transform: scale(0.97);
    filter: blur(3px);
  }
  section.home-products .home-product-tab-panes .tab-pane.active {
    transform: scale(1);
    filter: blur(0);
  }
}
/* * Home Products Mobile End */

/* * Home Catalog Start */
section.home-catalog {
  padding: 3rem 0;
  background-color: white;
}
section.home-catalog .catalog-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  flex-direction: column;
  gap: 1.5rem;
}
section.home-catalog .catalog-text h3.section-header {
  font-size: 3rem;
  color: #1d3362;
  margin-bottom: 1rem;
}
section.home-catalog .catalog-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
section.home-catalog .catalog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.7rem 1.8rem;
  background-color: #1d3362;
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
section.home-catalog .catalog-button:hover {
  background-color: #15284b;
}
/* * Home Catalog End */

/* * Home Catalog Mobile Start */
@media (max-width: 450px) {
  section.home-catalog {
    padding: 2rem 1rem;
  }
  section.home-catalog .catalog-content {
    max-width: 100%;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  section.home-catalog .catalog-text h3.section-header {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  section.home-catalog .catalog-text p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }
  section.home-catalog .catalog-button {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    gap: 0.5rem;
  }
}
/* * Home Catalog Mobile End */

/* * Contact Start */
section.contact {
  padding: 5rem 0;
  background-color: var(--color-light);
}
section.contact .contact-flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 3rem;
}
section.contact .contact-flex .contact-informations,
section.contact .contact-flex .contact-form {
  flex: 1;
}
section.contact .contact-informations .contact-informations-title {
  font-size: 3rem;
  font-weight: 700;
  max-width: 420px;
  color: var(--color-dark);
  margin-bottom: 4rem;
}
section.contact .contact-informations ul li:not(:last-child) {
  margin-bottom: 2rem;
}
section.contact .contact-informations ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  color: var(--color-dark);
  font-size: 1.1rem;
  font-weight: 600;
  max-width: 340px;
  transition: all 300ms ease;
}
section.contact .contact-informations ul li a:hover {
  color: var(--color-primary);
}
section.contact .contact-informations ul li a .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  border-radius: 50%;
  background-color: var(--color-light);
  border: 3px solid var(--color-primary);
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  margin-right: 2rem;
  transition: all 300ms ease;
}
section.contact .contact-informations ul li a:hover .icon {
  color: var(--color-light);
  background-color: var(--color-primary);
}
section.contact .contact-informations ul li a .icon::after {
  content: "";
  position: absolute;
  left: 2.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  min-height: 0.25rem;
  background-color: var(--color-primary);
  border-radius: 100px;
  z-index: -1;
}
section.contact .contact-form .form-title {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}
section.contact .contact-form input,
section.contact .contact-form textarea {
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--color-gray);
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 300ms ease;
}
section.contact .contact-form input:hover,
section.contact .contact-form textarea:hover,
section.contact .contact-form input:focus,
section.contact .contact-form textarea:focus {
  border-color: var(--color-primary);
}
section.contact .contact-form .kvkk {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 150%;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
section.contact .contact-form .button-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
section.contact .contact-form button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  border: 2px solid var(--color-primary);
  border-radius: 0.25rem;
  background-color: var(--color-light);
  color: var(--color-primary);
  margin-left: auto;
  transition: all 300ms ease;
}
section.contact .contact-form button:hover {
  background-color: var(--color-primary);
  color: var(--color-light);
}
/* * Contact End */

/* * Contact Mobile Start */
@media (max-width: 450px) {
  section.contact {
    padding: 3rem 1rem;
  }
  section.contact .contact-flex {
    flex-direction: column;
    gap: 2rem;
  }
  section.contact .contact-informations,
  section.contact .contact-form {
    flex: none;
    width: 100%;
  }
  section.contact .contact-form .form-flex {
    flex-direction: column;
    gap: 0;
  }
  section.contact .contact-informations .contact-informations-title {
    font-size: 2rem;
    max-width: 100%;
    margin-bottom: 2.5rem;
  }
  section.contact .contact-informations ul li a {
    font-size: 1rem;
    gap: 0.75rem;
    max-width: 100%;
  }
  section.contact .contact-informations ul li a .icon {
    min-width: 2rem;
    min-height: 2rem;
    margin-right: 1rem;
  }
  section.contact .contact-informations ul li a .icon::after {
    left: 1.75rem;
    width: 1.5rem;
  }
  section.contact .contact-form .form-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  section.contact .contact-form input,
  section.contact .contact-form textarea {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  section.contact .contact-form .kvkk {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  section.contact .contact-form .button-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  section.contact .contact-form button {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
  }
}
/* * Contact Mobile End */

/* * Contact Map Start */
section.contact-map {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  height: 450px;
  border-top: 1px solid var(--color-gray);
  position: relative;
}
section.contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(var(--rgb-color-primary), 0.25);
  pointer-events: none;
}
section.contact-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
}
/* * Contact Map End */

/* * Contact Map Mobile Start */
section.contact-map {
  height: 350px;
}
/* * Contact Map Mobile End */

/* * About Us Start */
section.about-us {
  padding: 5rem 0;
  background-color: var(--color-primary);
  color: var(--color-light);
}
section.about-us .about-us-title {
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-light);
  margin-bottom: 3rem;
}
section.about-us .about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
section.about-us .about-content,
section.about-us .about-image {
  flex: 1;
}
section.about-us .about-content p {
  line-height: 165%;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: justify;
}

section.about-us .about-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}
/* * About Us End */

/* * About Us Mobile Start */
@media (max-width: 450px) {
  section.about-us {
    padding: 2rem 1rem;
  }
  section.about-us .about-us-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  section.about-us .about-flex {
    flex-direction: column;
    gap: 2rem;
  }
  section.about-us .about-content,
  section.about-us .about-image {
    flex: none;
    width: 100%;
  }
  section.about-us .about-content p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }
  section.about-us .about-image img {
    height: auto;
    object-fit: cover;
    border-radius: 0.25rem;
  }
}
/* * About Us Mobile End */

/* * About Vision Start */
section.about-vision {
  padding: 3rem 0;
  background-color: white;
  color: var(--color-dark);
  border-top: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
}
section.about-vision .about-vision-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-primary);
  margin-bottom: 1.5rem;
}
section.about-vision .content {
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
section.about-vision .content p {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 165%;
  margin-bottom: 1rem;
}
/* * About Vision End */

/* * About Vision Mobile Start */
@media (max-width: 450px) {
  section.about-vision {
    padding: 2rem 1rem;
  }
  section.about-vision .about-vision-title {
    font-size: 1.8rem;
    -webkit-text-stroke: 1.5px var(--color-primary);
    margin-bottom: 1rem;
  }
  section.about-vision .content {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  section.about-vision .content p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }
}
/* * About Vision Mobile End */

/* * About Mission Start */
section.about-mission {
  padding: 3rem 0;
  background-color: white;
  color: var(--color-dark);
}
section.about-mission .about-mission-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-primary);
  margin-bottom: 1.5rem;
}
section.about-mission .content {
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
section.about-mission .content p {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 165%;
  margin-bottom: 1rem;
}
/* * About Mission End */

/* * About Mission Mobile Start */
@media (max-width: 450px) {
  section.about-mission {
    padding: 2rem 1rem;
  }
  section.about-mission .about-mission-title {
    font-size: 1.8rem;
    -webkit-text-stroke: 1.5px var(--color-primary);
    margin-bottom: 1rem;
  }
  section.about-mission .content {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  section.about-mission .content p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }
}
/* * About Mission Mobile End */

/* * Product List Start */
section.product-list {
  padding: 3rem 0;
  background-color: var(--color-light);
}
section.product-list .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
section.product-list .products-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-primary);
}
section.product-list .category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 2rem;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
section.product-list .category-tabs li a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  background-color: var(--color-primary-50);
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s ease;
}
section.product-list .category-tabs li a:hover {
  background-color: var(--color-primary-100);
  color: var(--color-primary);
}
section.product-list .category-tabs li a.active {
  background-color: var(--color-primary);
  color: var(--color-light);
}
section.product-list ul.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
section.product-list .product-item {
  display: flex;
  flex-direction: column;
}
section.product-list .no-products-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  margin-top: 50px;
  color: #666;
  font-size: 1.3rem;
  font-weight: 500;
  user-select: none;
}
section.product-list .no-products-icon {
  width: 64px;
  height: 64px;
  stroke: #9b1b30;
  margin-bottom: 15px;
  transition: stroke 0.3s ease;
}
/* * Product List End */

/* * Product List Mobile Start */
@media (max-width: 450px) {
  section.product-list {
    padding: 2rem 1rem;
  }
  section.product-list .products-title {
    font-size: 2rem;
    -webkit-text-stroke: 1.2px var(--color-primary);
    margin-bottom: 1.5rem;
  }
  section.product-list .category-tabs {
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
  }
  section.product-list .category-tabs li a {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    text-align: center;
  }
  section.product-list ul.product-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  section.product-list .product-item {
    flex-direction: column;
  }
  section.product-list .no-products-container {
    height: auto;
    margin-top: 30px;
    font-size: 1.1rem;
  }
  section.product-list .no-products-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }
}
/* * Product List Mobile End */

/* * Product Detail Start */
section.product-detail {
  padding: 4rem 0;
  background-color: #f9f9fb;
}
section.product-detail .product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
section.product-detail .product-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e3e3e3;
  background-color: white;
}
section.product-detail .product-title {
  font-size: 2rem;
  color: #1e1e1e;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
section.product-detail .product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
section.product-detail .product-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #333;
}
section.product-detail .product-features li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}
section.product-detail .product-documents {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
section.product-detail .doc-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
section.product-detail .doc-button:hover {
  background-color: var(--color-primary-900);
}
section.product-detail .product-description {
  margin-top: 3rem;
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e3e3e3;
}
section.product-detail .product-description h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 1rem;
}
section.product-detail .product-description p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
/* * Product Detail End */

/* * Product Detail Mobile Start */
@media (max-width: 450px) {
  section.product-detail {
    padding: 2rem 1rem;
  }
  section.product-detail .product-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  section.product-detail .product-image img {
    width: 100%;
    border-radius: 8px;
  }
  section.product-detail .product-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  section.product-detail .product-features {
    margin-bottom: 0;
  }
  section.product-detail .product-features li {
    font-size: 0.9rem;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
  }
  section.product-detail .product-documents {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  section.product-detail .doc-button {
    width: 100%;
    justify-content: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }
  section.product-detail .product-description {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 8px;
  }
  section.product-detail .product-description h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  section.product-detail .product-description p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}
/* * Product Detail Mobile End */

/* * Page Start */
section.page {
  padding: 3rem 0;
}
section.page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
}
section.page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}
section.page h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
}
section.page ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}
section.page ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}
section.page ol li,
section.page ul li {
  margin-bottom: 0.25rem;
}
section.page p {
  color: var(--color-dark);
  font-size: 0.95rem;
  line-height: 150%;
  margin-bottom: 1rem;
}
/* * Page End */

/* * Page Mobile Start */
@media (max-width: 450px) {
  section.page {
    padding: 2rem 1rem;
  }
  section.page h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  section.page h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  section.page h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  section.page ol,
  section.page ul {
    margin-bottom: 1rem;
    padding-left: 1rem;
  }
  section.page ol li,
  section.page ul li {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
  section.page p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }
}
/* * Page Mobile End */

/* * Footer Start */
footer.footer {
  padding: 5rem 0;
  color: white;
  background-color: var(--color-dark);
  border-top: 0.5rem solid var(--color-primary);
}
footer.footer .footer-cols {
  gap: 5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer.footer .footer-cols .col {
  flex: 1;
}
footer.footer .footer-cols .about .brand-logo {
  margin-bottom: 0.5rem;
}
footer.footer .footer-cols .links-title {
  color: var(--color-primary-200);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem !important;
}
footer.footer .footer-cols .about p {
  font-size: 0.9rem;
  line-height: 165%;
}
footer.footer .footer-cols .links li:not(:last-child) {
  margin-bottom: 1.25rem;
}
footer.footer .footer-cols .links li a {
  color: var(--color-gray);
}
footer.footer .footer-cols .links li a:hover {
  color: white;
}
footer.footer .footer-cols .contact-informations li:not(:last-child) {
  margin-bottom: 1.25rem;
}
footer.footer .footer-cols .contact-informations li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 160%;
  color: var(--color-gray);
}
footer.footer .footer-cols .contact-informations li a svg {
  min-width: 24px;
}
footer.footer .footer-cols .contact-informations li a:hover {
  color: white;
}
/* * Footer End */

/* * Footer Mobile Start */
@media (max-width: 450px) {
  footer.footer {
    padding: 3rem 1rem;
  }
  footer.footer .footer-cols {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  footer.footer .footer-cols .col {
    width: 100%;
  }
  footer.footer .footer-cols .about .brand-logo {
    margin-bottom: 1rem;
    max-width: 150px;
  }
  footer.footer .footer-cols .about p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  footer.footer .footer-cols .links-title {
    font-size: 1rem;
    margin-bottom: 1rem !important;
  }
  footer.footer .footer-cols .links li:not(:last-child) {
    margin-bottom: 0.8rem;
  }
  footer.footer .footer-cols .links li a {
    font-size: 0.9rem;
  }
  footer.footer .footer-cols .contact-informations li:not(:last-child) {
    margin-bottom: 0.8rem;
  }
  footer.footer .footer-cols .contact-informations li a {
    font-size: 0.9rem;
    gap: 0.5rem;
  }
  footer.footer .footer-cols .contact-informations li a svg {
    min-width: 20px;
    height: 20px;
  }
}
/* * Footer Mobile End */

/* * Footer End Start */
footer.footer-end {
  padding: 1.5rem 0;
  color: var(--color-light);
  background-color: var(--color-primary);
}
footer.footer-end p {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}
footer.footer-end .dev-by {
  display: block;
  font-size: 0.95em;
  color: white;
  margin-top: 0.25rem;
  position: relative;
  overflow: hidden;
}
footer.footer-end .dev-by a {
  color: var(--color-primary-100);
  position: relative;
  display: inline-block;
  animation: blinkText 1.5s infinite;
}

@keyframes blinkText {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 2px var(--color-primary-100),
      0 0 3px var(--color-primary-100);
  }
  50% {
    opacity: 0.5;
    text-shadow: none;
  }
}
/* * Footer End End */

/* * Footer End Mobile Start */
footer.footer-end {
  padding: 1rem 0;
}
footer.footer-end p {
  font-size: 0.9rem;
}
/* * Footer End Mobile Start */

/* * Globals Start */
.product-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--color-primary-100);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 300ms ease;
}
.product-card:hover {
  border: 1px solid var(--color-primary-400);
}
.product-card .product-image {
  padding: 1.5rem;
  text-align: center;
}
.product-card .product-image img {
  max-width: 100%;
  max-height: 180px;
  transition: all 300ms ease;
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}
.product-card .product-content {
  padding: 0 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-card .product-title {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
}
.product-card .product-title a {
  color: inherit;
}
.product-card .product-desc {
  padding: 1.5rem 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.product-card .product-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary-600);
  color: #fff;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-align: center;
}
.product-card .product-button:hover {
  background-color: var(--color-primary-800);
}
@media (max-width: 450px) {
  .product-card {
    border-radius: 8px;
    overflow: hidden;
  }
  .product-card .product-image {
    padding: 1rem;
  }
  .product-card .product-image img {
    max-height: 150px;
  }
  .product-card .product-content {
    padding: 0 1rem 1rem;
  }
  .product-card .product-title {
    font-size: 1.2rem;
  }
  .product-card .product-desc {
    padding: 1rem 0;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  .product-card .product-button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    gap: 0.5rem;
  }
}

.swiper-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.swiper-pagination .swiper-pagination-bullet {
  border: 2px solid var(--color-primary);
  background-color: transparent;
  opacity: 1;
  width: 0.75rem;
  height: 0.75rem;
  transition: all 300ms ease;
}

.swiper-pagination .swiper-pagination-bullet:hover {
  background-color: var(--color-primary-100);
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
.form-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.form-flex input {
  flex: 1;
}

.wp-button {
  position: fixed;
  z-index: 10;
  width: auto;
  height: auto;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 3px solid #25d366;
  background-color: var(--color-light);
  color: #25d366;
  right: 2.5rem;
  bottom: 2.5rem;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 300ms ease;
}
.wp-button:hover {
  transform: scale(1.1);
  background-color: #25d366;
  color: var(--color-light);
}
.wp-button svg {
  width: 1.5rem;
  height: 1.5rem;
}
.form-alert {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  display: none;
}
.form-alert.success {
  background-color: #e6ffed;
  color: #1a7f37;
  border: 1px solid #28a745;
}
.form-alert.error {
  background-color: #ffe6e6;
  color: #b00020;
  border: 1px solid #dc3545;
}

button:disabled,
button[disabled] {
  background-color: #e8e8e8 !important;
  border: 2px solid #555555 !important;
  color: #555555 !important;
  opacity: 0.9;
  cursor: not-allowed !important;
}

@media screen and (max-width: 450px) {
  .wp-button {
    font-size: 0.85rem;
    right: 1.5rem;
    bottom: 1.5rem;
    border-width: 2px;
    padding: 0.35rem 0.85rem;
  }
  .wp-button svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* * Globals End */
