/* Font Imports */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

/* For Typo Slab, we'll use a fallback system since it's a custom font */
@font-face {
  font-family: "Typo Slab";
  src: local("Roboto Slab"),
    url("../fonts/TypoSlab-Regular.woff2") format("woff2"),
    url("../fonts/TypoSlab-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Typo Slab";
  src: local("Roboto Slab Bold"),
    url("../fonts/TypoSlab-Bold.woff2") format("woff2"),
    url("../fonts/TypoSlab-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Arial", sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit !important;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 15px !important;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  width: 115px;
  height: 45px;
}

.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-menu a,
.nav-link,
.dropdown-item {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif !important;
  font-size: 15px;
  text-transform: uppercase !important;
  position: relative !important;
  color: #2a2a2a !important;
  padding-bottom: 0;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #601c4e;
}

.language-selector {
  width: 33px;
  height: 33px;
}
/* Mobil menü gomb (hamburger) */
.mobile-menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23601c4e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.mobile-menu-button .bar {
  height: 4px;
  width: 100%;
  background-color: #601c4e;
  border-radius: 2px;
}
.language-dropdown {
  position: relative;
}

.language-selector {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.language-selector img {
  width: 100%;
  height: auto;
}

.language-options {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  padding: 5px 0;
  z-index: 150;
  border-radius: 6px;
  min-width: 150px;
}

.language-options li {
  padding: 8px 12px;
}

.language-options li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  text-decoration: none;
}

.language-options li a:hover {
  background-color: #f0f0f0;
}

/* Megjelenítés hoverre */
.language-options.show {
  display: block;
}
/* Mobil menü */
@media (max-width: 768px) {
  .mobile-menu-button {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-menu.active {
    display: flex;
    min-width: 250px;
  }

  .header-container {
    position: relative;
  }
}
/* Slider Styles */
.slider {
  width: 100%;
  height: 370px;
  position: relative;
  background-color: #a9dce9;
  overflow: hidden;
}

.slider-container {
  display: flex;
  height: 100%;
  position: relative;
}

.slider-content {
  width: 50%;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider-title {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #601c4e;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.slider-subtitle {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #601c4e;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.slider-text {
  font-family: "Poppins", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #2a2a2a;
  margin-bottom: 30px;
  max-width: 466px;
}

.slider-text strong {
  font-weight: 700;
}

.slider-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cta-button {
  display: inline-block;
  background-color: #fff;
  color: #601c4e;
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-circle {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: #601c4e;
  border-radius: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 768px) {
  .slider {
    height: auto;
  }

  .slider-container {
    flex-direction: column;
  }

  .slider-content,
  .slider-image {
    width: 100%;
  }

  .slider-image {
    order: -1;
  }

  .slider-title {
    font-size: 28px;
  }

  .slider-subtitle {
    font-size: 18px;
  }
}

/* Product Menu Styles */
.product-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
}

.product-menu a {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  position: relative;
}

.product-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #601c4e;
}

/* Product Section Styles */
.products-section {
  padding: 50px 0;
}

.products-container-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding: 0 60px;
}

.products-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #601c4e;
  color: white;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  position: absolute;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-arrow:hover {
  background-color: #7a2864;
  transform: scale(1.05);
}

.prev-arrow {
  left: 10px;
}

.next-arrow {
  right: 10px;
}

.product-card {
  background-color: #f2f2f2;
  border-radius: 30px;
  width: 320px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: transform 0.5s ease;
  overflow: visible;
}

.product-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  max-height: 300px;
  margin-top: -30px;
  margin-bottom: -20px;
  position: relative;
  z-index: 2;
}

.product-title {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 0;
  letter-spacing: 1px;
  line-height: 1.2;
}

.premium-title {
  color: #0089ad;
}

.penne-title {
  color: #d6cc0a;
}

.granola-title {
  color: #601c4e;
}

.product-info {
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  margin: 0 15px 15px;
}

.info-icon {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-icon i {
  font-size: 22px;
  margin-top: 3px;
}

.premium-icon {
  color: #0089ad;
}

.penne-icon {
  color: #d6cc0a;
}

.granola-icon {
  color: #601c4e;
}

.product-description {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
}

.product-packaging {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}

.product-packaging i {
  font-size: 22px;
}

.details-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 204px;
  height: 59px;
  border-radius: 30px;
  margin: 20px auto 30px;
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-align: center;
}

.details-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.premium-button {
  background-color: #0089ad;
}

.penne-button {
  background-color: #d6cc0a;
}

.granola-button {
  background-color: #601c4e;
}

/* Contact Form Styles */
.contact-section {
  background-color: #f3f0eb;
  padding: 80px 0;
}

.contact-title {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  color: #0089ad;
  text-align: center;
  margin-bottom: 20px;
}

.contact-description {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
}

.contact-icon {
  color: #0089ad;
  font-size: 24px;
}

.contact-text {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}

.form-container {
  background-color: #f8f8f8;
  border-radius: 30px;
  padding: 40px;
  max-width: 1013px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 30px;
  background-color: #f5f5f5;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
}

.form-select {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 30px;
  background-color: #f5f5f5;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%232a2a2a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.form-textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 30px;
  background-color: #f5f5f5;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
}

.checkbox-input {
  width: 30px;
  height: 30px;
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  appearance: none;
  cursor: pointer;
}

.checkbox-input:checked {
  background-color: #0089ad;
  border-color: #0089ad;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

.checkbox-label {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 20px;
}

.captcha {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.submit-button {
  display: block;
  width: 194px;
  height: 59px;
  border-radius: 30px;
  background-color: #0089ad;
  color: #fff;
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin: 0 auto;
}

/* Footer Styles */
footer {
  background-color: #1c1c1c;
  padding: 60px 0;
  color: #ffffff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-title {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 25px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d6cc0a;
  font-family: "Poppins", "Arial", sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-size: 16px;
  text-align: right;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #1c1c1c !important;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .products-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 40px;
  }

  .footer-right {
    align-items: center;
  }

  .footer-tagline {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .slider-title {
    font-size: 36px;
  }

  .contact-title {
    font-size: 36px;
  }

  .form-container {
    padding: 20px;
  }

  .footer-title {
    font-size: 18px;
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }
}

/* Section Styles */
section {
  width: 100%;
  padding: 50px 0;
}

/* Merchants Section Styles */
.merchants-section {
  background-color: #f5f5f5;
  padding: 50px 0 0 0;
  position: relative;
}

.merchants-content {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  grid-template-areas: "icon image text";
  align-items: top;
  position: relative;
}

.merchants-icon {
  grid-area: icon;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  margin-left: 20px;
}

.merchants-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.merchants-image {
  grid-area: image;
  position: relative;
  width: 80%;
  overflow: hidden;
  border-radius: 0;
}

.merchants-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merchants-image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background-color: #0089ad;
  border-radius: 0 100% 0 0;
  z-index: 1;
}

.merchants-text {
  grid-area: text;
  padding: 40px;
  background-color: #f5f5f5;
}

.merchants-title {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #0089ad;
  text-align: right;
}

.merchants-title span {
  font-size: 24px;
}
.merchants-subtitle {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #601c4e;
  text-align: right;
}

.merchants-list {
  list-style: none;
  margin-bottom: 30px;
  text-align: right;
}

.merchants-list li {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.merchants-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #0089ad;
  background-color: #fff;
  transition: all 0.3s ease;
  float: right;
  text-decoration: none;
}

.merchants-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Manufacturers Section Styles */
.manufacturers-section {
  background-color: #fff;
  padding: 50px 0;
  position: relative;
}

.manufacturers-section .container {
  position: relative;
}

.manufacturers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "text image";
  gap: 30px;
  align-items: center;
}

.manufacturers-icon-container {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10;
}

.manufacturers-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #601c4e;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.manufacturers-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.manufacturers-text {
  grid-area: text;
  padding: 0 30px;
}

.manufacturers-title {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #601c4e;
  text-transform: uppercase;
}
.manufacturers-title span {
  font-size: 24px;
}

.manufacturers-subtitle {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  color: #0089ad;
}

.manufacturers-list {
  list-style: none;
  margin-bottom: 30px;
}

.manufacturers-list li {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.manufacturers-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  background-color: #601c4e;
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.manufacturers-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.manufacturers-image {
  grid-area: image;
  width: 80%;
  overflow: hidden;
  border-radius: 20px;
}

.manufacturers-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Private Label Section Styles - keeping the existing styles */
.offer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.offer-icon-container {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.packaging-icon {
  background-color: #601c4e;
}

.offer-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.offer-text-container {
  flex: 1;
  max-width: 600px;
  padding: 0 30px;
}

.offer-text-container.right-aligned {
  text-align: right;
}

.offer-title {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.blue-title {
  color: #0089ad;
}

.purple-title {
  color: #601c4e;
}

.offer-subtitle {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blue-subtitle {
  color: #0089ad;
}

.offer-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}

.offer-list.right-aligned {
  padding-left: 0;
  padding-right: 20px;
  text-align: right;
}

.offer-list li {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.offer-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s ease;
}

.blue-button {
  background-color: #0089ad;
}

.purple-button {
  background-color: #601c4e;
}

.offer-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.offer-image-container {
  width: 400px;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.offer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Partners Section Styles */
.partners-section {
  padding: 0 0 30px 0;
}

/* Merchants Partners Section Styles */
.merchants-partners-section {
  background-color: #f5f5f5;
}

/* Manufacturers Partners Section Styles */
.manufacturers-partners-section {
  background-color: #fff;
}

.partner-logo-img {
  max-width: 120px;
  max-height: 70px;
  object-fit: contain;
  display: block;
  margin: auto;
}

.partner-arrow {
  width: 50px;
  height: 50px;

  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);

  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-arrow.left-arrow {
  left: 0;
}
.partner-arrow.right-arrow {
  right: 0;
}

.arrow-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  background-color: #d6cc0a;
}

.arrow-icon:hover {
  transform: scale(1.1);
}

.left-arrow .arrow-icon::before,
.right-arrow .arrow-icon::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  display: block;
}

.left-arrow .arrow-icon::before {
  transform: rotate(-135deg);
  margin-left: 5px;
}

.right-arrow .arrow-icon::before {
  transform: rotate(45deg);
  margin-right: 5px;
}

/* Private Label Section Styles */
.private-label-section {
  background-color: #f9f9f9;
  padding: 50px 0 0 0;
  position: relative;
}

.private-label-content {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  grid-template-areas: "icon image text";
  align-items: top;
  position: relative;
}

.private-label-icon {
  grid-area: icon;
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  margin-left: 20px;
}

.private-label-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.private-label-image {
  grid-area: image;
  position: relative;
  width: 80%;
  overflow: hidden;
  border-radius: 0;
}

.private-label-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.private-label-text {
  grid-area: text;
  padding: 40px;
  background-color: #f9f9f9;
}

.private-label-title {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #601c4e;
  text-align: right;
  text-transform: uppercase;
}
.private-label-title span {
  font-size: 24px;
}

.private-label-subtitle {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #0089ad;
  text-align: right;
}

.private-label-list {
  list-style: none;
  margin-bottom: 30px;
  text-align: right;
}

.private-label-list li {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.private-label-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  background-color: #601c4e;
  transition: all 0.3s ease;
  float: right;
  text-decoration: none;
}

.private-label-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Private Label Partners Section Styles */
.private-label-partners-section {
  background-color: #f9f9f9;
}

/* Logistics Section Styles */
.logistics-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.logistics-title {
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  font-size: 42px;
  text-transform: uppercase;
  color: #d6cc0a;
  text-align: center;
  margin-bottom: 40px;
}

.logistics-tables-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
}

.logistics-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  margin-bottom: 30px;
}

.second-table {
  margin-top: 30px;
}

.logistics-table th,
.logistics-table td {
  padding: 15px 10px;
  text-align: center;
  font-family: "Typo Slab", "Roboto Slab", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  border: none;
}

.logistics-table .header-row th {
  background-color: #d6cc0a;
  color: #000;
  padding: 15px 10px;
}

/* Only round the outer corners of the tables */
.logistics-table .header-row th.first-col {
  border-top-left-radius: 20px;
}

.logistics-table .header-row th.last-col {
  border-top-right-radius: 20px;
}

.logistics-table tr:last-child td.first-col {
  border-bottom-left-radius: 20px;
}

.logistics-table tr:last-child td.last-col {
  border-bottom-right-radius: 20px;
}

.logistics-table .data-row td {
  background-color: #f2f2f2;
  padding: 15px 10px;
  font-size: 14px;
}

.logistics-table .data-row.highlight-row td {
  background-color: #f3f0c0;
}

/* Product name column styling */
.logistics-table .product-name {
  text-align: left;
  padding-left: 20px;
}

.logistics-note {
  max-width: 1000px;
  margin: 20px auto 0;
  font-size: 14px;
  font-style: italic;
  text-align: left;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .logistics-table {
    font-size: 12px;
  }

  .logistics-table th,
  .logistics-table td {
    padding: 10px 5px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .logistics-title {
    font-size: 28px;
  }

  .logistics-table {
    font-size: 10px;
  }

  .logistics-table th,
  .logistics-table td {
    padding: 8px 3px;
    font-size: 10px;
  }
}

/* Additional Responsive Styles */
@media (max-width: 1200px) {
  .merchants-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "image"
      "text";
    gap: 20px;
  }

  .merchants-icon {
    margin: 0 auto;
  }

  .merchants-text {
    text-align: center;
    padding: 20px;
  }

  .merchants-title,
  .merchants-subtitle,
  .merchants-list {
    text-align: center;
  }

  .merchants-button {
    float: none;
    margin: 0 auto;
    display: block;
  }

  .manufacturers-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "image";
    gap: 30px;
  }

  .manufacturers-icon-container {
    position: static;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .manufacturers-text {
    text-align: center;
    padding: 0 20px;
  }

  .manufacturers-title,
  .manufacturers-subtitle {
    text-align: center;
  }

  .manufacturers-list {
    max-width: 600px;
    margin: 0 auto 30px;
  }

  .manufacturers-button {
    display: block;
    margin: 0 auto;
  }

  .manufacturers-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .private-label-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "image"
      "text";
    gap: 20px;
  }

  .private-label-icon {
    margin: 0 auto;
  }

  .private-label-text {
    text-align: center;
    padding: 20px;
  }

  .private-label-title,
  .private-label-subtitle,
  .private-label-list {
    text-align: center;
  }

  .private-label-button {
    float: none;
    margin: 0 auto;
    display: block;
  }

  .private-label-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .offer-content {
    flex-direction: column;
    gap: 40px;
  }

  .offer-text-container {
    max-width: 100%;
    order: 2;
  }

  .offer-icon-container {
    order: 1;
  }

  .offer-image-container {
    order: 3;
    width: 100%;
    max-width: 500px;
  }

  .offer-text-container.right-aligned {
    text-align: left;
  }

  .offer-list.right-aligned {
    padding-left: 20px;
    padding-right: 0;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .merchants-content {
    grid-template-columns: 1fr;
  }

  .merchants-image {
    height: 250px;
  }

  .merchants-title {
    font-size: 24px;
  }

  .merchants-subtitle {
    font-size: 16px;
  }

  .merchants-list li {
    font-size: 14px;
  }

  .merchants-button {
    font-size: 14px;
    padding: 10px 20px;
  }

  .manufacturers-icon-container {
    top: 20px;
    right: 20px;
  }

  .manufacturers-title {
    font-size: 24px;
  }

  .manufacturers-subtitle {
    font-size: 16px;
  }

  .manufacturers-list li {
    font-size: 14px;
  }

  .manufacturers-button {
    font-size: 14px;
    padding: 10px 20px;
  }

  .manufacturers-image {
    height: 250px;
  }

  .partners-logos {
    gap: 30px;
  }

  .partner-logo-img {
    max-width: 80px;
    display: block;
    margin: auto;
  }

  .offer-title {
    font-size: 28px;
  }
  .offer-subtitle {
    font-size: 18px;
  }

  .private-label-content {
    grid-template-columns: 1fr;
  }

  .private-label-image {
    height: 250px;
  }

  .private-label-title {
    font-size: 24px;
  }

  .private-label-subtitle {
    font-size: 16px;
  }

  .private-label-list li {
    font-size: 14px;
  }

  .private-label-button {
    font-size: 14px;
    padding: 10px 20px;
  }

  .offer-image-container {
    height: 250px;
  }

  .logistics-title {
    font-size: 28px;
  }
  .contact-item {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .merchants-icon {
    width: 80px;
    height: 80px;
  }

  .merchants-icon img {
    width: 45px;
    height: 45px;
  }

  .merchants-image {
    height: 200px;
  }

  .merchants-text {
    padding: 15px;
  }

  .merchants-title {
    font-size: 20px;
  }

  .merchants-list li {
    font-size: 12px;
    line-height: 1.4;
  }

  .merchants-button {
    font-size: 14px;
    padding: 8px 20px;
  }

  .manufacturers-icon-container {
    top: 15px;
    right: 15px;
  }

  .manufacturers-icon {
    width: 80px;
    height: 80px;
  }

  .manufacturers-icon img {
    width: 45px;
    height: 45px;
  }

  .manufacturers-image {
    height: 200px;
  }

  .manufacturers-text {
    padding: 15px;
  }

  .manufacturers-title {
    font-size: 20px;
  }

  .manufacturers-list li {
    font-size: 12px;
    line-height: 1.4;
  }

  .manufacturers-button {
    font-size: 14px;
    padding: 8px 20px;
  }

  .partners-logos {
    gap: 20px;
  }

  .partner-logo-img {
    max-width: 60px;
    display: block;
    margin: auto;
  }

  .offer-icon {
    width: 80px;
    height: 80px;
  }

  .offer-icon img {
    width: 45px;
    height: 45px;
  }

  .offer-button {
    font-size: 16px;
    padding: 12px 25px;
  }

  .private-label-icon {
    width: 80px;
    height: 80px;
  }

  .private-label-icon img {
    width: 45px;
    height: 45px;
  }

  .private-label-image {
    height: 200px;
  }

  .private-label-text {
    padding: 15px;
  }

  .private-label-title {
    font-size: 20px;
  }

  .private-label-list li {
    font-size: 12px;
    line-height: 1.4;
  }

  .private-label-button {
    font-size: 14px;
    padding: 8px 20px;
  }
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: unset;
}
.nav-link {
  color: inherit !important;
}
