html,
body {
  margin: 0;
  padding: 0;
  background: #FFFFFF;
  color: #1F2937;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

#mt_website {
  font-family: "Farro", sans-serif;
  color: #1F2937;
  background: #FFFFFF;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#mt_website a {
  text-decoration: none;
  color: inherit;
}
#mt_website img {
  display: block;
  max-width: 100%;
}
#mt_website ::selection {
  background: rgba(20, 162, 220, 0.2);
}
#mt_website h1,
#mt_website h2,
#mt_website h3,
#mt_website h4,
#mt_website h5,
#mt_website h6 {
  font-family: "Farro", sans-serif;
  font-weight: 600;
}
#mt_website .mt_container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  #mt_website .mt_container {
    padding: 0 48px;
  }
}
#mt_website .mt_header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 32px);
  max-width: 1230px;
  transition: all 0.3s ease;
}
#mt_website .mt_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2px 8px 2px 2px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
#mt_website .mt_header.scrolled .mt_header_inner {
  box-shadow: 0 12px 35px -8px rgba(20, 162, 220, 0.2);
}
#mt_website .mt_logo img {
  height: 85px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}
#mt_website .mt_nav {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  #mt_website .mt_nav {
    display: flex;
  }
}
#mt_website .mt_nav a {
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  transition: color 0.2s;
}
#mt_website .mt_nav a:hover {
  color: #14A2DC;
}
#mt_website .mt_nav_cta {
  display: none;
  background: #14A2DC !important;
  color: #FFFFFF !important;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(20, 162, 220, 0.2);
}
#mt_website .mt_nav_cta:hover {
  background: rgb(7.0098039216%, 56.7794117647%, 77.1078431373%) !important;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(20, 162, 220, 0.3);
}
#mt_website .mt_nav_cta:active {
  transform: scale(0.95);
}
@media (min-width: 768px) {
  #mt_website .mt_nav_cta {
    display: block;
  }
}
#mt_website .mt_nav_actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
#mt_website .mt_hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 999px;
  color: #1F2937;
  transition: background 0.2s;
}
#mt_website .mt_hamburger:hover {
  background: rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  #mt_website .mt_hamburger {
    display: none;
  }
}
#mt_website .mt_hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #1F2937;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#mt_website .mt_hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
#mt_website .mt_hamburger.active span:nth-child(2) {
  opacity: 0;
}
#mt_website .mt_hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
#mt_website .mt_nav_mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 162, 220, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 40;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
#mt_website .mt_nav_mobile.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}
#mt_website .mt_nav_mobile a {
  font-size: 24px;
  font-family: "Farro", sans-serif;
  color: #fff;
  transition: color 0.2s;
}
#mt_website .mt_nav_mobile a:hover {
  color: #FFFFFF;
  opacity: 0.8;
}
#mt_website .mt_nav_mobile .mt_nav_mobile_cta {
  background: #FFFFFF;
  color: #14A2DC;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
  font-family: "Farro", sans-serif;
}
#mt_website .mt_hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 128px 0 96px;
  overflow: hidden;
}
@media (min-width: 768px) {
  #mt_website .mt_hero {
    padding-bottom: 128px;
  }
}
#mt_website .mt_hero_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#mt_website .mt_hero_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#mt_website .mt_hero_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
#mt_website .mt_hero_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.1) 100%);
}
#mt_website .mt_hero_content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  #mt_website .mt_hero_content {
    padding: 0 48px;
  }
}
#mt_website .mt_hero_inner {
  max-width: 768px;
  animation: mtFadeInUp 0.7s ease;
}
#mt_website .mt_hero_kicker {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-family: "Farro", sans-serif;
}
@media (min-width: 768px) {
  #mt_website .mt_hero_kicker {
    font-size: 16px;
  }
}
#mt_website .mt_hero_title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 24px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  #mt_website .mt_hero_title {
    font-size: 64px;
  }
}
#mt_website .mt_hero_subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px;
  max-width: 540px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  #mt_website .mt_hero_subtitle {
    font-size: 18px;
  }
}
#mt_website .mt_hero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
#mt_website .mt_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}
#mt_website .mt_btn:active {
  transform: scale(0.97);
}
#mt_website .mt_btn_primary {
  background: #14A2DC;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(20, 162, 220, 0.3);
}
#mt_website .mt_btn_primary:hover {
  background: rgb(7.0098039216%, 56.7794117647%, 77.1078431373%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 162, 220, 0.4);
}
#mt_website .mt_btn_secondary {
  background: #FFFFFF;
  color: #1F2937;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
#mt_website .mt_btn_secondary:hover {
  background: #F9FAFB;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
#mt_website .mt_partners {
  background: #FFFFFF;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
#mt_website .mt_partners_label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F3F4F6;
  padding: 8px 16px;
  border-radius: 999px;
}
#mt_website .mt_partners_dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffffff;
}
#mt_website .mt_partners_text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4B5563;
}
#mt_website .mt_marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  user-select: none;
  gap: 32px;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
#mt_website .mt_marquee_track {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 50px;
  min-width: 100%;
  animation: mtMarquee 25s linear infinite;
}
#mt_website .mt_marquee_track img {
  height: 94px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
#mt_website .mt_marquee_track img:hover {
  transform: scale(1.05);
}
#mt_website .mt_philosophy {
  background: #F8F6F5;
  padding: 96px 0;
  color: #1F2937;
}
#mt_website .mt_philosophy_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  #mt_website .mt_philosophy_grid {
    grid-template-columns: 1fr 1fr;
  }
}
#mt_website .mt_philosophy_text {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  color: #374151;
  margin: 0;
}
@media (min-width: 768px) {
  #mt_website .mt_philosophy_text {
    font-size: 15px;
  }
}
#mt_website .mt_philosophy_img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
#mt_website .mt_catalogues {
  background: #FFFFFF;
  padding: 80px 0;
  color: #1F2937;
}
#mt_website .mt_catalogues_title {
  font-size: 32px;
  font-family: "Farro", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
  color: #1F2937;
}
#mt_website .mt_catalogues_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  #mt_website .mt_catalogues_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  #mt_website .mt_catalogues_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
#mt_website .mt_catalogue_card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
#mt_website .mt_catalogue_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #14A2DC;
}
#mt_website .mt_catalogue_card:hover .mt_catalogue_name {
  color: #14A2DC;
}
#mt_website .mt_catalogue_name {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
  font-family: "Farro", sans-serif;
  transition: color 0.2s ease;
}
#mt_website .mt_catalogue_count {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
  font-family: "Farro", sans-serif;
  background: #E5E7EB;
  padding: 4px 12px;
  border-radius: 999px;
}
#mt_website .mt_page_header {
  background: #F9FAFB;
  padding-top: 140px;
  padding-bottom: 40px;
  text-align: center;
}
#mt_website .mt_page_header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}
#mt_website .mt_page_header p {
  font-size: 16px;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
}
#mt_website .mt_contact_page {
  padding: 40px 0 96px;
  background: #F9FAFB;
}
#mt_website .mt_contact_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 992px) {
  #mt_website .mt_contact_grid {
    grid-template-columns: 1fr 2fr;
    gap: 48px;
  }
}
#mt_website .mt_contact_info_box, #mt_website .mt_contact_form_box {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #E5E7EB;
}
#mt_website .mt_contact_info_box h3, #mt_website .mt_contact_form_box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px;
  font-family: "Farro", sans-serif;
}
#mt_website .mt_contact_info_box p, #mt_website .mt_contact_form_box p {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 24px;
  line-height: 1.6;
}
#mt_website .mt_contact_details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#mt_website .mt_contact_item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
#mt_website .mt_contact_item .mt_icon {
  font-size: 24px;
  background: rgba(20, 162, 220, 0.1);
  color: #14A2DC;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
#mt_website .mt_contact_item .mt_text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#mt_website .mt_contact_item .mt_text strong {
  font-size: 14px;
  color: #374151;
}
#mt_website .mt_contact_item .mt_text span {
  font-size: 14px;
  color: #6B7280;
}
#mt_website .mt_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#mt_website .mt_form_row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 640px) {
  #mt_website .mt_form_row {
    flex-direction: row;
  }
  #mt_website .mt_form_row .mt_form_group {
    flex: 1;
  }
}
#mt_website .mt_form_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#mt_website .mt_form_group label {
  font-size: 13px;
  font-weight: 600;
  color: #4B5563;
}
#mt_website .mt_form_group input, #mt_website .mt_form_group textarea {
  width: 100%;
  background: #F9FAFB;
  border: 1px solid #D1D5DB;
  color: #1F2937;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
}
#mt_website .mt_form_group input::placeholder, #mt_website .mt_form_group textarea::placeholder {
  color: #9CA3AF;
}
#mt_website .mt_form_group input:focus, #mt_website .mt_form_group textarea:focus {
  border-color: #14A2DC;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(20, 162, 220, 0.15);
}
#mt_website .mt_btn_submit {
  background: #14A2DC;
  color: #FFFFFF;
  border: none;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}
#mt_website .mt_btn_submit:hover {
  background: rgb(7.0098039216%, 56.7794117647%, 77.1078431373%);
  transform: translateY(-2px);
}
#mt_website .mt_alert {
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.5;
}
#mt_website .mt_alert strong {
  font-weight: 700;
}
#mt_website .mt_alert_success {
  background: #DEF7EC;
  color: #03543F;
  border: 1px solid #84E1BC;
}
#mt_website .mt_alert_error {
  background: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #F8B4B4;
}
#mt_website .mt_products_page {
  background: #F9FAFB;
  padding-top: 140px;
  padding-bottom: 96px;
  min-height: 85vh;
  color: #374151;
}
#mt_website .mt_products_page .mt_container {
  max-width: 1440px;
}
#mt_website .mt_products_page .mt_ecommerce_layout {
  display: block;
}
#mt_website .mt_products_page .mt_filters_bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  justify-content: flex-start;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}
@media (max-width: 639px) {
  #mt_website .mt_products_page .mt_filters_bar {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }
}
#mt_website .mt_products_page .mt_filter_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 140px;
}
@media (max-width: 639px) {
  #mt_website .mt_products_page .mt_filter_group {
    min-width: 100%;
  }
}
#mt_website .mt_products_page .mt_filter_search_group {
  flex: 1.8;
  min-width: 220px;
}
@media (max-width: 639px) {
  #mt_website .mt_products_page .mt_filter_search_group {
    min-width: 100%;
  }
}
#mt_website .mt_products_page .mt_filter_reset_group {
  flex: 0 0 auto;
  min-width: auto;
}
#mt_website .mt_products_page .mt_btn_reset_header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  background: #F3F4F6;
  color: #4B5563;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 550;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
#mt_website .mt_products_page .mt_btn_reset_header:hover {
  background: #E5E7EB;
  color: #111827;
  border-color: #9CA3AF;
}
#mt_website .mt_products_page .mt_filter_label {
  font-size: 13px;
  font-weight: 700;
  color: #4B5563;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
  font-family: "Farro", sans-serif;
}
#mt_website .mt_products_page .mt_filter_select {
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  color: #1F2937;
  outline: none;
  cursor: pointer;
  width: 100%;
  height: 44px;
  transition: all 0.2s ease;
}
#mt_website .mt_products_page .mt_filter_select:focus {
  border-color: #14A2DC;
  box-shadow: 0 0 0 3px rgba(20, 162, 220, 0.15);
}
#mt_website .mt_products_page .mt_filter_search_form {
  width: 100%;
}
#mt_website .mt_products_page .mt_filter_search_input_group {
  display: flex;
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  overflow: hidden;
  height: 44px;
  transition: all 0.2s ease;
}
#mt_website .mt_products_page .mt_filter_search_input_group:focus-within {
  border-color: #14A2DC;
  box-shadow: 0 0 0 3px rgba(20, 162, 220, 0.15);
}
#mt_website .mt_products_page .mt_filter_search_input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #1F2937;
}
#mt_website .mt_products_page .mt_filter_search_input::placeholder {
  color: #9CA3AF;
}
#mt_website .mt_products_page .mt_filter_search_btn {
  background: transparent;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.2s ease;
}
#mt_website .mt_products_page .mt_filter_search_btn:hover {
  color: #14A2DC;
}
#mt_website .mt_products_page .mt_ecommerce_meta_bar {
  margin-bottom: 24px;
  padding: 0 4px;
}
#mt_website .mt_products_page .mt_results_count {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}
#mt_website .mt_products_page .mt_results_count strong {
  color: #111827;
}
#mt_website .mt_products_page .mt_products_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) {
  #mt_website .mt_products_page .mt_products_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  #mt_website .mt_products_page .mt_products_grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1280px) {
  #mt_website .mt_products_page .mt_products_grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
#mt_website .mt_products_page .mt_product_card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
#mt_website .mt_products_page .mt_product_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05), 0 8px 8px -5px rgba(0, 0, 0, 0.03);
  border-color: rgba(20, 162, 220, 0.15);
}
#mt_website .mt_products_page .mt_product_card:hover .mt_product_card_image img {
  transform: scale(1.04);
}
#mt_website .mt_products_page .mt_product_card_image {
  height: 160px;
  background: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}
#mt_website .mt_products_page .mt_product_card_image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
#mt_website .mt_products_page .mt_product_card_info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#mt_website .mt_products_page .mt_product_category {
  font-size: 11px;
  font-weight: 600;
  color: #14A2DC;
  background: rgba(20, 162, 220, 0.06);
  padding: 3px 8px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
#mt_website .mt_products_page .mt_product_name {
  font-size: 14px;
  font-weight: 555;
  color: #111827;
  margin: 0 0 16px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
  font-family: "Farro", sans-serif;
  flex-grow: 1;
}
#mt_website .mt_products_page .mt_product_card_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #F3F4F6;
}
#mt_website .mt_products_page .mt_product_price {
  font-size: 16px;
  font-weight: 700;
  color: #14A2DC;
  font-family: "Farro", sans-serif;
}
#mt_website .mt_products_page .mt_products_empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
}
#mt_website .mt_products_page .mt_products_empty .mt_empty_icon {
  font-size: 40px;
  margin-bottom: 16px;
}
#mt_website .mt_products_page .mt_products_empty h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px;
}
#mt_website .mt_products_page .mt_products_empty p {
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 20px;
}
#mt_website .mt_products_page .mt_products_empty .mt_btn_reset {
  background: #14A2DC;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 550;
  text-decoration: none;
  transition: background 0.2s ease;
}
#mt_website .mt_products_page .mt_products_empty .mt_btn_reset:hover {
  background: rgb(7.0098039216%, 56.7794117647%, 77.1078431373%);
}
#mt_website .mt_products_page .mt_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  flex-wrap: wrap;
}
#mt_website .mt_products_page .mt_page_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #D1D5DB;
  background: #FFFFFF;
  color: #374151;
  font-size: 14px;
  font-weight: 550;
  text-decoration: none;
  transition: all 0.2s ease;
}
#mt_website .mt_products_page .mt_page_btn.prev, #mt_website .mt_products_page .mt_page_btn.next {
  padding: 0 16px;
}
#mt_website .mt_products_page .mt_page_btn:hover {
  border-color: #14A2DC;
  color: #14A2DC;
  background: rgba(20, 162, 220, 0.02);
}
#mt_website .mt_products_page .mt_page_btn.active {
  background: #14A2DC;
  border-color: #14A2DC;
  color: #FFFFFF;
  box-shadow: 0 4px 6px -1px rgba(20, 162, 220, 0.2);
}
#mt_website .mt_products_page .mt_page_btn.disabled {
  border-color: #E5E7EB;
  background: #F3F4F6;
  color: #9CA3AF;
  pointer-events: none;
  cursor: not-allowed;
}
#mt_website .mt_products_page .mt_page_ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 40px;
  color: #9CA3AF;
  font-size: 14px;
}
#mt_website .mt_footer {
  background: #0080B4;
  color: #fefefe;
  padding: 96px 0 32px;
  border-top: 1px solid #E5E7EB;
}
#mt_website .mt_footer_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  #mt_website .mt_footer_grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}
#mt_website .mt_footer_newsletter h3 {
  font-size: 24px;
  margin: 0 0 24px;
  color: #ffffff;
}
#mt_website .mt_newsletter_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#mt_website .mt_newsletter_form label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #ebf3ff;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
#mt_website .mt_newsletter_form input {
  width: 100%;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #f8f8f8;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}
#mt_website .mt_newsletter_form input:focus {
  border-color: #14A2DC;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(20, 162, 220, 0.1);
}
#mt_website .mt_newsletter_form button {
  background: #14A2DC;
  color: #FFFFFF;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
#mt_website .mt_newsletter_form button:hover {
  background: rgb(7.0098039216%, 56.7794117647%, 77.1078431373%);
  transform: translateY(-1px);
}
#mt_website .mt_footer_col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin: 0 0 24px;
}
#mt_website .mt_footer_col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#mt_website .mt_footer_col ul a {
  font-size: 14px;
  color: #ebf3ff;
  transition: color 0.2s;
}
#mt_website .mt_footer_col ul a:hover {
  color: #14A2DC;
}
#mt_website .mt_footer_contact {
  display: flex;
  flex-direction: column;
}
#mt_website .mt_footer_contact .mt_footer_label {
  font-size: 11px;
  font-weight: 600;
  color: #ebf3ff;
  text-transform: uppercase;
  margin: 0 0 4px;
}
#mt_website .mt_footer_contact .mt_footer_value {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 20px;
}
#mt_website .mt_footer_contact img {
  height: 64px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  margin: 16px 0 8px;
}
#mt_website .mt_footer_contact .mt_footer_tagline {
  font-size: 13px;
  color: #ebf3ff;
  margin: 0;
}
#mt_website .mt_footer_copyright {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  color: #ebf3ff;
  text-align: center;
}
#mt_website .mt_banner {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}
#mt_website .mt_banner_success {
  background: #DEF7EC;
  color: #03543F;
}
#mt_website .mt_banner_error {
  background: #FDE8E8;
  color: #9B1C1C;
}

.mt_reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.mt_reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mtFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mtMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
