body{
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.about-hero{
  height: 436px;
  background: url("/image/Our\ story\ banner.png") center/cover no-repeat;
}


/* 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;
}









.our-story{
  padding: 10px 20px;
  text-align: center;
  background: #fff;
  color: #111;
}

.story-subtitle{
  font-size: 28px;
  font-weight: 700;
  color: #827F7F;
  margin: 0 0 20px;
  position: relative;
  display: inline-block;
}

.story-subtitle::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  background:#999;
  margin:8px auto 0;
  border-radius:2px;
}

.story-title{
  font-size: 48px;
  font-weight: 700;
  color: #2466b5; /* синий, можно заменить на фирменный */
  margin: 0;
  line-height: 1.2;
}

.story-text{
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 1100px;
  margin: 0 auto;
}
.history{
  background: #f8f8f8;
  padding: 80px 0;
}

.history .container{
  padding-left: 120px;
  padding-right: 120px;
}

.history__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.history__image img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.history__content h2{
  font-size: 32px;
  font-weight: 700;
  color: #1a56a0; /* фирменный синий */
  margin: 0 0 24px;
  line-height: 1.3;
}

.history__content p{
  font-size: 20px;
  line-height: 1.6;
  color: #111;
  margin: 0;
  max-width: 600px;
}

/* адаптив */
@media (max-width: 992px){
  .history .container{
    padding-left: 40px;
    padding-right: 40px;
  }
  .history__grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .history__content h2{
    text-align: center;
  }
  .history__content p{
    text-align: center;
    margin: 0 auto;
  }
}
.innovation{
  background: #fff;
  padding: 80px 0;
}

.innovation .container{
  padding-left: 120px;
  padding-right: 120px;
}

.innovation__item{
  margin-bottom: 48px;
}

.innovation__item h3{
  font-size: 24px;
  font-weight: 700;
  color: #1a56a0; /* фирменный синий */
  margin: 0 0 16px;
}

.innovation__item p{
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  margin: 0;
  max-width: 1100px;
}

/* About Us: spacing for "Our story" title/section */
.our-story{
  margin-top: 15px;
  margin-bottom: 15px;
}

/* адаптив */
@media (max-width: 992px){
  .innovation .container{
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 768px){
  .innovation .container{
    padding-left: 20px;
    padding-right: 20px;
  }
}


.stats{
  background: #1392E6; /* фирменный синий */
  color: #fff;
  padding: 80px 0;
}

.stats .container{
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 120px;
}

.stat-item{
  text-align: center;
  position: relative;
  border-right: 1px solid black;
  padding-right: 30px;
}

.stat-item:last-child{
  border-right: 0;
  padding-right: 0;
}



.stat-item h2{
  font-size: 80px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1;
}

.stat-item p{
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* адаптив */
@media (max-width: 992px){
  .stats .container{
    grid-template-columns: 2fr 2fr;
    padding: 0 40px;
  }
  .stat-item:not(:last-child)::after{
    display: none;
  }
}

@media (max-width: 600px){
  .stats .container{
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
}



.presence{
  background: #fff;
  padding: 80px 0;
  padding-bottom: 0px;
}

.presence .container{
  padding-left: 120px;
  padding-right: 120px;
}

.presence__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr; /* текст шире чем фото */
  align-items: center;
  gap: 60px;
  margin-bottom: 30px;
}

.presence__content h3{
  font-size: 24px;
  font-weight: 700;
  color: #1a56a0;
  margin: 0 0 16px;
}

.presence__content p{
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  margin: 0 0 32px;
}

.presence__image img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* адаптив */
@media (max-width: 992px){
  .presence .container{
    padding-left: 40px;
    padding-right: 40px;
  }
  .presence__grid{
    grid-template-columns: 1fr;
  }
  .presence__image{
    order: -1;
  }
  .presence__content h3,
  .presence__content p{
    text-align: center;
  }
}
@media (max-width: 768px){
  .presence .container{
    padding-left: 20px;
    padding-right: 20px;
  }
}






































/* 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;
    }
  }
  
/* Timeline Section - vertical timeline with scroll background */
@import url('https://fonts.googleapis.com/css?family=Cardo|Pathway+Gothic+One');

.timeline {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.timeline__content-title {
  font-weight: normal;
  font-size: 66px;
  margin: -10px 0 0 0;
  transition: .4s;
  padding: 0 10px;
  box-sizing: border-box;
  font-family: 'Pathway Gothic One', sans-serif;
  color: #1a56a0;
}

.timeline__content-desc {
  margin: 0;
  font-size: 15px;
  box-sizing: border-box;
  color: #000;
  font-family: Cardo, serif;
  font-weight: normal;
  line-height: 25px;
}

.timeline::before {
  position: absolute;
  left: 50%;
  width: 4px;
  height: 100%;
  margin-left: -2px;
  content: "";
  background: #1a56a0;
}

@media only screen and (max-width: 767px) {
  .timeline::before {
    left: 40px;
  }
}

.timeline-item {
  padding: 40px 0;
  opacity: 1;
  filter: none;
  transition: .5s;
  box-sizing: border-box;
  width: calc(50% - 40px);
  display: flex;
  position: relative;
  transform: translateY(0);
}

.timeline-item::before {
  content: attr(data-text);
  letter-spacing: 1px;
  position: absolute;
  color: #fff;
  font-size: 16px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  top: 50%;
  margin-top: -1.75em;
  width: 4em;
  height: 4em;
  padding: 14px;
  opacity: 1;
  white-space: nowrap;
  /* Центр года на линии: зазор до линии 40px (как в width: calc(50% - 40px)) */
  transform: translate(-50%, -50%);
  left: calc(100% + 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  background: #1a56a0;
  border-radius: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
}

.timeline-item:nth-child(even)::before {
  left: auto;
  right: calc(100% + 40px);
  transform: translate(50%, -50%);
}

.timeline-item--active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.timeline-item--active::before {
  top: 50%;
  transition: .3s all .2s;
  opacity: 1;
}

.timeline__img {
  max-width: 100%;
  box-shadow: none;
  border: none;
  height: 50px;
  width: 215px;
  object-fit: contain;
}

.timeline-item--active .timeline__content-title {
  margin: -50px 0 20px 0;
}

@media only screen and (max-width: 767px) {
  .timeline-item {
    align-self: baseline !important;
    width: 100%;
    padding: 0 30px 150px 80px;
  }

  .timeline-item::before {
    left: 40px !important;
    padding: 0 !important;
    top: 50px;
    text-align: center !important;
    width: 60px;
    border: none !important;
  }

  .timeline-item:last-child {
    padding-bottom: 40px;
  }
}


.timeline-container {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  transition: .3s ease 0s;
  background: #fff !important;
  background-image: none !important;
}

.timeline-container__scroll {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0 12px;
  box-sizing: border-box;
}

.timeline-container::before {
  display: none;
}
