body{
    font-family:"Montserrat",Arial,sans-serif;
    margin: 0;

}
  /* ===== Eurodib Contact Us (isolated) ===== */
  .edbcu-root{
    --edbcu-blue:#286ab8;
    --edbcu-text:#3a3a3a;
    --edbcu-muted:#6b6b6b;
    --edbcu-panel:#efefef;
    --edbcu-white:#fff;
    --edbcu-radius:24px;

    color:var(--edbcu-text);
    background:#fff;
  }
  .edbcu-root *, .edbcu-root *::before, .edbcu-root *::after{ box-sizing:border-box; }





















  /* Main Header */
  .main-header {
  background: #ffffff;
  padding-top: 25px;
  margin-right: 120px;
  margin-left: 120px;
}
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
     position: relative;
  }
  
  .logo img {
    max-height: 50px;
    margin-top: -16px;
  }
  
  /* Search Box */
  .search-box {
    flex: 1;
    margin: 0 20px;
    display: flex;
    align-items: center;
  }
  
  .search-box input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 30px 0 0 30px;
  }
  
  .search-box button {
    background: #286AB8;
    padding: 10px;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
  }
  
  .search-box button img {
    width: 20px;
    height: 20px;
  }
  
 /* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .action {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  
  .action img {
    width: 24px;
    height: 24px;
  }

  .cart-img img{
    width: 35px;
    height: 32px;
  }
  
  .action-text {
    font-size: 16px;
    text-align: left;
  }
  
  /* Language Switcher Amazon Style */
  .language-switcher-amazon-style {
    position: relative;
    display: inline-block;
    font-size: 14px;
  }
  
  .lang-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 30px;
    background: #fff;
    padding: 8px 12px;
    cursor: pointer;
    transition: border-color 0.2s;
    min-width: 100px;
  }
  
  .lang-selector:hover {
    border-color: #128efb;
  }
  
  .lang-flag {
    width: 30px;
    height: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 8px;
    border-radius: 2px;
    flex-shrink: 0;
  }
  
  .ca-flag {
    background-image: url('https://flagcdn.com/ca.svg');
  }
  
  .us-flag {
    background-image: url('https://flagcdn.com/us.svg');
  }
  
  .lang-text {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
  }
  
  .lang-arrow {
    font-size: 10px;
    margin-left: auto;
    margin-right: 4px;
  }
  
  .lang-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .lang-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
  }
  
  .lang-option:hover {
    background-color: #f0f0f0;
  }
  
  .lang-option .lang-flag {
    margin-right: 8px;
  }
  
  
  /* Подключение Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

.nav-bar {
  background: #286AB8;
  font-family: 'Montserrat', sans-serif;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
  position: relative;
}

.nav-menu li {
  list-style: none;
  margin: 0 15px;
  position: relative;
}

.nav-menu a {
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

/* .nav-menu a:hover {
  text-decoration: underline;
} */

/* Контейнер для треугольника */
.dropdown-cooking-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

/* Показывать при hover */
.has-dropdown:hover .dropdown-cooking-wrapper {
  display: flex;
}

/* Треугольник */
.dropdown-cooking-wrapper::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid white;
  margin-bottom: -1px;
  z-index: 1001;
}

/* Меню */
.dropdown-cooking {
  width: 425px;
  height: 235px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.dropdown-cooking-content {
  display: flex;
  height: 100%;
  width: 100%;
}

.dropdown-cooking-content ul {
list-style: none;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 20px;
  padding-top: 25px;

}

.dropdown-cooking-content ul li {
  font-size: 14px;
  font-weight: 600;
  color: #827F7F;
  cursor: pointer;
  transition: color 0.2s;
  width: 170px;
}

.dropdown-cooking-content ul li:hover {
  color: #286AB8;
}

.dropdown-cooking-content img {
  width: 200px;
  height: 259px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Dropdown Brands Wrapper */
.dropdown-brands-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.has-dropdown:hover .dropdown-brands-wrapper {
  display: flex;
}

/* Triangle */
.dropdown-brands-wrapper::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
  margin-bottom: -1px;
  z-index: 1001;
}

/* Brands Dropdown Styling */
.dropdown-brands {
  width: 158px;
  height: 358px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropdown-brands ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.dropdown-brands ul li {
  font-size: 14px;
  font-weight: 600;
  color: #827F7F;
  padding: 0 20px;
  cursor: pointer;
  transition: color 0.2s;
}

.dropdown-brands ul li:hover {
  color: #286AB8;
}

  





.search-dropdown {
position: absolute;
  top: 89%;
  left: 0px;
  right: 16%;
  margin: 0 auto;
  width: 723px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: none;
  padding: 30px;
  gap: 40px;
  z-index: 9999;
}

.search-section {
  width: 234px;
  margin-right: 30px;
}


.search-dropdown.active {
    display: flex;
}

.search-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #827F7F;
    margin-bottom: 15px;
}

.search-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-section ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-bottom: 8px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    /* margin-bottom: 10px; */
}

.product-item img {
    width: 60px;
    height: auto;
    border-radius: 10px;
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-info strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    width: 203px;
    text-align: left;
}

.product-info span {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-align: left;
}






/* Inline radio layout */
.edbcu-inline{display:flex;gap:18px;align-items:center}
.edbcu-radio{display:flex;gap:8px;align-items:center;font-size:16px}

/* Dropzone */
.edbcu-dropzone{
  position:relative;
  display:flex;align-items:center;gap:12px;
  height:52px;padding:10px 14px;
  border:1px solid #cfd2d4;border-radius:50px;background:transparent;
}
.edbcu-dropzone input[type=file]{position:absolute;inset:0;opacity:0;cursor:pointer}
.edbcu-dropzone svg{opacity:.8}
.edbcu-dropzone__texts{line-height:1.1}
.edbcu-dropzone__main{font-size:16px}
.edbcu-dropzone__main .edbcu-browse{text-decoration:underline}
.edbcu-dropzone__hint{font-size:11px;color:#666}
.edbcu-dropzone__file{margin-left:auto;font-size:12px;color:#555}
.edbcu-dropzone.is-drag{border-color:var(--edbcu-blue);box-shadow:0 0 0 3px rgba(47,107,255,.12)}

/* Legal text */
.edbcu-legal{font-size:16px;color:#4a4a4a;line-height:1.35}
.edbcu-legal a{color:var(--edbcu-blue);text-decoration:underline}



#edbcu-tab-parts {
  width: 50%;
}

#edbcu-tab-service {
  width: 50%;
}

/* Toggle pills */
.edbcu-toggle{display:flex;justify-content:center;gap:22px;margin:6px 0 10px}
.edbcu-toggle__btn{
  border:2px solid var(--edbcu-blue);
  background:#fff;color:var(--edbcu-blue);
  border-radius:999px;padding:10px 22px;
  font-size: 24px;
  font-weight:700;cursor:pointer;
  font-family: "Montserrat",Arial,sans-serif;
  font-family:"Montserrat",Arial,sans-serif;
}
.edbcu-toggle__btn.is-active{background:var(--edbcu-blue);color:#fff;box-shadow:0 4px 16px rgba(47,107,255,.18)}

/* Groups */
.edbcu-group.is-hidden{display:none}

/* “Same as above” inline row + round checkbox */
.edbcu-inline{display:inline-flex;gap:8px;align-items:center;margin:6px 0 10px}
.edbcu-check{width:18px;height:18px;border-radius:50%;accent-color:var(--edbcu-blue)}
.edbcu-note{font-size:16px;color:#4a4a4a;margin:2px 0 8px}


































  /* Top title */
  .edbcu-head{
    padding:36px 16px 22px;
    text-align:center;
  }
  .edbcu-head__title{
    margin:0 0 8px;
    font-size:32px;
    line-height:1.2;
    color:var(--edbcu-blue);
    font-weight:700;
  }
  .edbcu-head__subtitle{
    margin:0;
    font-size:14px;
    line-height:1.35;
    color:#444;
    font-size: 20px;
  margin-left: 280px;
  margin-right: 280px;
  }

  /* Grey form section */
  .edbcu-section--grey{
    background:var(--edbcu-panel);
    padding:26px 0 34px;
  }
  .edbcu-container{
    width:100%;
    max-width:720px;
    margin:0 auto;
    padding:0 16px;
  }

  /* Form */
  .edbcu-form{}
  .edbcu-field{ margin:16px 0; }
  .edbcu-label{
    display:block;
    font-size:16px;
    font-weight:400;
    color:#6a6a6a;
    margin:0 0 8px;
  }
  .edbcu-control{
    width:100%;
    height:40px;
    padding:0 16px;
    border:1px solid #d7d7d7;
    border-radius:999px;
    background:transparent;
    outline:none;
    font:inherit;
    transition:border .15s ease, box-shadow .15s ease;
  }
  .edbcu-control:focus{
    border-color:var(--edbcu-blue);
    box-shadow:0 0 0 3px rgba(47,107,255,.15);
  }
  .edbcu-select{
    appearance:none;
    background-image:url('../image/Rectangle-29.png');
    background-repeat:no-repeat;
    background-position:right 14px center;
    background-size: 19px 11px;
    padding-right:42px;
  }
  .edbcu-textarea{
    height:auto;
    min-height:120px;
    padding:12px 16px;
    border-radius:18px;
    resize:vertical;
  }

  /* Captcha */
  .edbcu-captcha{
    display:flex;
    justify-content:center;
    margin:18px 0 8px;
  }
  .edbcu-captcha__placeholder{
    width:304px; height:78px;
    border:1px solid #d7d7d7; border-radius:8px;
    background:#fff;
    display:flex; align-items:center; justify-content:center;
    font-size:12px; color:#9a9a9a;
  }

  /* Actions */
  .edbcu-actions{ display:flex; justify-content:center; margin:8px 0 0; }
  .edbcu-form-success{
    text-align:center;
    padding:24px 16px;
    font-size:18px;
    font-weight:600;
    color:var(--edbcu-blue,#1C488D);
  }
  .edbcu-btn{
    appearance:none; border:0; cursor:pointer;
    background:#009CFF; color:#fff; font-weight:700;
    padding:10px 20px; border-radius:999px;
    font-size:18px;
    font-family:"Montserrat",Arial,sans-serif;
    text-decoration: none;
    display: inline-block;
  }

  /* "Get directions" link-button spacing */
  .edbcu-btn[data-get-directions]{
    margin-top: 40px;
  }

  /* Bottom info */
  .edbcu-info{
    padding:30px 16px 46px;
    text-align:center;
  }
  .edbcu-info__title{
    color:var(--edbcu-blue);
    font-size:22px; margin:0 0 8px; font-weight:700;
  }
  .edbcu-info__line{ margin:2px 0; font-size:18px; }
  .edbcu-info__muted{ color:#686868; font-size:18px; margin-top:8px; }

  /* Responsive */
  @media (max-width:520px){
    .edbcu-head__title{ font-size:24px; }
    .edbcu-control{ height:42px; }
  }

  /* ===== DialogInsight form (EN-US only) — restyle to match edbcu ===== */
  .edbcu-di .DialogInsightFormDiv{
    font-family:"Montserrat",Arial,sans-serif;
    font-size:16px;
    line-height:normal;
  }
  .edbcu-di .DialogInsightFormContainer{ text-align:left; }
  .edbcu-di .DialogInsightFormRow{ margin:16px 0; padding:0; }
  .edbcu-di .DialogInsightLabel_AboveField{
    display:block;
    width:auto;
    padding:0;
    margin:0 0 8px;
    font-size:16px;
    font-weight:400;
    color:#6a6a6a;
  }
  .edbcu-di .DialogInsightInputContainer{
    display:block;
    width:100%;
    min-height:0;
  }
  .edbcu-di input[type=text].DialogInsightFormInput{
    width:100%;
    height:40px;
    padding:0 16px;
    border:1px solid #d7d7d7;
    border-radius:999px;
    background:transparent;
    outline:none;
    box-shadow:none;
    line-height:40px;
    font:inherit;
  }
  .edbcu-di input[type=text].DialogInsightFormInput:focus{
    border-color:var(--edbcu-blue);
    box-shadow:0 0 0 3px rgba(47,107,255,.15);
  }
  .edbcu-di .DialogInsightCheckboxRow{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    color:#6a6a6a;
    font-size:16px;
    font-weight:400;
  }
  .edbcu-di .DialogInsightCheckboxRow input[type=checkbox]{
    width:16px;
    height:16px;
    margin:0;
  }
  .edbcu-di .DialogInsightErrorContainer,
  .edbcu-di .DialogInsightErrorContents{
    color:#ff3333;
    padding-top:6px;
    font-size:13px;
  }
  .edbcu-di .DialogInsightGlobalErrors > div{
    text-align:left;
    border-radius:12px;
    background-color:#fff;
    border:#ff3333 1px solid;
    padding:12px 14px;
    color:#ff3333;
    max-width:720px;
    margin:0 0 16px;
  }
  .edbcu-di .DialogInsightFormSubmit{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:8px;
  }
  .edbcu-di .DialogInsightFormSubmit button{
    appearance:none;
    border:0;
    cursor:pointer;
    background:#009CFF;
    color:#fff;
    font-weight:700;
    padding:10px 20px;
    border-radius:999px;
    font-size:18px;
    font-family:"Montserrat",Arial,sans-serif;
  }
  .edbcu-di .DialogInsightFormSubmitLoader{
    width:18px;
    height:18px;
  }
  .edbcu-di .DialogInsightFormSuccessDiv{
    margin-top:14px;
    background:#fff;
    border:1px solid #d7d7d7;
    border-radius:18px;
  }























/* Email Signup */
.custom-email-signup {
  background-color: #286AB8;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.custom-signup-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1160px;
  flex-wrap: wrap;
  gap: 20px;
}

.custom-signup-title {
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 20px;
  flex: 1;
  text-align: center;
}

.custom-signup-form {
  display: flex;
  flex-direction: row;
  border-radius: 50px;
  overflow: hidden;
  background-color: white;
}

.custom-signup-form input[type="email"] {
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 0;
  outline: none;
  width: 300px;
}

.custom-signup-form button {
  background-color: #001041;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  font-weight: 700;
}
  
  /* Footer */
  .footer {
    background: #001037;
    color: white;
    padding: 40px 0 20px;
    font-size: 14px;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .footer-logo {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
  }
  
  .footer-logo img {
    max-height: 50px;
    margin-bottom: 15px;
  }
  
  .footer-logo p {
    margin-bottom: 15px;
    width: 325px;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .social-icons img {
    width: 30px;
    height: 30px;
  }
  
  /* Footer Links */
  .footer-links {
    display: flex;
    flex: 2;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: auto;
  }
  
  .footer-column {
    display: grid;
    min-width: 180px;
    margin-bottom: 20px;
  }
  
  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
  }
  
  .footer-column ul li a:hover {
    text-decoration: underline;
  }
  
  /* Quick Help Buttons */
  .footer-btn {
    width: 100%;
    background: #0066cc;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    font-family: "Montserrat",Arial,sans-serif;
    text-align: center;
    text-decoration: none;
  }
  
  .footer-btn.outline {
    background: transparent;
    border: 2px solid white;
    color: white;
  }
  
  .quick-links {
    list-style: none;
    margin-top: 10px;
  }
  
  .quick-links li {
    margin-bottom: 5px;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    border-top: 1px solid #6a6a6a;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
  }
  
  .policy-links {
    margin-top: 10px;
  }
  
  .policy-links a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-size: 14px;
  }
  
  .policy-links a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Footer */
  @media (max-width: 768px) {
    .signup-container {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
    
    .footer-top {
      flex-direction: column;
      gap: 20px;
    }
    
    .footer-links {
      flex-direction: column;
      gap: 20px;
    }
  }
  
  /* Google Map Container */
  .contact-map {
    margin-top: 30px;
    border-radius: var(--edbcu-radius, 24px);
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }
  .contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
  }
  .contact-map a {
    display: block;
    padding: 20px;
    text-align: center;
  }


  