/*
Theme Name: Housechem Corporate
Theme URI: https://housechem.com.ua
Author: Brandplast
Description: Чистая и быстрая тема WordPress для корпоративного сайта Housechem с акцентами по цветам логотипа.
Version: 1.0
*/

/* Typography & Base */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #1b1b1b;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: #426483;
  text-decoration: none;
}
a:hover {
  color: #0F4C81;
}

/* Header */
.site-header {
  background-color: #426483;
  color: white;
  padding: 10px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.site-branding a {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.main-nav .menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.main-nav .menu li {
  display: inline-block;
}

.main-nav .menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.main-nav .menu li a:hover {
  text-decoration: underline;
}

.lang-switcher ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-switcher img {
  width: 20px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.lang-switcher li {
  display: inline-block;
}
/* мобільна адаптація */
@media (max-width: 768px) {
  .lang-switcher {
    position: absolute;
    top: 12px;
    right: 55px; /* відсунемо від бургер-меню */
    z-index: 20;
  }
}

/* Burger Menu */
.burger {
      margin-right: 16px;
      display: flex;
      align-items: center;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background-color: #426483;
    width: 100%;
    padding: 10px 0;
  }

  .main-nav.active {
    display: flex;
  }

  .burger {
    display: block;
  }
}

/* Containers & Sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h2.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #426483;
}

.section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

/* Hero */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: white;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* напівпрозоре затемнення */
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 720px;
  padding: 60px 20px;
}

.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}


.hero-content a.button {
  background-color: #ffffff;
  color: #426483;
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-content a.button:hover {
  background-color: #0F4C81;
  color: white;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero {
    padding: 40px 20px;
  }
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 4px;
}

/* Contact */
.contact-section {
  background-color: #eee;
  padding: 60px 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.contact-form .button {
  background-color: #426483;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form .button:hover {
  background-color: #0F4C81;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* мобільна версія */
  gap: 30px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(5, 1fr); /* десктоп — 5 елементів в ряд */
  }
}


.benefit-card {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.benefit-icon {
  width: 50px;
  height: auto;
  margin-bottom: 15px;
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-branding img.logo {
  height: 65px;
  width: auto;
  display: block;
  max-width: 160px;
}

/* Sidebar mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background-color: #426483;
  color: white;
  z-index: 9999;
  padding: 30px 20px;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open {
  right: 0;
}

.close-button {
  background: none;
  color: white;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
}

/* Menu items */
.mobile-nav {
  list-style: none;
  padding: 0;
}

.mobile-nav li {
  margin: 15px 0;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Lang switcher in menu */
.lang-switcher-mobile ul {
  list-style: none !important;	
  display: flex;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin-top: 20px;
}

.lang-switcher-mobile img {
  width: 24px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  .lang-switcher {
    display: none;
  }
}
.lang-switcher-mobile li::marker {
  display: none;
  content: none;
}

.mobile-nav li::marker {
  display: none;
  content: none;
}
/* woo contact button */
.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.product-gallery {
  flex: 1 1 40%;
}

.product-summary {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-title {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
}

.contact-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1A75BC;
  color: white;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
  max-width: 200px;
  text-align: center;
}

.contact-button:hover {
  background-color: #0F4C81;
}

.product-tabs {
  padding: 40px 20px;
  max-width: 960px;
  margin: 0 auto;
}

.woocommerce-tabs ul.tabs {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.woocommerce-tabs ul.tabs li {
  background: #1A75BC;
  color: #fff;
  padding: 10px 20px;
  border-radius: 3px;
}

.woocommerce-tabs .panel {
  background: #f7f7f7;
  padding: 20px;
  margin-top: 20px;
  border-radius: 4px;
}

.product-attributes {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.product-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}


.product-attributes li {
  font-size: 15px;
  margin-bottom: 5px;
  color: #444;
}

.woocommerce-breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

.breadcrumbs {
  margin-bottom: 15px;
  font-size: 14px;
  color: #777;
}
.woocommerce-breadcrumb a {
  color: #004f88;
  text-decoration: none;
}
.woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}
.product-gallery img {
  max-width: 100%;
  height: auto;
  display: block;
}


.woocommerce-product-gallery {
  position: relative;
}

.woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.woocommerce-product-gallery__image {
  max-width: 100%;
  border: 1px solid #ccc;
}

.woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.flex-control-thumbs {
  display: flex !important;
  gap: 10px;
  margin-top: 10px;
  padding-left: 0;
}

.flex-control-thumbs li {
  list-style: none;
}

.flex-control-thumbs img {
  width: 60px;
  height: auto;
  cursor: pointer;
  border: 1px solid #ccc;
  transition: border 0.2s ease;
}

.flex-control-thumbs img:hover {
  border-color: #003366;
}


/* woo contact button */
/* Swiper products*/
.products-carousel .swiper {
  margin-top: 30px;
}
.products-carousel .product-slide {
  text-align: center;
}
.products-carousel .product-slide img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.products-carousel .product-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  max-height: 3.9em; /* максимум 3 рядки */
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.products-carousel .swiper-slide {
   max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 768px) {
  .products-carousel .swiper-slide {
    max-width: 90vw !important;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    padding: 16px;
    margin: 0 auto;
  }

  .products-carousel .swiper-slide h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    word-wrap: break-word;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    max-height: 4.2em; /* обмеження до 3 рядків */
  }

  .products-carousel .swiper-wrapper {
    padding-bottom: 20px;
  }
}


/**/
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.main-nav .menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-switcher img {
  width: 20px;
  height: auto;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
}

.header-search {
  display: none;
  position: absolute;
  top: 100%;
  right: 60px;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.header-search .search-field {
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 180px;
  font-size: 14px;
}

/* Mobile styles */
.burger {
  background: none;
  border: none;
  font-size: 28px;
  display: none;
  cursor: pointer;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #003366;
  z-index: 9999;
  padding: 20px;
  transition: right 0.3s ease;
  color: #fff;
}

.mobile-menu.open {
  right: 0;
}

.close-button {
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.mobile-nav {
  list-style: none;
  padding: 0;
}

.mobile-nav li {
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .inquiry-now-btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}
.site-header {
  display: flex;
    position: sticky;
  top: 0;
  z-index: 1000;
  align-items: center;
  height: 80px; /* або значення, яке було до змін */
  padding: 0; /* прибрати зайві відступи */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-header .main-nav ul {
  margin: 0;
  padding: 0;
}

/* Inquiry button */
.inquiry-now-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid #ffffff;
  padding: 6px 16px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  transition: all 0.3s ease;
}


.inquiry-now-btn:hover {
  background-color: #ffffff;
  color: #2f4f6b; /* темно-синій з фону хедера */
}
/* Responsive visibility */
.desktop-only { display: inline-block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; margin-top: 20px; }
}

/* Search Wrapper */
.header-search-container {
  position: fixed;
  top: 80px; /* або висота вашого хедера */
  left: 0;
  right: 0;
  background: #fff;
  padding: 10px 20px;
  z-index: 999;
  display: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.header-search-container.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.header-search-form {
  max-width: 600px;
  margin: 0 auto;
}

.search-field {
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.desktop-only {
  display: inline-block;
}
.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}

/* CLIENT CAROUSEL */
.clients-section {
  text-align: center;
  padding: 40px 0;
}
.clients-title {
  margin-bottom: 30px;
  font-size: 28px;
}
.clients-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.clients-carousel .swiper-slide img {
  max-height: 80px;
  object-fit: contain;
  width: auto;
  margin: 0 auto;
}
.site-footer {
  background-color: #2a2a2a;
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-column h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 8px;
}
.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}
.footer-column ul li a:hover {
  color: #fff;
}
.footer-logo img {
  max-width: 140px;
  margin-bottom: 10px;
}
.social-icons {
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.social-icons li a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #555;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.social-icons li a:hover {
  background-color: #426483; /* наприклад, LinkedIn синій */
  transform: scale(1.15);
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 20px;
}
.footer-container .social-icon {
  width: 24px;
  height: 24px;
  fill: white;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-container .social-icon:hover {
  opacity: 0.7;
}
.social-icons li svg {
  width: 22px;
  height: 22px;
  fill: white;
  display: block;
}
.social-icons li a svg {
  width: 22px;
  height: 22px;
  fill: white;
  display: block;
  transition: fill 0.3s ease;
}
.social-icons li a:hover svg {
  fill: #fff;
} 

/*about*/
.about-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.about-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2f4f6f;
  margin-bottom: 40px;
}

.about-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  min-height: 350px;
  max-width: 500px;
  width: 100%;
}

@media (max-width: 1024px) {
  .about-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .about-image {
    height: 250px;
  }

  .about-text {
    max-width: 100%;
  }
}

/*about*/

/*private lable*/

.private-label-section {
  background-color: #e9f1f6; /* світло-синій, нейтральний */
  color: #2f3e4e; /* темно-сірий текст */
  padding: 60px 0;
}
.private-label-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.private-label-image {
  flex: 1;
  max-width: 500px;
}

.private-label-image img {
  width: 60%;
  height: auto;
  border-radius: 12px;
}

.private-label-content {
  flex: 1;
  max-width: 600px;
}

.private-label-content .section-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1b3b5a; /* темно-синій, як у хедері */
}

.private-label-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #2f3e4e;
}

.private-label-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature svg {
  margin-bottom: 10px;
}

.feature span {
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 768px) {
  .private-label-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.private-label-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 24px;
  background-color: transparent;
  border: 2px solid #1b3b5a;
  color: #1b3b5a;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.private-label-btn:hover {
  background-color: #1b3b5a;
  color: white;
}
.private-label-features {
	gap:15px;
}

/*private lable*/
/*client section*/
.clients-section {
  text-align: center;
  padding: 40px 0;
}
.clients-title {
  margin-bottom: 30px;
  font-size: 28px;
}
.clients-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.clients-carousel .swiper-slide img {
  max-height: 80px;
  object-fit: contain;
  width: auto;
  margin: 0 auto;
}
/*client section*/
.products-button-wrapper {
  text-align: center;
  margin-top: 30px;
}

.products-button {
  display: inline-block;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #1b3b5a;
  color: #1b3b5a;
  background-color: transparent;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.products-button:hover {
  background-color: #1b3b5a;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .products-button {
    width: 90%;
    font-size: 15px;
  }
}
/*about page*/
.about-section {
  padding: 60px 0;
}
.about-section.gray-bg {
  background-color: #f9fbfd;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #2f3e4e;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #1b3b5a;
  font-size: 18px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.partner-logos img {
  max-height: 50px;
}
.about-cta {
  text-align: center;
  padding: 60px 0;
}
.about-cta .btn {
  background-color: #1b3b5a;
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.about-cta .btn:hover {
  background-color: #16314a;
}
.about-who-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-who-text {
  flex: 1;
  max-width: 600px;
}

.about-who-image {
  flex: 1;
  max-width: 500px;
  text-align: right;
}

.about-who-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .about-who-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-who-image {
    text-align: center;
  }
}

.about-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.about-product-item {
  flex: 1 1 calc(33.333% - 20px);
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  color: #1b3b5a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.about-product-item:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .about-product-item {
    flex: 1 1 100%;
  }
}
.about-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.about-benefit-item {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 240px;
  transition: box-shadow 0.3s ease;
}

.about-benefit-item:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.about-benefit-icon {
  margin-bottom: 16px;
}

.svg-icon {
  width: 48px;
  height: 48px;
  fill: #1b3b5a;
}

.about-benefit-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1b3b5a;
  margin-bottom: 10px;
}

.about-benefit-item p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .about-benefits-grid {
    grid-template-columns: 1fr;
  }
}
 
.section-title.dark-blue {
  color: #2A4365;
  font-weight: 700;
  margin-bottom: 1rem;
}

/*about page*/
/*private lable page*/
/* ===============================
   PRIVATE LABEL PAGE STYLES
=============================== */

/* General Container */
.pl-container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
  padding-block: 60px;
}

/* ========== HERO SECTION ========== */
/* ===== Hero Section ===== */
.pl-hero-section {
  padding: 100px 0;
  background: #f9fbfc;
}

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

.pl-hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  color: #2A4365;
  margin-bottom: 20px;
}

.pl-hero-text p {
  font-size: 18px;
  color: #5e6e82;
  line-height: 1.6;
}

.pl-hero-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .pl-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pl-hero-text h1 {
    font-size: 32px;
  }
}


.pl-hero-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background-color: #1b3b5a;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 1; /* <== додано для запобігання прозорості */
}

.pl-hero-btn:hover {
  background-color: #16314a;
  transform: translateY(-2px);
  color: #fff;
}


/* ===== Steps Section ===== */
.pl-steps-section {
  background: #fff;
  padding-block: 80px;
}

.pl-steps-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 40px;
}

.pl-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.pl-step-item {
  background: #f9fbfc;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.pl-step-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.pl-step-icon {
  height: 80px;
  margin-bottom: 20px;
}

.pl-step-icon img {
  max-height: 100%;
  object-fit: contain;
  display: inline-block;
}

.pl-step-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f2937;
}

.pl-step-item p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}





.pl-iconsteps-section {
  padding: 80px 0;
  background: #f8f9fb;
  text-align: center;
}

.pl-iconsteps-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #6b7280;
  font-size: 1.125rem;
}

.pl-iconsteps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 1200px) {
  .pl-iconsteps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 500px) {
  .pl-iconsteps-grid {
    grid-template-columns: 1fr;
  }
}

.pl-iconsteps-item {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pl-iconsteps-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.pl-iconsteps-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.pl-iconsteps-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pl-iconsteps-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f2937;
}

.pl-iconsteps-item p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}





/* ==== Benefits Section ALT Layout ==== */
.pl-benefits-section-alt {
  padding: 80px 0;
  background: #fff;
}

.pl-benefits-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1f2937;
}

.pl-benefits-layout {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pl-benefits-image {
  flex: 1 1 45%;
  max-width: 500px;
}

.pl-benefits-image img {
  width: 80%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.pl-benefits-content {
  flex: 1 1 45%;
}

.pl-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pl-benefit-item {
  margin-bottom: 24px;
}

.pl-benefit-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 6px;
}

.pl-benefit-item p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
}

/* ========== SERVICES SECTION ========== */
.pl-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.pl-service-item {
  background: #f8fafd;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.pl-service-icon {
  margin-bottom: 20px;
}
.pl-service-icon svg {
  width: 48px;
  height: 48px;
  fill: #2a7fd1;
}

/* ========== TIMELINE SECTION ========== */
.pl-timeline-section {
  background: #fff;
  padding: 80px 20px;
}

.pl-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 60px;
  color: #1f2937;
}

.pl-timeline-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.pl-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e5e7eb;
  transform: translateX(-50%);
  z-index: 0;
}

.pl-timeline-item {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.pl-timeline-item.left {
  justify-content: flex-end;
  margin-right: 50%;
  text-align: right;
}

.pl-timeline-item.right {
  justify-content: flex-start;
  margin-left: 50%;
  text-align: left;
}

.pl-timeline-img {
  width: 120px;
  height: 120px;
  margin-left: 24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  background: #fff;
  z-index: 1;
  flex-shrink: 0;
}

.pl-timeline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pl-timeline-content {
  background: #ffffff;
  padding: 20px 24px;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  margin: 0 20px;
}

.pl-timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pl-timeline-content p {
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.6;
}

.pl-step-time {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #9ca3af;
}

@media (max-width: 1024px) {
  .pl-timeline-item,
  .pl-timeline-item.left,
  .pl-timeline-item.right {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 0 50px;
  }

  .pl-timeline-line {
    left: 20px;
    width: 2px;
  }

  .pl-timeline-item.left,
  .pl-timeline-item.right {
    margin: 0;
  }

  .pl-timeline-content {
    margin: 20px 0 0;
  }
}


/**/


/**/

/* ========== CTA SECTION ========== */
.pl-cta-section {
  background: #e9f1f6;
  color: #1b3b5a;
  padding: 80px 20px;
  text-align: center;
}
.pl-cta-title {
  font-size: 32px;
  margin-bottom: 20px;
}
.pl-cta-text {
  font-size: 18px;
  margin-bottom: 30px;
}
.pl-cta-button {
  background: #fff;
  color: #002b45;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.pl-cta-button:hover {
  background: #ddd;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .pl-hero-inner {
    flex-direction: column;
  }
  .plp-steps-grid {
    flex-direction: column;
  }
  .plp-step-item {
    flex: 1 1 100%;
  }
}

/*private lable page*/
 /*mobile private_lable */
 /* Центрування всіх секцій на мобільному */
@media (max-width: 768px) {
  .pl-container {
    padding: 0 20px;
  }

  section {
    text-align: center;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
    section li {
    text-align: left;
  }

  h2, h3 {
    text-align: center;
  }

  /* Зменшення вертикальних відступів */
  .pl-hero-section,
  .pl-iconsteps-section,
  .pl-benefits-section-alt,
  .pl-process-timeline,
  .pl-cta-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Hero секція */
  .pl-hero-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .pl-hero-image img {
    max-width: 100%;
    height: auto;
  }
    .pl-step-time {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #666;
  }

  .pl-hero-content {
    align-items: center;
  }

  /* Icon steps — в один стовпчик */
  .pl-iconsteps-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .pl-iconsteps-item {
    max-width: 350px;
    padding: 20px;
  }

  /* Benefits */
  .pl-benefits-layout {
    flex-direction: column;
    gap: 30px;
  }

  .pl-benefits-image,
  .pl-benefits-content {
    max-width: 100%;
    text-align: center;
  }

  /* Timeline (мобільний стиль — по центру, без лінії по середині) */
  .pl-timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Менше ніж зараз */
  }
  .pl-timeline-line {
    display: none;
  }

  .pl-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
    margin-bottom: 40px;
	    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .pl-timeline-img img {
    max-width: 90px;
    margin-bottom: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
	
  }

  .pl-timeline-content {
     padding: 0 10px;
    max-width: 90%;
    margin: 0 auto;
  }

  /* CTA */
  .pl-cta-box {
    text-align: center;
    padding: 30px 20px;
  }

  .pl-cta-button {
    display: inline-block;
    margin-top: 20px;
  }
}

body {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    transform: none !important;
    opacity: 1 !important;
  }
}

 /*mobile private_lable */
 
 /*contact page*/
.contact-hero-section {
  position: relative;
  width: 100%;
  height: 350px;
  background-color: #1a1f2b;
  overflow: hidden;
}

.contact-hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
}

.contact-hero-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.contact-hero-subtitle {
  color: #f0f0f0;
  font-size: 18px;
  text-align: center;
}

.contact-main-section {
  background-color: #f7f7f7;
  padding: 60px 0;
}

.contact-main-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}

.contact-details-block {
  flex: 1 1 45%;
}

.contact-detail-desc {
  margin-bottom: 20px;
  color: #2A4365;
}

.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details-list li {
  font-size: 16px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.contact-details-list strong {
  color: #2A4365;
}

.contact-form-block {
  flex: 1 1 50%;
}

.contact-form-block input[type="text"],
.contact-form-block input[type="email"],
.contact-form-block textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background-color: #fff;
}

.contact-form-block input[type="submit"],
.contact-form-block button[type="submit"] {
  background-color: #2A4365;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form-block input[type="submit"]:hover,
.contact-form-block button[type="submit"]:hover {
  background-color: #1f3652;
}

.contact-map-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.contact-map-embed iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .contact-main-wrapper {
    flex-direction: column;
  }

  .contact-details-block,
  .contact-form-block {
    flex: 1 1 100%;
  }

  .contact-hero-title {
    font-size: 28px;
  }

  .contact-hero-subtitle {
    font-size: 16px;
  }
  
  /* Центрування зображення в hero-секції */
.contact-hero-bg {
  background-size: inherit;
  background-position: inherit;
}

/* Форма зворотного зв'язку */
.contact-form-block form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-form-block input,
.contact-form-block textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Виправлення відступів і адаптація блоку з деталями */
.contact-main-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-details-block,
.contact-form-block {
  flex: 1 1 100%;
}

/* Додатково для дрібних екранів */
@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 26px;
  }

  .contact-hero-subtitle {
    font-size: 16px;
  }

  .contact-details-block,
  .contact-form-block {
    padding: 0 10px;
  }

  .contact-form-block form {
    padding: 0;
  }
}

}


 /*contact page*/
 @media (max-width: 768px) {
  .product-images {
    flex-direction: column !important;
  }

  .product-thumbnails {
    flex-direction: row !important;
    justify-content: center;
    order: 2;
  }

  .woocommerce-product-gallery {
    order: 1;
  }
}



/* related prod */
 @media (max-width: 768px) {
.related-products-section {
	margin-bottom: 10px !important; 
	margin-left: 10px !important; 
    margin-right: 10px !important; 
}
}

.related-products-carousel {
  padding: 60px 0;
  background-color: #f7f7f7;
}

.related-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #2A4365;
}

.related-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.related-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  transition: box-shadow 0.3s ease;
  max-width: 220px;
  text-align: center;
}

.related-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.related-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.related-card-title {
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.related-products-section {
	margin-bottom: 100px;
	margin-left: 100px;
    margin-right: 100px;
}

/* related prod */

.product-thumbnails-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
  max-height: 440px;
  overflow: hidden;
  gap: 8px;
}

.scroll-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  padding-right: 4px;
  max-height: 360px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.scroll-area::-webkit-scrollbar {
  width: 4px;
}
.scroll-area::-webkit-scrollbar-track {
  background: transparent;
}
.scroll-area::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 10px;
}

.product-thumbnails img {
  width: 48px;
  height: auto;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.product-thumbnails img:hover {
  transform: scale(1.05);
}

.thumbs-arrow {
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.thumbs-arrow:hover {
  background: #e6e6e6;
}

/* catalog*/
/* === Layout === */
/* --- ФІНАЛЬНІ СТИЛІ ДЛЯ КАРТКИ ТОВАРУ --- */
.woocommerce ul.products li.product.final-product-card {
    border: 1px solid #f0f0f0 !important;
    background: #ffffff !important;
    text-align: center !important;
    border-radius: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.woocommerce ul.products li.product.final-product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
    border-color: #e0e0e0 !important;
}
.final-product-card a.card-link-wrapper {
    text-decoration: none !important;
    color: var(--shop-text-color) !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    height: 100% !important;
    padding: 20px;
}
.final-product-card .card-image-area {
    margin-bottom: 20px !important;
    aspect-ratio: 1 / 1; /* Робить всі зображення квадратними і однаковими по висоті */
    display: flex;
    align-items: center;
    justify-content: center;
}
.final-product-card .card-image-area img {
    max-width: 100% !important;
    height: auto !important;
    max-height: 100%;
}
.final-product-card .card-title-area {
    margin-top: auto !important;
    padding-top: 10px;
}
.final-product-card h2.woocommerce-loop-product__title {
    font-size: 1em !important;
    font-weight: 500 !important;
    color: #444 !important;
    line-height: 1.4em !important;
    height: 2.em !important; /* Запас для 2 рядків */
    margin: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Обмежуємо текст двома рядками */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.woocommerce nav.woocommerce-pagination {
	margin-top: 40px;
}
/* catalog*/