:root{
  --brand-blue:#1392E6;          /* фирменный синий блок слева */
  --text-on-blue:#ffffff;
  --title-size: clamp(28px, 4.2vw, 52px);
  --subtitle-size: clamp(16px, 2vw, 28px);
  --radius: 16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#0c2024;
  background:#fff;
}


  /* Header and footer: use main.css (selectors disabled so main.css applies) */
  /* Prevent cart in header from stretching on blog/category pages */
  .main-header .header-actions .cart-img {
    flex: 0 0 auto;
    flex-shrink: 0;
    min-width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .main-header .header-actions .cart-img img {
    width: 35px;
    height: 32px;
    display: block;
  }
  body.never-match-header-footer .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;
  }
  
  body.never-match-header-footer .lang-selector:hover {
    border-color: #128efb;
  }
  
  body.never-match-header-footer .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');

body.never-match-header-footer .nav-bar {
  background: #286AB8;
  font-family: 'Montserrat', sans-serif;
}

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

body.never-match-header-footer .nav-menu li {
  list-style: none;
  margin: 0 15px;
  position: relative;
}

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

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

body.never-match-header-footer .has-dropdown:hover .dropdown-cooking-wrapper {
  display: flex;
}

body.never-match-header-footer .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;
}

/* Меню */
body.never-match-header-footer .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;
}

body.never-match-header-footer .dropdown-cooking-content {
  display: flex;
  height: 100%;
  width: 100%;
}

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

}

body.never-match-header-footer .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;
}

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

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

body.never-match-header-footer .has-dropdown:hover .dropdown-brands-wrapper {
  display: flex;
}

/* Triangle */
body.never-match-header-footer .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 */
body.never-match-header-footer .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;
}

body.never-match-header-footer .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;
}

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

body.never-match-header-footer .dropdown-brands ul li:hover {
  color: #286AB8;
}

  





body.never-match-header-footer .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;
}

body.never-match-header-footer .search-section {
  width: 234px;
  margin-right: 30px;
}


body.never-match-header-footer .search-dropdown.active {
    display: flex;
}

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

body.never-match-header-footer .search-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

body.never-match-header-footer .product-item img {
    width: 60px;
    height: auto;
    border-radius: 10px;
}

body.never-match-header-footer .product-info {
    display: flex;
    flex-direction: column;
}

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

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







.hero-slider{
  position:relative;
  width:100%;
  min-height:520px;              /* можно увеличить под макет */
  overflow:hidden;
}

.slides{
  display:grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform .6s ease;
}

.slide{
  display:grid;
  grid-template-columns: 1fr 1.1fr;  /* слева текст, справа фото */
  min-height: clamp(520px, 62vw, 720px);
}

.slide__left{
  background: var(--brand-blue);
  color: var(--text-on-blue);
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: clamp(24px, 6.5vw, 72px);
}

.eyebrow{
  font-weight:700;
  font-size: clamp(16px, 1.8vw, 24px);
  margin: 0 0 8px 0;
  position:relative;
  color: #fff;
}
.eyebrow::after{
  content:"";
  display:block;
  width:96px;
  height:1px;
  background: #ffffff;
  opacity:.85;
  border-radius:1px;
  margin:8px 0 0 0;
}

.title{
  font-size: var(--title-size);
  line-height:1.1;
  margin: 18px 0 14px;
  font-weight:700;
}

.subtitle{
  font-size: var(--subtitle-size);
  line-height:1.25;
  margin: 0 0 28px;
  opacity:.95;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height:60px;
  padding: 0 28px;
  background:#fff;
  color:#0d56a0;
  font-weight:700;
  border-radius: 999px;
  text-decoration:none;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  transition: transform .15s ease, box-shadow .15s ease;
  width: fit-content;
}
.btn:hover{ transform: translateY(-1px); box-shadow:0 10px 22px rgba(0,0,0,.16) }

/* Hero slide Read More — white outline, hover black */
.hero-slider .slide__left .btn {
  padding: 10px 20px;
  border: 2px solid white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s;
  color: white;
  cursor: pointer;
  background: transparent;
  box-shadow: none;
  height: auto;
}
.hero-slider .slide__left .btn:hover {
  background-color: black;
  color: white;
  transform: none;
  box-shadow: none;
}

.slide__right{
  position:relative;
  overflow:hidden;
}
.slide__right img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* Dots */
.dots{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  display:flex;
  gap:12px;
  z-index:5;
}
.dots button{
  width:12px;
  height:12px;
  border-radius:50%;
  border:0;
  background:#fff;
  opacity:.6;
  cursor:pointer;
}
.dots button[aria-selected="true"]{
  background:#0b1e33;
  opacity:1;
}

/* Responsive */
@media (max-width: 980px){
  .slide{
    grid-template-columns: 1fr;    /* стэк */
    min-height: 660px;
  }
  .slide__right{ order:-1; height: 42vh; min-height:260px; }
  .slide__right img{ position:static; width:100%; height:100%; object-fit:cover; }
  .slide__left{ padding: 28px; }
}


/* ===== Latest News Section ===== */
.latest-news{
  padding: 64px 0;
  background-color: #ffffff;
  color: #0e1e2a;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* контейнер с боковыми отступами 120px */
.latest-news .container{
  width: 100%;
  margin: 0 auto;
  padding-left: 120px;
  padding-right: 120px;
  box-sizing: border-box;
}

/* заголовок + кнопка */
.latest-news__header{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  position: relative;
}

.latest-news__header h2{
  margin: 0;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  color: #3871c9; /* фирменный синий заголовка */
  text-align: center;
}

/* “See all” в левом краю, как в макете */
.see-all{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e1e5ea;
  color: #0e1e2a;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: box-shadow .2s ease, transform .15s ease;
}
.see-all:hover{ box-shadow: 0 6px 18px rgba(0,0,0,.08); transform: translateY(calc(-50% - 1px)); }
.see-all .icon{ font-size: 16px; line-height: 1; transition: transform .25s ease; }
.see-all[aria-expanded="true"] .icon{ transform: rotate(180deg); }

/* панель фильтра по категориям (открывается по «Voir tout») */
.latest-news__categories {
  display: none;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: #efefef;
  border-radius: 16px;
  border: 1px solid #efefef;
  justify-content: center;
}
.latest-news__categories.is-open{
  display: flex;
}
.latest-news__categories .latest-news__category-link {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: white;
  color: #0e1e2a;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.latest-news__categories .latest-news__category-link:hover {
  border-color: #3871c9;
  color: #3871c9;
  background-color: transparent;
}

.latest-news__categories .latest-news__category-link.is-active {
  background: #3871c9;
  border-color: #3871c9;
  color: var(--text-on-blue);
}

/* сетка карточек */
.latest-news__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* карточка */
/* карточка */
.news-card{
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  overflow: hidden;           
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .15s ease;
  max-height: 450px;       /* ограничение высоты */
}

.news-card:hover{
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  transform: translateY(-2px);
}

/* изображение */
.news-card img{
  width: 100%;
  height: 55%;             /* займёт верхнюю часть карточки */
  object-fit: cover;
  display: block;
}

/* тело карточки */
.news-card__body{
  flex: 1;
  padding: 16px 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* текст и кнопка равномерно */
}


/* категория + подчёркивание */
.category{
  display: inline-block;
  margin: 0 auto;
  color: #1a56a0;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .2px;
  position: relative;
  line-height: 1.1;
}
.category::after{
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: #1a56a0;
  border-radius: 1px;
  margin: 8px auto 0;
}


/* заголовок и подзаголовок */
.news-card__body .title{
  margin: 6px 0 2px;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.15;
  color: #0e1e2a;
}
.news-card__body .excerpt{
  margin: 0 0 16px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: #2b2b2b;
}

/* кнопка */
.news-card__body .btn{
  align-self: center;
  display: inline-block;
  height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  background: #1392E6;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  line-height: 60px;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.news-card__body .btn:hover{
  background: #0d56a0;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(19,146,230,.45);
}

/* ===== Адаптив ===== */
@media (max-width: 1200px){
  .latest-news .container{
    padding-left: 80px;
    padding-right: 80px;
  }
  .latest-news__grid{
    gap: 28px;
  }
  .news-card img{ height: 220px; }
}

@media (max-width: 992px){
  .latest-news__grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .see-all{
    position: static;
    transform: none;
    margin-bottom: -8px;
    order: -1;
  }
  .latest-news__header{
    justify-content: space-between;
  }
}

@media (max-width: 768px){
  .latest-news .container{
    padding-left: 20px;
    padding-right: 20px;
  }
  .latest-news__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .news-card img{ height: 210px; }
  .news-card__body{ padding: 24px 20px 28px; }
}


/* Pagination */
.pagination{
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.pagination ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 18px; /* расстояние между цифрами */
}

.pagination a{
  font-size: 18px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition: color .2s;
}

.pagination a:hover{
  color: #1392E6;
}

.pagination a.active{
  font-weight: 700;
  color: #000;
}



/* 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: only on blog page */
  body.never-match-header-footer .footer {
    background: #001037;
    color: white;
    padding: 40px 0 20px;
    font-size: 14px;
  }
  
  body.never-match-header-footer .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-right: 120px;
    margin-left: 120px;
  }
  
  body.never-match-header-footer .footer-logo {
    flex: 1;
    min-width: 250px;
  }
  
  body.never-match-header-footer .footer-logo img {
    max-height: 50px;
    margin-bottom: 15px;
  }
  
  body.never-match-header-footer .footer-logo p {
    margin-bottom: 15px;
    width: 325px;
  }
  
  body.never-match-header-footer .social-icons {
    display: flex;
    gap: 10px;
  }
  
  body.never-match-header-footer .social-icons img {
    width: 30px;
    height: 30px;
  }
  
  body.never-match-header-footer .footer-links {
    display: flex;
    flex: 2;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: auto;
  }
  
  body.never-match-header-footer .footer-column {
    min-width: 180px;
    margin-bottom: 20px;
  }
  
  body.never-match-header-footer .footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  body.never-match-header-footer .footer-column ul {
    list-style: none;
  }
  
  body.never-match-header-footer .footer-column ul li {
    margin-bottom: 8px;
  }
  
  body.never-match-header-footer .footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
  }
  
  body.never-match-header-footer .footer-column ul li a:hover {
    text-decoration: underline;
  }
  
  body.never-match-header-footer .footer-btn {
    width: 100%;
    background: #0066cc;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
  }
  
  body.never-match-header-footer .footer-btn.outline {
    background: transparent;
    border: 2px solid white;
    color: white;
  }
  
  body.never-match-header-footer .quick-links {
    list-style: none;
    margin-top: 10px;
  }
  
  body.never-match-header-footer .quick-links li {
    margin-bottom: 5px;
  }
  
  body.never-match-header-footer .footer-bottom {
    border-top: 1px solid #6a6a6a;
    padding-top: 15px;
    text-align: center;
    font-size: 12px;
  }
  
  body.never-match-header-footer .policy-links {
    margin-top: 10px;
  }
  
  body.never-match-header-footer .policy-links a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
  }
  
  body.never-match-header-footer .policy-links a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    body.never-match-header-footer .signup-container {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
    
    body.never-match-header-footer .footer-top {
      flex-direction: column;
      gap: 20px;
    }
    
    body.never-match-header-footer .footer-links {
      flex-direction: column;
      gap: 20px;
    }
  }
  


  