/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;

  }
  
 /* Containers */
.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
  }
  
  /* Top Bar */
  .top-bar {
    background: #e5e6e4;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
  }
  
  .top-bar a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
  }

  .header-number {
    font-weight: bold;
  }
  
  /* Main Header */
  .main-header {
    background: #ffffff;
    border-bottom: 1px solid #ccc;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  
  .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;
  }

  /* Nav and dropdown menu: use main.css + responsive.css + global-overrides.css
     so profile/sign-in pages look the same as the rest of the site. */

.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;
}


    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   .eurodib-signin-section {
        font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        background-color: #ffffff;
        border-top: 3px solid #007bff;
        border-bottom: 3px solid #007bff;
        padding: 70px 40px 80px;
    }

    .eurodib-signin-inner {
        max-width: 1320px;
        margin: 0 auto;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 60px;
    }

    /* Левая колонка */

    .eurodib-signin-left {
        flex: 1 1 55%;
    }

    .eurodib-signin-title {
        margin: 0 0 12px;
        text-align: center;
        font-size: 40px;
        line-height: 1.2;
        font-weight: 700;
        color: #0070c9;
    }

    .eurodib-signin-subtitle {
        margin: 0 0 36px;
        text-align: center;
        font-size: 18px;
        color: #333333;
        font-weight: 400;
    }

    .eurodib-signin-form {
        max-width: 740px;
        margin: 0 auto;
        font-family: "Montserrat", system-ui, -apple-system, sans-serif;
    }

    .eurodib-signin-label {
        display: block;
        font-size: 16px;
        font-weight: 500;
        color: #222222;
        margin-bottom: 18px;
    }

    .eurodib-signin-required {
        color: #ff6b37;
        margin-left: 2px;
    }

    .eurodib-signin-input-wrap {
        margin-top: 8px;
        position: relative;
    }

    .eurodib-signin-input {
        width: 100%;
        border: 2px solid #d5d5d5;
        padding: 17px 24px;
        font-size: 16px;
        font-family: "Montserrat", system-ui, -apple-system, sans-serif;
        outline: none;
        box-sizing: border-box;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        border-radius: 84px !important;
    }

    .eurodib-signin-input:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
    }

    .eurodib-signin-input-wrap--password .eurodib-signin-input {
        padding-right: 56px;
    }

    /* Иконка глаза */
    .eurodib-signin-eye {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        cursor: pointer;
        opacity: 0.75;
        transition: opacity 0.15s ease, transform 0.15s ease;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 22px 22px;
        /* eye (open) */
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3' fill='none' stroke='%23111' stroke-width='2'/%3E%3C/svg%3E");
    }

    .eurodib-signin-eye:hover {
        opacity: 0.95;
    }

    .eurodib-signin-eye:active {
        transform: translateY(-50%) scale(0.96);
    }

    .eurodib-signin-eye:focus-visible {
        outline: 3px solid rgba(0, 123, 255, 0.35);
        outline-offset: 3px;
        border-radius: 8px;
        opacity: 1;
    }

    /* eye (closed) when password is visible */
    .eurodib-signin-eye.active {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 12s3.5-7 9-7 9 7 9 7-3.5 7-9 7-9-7-9-7Z'/%3E%3Cpath fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 4l16 16'/%3E%3C/svg%3E");
    }

    /* Remember me */

    .eurodib-signin-remember-row {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .eurodib-signin-remember {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
        user-select: none;
        font-size: 18px;
        font-weight: 500;
        color: #222222;
        position: relative;
    }

    .eurodib-signin-remember-checkbox {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .eurodib-signin-remember-custom {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 2px solid #d5d5d5;
        background-color: #ffffff;
        margin-right: 14px;
        box-sizing: border-box;
        position: relative;
    }

    .eurodib-signin-remember-checkbox:checked + .eurodib-signin-remember-custom {
        border-color: #288ab8;
    }

    .eurodib-signin-remember-checkbox:checked + .eurodib-signin-remember-custom::after {
        content: "";
        position: absolute;
        width: 12px;
        height: 12px;
        left: 50%;
        top: 50%;
        border-radius: 50%;
        background-color: #288ab8;
        transform: translate(-50%, -50%);
    }

    .eurodib-signin-remember-checkbox:focus-visible + .eurodib-signin-remember-custom {
        outline: 3px solid rgba(40, 138, 184, 0.25);
        outline-offset: 2px;
    }

    .eurodib-signin-remember-text {
        white-space: nowrap;
    }

    .eurodib-signin-button {
      display: flex !important;
      justify-content: center;
        appearance: none;
        border: 0;
        cursor: pointer;
        background: #009CFF;
        color: #fff;
        font-weight: 700;
        padding: 10px 20px;
        border-radius: 999px;
        font-size: 20px;
        font-family: "Montserrat", Arial, sans-serif;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        box-shadow: none;
        transform: none;
        transition: none;
    }

    .eurodib-signin-forgot {
        margin-top: 20px;
        text-align: center;
    }

    .eurodib-signin-forgot-link {
        font-size: 18px;
        font-weight: 700;
        color: #0070c9;
        text-decoration: none;
    }

    .eurodib-signin-forgot-link:hover {
        text-decoration: underline;
    }

    /* Правая колонка */

    .eurodib-signin-right {
        flex: 1 1 45%;
        max-width: 560px;
        background-color: #f3f4f6;
        border-radius: 32px;
        padding: 40px 50px 46px;
        text-align: center;
    }

    .eurodib-signin-right-title {
        margin: 0 0 8px;
        font-size: 32px;
        font-weight: 700;
        color: #0070c9;
    }

    .eurodib-signin-right-subtitle {
        margin: 0 0 32px;
        font-size: 24px;
        font-weight: 700;
        color: #0070c9;
    }

    .eurodib-signin-advantages {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        margin-bottom: 36px;
        align-items: baseline;
    }

    .eurodib-signin-advantage {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        color: #222222;
    }

    .eurodib-signin-advantage-icon img {
        width: auto;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .eurodib-signin-advantage-icon--cart img {
        width: 68.74px;
        height: 60.01px;
    }

    .eurodib-signin-advantage-icon--download img {
        width: 46.39px;
        height: 58.42px;
    }

    .eurodib-signin-advantage-icon--training img {
        width: 72.73px;
        height: 59.58px;
    }

    .eurodib-signin-advantage-icon--rebate img {
        width: 59.32px;
        height: 59.32px;
    }

    .eurodib-signin-advantage-icon--form::after {
        content: "";
        position: absolute;
        left: 22px;
        top: 24px;
        width: 22px;
        height: 18px;
        border-radius: 10px;
        border: 3px solid #012b6b;
    }

    .eurodib-signin-advantage-icon--dollar {
        border-radius: 50%;
    }

    .eurodib-signin-advantage-icon--dollar::before {
        content: "$";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 32px;
        font-weight: 700;
        color: #012b6b;
        border: none;
        width: auto;
        height: auto;
    }

    .eurodib-signin-advantage-text {
        margin: 0;
        line-height: 1.3;
    }

    .eurodib-signin-create-btn {
        appearance: none;
        border: 0;
        cursor: pointer;
        background: #009CFF;
        color: #fff;
        font-weight: 700;
        padding: 10px 20px;
        border-radius: 999px;
        font-size: 20px;
        font-family: "Montserrat", Arial, sans-serif;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: none;
        transform: none;
        transition: none;
    }

    /* Простейший адаптив */

    @media (max-width: 1100px) {
        .eurodib-signin-inner {
            flex-direction: column;
            align-items: center;
        }

        .eurodib-signin-left,
        .eurodib-signin-right {
            max-width: 100%;
        }

        .eurodib-signin-advantages {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            row-gap: 24px;
        }
    }

    @media (max-width: 640px) {
        .eurodib-signin-section {
            padding: 40px 20px 50px;
        }

        .eurodib-signin-advantages {
            grid-template-columns: 1fr 1fr;
        }

        .eurodib-signin-right {
            padding: 30px 24px 34px;
        }
    }




































   
/* 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;
  font-family: "Montserrat",Arial,sans-serif;
}
    
  /* 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 {
    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;
  }
  
  .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;
    }
  }
  


.read-more-home{
  text-align: right;
  color: black;
  text-decoration: none;
}

.read-more-home a{
  text-align: right;
  color: black;
  text-decoration: none;
  font-weight: 600;
}

.read-more-home a:hover{
  color: #286ab8;
}






    .eurodib-forgot-section {
        font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        background-color: #ffffff;
        padding: 80px 40px 90px;
        border-bottom: 3px solid #007bff;
    }

    .eurodib-forgot-inner {
        max-width: 960px;
        margin: 0 auto;
        text-align: center;
    }

    .eurodib-forgot-title {
        margin: 0 0 10px;
        font-size: 40px;
        line-height: 1.2;
        font-weight: 700;
        color: #0070c9;
    }

    .eurodib-forgot-subtitle {
        margin: 0 0 40px;
        font-size: 18px;
        font-weight: 400;
        color: #333333;
    }

    .eurodib-forgot-form {
        max-width: 760px;
        margin: 0 auto;
    }

    .eurodib-forgot-label {
        display: block;
        font-family: "Montserrat", Arial, sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: #6a6a6a;
        text-align: left;
        margin-bottom: 26px;
    }

    /* звёздочка такая же, как на Sign in */
    .eurodib-signin-required {
        color: #ff6b37;
        margin-left: 2px;
    }

    /* обёртка и инпут — те же стили, что и на Sign in */
    .eurodib-signin-input-wrap {
        margin-top: 8px;
        position: relative;
    }

    .eurodib-signin-input {
        width: 100%;
        border: 2px solid #d5d5d5;
        padding: 17px 24px;
        font-size: 16px;
        font-family: "Montserrat", system-ui, -apple-system, sans-serif;
        outline: none;
        box-sizing: border-box;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        border-radius: 84px !important;
    }

    .eurodib-signin-input:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
    }

    .eurodib-forgot-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;
        margin-top: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: none;
        transform: none;
        transition: none;
    }

    @media (max-width: 640px) {
        .eurodib-forgot-section {
            padding: 60px 20px 70px;
        }

        .eurodib-forgot-title {
            font-size: 32px;
        }

        .eurodib-forgot-subtitle {
            font-size: 16px;
        }

        .eurodib-forgot-label {
            font-size: 16px;
        }
    }





  

.edbpp-wrapper {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  padding: 40px 16px 60px;
}

.edbpp-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.edbpp-header {
  text-align: center;
  margin-bottom: 30px;
}

.edbpp-title {
  font-size: 26px;
  font-weight: 700;
  color: #0072ce;
  margin: 0 0 8px;
}

.edbpp-subtitle {
  margin: 0;
  font-size: 13px;
  color: #777777;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Search & topbar */
.edbpp-topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.edbpp-search {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.edbpp-search-input {
  width: 72%;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  padding: 10px 50px 10px 18px;
  font-size: 13px;
  outline: none;
}

.edbpp-search-input::placeholder {
  color: #b0b0b0;
}

.edbpp-search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 999px;
  width: 40px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0072ce;
  cursor: pointer;
}

.edbpp-search-btn svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
}

/* Topbar actions */
.edbpp-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 13px;
}

.edbpp-select-all-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #555555;
}

.edbpp-select-all-label input {
  width: 14px;
  height: 14px;
}

.edbpp-files-info {
  color: #555555;
}

.edbpp-files-count {
  font-weight: 600;
}

.edbpp-files-size {
  margin-left: 4px;
}

.edbpp-download-btn {
  border: none;
  padding: 8px 20px;
  border-radius: 999px;
  background-color: #0072ce;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* Main layout */
.edbpp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
}

/* Filters */
.edbpp-filters {
  border-right: 1px solid #f0f0f0;
  padding-right: 20px;
}

.edbpp-filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.edbpp-filters-title {
  font-weight: 600;
  font-size: 16px;
}

.edbpp-filters-close {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #cccccc;
  position: relative;
  background: #ffffff;
  cursor: pointer;
}

.edbpp-filters-close::before,
.edbpp-filters-close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 1px;
  background: #555555;
  transform-origin: center;
}

.edbpp-filters-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.edbpp-filters-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Filter groups */
.edbpp-filter-group {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.edbpp-filter-group-header {
  width: 100%;
  padding: 8px 0;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.edbpp-filter-group-toggle {
  width: 16px;
  height: 16px;
  position: relative;
}

.edbpp-filter-group-toggle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #555555 transparent transparent transparent;
  transform: translate(-50%, -30%);
  transition: transform 0.2s ease;
}

.edbpp-filter-group--open .edbpp-filter-group-toggle::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.edbpp-filter-group-body {
  padding: 2px 0 6px;
  display: none;
}

.edbpp-filter-group--open .edbpp-filter-group-body {
  display: block;
}

.edbpp-filter-item {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  font-size: 13px;
  color: #555555;
  cursor: pointer;
}

.edbpp-filter-count {
  color: #b0b0b0;
}

/* Grid */
.edbpp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Card */
.edbpp-card {
  position: relative;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  background-color: #ffffff;
  padding: 14px 12px 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.edbpp-card-checkbox {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.edbpp-card-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.edbpp-card-checkbox-box {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid #cccccc;
  display: inline-block;
  position: relative;
  background: #ffffff;
}

.edbpp-card-input:checked + .edbpp-card-checkbox-box {
  background-color: #0072ce;
  border-color: #0072ce;
}

.edbpp-card-input:checked + .edbpp-card-checkbox-box::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 1px;
  width: 7px;
  height: 9px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(40deg);
}

.edbpp-card-image {
  margin-top: 10px;
  margin-bottom: 12px;
  width: 70px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edbpp-card-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #f3f3f3;
}

.edbpp-card-body {
  text-align: left;
  width: 100%;
}

.edbpp-card-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.edbpp-card-brand {
  font-size: 11px;
  font-weight: 600;
  color: #555555;
  margin-bottom: 2px;
}

.edbpp-card-model {
  font-size: 11px;
  color: #999999;
}

/* Pagination */
.edbpp-pagination {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.edbpp-page-btn {
  min-width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  font-size: 12px;
  cursor: pointer;
}

.edbpp-page-btn--active {
  background-color: #0072ce;
  border-color: #0072ce;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .edbpp-layout {
    grid-template-columns: 1fr;
  }

  .edbpp-filters {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding-right: 0;
    padding-bottom: 12px;
    margin-bottom: 16px;
  }

  .edbpp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .edbpp-topbar-actions {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .edbpp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edbpp-topbar-actions {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .edbpp-grid {
    grid-template-columns: 1fr;
  }

  .edbpp-topbar {
    align-items: stretch;
  }

  .edbpp-topbar-actions {
    justify-content: flex-start;
  }
}






















/* ================== ОБЩЕЕ ОФОРМЛЕНИЕ СЕКЦИИ ================== */

.edbcat-wrapper {
  padding: 90px 24px 110px;
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
}

.edbcat-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* ================== HEADER ================== */

.edbcat-header {
  text-align: center;
  margin-bottom: 60px;
}

.edbcat-title {
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #2f67c7;
}

.edbcat-subtitle {
  margin: 0 auto 28px;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.edbcat-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}

/* Select all + чекбоксы */

.edbcat-select-all-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
}

.edbcat-select-all-checkbox,
.edbcat-filter-checkbox,
.edbcat-card-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.edbcat-checkbox-custom {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #dedede;
  background: #fff;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
}

.edbcat-select-all-checkbox:checked + .edbcat-checkbox-custom,
.edbcat-filter-checkbox:checked + .edbcat-checkbox-custom,
.edbcat-card-input:checked + .edbcat-checkbox-custom {
  border-color: #2f67c7;
  background-color: #2f67c7;
}

.edbcat-select-all-checkbox:checked + .edbcat-checkbox-custom::after,
.edbcat-filter-checkbox:checked + .edbcat-checkbox-custom::after,
.edbcat-card-input:checked + .edbcat-checkbox-custom::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

/* Download button — как на макете */

.edbcat-download-btn {
  padding: 11px 40px;
  border-radius: 999px;
  border: none;
  background-color: #2f67c7;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(47, 103, 199, 0.35);
  transition: background-color 0.1s ease, box-shadow 0.1s ease, transform 0.1s ease;
}

.edbcat-download-btn:hover {
  background-color: #2453a0;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(47, 103, 199, 0.45);
}

/* ================== ОБЩИЙ ЛЕЙАУТ ================== */

.edbcat-layout {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* ================== ФИЛЬТРЫ СЛЕВА ================== */

.edbcat-filters {
  flex: 0 0 230px;
}

.edbcat-filters-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.edbcat-filters-title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  color: #2f67c7;
}

.edbcat-filters-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 22px;
  color: #000;
}

.edbcat-filters-group-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}

.edbcat-filters-group {
  font-size: 15px;
}

.edbcat-filter-item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 5px 0;
  position: relative;
  padding-right: 32px;
  cursor: pointer;
}

.edbcat-filter-count {
  margin-left: 3px;
  color: #777;
}

/* чекбокс бренда справа */

.edbcat-filter-item .edbcat-filter-checkbox {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.edbcat-filter-item .edbcat-checkbox-custom {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ================== КОЛОНКИ КАТАЛОГОВ ================== */

.edbcat-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 80px;
}

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

/* вертикальные разделительные линии как на макете */
.edbcat-column:nth-child(2),
.edbcat-column:nth-child(3) {
  position: relative;
}

.edbcat-column:nth-child(2)::before,
.edbcat-column:nth-child(3)::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #e0e0e0;
}

/* ================== КАРТОЧКА КАТАЛОГА ================== */

.edbcat-card {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}

.edbcat-card-image {
  width: 90px;
  height: 90px;
  border-radius: 26px;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.edbcat-card-image img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.edbcat-card-body {
  margin-left: 26px;
  min-width: 140px;
}

.edbcat-card-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 4px;
  white-space: normal;
}

.edbcat-card-year {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
}

.edbcat-card-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.edbcat-card-checkbox .edbcat-checkbox-custom {
  position: static;
}

/* ================== ПАГИНАЦИЯ ================== */

.edbcat-pagination {
  margin-top: 16px;
  text-align: center;
}

.edbcat-page-btn {
  border: none;
  padding: 8px 14px;
  margin: 0 4px;
  border-radius: 999px;
  background: #f0f0f0;
  cursor: pointer;
  font-size: 14px;
}

.edbcat-page-btn--active {
  background: #2f67c7;
  color: #fff;
}

/* ================== ADAPTIVE ================== */

@media (max-width: 1024px) {
  .edbcat-wrapper {
    padding: 70px 20px 80px;
  }

  .edbcat-layout {
    flex-direction: column;
    gap: 32px;
  }

  .edbcat-filters {
    width: 100%;
    max-width: 100%;
  }

  .edbcat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 60px;
  }

  .edbcat-column:nth-child(3)::before {
    display: none;
  }

  .edbcat-column:nth-child(2)::before {
    left: -30px;
  }
}

@media (max-width: 768px) {
  .edbcat-wrapper {
    padding: 55px 16px 60px;
  }

  .edbcat-title {
    font-size: 30px;
  }

  .edbcat-subtitle {
    font-size: 14px;
    max-width: 100%;
  }

  .edbcat-header-actions {
    flex-direction: column;
    gap: 14px;
  }

  .edbcat-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .edbcat-column:nth-child(2)::before,
  .edbcat-column:nth-child(3)::before {
    display: none;
  }

  .edbcat-card {
    margin-bottom: 26px;
  }
}

@media (max-width: 480px) {
  .edbcat-header {
    margin-bottom: 28px;
  }

  .edbcat-title {
    font-size: 26px;
  }

  .edbcat-subtitle {
    font-size: 13px;
  }

  .edbcat-filter-item {
    font-size: 14px;
  }

  .edbcat-card {
    align-items: flex-start;
  }

  .edbcat-card-image {
    width: 70px;
    height: 70px;
    border-radius: 20px;
  }

  .edbcat-card-body {
    margin-left: 18px;
    margin-right: 20px;
  }

  .edbcat-card-name,
  .edbcat-card-year {
    font-size: 16px;
  }
}









/* ===== BASE ===== */
.edbvid-wrapper {
  padding: 80px 24px 90px;
  background: #ffffff;
  font-family: 'Montserrat', sans-serif;
}
.edbvid-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.edbvid-header {
  text-align: center;
  margin-bottom: 40px;
}
.edbvid-title {
  margin: 0 0 24px;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #2f67c7;
}

/* search */
.edbvid-search {
  max-width: 640px;
  margin: 0 auto 16px;
  display: flex;
}
.edbvid-search-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px 0 0 999px;
  border: 1px solid #dfdfdf;
  outline: none;
  font-size: 14px;
}
.edbvid-search-btn {
  width: 56px;
  border-radius: 0 999px 999px 0;
  border: none;
  background: #2f67c7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.edbvid-search-icon svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  fill: none;
}

/* select all / files / download */
.edbvid-header-bar {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}
.edbvid-select-all-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.edbvid-files-info {
  color: #444444;
}

.edbvid-select-all-input,
.edbvid-card-checkbox,
.edbvid-filter-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.edbvid-checkbox-custom {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #dedede;
  background-color: #ffffff;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
}
.edbvid-select-all-input:checked + .edbvid-checkbox-custom,
.edbvid-card-checkbox:checked + .edbvid-checkbox-custom,
.edbvid-filter-checkbox:checked + .edbvid-checkbox-custom {
  border-color: #2f67c7;
  background-color: #2f67c7;
}
.edbvid-select-all-input:checked + .edbvid-checkbox-custom::after,
.edbvid-card-checkbox:checked + .edbvid-checkbox-custom::after,
.edbvid-filter-checkbox:checked + .edbvid-checkbox-custom::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.edbvid-download-btn {
  padding: 10px 36px;
  border-radius: 999px;
  border: none;
  background: #2f67c7;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(47, 103, 199, 0.35);
}

/* ===== LAYOUT ===== */
.edbvid-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* filters */
.edbvid-filters {
  flex: 0 0 240px;
}
.edbvid-filters-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.edbvid-filters-title {
  font-size: 32px;
  font-weight: 700;
  color: #2f67c7;
}
.edbvid-filters-icons {
  display: flex;
  gap: 16px;
  font-size: 20px;
}

.edbvid-filter-group {
  border-top: 1px solid #e4e4e4;
  padding-top: 14px;
  margin-top: 14px;
}
.edbvid-filter-group-header {
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}
.edbvid-filter-group-body {
  margin-top: 8px;
}
.edbvid-filter-item {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0;
  padding-right: 30px;
  position: relative;
  font-size: 14px;
  cursor: pointer;
}
.edbvid-filter-count {
  color: #777777;
  margin-left: 3px;
}
.edbvid-filter-item .edbvid-checkbox-custom {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* videos grid */
.edbvid-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

/* video card */
.edbvid-card {
  text-align: center;
}
.edbvid-thumb-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.edbvid-thumb-wrapper img {
  width: 100%;
  display: block;
}
.edbvid-play-btn {
  position: absolute;
  inset: 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.edbvid-play-circle {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.edbvid-play-triangle {
  width: 0;
  height: 0;
  border-left: 18px solid #2f67c7;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.edbvid-card-title {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.3;
}

.edbvid-card-checkbox-wrap {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.edbvid-card-checkbox-wrap .edbvid-checkbox-custom {
  position: static;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .edbvid-layout {
    flex-direction: column;
  }
  .edbvid-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .edbvid-wrapper {
    padding: 60px 16px 70px;
  }
  .edbvid-title {
    font-size: 32px;
  }
  .edbvid-header-bar {
    flex-direction: column;
    gap: 10px;
  }
  .edbvid-grid {
    grid-template-columns: 1fr;
  }
  .edbvid-filters {
    width: 100%;
  }
}

























/* ================== PROMOS – BASE ================== */

.edbpromo-wrapper {
  padding: 80px 24px 90px;
  background: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

.edbpromo-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* ================== HEADER ================== */

.edbpromo-header {
  text-align: center;
  margin-bottom: 48px;
}

.edbpromo-title {
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #2f67c7;
}

.edbpromo-subtitle {
  margin: 0 auto 26px;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

.edbpromo-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}

/* ================== CHECKBOXES & BUTTON ================== */

.edbpromo-select-all-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
}

.edbpromo-select-all-input,
.edbpromo-card-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.edbpromo-checkbox-custom {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #dedede;
  background: #ffffff;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
}

.edbpromo-select-all-input:checked + .edbpromo-checkbox-custom,
.edbpromo-card-checkbox:checked + .edbpromo-checkbox-custom {
  border-color: #2f67c7;
  background-color: #2f67c7;
}

.edbpromo-select-all-input:checked + .edbpromo-checkbox-custom::after,
.edbpromo-card-checkbox:checked + .edbpromo-checkbox-custom::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.edbpromo-download-btn {
  padding: 11px 40px;
  border-radius: 999px;
  border: none;
  background-color: #2f67c7;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(47, 103, 199, 0.35);
  transition: background-color 0.1s ease, box-shadow 0.1s ease, transform 0.1s ease;
}

.edbpromo-download-btn:hover {
  background-color: #2453a0;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(47, 103, 199, 0.45);
}

/* ================== PROMO CARDS ================== */

.edbpromo-list {
  display: flex;
  justify-content: center;
  gap: 120px;
}

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

.edbpromo-thumb {
  width: 90px;
  height: 90px;
  border-radius: 26px;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.edbpromo-thumb img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.edbpromo-info {
  margin-left: 26px;
  margin-right: 26px;
}

.edbpromo-card-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.edbpromo-card-dates {
  font-size: 15px;
  line-height: 1.3;
  color: #444444;
}

.edbpromo-card-checkbox-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.edbpromo-card-checkbox-wrap .edbpromo-checkbox-custom {
  position: static;
}

/* ================== ADAPTIVE ================== */

@media (max-width: 1024px) {
  .edbpromo-wrapper {
    padding: 70px 20px 70px;
  }

  .edbpromo-list {
    gap: 80px;
  }
}

@media (max-width: 768px) {
  .edbpromo-wrapper {
    padding: 55px 16px 60px;
  }

  .edbpromo-title {
    font-size: 30px;
  }

  .edbpromo-subtitle {
    font-size: 14px;
    max-width: 100%;
  }

  .edbpromo-header-actions {
    flex-direction: column;
    gap: 14px;
  }

  .edbpromo-list {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
}

@media (max-width: 480px) {
  .edbpromo-title {
    font-size: 26px;
  }

  .edbpromo-subtitle {
    font-size: 13px;
  }

  .edbpromo-card {
    width: 100%;
    max-width: 360px;
  }

  .edbpromo-thumb {
    width: 70px;
    height: 70px;
    border-radius: 20px;
  }

  .edbpromo-info {
    margin-left: 18px;
    margin-right: 18px;
  }

  .edbpromo-card-title {
    font-size: 16px;
  }

  .edbpromo-card-dates {
    font-size: 14px;
  }
}













/* ========= ОБЩИЙ ВРАППЕР СЕКЦИИ ========= */

.edborders-wrapper {
  background-color: #ffffff;              /* как ты просил — белый фон секции */
  padding: 60px 16px 90px;
}

.edborders-container {
  max-width: 1180px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
}

/* ========= ЗАГОЛОВОК ========= */

.edborders-title {
  margin: 0 0 32px;
  text-align: center;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #2f67c7;
}

/* ========= БЛОК ОДНОГО ЗАКАЗА ========= */

.edborders-order-block {
  background-color: #f7f8fc;
  border-radius: 12px;
  padding: 22px 26px 6px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

/* ========= ШАПКА ЗАКАЗА (дата + Qty) ========= */

.edborders-order-header {
  display: grid;
  grid-template-columns: 1fr 60px 120px 120px;  /* текст | Qty | Reorder | Request quote */
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #666666;
  margin-bottom: 6px;
}



/* ========= СТРОКА ТОВАРА ВНУТРИ ЗАКАЗА ========= */

.edborders-order-item {
  display: grid;
  grid-template-columns: 1fr 60px 120px 120px;  /* товар | qty | reorder | request quote */
  align-items: center;
  padding: 18px 0;
  gap: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.edborders-order-item:last-child {
  border-bottom: none;
}

/* ========= ЛЕВАЯ ЧАСТЬ: КАРТИНКА + ТЕКСТ ========= */

.edborders-item-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* картинка товара строго 50x50 */
.edborders-item-left img {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

/* текст о товаре */
.edborders-item-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.edborders-item-name {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
}

.edborders-item-name strong {
  font-weight: 700;
}

.edborders-item-sku {
  font-size: 13px;
  color: #777777;
  margin-top: 2px;
}

/* ========= КОЛОНКА QTY ========= */

.edborders-item-qty {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
}

/* ========= КНОПКА REORDER ========= */

.edborders-reorder-btn {
  justify-self: end;
  min-width: 96px;
  padding: 7px 24px;
  border-radius: 20px;
  border: none;
  background-color: #2f67c7;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(47, 103, 199, 0.35);
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.edborders-reorder-btn:hover {
  background-color: #1f4ea3;
  box-shadow: 0 7px 16px rgba(47, 103, 199, 0.45);
  transform: translateY(-1px);
}

.edborders-reorder-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(47, 103, 199, 0.35);
}

/* ========= КНОПКА REQUEST A QUOTE ========= */

.edborders-request-quote-btn {
  justify-self: end;
  display: inline-block;
  min-width: 169px;
  padding: 7px 24px;
  border-radius: 20px;
  border: none;
  background-color: #2f67c7;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.15s ease, transform 0.1s ease;
  cursor: pointer;
}

.edborders-request-quote-btn:hover {
  background-color: #1f4ea3;
  color: #ffffff;
  transform: translateY(-1px);
}

.edborders-request-quote-btn:active {
  transform: translateY(0);
}

/* Quote block: row has product | qty | price | button (price column may be empty) */
.edborders-quote-block .edborders-order-header {
  grid-template-columns: 1fr 60px 100px 120px;
}
.edborders-quote-block .edborders-order-item {
  grid-template-columns: 1fr 60px 100px 120px;
}

/* ========= АДАПТИВ ========= */

/* Планшет */
@media (max-width: 1024px) {
  .edborders-wrapper {
    padding: 40px 16px 70px;
  }

  .edborders-order-block {
    padding: 18px 18px 4px;
  }

  .edborders-order-header {
    grid-template-columns: 1fr 50px 90px 90px;
  }

  .edborders-order-item {
    grid-template-columns: 1fr 50px 90px 90px;
    gap: 14px;
  }

  .edborders-quote-block .edborders-order-header,
  .edborders-quote-block .edborders-order-item {
    grid-template-columns: 1fr 50px 80px 90px;
  }

  .edborders-item-left img {
    width: 46px !important;
    height: 46px !important;
  }
}

/* Мобильный */
@media (max-width: 768px) {
  .edborders-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .edborders-order-block {
    padding: 16px 14px 4px;
  }

  .edborders-order-header {
    grid-template-columns: 1fr 50px;
    column-gap: 10px;
  }

  .edborders-order-header span:last-child {
    text-align: right;
  }

  /* строка товара — qty справа, кнопки ниже в два ряда */
  .edborders-order-item {
    grid-template-columns: 1fr 60px;
    grid-template-rows: auto auto auto;
    row-gap: 8px;
  }

  .edborders-item-qty {
    align-self: center;
  }

  .edborders-reorder-btn {
    justify-self: start;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 4px;
  }

  .edborders-request-quote-btn {
    justify-self: start;
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 4px;
  }

  .edborders-quote-block .edborders-order-item {
    grid-template-columns: 1fr 60px;
    grid-template-rows: auto auto auto;
  }

  .edborders-quote-block .edborders-item-price {
    grid-column: 1 / -1;
  }

  .edborders-quote-block .edborders-request-quote-btn {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
  .edborders-wrapper {
    padding: 32px 10px 50px;
  }

  .edborders-title {
    font-size: 22px;
  }

  .edborders-item-name {
    font-size: 14px;
  }

  .edborders-item-sku {
    font-size: 12px;
  }

  .edborders-item-left img {
    width: 44px !important;
    height: 44px !important;
  }
}






  .eurodib-profile-section {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #ffffff;
    padding: 20px 40px 60px;
  }

  .eurodib-profile-inner {
    max-width: 1180px;
    margin: 0 auto;
  }

  .eurodib-profile-breadcrumbs {
    font-size: 13px;
    color: #666666;
    margin-bottom: 20px;
  }

  .eurodib-profile-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }

  /* Sidebar */

  .eurodib-profile-sidebar {
    width: 270px;
    padding-right: 10px;
  }

  .eurodib-profile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .eurodib-profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 16px;
    color: #444444;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
  }

  .eurodib-profile-menu-item--active {
    color: #0070c9;
    font-weight: 600;
  }

 

  .eurodib-profile-menu-item--active .eurodib-profile-menu-icon {
    border-color: #0070c9;
  }

 

  /* Карточка профиля */
  .eurodib-profile-menu-item > a {
    gap: 10px;
  }

  .eurodib-profile-menu-text {
    white-space: nowrap;
  }

  .eurodib-profile-menu img {
  width: 29px;
  height: 29px;
}

  .eurodib-profile-menu-icon--download img {
    width: 24px;
    height: 29px;
  }

  /* FR: « Centre de » в одну строку, « ressources » при необходимости на следующей */
  .eurodib-nowrap {
    white-space: nowrap;
  }

  .eurodib-profile-card {
    flex: 1;
    background-color: #f3f4f6;
    padding: 40px 60px 40px;
  }

  .eurodib-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 80px;
    row-gap: 22px;
    margin-bottom: 30px;
  }

  .eurodib-profile-field--full {
    grid-column: 1 / -1;
  }

  .eurodib-profile-label {
    font-size: 13px;
    color: #777777;
    margin-bottom: 2px;
  }

  .eurodib-profile-value {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
  }

  /* Edit area */

  .eurodib-profile-edit {
    margin-top: 10px;
  }

  .eurodib-profile-label--edit {
    margin-bottom: 8px;
  }

  .eurodib-profile-textarea-wrap {
    margin-bottom: 20px;
  }

  .eurodib-profile-textarea {
    width: 100%;
    min-height: 150px;
    border-radius: 24px;
    border: 2px solid #d5d5d5;
    padding: 16px 22px;
    font-size: 14px;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
    background-color: transparent;
  }

  .eurodib-profile-textarea::placeholder {
    color: #bbbbbb;
  }

  .eurodib-profile-textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
  }

  .eurodib-profile-send-btn {
    padding: 10px 34px;
    border-radius: 999px;
    border: none;
    background-color: #008cff;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 140, 255, 0.45);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
  }

  /* Profile page: "Send / Envoyer" button (match global blue pill) */
  .eurodib-profile-send-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;
    box-shadow: none;
    transform: none;
    transition: none;
  }

  /* Адаптив */

  @media (max-width: 992px) {
    .eurodib-profile-layout {
      flex-direction: column;
      gap: 20px;
    }

    .eurodib-profile-sidebar {
      width: 100%;
      border-right: none;
      border-bottom: 1px solid #e0e0e0;
      padding-bottom: 10px;
      margin-bottom: 10px;
    }

    .eurodib-profile-menu-item {
      border-bottom: none;
    }

    .eurodib-profile-card {
      padding: 30px 20px 30px;
    }

    .eurodib-profile-grid {
      column-gap: 40px;
    }
  }

  @media (max-width: 640px) {
    .eurodib-profile-section {
      padding: 20px 16px 40px;
    }

    .eurodib-profile-grid {
      grid-template-columns: 1fr;
      row-gap: 18px;
    }

    .eurodib-profile-card {
      padding: 24px 16px 26px;
    }
  }











  /* ====== PRICE LISTS SECTION ====== */

.edbprice-wrapper {
  background-color: #ffffff;
  padding: 80px 16px 90px;
}

.edbprice-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

/* Заголовок и подзаголовок */

.edbprice-title {
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  color: #2f67c7;
}

.edbprice-subtitle {
  margin: 0 auto 32px;
  max-width: 730px;
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

/* Кнопка Download (в точь-в-точь как в других секциях) */

.edbprice-actions {
  margin-bottom: 40px;
}

.edbprice-download-btn {
  padding: 11px 40px;
  border-radius: 999px;
  border: none;
  background-color: #2f67c7;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(47, 103, 199, 0.35);
  transition: background-color 0.15s ease,
              box-shadow 0.15s ease,
              transform 0.1s ease;
}

.edbprice-download-btn:hover {
  background-color: #2453a0;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(47, 103, 199, 0.45);
}

.edbprice-download-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(47, 103, 199, 0.35);
}

/* Строка с прайс-листом */

.edbprice-list {
  display: flex;
  justify-content: center;
}

.edbprice-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
}

.edbprice-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Кастомный чекбокс */

.edbprice-checkbox-custom {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #dedede;
  background: #ffffff;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
}

.edbprice-checkbox:checked + .edbprice-checkbox-custom {
  border-color: #2f67c7;
  background-color: #2f67c7;
}

.edbprice-checkbox:checked + .edbprice-checkbox-custom::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.edbprice-item-text {
  font-weight: 500;
  color: #111111;
}

/* ====== АДАПТИВ ====== */

@media (max-width: 768px) {
  .edbprice-wrapper {
    padding: 60px 16px 70px;
  }

  .edbprice-title {
    font-size: 30px;
  }

  .edbprice-subtitle {
    font-size: 14px;
    max-width: 100%;
  }

  .edbprice-item-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .edbprice-title {
    font-size: 26px;
  }

  .edbprice-subtitle {
    font-size: 13px;
  }

  .edbprice-item {
    gap: 8px;
  }
}
