@charset "UTF-8";
.breadcrumbs {
  display: flex;
  flex-direction: row;
  max-width: 1920px;
  margin: 0 auto;
  padding: 1em 6vw 0em 6vw;
}

.breadcrumbs .aioseo-breadcrumbs .aioseo-breadcrumb a {
  color: #333333;
  text-decoration: none;
}

.breadcrumbs .aioseo-breadcrumbs .aioseo-breadcrumb:last-of-type {
  font-weight: 600 !important;
}

/* Sidebar */
.top-info-bar {
  background: linear-gradient(to right, #0099cc, #00bfff);
  text-align: center;
  padding: 10px 0;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

.top-info-bar .info-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.top-info-bar .info-items p {
  color: #ffffff;
  margin: 0;
}

.top-info-bar .info-item {
  display: flex;
  align-items: center;
}

.top-info-bar .info-item::before {
  content: "•";
  margin-right: 10px;
}

.top-info-bar .info-item:first-child::before {
  display: none;
}

/* Main menu*/
.site-header {
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
}

.site-header.sticky-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.site-header-inner {
  max-width: 1920px;
  padding: 1em 6vw 1em 6vw;
  width: 100%;
  margin: 0 auto;
}

.site-branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-branding-logo {
  max-width: 180px;
}

.site-branding-logo img {
  max-width: 100%;
  height: auto;
}

.header-search {
  flex-grow: 1;
  max-width: 600px;
  margin: 0 20px;
  position: relative;
}

.header-search form {
  display: flex;
  position: relative;
}

.dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
  left: auto;
  top: 7px;
  right: 23px;
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  padding: 1em 1.3em;
  line-height: 24px;
  font-size: 1em;
  border: 1px solid #dfdfdf !important;
  border-radius: 4px !important;
  height: auto;
  font-family: "Manrope", sans-serif;
  box-shadow: none !important;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus {
  outline: none;
  border: 1px solid #dfdfdf !important;
}

.header-contact {
  display: flex;
  gap: 2em;
}

.header-contact .contact-item {
  display: flex;
  flex-direction: row;
  gap: 1em;
}

.header-contact .contact-item .contact-item-inner {
  display: flex;
  flex-direction: column;
}

.header-contact .contact-item .contact-item-inner a {
  color: #333333;
  text-decoration: none;
}

.header-contact .contact-item .contact-item-inner span {
  color: #00bfff;
  text-decoration: none;
}

.main-navigation {
  background-color: #ffffff;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
  gap: 2em;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.main-navigation a:hover {
  color: #00bfff;
}

.main-navigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.nav-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  padding: 1em 6vw 1.5em 6vw;
  width: 100%;
  margin: 0 auto;
}

.site-branding-icons {
  display: flex;
  align-items: center;
  gap: 1.8em;
}

.site-branding-icons a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-branding-icons img {
  width: 20px;
  height: 20px;
}

.cart-icon {
  width: 46px !important;
  height: 46px !important;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: black;
  color: #ffffff;
  border-radius: 50%;
  font-size: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 4px 0;
  background-color: #333333;
  transition: transform 0.3s;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
}

.mobile-menu-panel {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 96%;
  background-color: #fff;
  z-index: 9999;
  overflow-y: auto;
  flex-direction: column;
  transition: right 0.3s ease, margin-top 0.3s ease, height 0.3s ease;
  margin-top: 2.5em;
}
.mobile-menu-panel.active {
  right: 0;
}
.mobile-menu-panel.header-sticky {
  margin-top: 0;
  height: 100%;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #f1f1f1;
}

.mobile-logo {
  max-width: 180px;
}

.mobile-logo img {
  max-width: 100%;
  height: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  padding: 0px;
  cursor: pointer;
  color: #333333;
}

.mobile-search {
  padding: 15px;
}

.mobile-search .dgwt-wcas-search-wrapp {
  max-width: 100% !important;
}

.mobile-navigation {
  flex-grow: 1;
}

.mobile-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-navigation li {
  position: relative;
}

.mobile-navigation a {
  display: block;
  padding: 10px 25px;
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
}

.mobile-navigation a[href*=personalizacja] {
  color: #00bfff;
}

.mobile-navigation .sub-menu {
  display: none;
  background-color: #f9f9f9;
}

.mobile-navigation .sub-menu a {
  padding-left: 30px;
}

.mobile-navigation .menu-item-has-children > a:after {
  content: "›";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.3s;
}

.mobile-navigation .menu-item-has-children.active > a:after {
  transform: translateY(-50%) rotate(90deg);
}

.mobile-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 20px;
  gap: 1em;
}

.mobile-icon-item {
  position: relative;
  color: #333333;
}

.mobile-icons img {
  width: 20px;
  height: 20px;
}

.mobile-icons a .cart-icon {
  width: 50px;
  height: 50px;
}

.cart-icon-btn {
  position: relative;
  background-color: #00bfff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon-btn svg {
  color: white;
}

.mobile-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #000;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.mobile-contact {
  padding: 20px;
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.mobile-contact-item {
  margin-bottom: 15px;
}

.mobile-contact-item .contact-label {
  display: block;
  color: #00bfff;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
}

.mobile-contact-item a {
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
}

@media (max-width: 1200px) {
  .header-contact {
    display: none;
  }
  .header-search {
    max-width: 300px;
    margin: 0px;
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .main-navigation .nav-container {
    display: none;
  }
  .site-branding-icons {
    display: none;
  }
  .header-search {
    display: none;
  }
  .site-branding {
    justify-content: space-between;
  }
  .site-branding-logo {
    margin: 0;
  }
  .main-navigation.sticky {
    position: static;
    box-shadow: none;
  }
  .site-header:not(.sticky-mobile) + .mobile-menu-panel {
    margin-top: 2.5em;
    height: 96%;
  }
  .site-header.sticky-mobile + .mobile-menu-panel {
    margin-top: 0;
    height: 100%;
  }
  .top-info-bar .info-items {
    white-space: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .top-info-bar .info-items::-webkit-scrollbar {
    display: none;
  }
  .top-info-bar .info-items p {
    font-size: 14px;
    padding: 0 5px;
  }
}
@media (max-width: 576px) {
  .mobile-menu-header {
    padding: 10px 20px;
  }
  .mobile-logo {
    max-width: 150px;
  }
  .site-header-inner {
    padding: 0.7em 4vw;
  }
  .site-branding-logo {
    max-width: 150px;
  }
}
.mega-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease, visibility 0.3s ease;
}
.mega-menu-container.active {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.5);
}

.mega-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
}

.mega-menu-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 10002;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.active .mega-menu-inner {
  transform: translateX(0);
}

.mega-menu-categories {
  width: 300px;
  height: 100%;
  background-color: #ffffff;
  border-right: 1px solid #f1f1f1;
  overflow-y: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mega-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #f1f1f1;
}
.mega-menu-header h3 {
  margin: 0;
  color: #333333;
  font-size: 18px;
  font-weight: 600;
}

.mega-menu-close {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-menu-close:hover {
  color: #00bfff;
}

.mega-menu-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu-category-item {
  border-bottom: 1px solid #f1f1f1;
  transition: background-color 0.3s ease;
}
.mega-menu-category-item:hover, .mega-menu-category-item.active {
  background-color: #f5f5f5;
}
.mega-menu-category-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.mega-menu-category-item a:hover {
  color: #00bfff;
}
.mega-menu-category-item .arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.mega-menu-category-item.active .arrow {
  transform: translateX(5px);
}

.mega-menu-subcategories {
  flex-grow: 1;
  height: 100%;
  background-color: #ffffff;
  overflow-y: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mega-menu-subcategories:has(.mega-menu-subcategory-panel.active) {
  opacity: 1;
}

.mega-menu-subcategory-panel {
  display: none;
  padding: 20px;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.mega-menu-subcategory-panel.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mega-menu-subcategory-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f1f1;
}
.mega-menu-subcategory-header h4 {
  margin: 0;
  color: #333333;
  font-size: 20px;
  font-weight: 600;
}
.mega-menu-subcategory-header .view-all {
  color: #00bfff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.mega-menu-subcategory-header .view-all:hover {
  text-decoration: underline;
}

.mega-menu-subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.mega-menu-subcategory-item {
  transition: transform 0.3s ease;
  padding: 10px;
  border-radius: 4px;
  background-color: #f9f9f9;
}
.mega-menu-subcategory-item:hover {
  transform: translateY(-5px);
  background-color: #f0f0f0;
}
.mega-menu-subcategory-item a {
  display: block;
  text-decoration: none;
  color: #333333;
  padding: 10px;
}
.mega-menu-subcategory-item h5 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 500;
}
.mega-menu-subcategory-item .count {
  color: #777;
  font-size: 14px;
}

.no-subcategories {
  color: #777;
  font-style: italic;
}

.mega-menu-subcategories {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mega-menu-subcategories:has(.mega-menu-subcategory-panel.active) {
  opacity: 1;
}

@media (max-width: 768px) {
  .mega-menu-inner {
    flex-direction: column;
    background-color: white;
  }
  .mega-menu-categories {
    width: 100%;
    height: auto;
    max-height: 100%;
    border-right: none;
    border-bottom: 1px solid #f1f1f1;
  }
  .mega-menu-subcategories {
    height: 70vh;
  }
  .mega-menu-subcategory-grid {
    grid-template-columns: 1fr;
  }
  .mega-menu-subcategories {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mega-menu-subcategory-panel {
    padding-bottom: 4em;
  }
  .mega-menu-subcategories:has(.mega-menu-subcategory-panel.active) {
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .mega-menu-subcategory-grid {
    grid-template-columns: 1fr;
  }
}
#primary-menu > li:first-child > a {
  display: flex;
  align-items: center;
}
#primary-menu > li:first-child > a .menu-icon {
  margin-left: 8px;
  font-size: 18px;
}
#primary-menu > li:first-child > a:hover {
  cursor: pointer;
}

.mega-menu-open {
  overflow: hidden;
}

.site-footer {
  display: flex;
  flex-direction: column;
  background: linear-gradient(to right, #0099cc, #00bfff);
  width: 100%;
  margin-top: 5em;
}
.site-footer .footer-logo img {
  height: 50px;
}
.site-footer a,
.site-footer p {
  color: #ffffff;
}
.site-footer a:hover {
  color: #ffffff;
}
.site-footer .site-footer-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 5em 6vw 5em 6vw;
  margin: 0 auto;
  max-width: 1920px;
  gap: 2em;
}
.site-footer .site-footer-inner .site-info {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
}
.site-footer .site-footer-inner .site-info .info-inner {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.site-footer .site-footer-inner .site-info .info-inner:nth-child(1) {
  width: 40%;
  padding-right: 5em;
}
.site-footer .site-footer-inner .site-info .info-inner:nth-child(2) {
  width: 20%;
  padding-right: 1em;
}
.site-footer .site-footer-inner .site-info .info-inner:nth-child(3) {
  width: 20%;
  padding-right: 1em;
}
.site-footer .site-footer-inner .site-info .info-inner:nth-child(4) {
  width: 20%;
  padding-right: 1em;
}
.site-footer .site-footer-inner .site-info .info-inner .info-inner-block {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.site-footer .site-footer-inner .site-info .info-inner .info-inner-block .p-big {
  font-weight: 600;
  margin-bottom: 1em;
}
.site-footer .site-footer-inner .site-info .info-inner .social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
}
.site-footer .site-footer-inner .site-info .info-inner .social-icons a {
  line-height: 1;
  height: 36px;
  width: 36px;
}
.site-footer .site-footer-inner .site-info .info-inner .social-icons a img {
  height: 80%;
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .site-footer .site-footer-inner .site-info .info-inner {
    width: 100% !important;
    gap: 2.5em;
    padding-right: 0em !important;
  }
}
@media (max-width: 1024px) {
  .site-footer .site-footer-inner .site-info {
    justify-content: flex-start;
    gap: 2.5em;
  }
}
.site-footer .site-footer-inner hr {
  width: 100%;
  height: 1px;
  background: #ffffff;
  border: none;
  margin-top: 2em;
}
.site-footer .site-footer-inner .footer-policy {
  display: flex;
  flex-direction: row;
  gap: 1em;
  width: 100%;
  justify-content: space-between;
}
.site-footer .site-footer-inner .footer-policy .footer-links {
  color: #acacac;
}
.site-footer .site-footer-inner .footer-policy .footer-copyright span {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .site-footer .site-footer-inner .footer-policy {
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (max-width: 1024px) {
  .site-footer .site-footer-inner {
    margin-top: 3em;
    padding: 2em 6vw 5em 6vw;
  }
}

.home-hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}
.home-hero-section .hero-swiper {
  width: 100%;
  height: 80vh;
  position: relative;
}
.home-hero-section .hero-swiper .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.home-hero-section .hero-swiper .slide-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2em;
  margin: 0 auto;
  padding: 0em 6vw 0em 6vw;
  max-width: 1920px;
  width: 100%;
}
.home-hero-section .hero-swiper .slide-content h1,
.home-hero-section .hero-swiper .slide-content p {
  color: #ffffff;
}
.home-hero-section .hero-swiper .swiper-pagination {
  position: absolute !important;
  right: 30px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  left: auto !important;
  width: auto !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
  z-index: 10 !important;
  background-color: rgba(215, 220, 223, 0.3) !important;
  padding: 15px 8px !important;
  border-radius: 8px !important;
}
.home-hero-section .hero-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  background-color: white !important;
  opacity: 0.7 !important;
  margin: 5px 0 !important;
  border-radius: 50% !important;
  display: block !important;
  transition: all 0.3s ease !important;
  border: 2px solid transparent !important;
}
.home-hero-section .hero-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: white !important;
  opacity: 1 !important;
  border: 2px solid #42a5f5 !important;
}
@media (max-width: 1024px) {
  .home-hero-section .hero-swiper .swiper-pagination {
    top: auto !important;
    bottom: 10px !important;
    padding: 8px 15px !important;
    flex-direction: row !important;
  }
}
@media (max-width: 1024px) {
  .home-hero-section .hero-swiper .swiper-slide {
    justify-content: flex-start;
    padding-top: 2em;
    background-position-x: 80%;
  }
  .home-hero-section .hero-swiper .swiper-pagination {
    right: 15px !important;
  }
}

.category-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 5em 6vw 0em 6vw;
}
.category-section .top-category-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5em;
}
.category-section .top-category-section .title {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1.3em;
}
.category-section .top-category-section .description {
  width: 30%;
}
.category-section .down-category-section {
  width: 100%;
  margin-top: 4em;
}
.category-section .down-category-section .category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-section .down-category-section .category-grid .category-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.category-section .down-category-section .category-grid .category-card:hover {
  transform: translateY(-10px);
}
.category-section .down-category-section .category-grid .category-card a {
  color: #333333;
}
.category-section .down-category-section .category-grid .category-card a:visited {
  color: #333333;
}
.category-section .down-category-section .category-grid .category-card .category-image {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.category-section .down-category-section .category-grid .category-card .category-image img {
  max-width: 100%;
  max-height: 360px;
  -o-object-fit: contain;
     object-fit: contain;
}
.category-section .down-category-section .category-grid .category-card .category-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.category-section .down-category-section .category-grid .category-card .category-info .arrow-circle {
  width: 36px;
  height: 36px;
  background: linear-gradient(to right, #0099cc, #00bfff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

@media (max-width: 1400px) {
  .category-section .top-category-section .title {
    width: 60%;
  }
  .category-section .top-category-section .description {
    width: 40%;
  }
}
/* Responsive adjustments */
@media (max-width: 1024px) {
  .category-section .top-category-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1em;
  }
  .category-section .top-category-section .title {
    width: 100%;
  }
  .category-section .top-category-section .description {
    width: 100%;
  }
  .category-section .down-category-section .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .category-section .down-category-section .category-grid {
    grid-template-columns: 1fr;
  }
}
.bestseller-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  margin-top: 5em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bestseller-section .bestseller-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 5em 0vw 5em 0vw;
}
.bestseller-section .bestseller-section-inner .top-bestseller-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5em;
  width: 100%;
  padding: 0em 6vw 0em 6vw;
}
.bestseller-section .bestseller-section-inner .top-bestseller-section .title {
  display: flex;
  flex-direction: column;
  gap: 1.3em;
}
.bestseller-section .bestseller-section-inner .down-bestseller-section {
  width: 100%;
  margin-top: 3em;
  position: relative;
  padding: 0em 6vw 0em 6vw;
}
.bestseller-section .bestseller-section-inner .down-bestseller-section .swiper-button-next,
.bestseller-section .bestseller-section-inner .down-bestseller-section .swiper-button-prev {
  width: 46px;
  height: 46px;
  background: #29b7f6;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
}
.bestseller-section .bestseller-section-inner .down-bestseller-section .swiper-button-next:after,
.bestseller-section .bestseller-section-inner .down-bestseller-section .swiper-button-prev:after {
  display: none;
}
.bestseller-section .bestseller-section-inner .down-bestseller-section .swiper-button-next:hover,
.bestseller-section .bestseller-section-inner .down-bestseller-section .swiper-button-prev:hover {
  background-color: #0a9fe6;
}
.bestseller-section .bestseller-section-inner .down-bestseller-section .swiper-button-next {
  background-image: url("../images/arrow-right-2.svg");
  right: 60px;
  transform: translateY(-50%);
}
.bestseller-section .bestseller-section-inner .down-bestseller-section .swiper-button-prev {
  background-image: url("../images/arrow-right-2.svg");
  left: 60px;
  transform: translateY(-50%) rotate(180deg);
}
.bestseller-section .bestseller-section-inner .down-bestseller-section .bestseller-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.bestseller-section .bestseller-section-inner .down-bestseller-section .bestseller-swiper .swiper-wrapper {
  display: flex;
  transition-property: transform;
}
.bestseller-section .bestseller-section-inner .down-bestseller-section .bestseller-swiper .swiper-slide {
  flex-shrink: 0;
  height: auto;
  position: relative;
  padding: 10px;
}

@media (max-width: 1024px) {
  .bestseller-section .bestseller-section-inner .top-bestseller-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2em;
  }
  .bestseller-section .bestseller-section-inner .top-bestseller-section .title {
    width: 100%;
  }
  .bestseller-section .bestseller-section-inner .top-bestseller-section .description {
    width: 100%;
  }
  .bestseller-section .bestseller-section-inner .down-bestseller-section .swiper-button-next,
  .bestseller-section .bestseller-section-inner .down-bestseller-section .swiper-button-prev {
    width: 46px;
    height: 46px;
    background: #29b7f6;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    position: absolute;
    top: auto;
    bottom: -80px;
    z-index: 10;
    cursor: pointer;
  }
  .bestseller-section .bestseller-section-inner .down-bestseller-section .swiper-button-next {
    background-image: url("../images/arrow-right-2.svg");
    right: auto;
    left: 120px;
    transform: translateY(-50%);
  }
  .bestseller-section .bestseller-section-inner .down-bestseller-section .swiper-button-prev {
    background-image: url("../images/arrow-right-2.svg");
    left: 60px;
    transform: translateY(-50%) rotate(180deg);
  }
}
.news-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 5em 6vw 0em 6vw;
}
.news-section .top-news-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60%;
  gap: 1em;
}
.news-section .top-news-section .title {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (max-width: 1024px) {
  .news-section .top-news-section .title {
    width: 100% !important;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    width: 100%;
  }
}
.news-section .top-news-section .tag,
.news-section .top-news-section h2,
.news-section .top-news-section p {
  text-align: center;
}
@media (max-width: 1024px) {
  .news-section .top-news-section .tag,
  .news-section .top-news-section h2,
  .news-section .top-news-section p {
    text-align: left;
  }
}
.news-section .down-news-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 3em;
  gap: 2em;
}
.news-section .down-news-section .news-item {
  flex: 0 0 calc(50% - 1em);
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
}
.news-section .down-news-section .news-item .news-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}
.news-section .down-news-section .news-item .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.news-section .down-news-section .news-item .news-image .news-info {
  display: flex;
  flex-direction: column;
  gap: 1em;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.6509803922);
  padding: 2em;
}
.news-section .down-news-section .news-item .news-image .news-info h3 {
  font-weight: 600;
  color: #333333;
}
.news-section .down-news-section .news-item .news-image .news-info .news-info-description {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5em;
}
@media (max-width: 1024px) {
  .news-section .down-news-section .news-item .news-image .news-info .news-info-description {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1em;
  }
}
@media (max-width: 1024px) {
  .news-section .down-news-section .news-item {
    flex: 0 0 100%;
  }
}
@media (max-width: 768px) {
  .news-section .top-news-section {
    width: 100% !important;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    width: 100%;
  }
}

.service-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  margin-top: 5em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service-section .service-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 5em 0vw 5em 0vw;
}
.service-section .service-section-inner .top-service-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5em;
  width: 100%;
  padding: 0em 6vw 0em 6vw;
}
.service-section .service-section-inner .top-service-section .title {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.3em;
}
.service-section .service-section-inner .top-service-section .description {
  width: 50%;
}
.service-section .service-section-inner .down-service-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 4em 6vw 0em 6vw;
  gap: 2em;
}
.service-section .service-section-inner .down-service-section .service-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2em;
  background: #ffffff;
  border-radius: 4px;
  gap: 1.5em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}
.service-section .service-section-inner .down-service-section .service-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #0099cc, #00bfff);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-section .service-section-inner .down-service-section .service-card h3,
.service-section .service-section-inner .down-service-section .service-card p {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}
.service-section .service-section-inner .down-service-section .service-card:hover:after {
  opacity: 1;
}
.service-section .service-section-inner .down-service-section .service-card:hover h3,
.service-section .service-section-inner .down-service-section .service-card:hover p {
  color: white;
}
.service-section .service-section-inner .down-service-section .service-card:hover .icon {
  background: white;
}
.service-section .service-section-inner .down-service-section .service-card:hover .icon .icon-default {
  opacity: 0;
  visibility: hidden;
}
.service-section .service-section-inner .down-service-section .service-card:hover .icon .icon-hover {
  opacity: 1;
  visibility: visible;
}
.service-section .service-section-inner .down-service-section .service-card .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: linear-gradient(to right, #0099cc, #00bfff);
  border-radius: 50%;
  transition: background 0.3s ease;
  position: relative;
  z-index: 2;
}
.service-section .service-section-inner .down-service-section .service-card .icon img {
  width: 40%;
  height: 40%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.service-section .service-section-inner .down-service-section .service-card .icon .icon-default {
  opacity: 1;
  visibility: visible;
}
.service-section .service-section-inner .down-service-section .service-card .icon .icon-hover {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 1280px) {
  .service-section .service-section-inner .top-service-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2em;
  }
  .service-section .service-section-inner .top-service-section .title {
    width: 100%;
  }
  .service-section .service-section-inner .top-service-section .description {
    width: 100%;
  }
  .service-section .service-section-inner .down-service-section {
    flex-wrap: wrap;
  }
  .service-section .service-section-inner .down-service-section .service-card {
    flex: 0 0 calc(50% - 1em);
    margin-bottom: 2em;
  }
}
@media (max-width: 767px) {
  .service-section .service-section-inner .down-service-section {
    gap: 1em;
  }
  .service-section .service-section-inner .down-service-section .service-card {
    flex: 0 0 100%;
    gap: 1em;
  }
}
.personalization-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 5em 6vw 0em 6vw;
  gap: 5em;
}
.personalization-section .top-personalization-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5em;
}
.personalization-section .top-personalization-section .title {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.3em;
}
.personalization-section .top-personalization-section .description {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2em;
}
.personalization-section .top-personalization-section .description p {
  text-align: right;
}
.personalization-section .down-personalization-section {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}
.personalization-section .down-personalization-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .personalization-section .top-personalization-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1em;
  }
  .personalization-section .top-personalization-section .title {
    width: 100%;
  }
  .personalization-section .top-personalization-section .description {
    width: 100%;
    align-items: flex-start;
  }
  .personalization-section .top-personalization-section .description p {
    text-align: left;
  }
  .personalization-section .down-personalization-section {
    min-height: 400px;
    height: 400px;
  }
  .personalization-section .down-personalization-section img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about-us-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  margin-top: 5em;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 70vh;
  padding: 10em 0vw 10em 0vw;
}
.about-us-section .about-us-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  padding: 0em 6vw 0em 6vw;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  width: 60%;
  gap: 2em;
}
.about-us-section .about-us-section-inner h2,
.about-us-section .about-us-section-inner p {
  color: #ffffff;
}
@media (max-width: 1024px) {
  .about-us-section .about-us-section-inner {
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    width: 100%;
  }
}

.newsletter-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 5em 6vw 0em 6vw;
  gap: 10em;
}
.newsletter-section .left-newsletter-section {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 1.5em;
}
@media (max-width: 1024px) {
  .newsletter-section .left-newsletter-section {
    width: 100%;
  }
}
.newsletter-section .right-newsletter-section {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.newsletter-section .right-newsletter-section .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.newsletter-section .right-newsletter-section .newsletter-form .form-control {
  width: 100%;
  padding: 15px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 15px;
}
.newsletter-section .right-newsletter-section .newsletter-form .privacy-info {
  width: 90%;
}
.newsletter-section .right-newsletter-section .newsletter-form .privacy-info a {
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
}
@media (max-width: 1024px) {
  .newsletter-section .right-newsletter-section {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .newsletter-section {
    flex-direction: column;
    gap: 2em;
  }
}

.o-nas-hero-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 6vw 0em 6vw;
  gap: 3em;
}
.o-nas-hero-section h1,
.o-nas-hero-section p {
  width: 70%;
}
@media (max-width: 1024px) {
  .o-nas-hero-section h1,
  .o-nas-hero-section p {
    width: 100%;
  }
}

.description-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 7em 6vw 0em 6vw;
  gap: 5em;
}
.description-section .inner-description-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5em;
}
.description-section .inner-description-section .left-description-section {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.description-section .inner-description-section .left-description-section img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .description-section .inner-description-section .left-description-section {
    width: 100%;
    order: 1;
  }
}
.description-section .inner-description-section .right-description-section {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 2em;
  justify-content: center;
  align-self: center;
}
@media (max-width: 1024px) {
  .description-section .inner-description-section .right-description-section {
    width: 100%;
    order: 2;
  }
}
@media (max-width: 1024px) {
  .description-section .inner-description-section {
    flex-direction: column;
  }
}

.contact-form-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 7em 6vw 0em 6vw;
  gap: 5em;
}
.contact-form-section .left-contact-form-section {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 4em;
}
.contact-form-section .left-contact-form-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}
.contact-form-section .left-contact-form-section .contact-info div {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.contact-form-section .left-contact-form-section .contact-info div h4 {
  font-size: 1.4em;
  font-weight: 600;
}
.contact-form-section .left-contact-form-section .contact-info div ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1em;
}
@media (max-width: 1024px) {
  .contact-form-section .left-contact-form-section {
    width: 100%;
  }
}
.contact-form-section .right-contact-form-section {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.contact-form-section .right-contact-form-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.contact-form-section .right-contact-form-section .contact-form .form-control {
  width: 100%;
  padding: 15px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 15px;
}
.contact-form-section .right-contact-form-section .contact-form .privacy-info {
  width: 90%;
}
.contact-form-section .right-contact-form-section .contact-form .privacy-info a {
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
}
.contact-form-section .right-contact-form-section .contact-form .wpcf7-list-item {
  margin: 0 !important;
}
.contact-form-section .right-contact-form-section .contact-form input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid black;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 1em;
}
.contact-form-section .right-contact-form-section .contact-form input[type=checkbox]:checked {
  background-color: #00bfff;
  border-color: #00bfff;
}
.contact-form-section .right-contact-form-section .contact-form input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (max-width: 1024px) {
  .contact-form-section .right-contact-form-section {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .contact-form-section {
    flex-direction: column;
  }
}

.contact-map-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 7em 6vw 0em 6vw;
  gap: 5em;
}

.regulamin-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 6vw 0em 6vw;
}
.regulamin-section h4 {
  font-size: 1.4em;
  font-weight: 600;
}

.faq-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 6vw 3em 6vw;
}
.faq-section h1 {
  margin-bottom: 1.5em;
}
.faq-section .inner-faq-section {
  width: 100%;
}
.faq-section .inner-faq-section .faq-item {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 0.5em;
  margin-top: 1.5em;
}
.faq-section .inner-faq-section .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2em 0;
  cursor: pointer;
}
.faq-section .inner-faq-section .faq-item .faq-question h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  flex: 1;
  padding-right: 15px;
}
.faq-section .inner-faq-section .faq-item .faq-question .faq-arrow {
  width: 15px;
  height: 15px;
  min-width: 15px;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}
.faq-section .inner-faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0;
}
.faq-section .inner-faq-section .faq-item.active .faq-arrow {
  transform: rotate(180deg);
}
.faq-section .inner-faq-section .faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5em;
}

@media (max-width: 768px) {
  .faq-section .inner-faq-section .faq-item .faq-question h2 {
    font-size: 1.2rem;
  }
  .faq-section .inner-faq-section .faq-item .faq-question .faq-arrow {
    width: 12px;
    height: 12px;
    min-width: 12px;
  }
}
.faq-contact-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 6vw 3em 6vw;
  gap: 2em;
}
.faq-contact-section p {
  width: 70%;
}
@media (max-width: 1024px) {
  .faq-contact-section p {
    width: 100%;
  }
}

.filter-categories-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 6vw 3em 6vw;
  gap: 2em;
}

.category-filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 30px;
}

.category-filter-btn {
  padding: 10px 25px;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333333;
}
.category-filter-btn.active {
  background: linear-gradient(to right, #0099cc 0%, #00bfff 50%, #0099cc 100%);
  color: white;
  border-color: transparent;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.post-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}
.post-card:hover {
  transform: translateY(-5px);
}
.post-card .post-image {
  height: 200px;
  overflow: hidden;
}
.post-card .post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.post-card .post-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  padding: 2em;
}
.post-card .post-content .post-date {
  color: #666666;
}
.post-card .post-content .post-title {
  color: #333333;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .post-card .post-content .post-title {
    font-size: 1.5rem;
  }
}
.post-card .post-content .post-title span {
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .post-card .post-content .post-title span {
    font-size: 1.5rem;
  }
}
.post-card .post-content .post-excerpt {
  color: #555555;
  flex-grow: 1;
  margin-bottom: 1em;
}

@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-filter-btn {
    font-size: 13px;
    padding: 7px 12px;
  }
}
@media (max-width: 724px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .filter-categories-section {
    padding: 2em 4vw;
  }
}
.single-blog-hero-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 6vw 3em 6vw;
  gap: 1em;
}
.single-blog-hero-section .inner-single-blog-hero-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5em;
  margin-top: 3em;
  width: 100%;
}
.single-blog-hero-section .inner-single-blog-hero-section .inner-left-single-blog-hero-section {
  width: 50%;
}
@media (max-width: 1024px) {
  .single-blog-hero-section .inner-single-blog-hero-section .inner-left-single-blog-hero-section {
    width: 100%;
  }
}
.single-blog-hero-section .inner-single-blog-hero-section .inner-right-single-blog-hero-section {
  width: 50%;
}
.single-blog-hero-section .inner-single-blog-hero-section .inner-right-single-blog-hero-section img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .single-blog-hero-section .inner-single-blog-hero-section .inner-right-single-blog-hero-section {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .single-blog-hero-section .inner-single-blog-hero-section {
    flex-direction: column;
  }
}

.recommended-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.recommended-section .recommended-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 5em 0vw 5em 0vw;
}
.recommended-section .recommended-section-inner .top-recommended-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5em;
  width: 100%;
  padding: 0em 6vw 0em 6vw;
}
.recommended-section .recommended-section-inner .top-recommended-section .title {
  display: flex;
  flex-direction: column;
  gap: 1.3em;
}
.recommended-section .recommended-section-inner .down-recommended-section {
  width: 100%;
  margin-top: 3em;
  position: relative;
  padding: 0em 6vw 0em 6vw;
}
.recommended-section .recommended-section-inner .down-recommended-section .swiper-button-next,
.recommended-section .recommended-section-inner .down-recommended-section .swiper-button-prev {
  width: 46px;
  height: 46px;
  background: #29b7f6;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
}
.recommended-section .recommended-section-inner .down-recommended-section .swiper-button-next:after,
.recommended-section .recommended-section-inner .down-recommended-section .swiper-button-prev:after {
  display: none;
}
.recommended-section .recommended-section-inner .down-recommended-section .swiper-button-next:hover,
.recommended-section .recommended-section-inner .down-recommended-section .swiper-button-prev:hover {
  background-color: #0a9fe6;
}
.recommended-section .recommended-section-inner .down-recommended-section .swiper-button-next {
  background-image: url("../images/arrow-right-2.svg");
  right: 60px;
  transform: translateY(-50%);
}
.recommended-section .recommended-section-inner .down-recommended-section .swiper-button-prev {
  background-image: url("../images/arrow-right-2.svg");
  left: 60px;
  transform: translateY(-50%) rotate(180deg);
}
.recommended-section .recommended-section-inner .down-recommended-section .recommended-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.recommended-section .recommended-section-inner .down-recommended-section .recommended-swiper .swiper-wrapper {
  display: flex;
  transition-property: transform;
}
.recommended-section .recommended-section-inner .down-recommended-section .recommended-swiper .swiper-slide {
  flex-shrink: 0;
  height: auto;
  position: relative;
  padding: 10px;
}
.recommended-section .recommended-section-inner .down-recommended-section .recommended-swiper .post-card {
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.recommended-section .recommended-section-inner .down-recommended-section .recommended-swiper .post-card a.post-link {
  display: block;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.recommended-section .recommended-section-inner .down-recommended-section .recommended-swiper .post-card .post-image {
  width: 100%;
  height: 220px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
}
.recommended-section .recommended-section-inner .down-recommended-section .recommended-swiper .post-card .post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.recommended-section .recommended-section-inner .down-recommended-section .recommended-swiper .post-card .post-image img:hover {
  transform: scale(1.05);
}
.recommended-section .recommended-section-inner .down-recommended-section .recommended-swiper .post-card .post-card-des {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 2em;
}
.recommended-section .recommended-section-inner .down-recommended-section .recommended-swiper .post-card .post-card-des .post-date {
  color: #333333;
  opacity: 0.7;
  font-size: 0.9em;
  margin-top: 0.5em;
}
.recommended-section .recommended-section-inner .down-recommended-section .recommended-swiper .post-card .post-card-des .post-title {
  color: #333333;
  font-weight: 600;
  font-size: 1.3em;
  line-height: 1.3;
}
.recommended-section .recommended-section-inner .down-recommended-section .recommended-swiper .post-card .post-card-des .post-description {
  color: #333333;
  line-height: 1.5;
}
.recommended-section .recommended-section-inner .down-recommended-section .recommended-swiper .post-card .post-card-des .post-button-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  padding-top: 1em;
}

@media (max-width: 1024px) {
  .recommended-section .recommended-section-inner .top-recommended-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2em;
  }
  .recommended-section .recommended-section-inner .top-recommended-section .title {
    width: 100%;
  }
  .recommended-section .recommended-section-inner .top-recommended-section .description {
    width: 100%;
  }
  .recommended-section .recommended-section-inner .down-recommended-section .swiper-button-next,
  .recommended-section .recommended-section-inner .down-recommended-section .swiper-button-prev {
    width: 46px;
    height: 46px;
    background: #29b7f6;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    position: absolute;
    top: auto;
    bottom: -80px;
    z-index: 10;
    cursor: pointer;
  }
  .recommended-section .recommended-section-inner .down-recommended-section .swiper-button-next {
    background-image: url("../images/arrow-right-2.svg");
    right: auto;
    left: 90px;
    transform: translateY(-50%);
  }
  .recommended-section .recommended-section-inner .down-recommended-section .swiper-button-prev {
    background-image: url("../images/arrow-right-2.svg");
    left: 30px;
    transform: translateY(-50%) rotate(180deg);
  }
}
.product-card {
  border-radius: 4px;
  padding: 2em;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.product-card a.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.product-card .product-image {
  width: 100%;
  height: 320px;
  margin: 0 auto;
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card .product-title {
  color: #333333;
  font-weight: 600;
}
.product-card .product-description {
  color: #333333;
}
.product-card .product-price {
  font-weight: 600;
}
.product-card .product-price span {
  font-weight: 600;
}
.product-card .product-price ins {
  text-decoration: none;
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
  background-color: transparent !important;
}
.product-card .product-price del {
  margin-right: 8px;
  opacity: 0.6;
  color: black;
}
.product-card .cart-button-wrapper {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  margin-top: 1em;
}
.product-card .cart-button-wrapper .product-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-card .out-of-stock {
  color: #333333;
  font-weight: 600;
}

.add-to-cart-button {
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.add-to-cart-button .button-text {
  display: inline-block;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

.add-to-cart-button .product-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  animation: spin 0.8s linear infinite;
  z-index: 2;
  margin: 0;
  padding: 0;
}

.add-to-cart-button.loading .button-text {
  opacity: 0;
}

.add-to-cart-button.loading .product-spinner {
  opacity: 1;
  visibility: visible;
}

.added_to_cart {
  display: none;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.personalizacja-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 6vw 0em 6vw;
  gap: 3em;
}
.personalizacja-section .top-personalizacja {
  display: flex;
  flex-direction: column;
  width: 70%;
  gap: 2em;
}
@media screen and (max-width: 1024px) {
  .personalizacja-section .top-personalizacja {
    width: 100%;
  }
}
.personalizacja-section .bottom-personalizacja {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2em;
}
.personalizacja-section .bottom-personalizacja .personalizacja-form {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .wpcf7-radio {
  display: flex;
  flex-direction: row;
  gap: 1em;
  flex-wrap: wrap;
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .przedmiot-section .radio-with-images {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2em;
  margin-bottom: 4em;
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .przedmiot-section .radio-with-images .wpcf7-list-item {
  position: relative;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
  width: 180px;
  height: 180px;
}
@media screen and (max-width: 1024px) {
  .personalizacja-section .bottom-personalizacja .personalizacja-form .przedmiot-section .radio-with-images .wpcf7-list-item {
    width: 100px;
    height: 100px;
  }
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .przedmiot-section .radio-with-images .wpcf7-list-item:hover {
  border-color: #0099cc;
  box-shadow: 0 2px 5px rgba(0, 124, 186, 0.2);
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .przedmiot-section .radio-with-images .wpcf7-list-item input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .przedmiot-section .radio-with-images .wpcf7-list-item input[type=radio]:checked ~ .wpcf7-list-item-label {
  border-color: #0099cc;
  background-color: rgba(0, 123, 186, 0.1);
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .przedmiot-section .radio-with-images .wpcf7-list-item .wpcf7-list-item-label {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .przedmiot-section .radio-with-images .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label {
  background-image: url("../images/kartony_na_wymiar.png");
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .przedmiot-section .radio-with-images .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label {
  background-image: url("../images/kartony_z_nadrukiem.png");
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .przedmiot-section .radio-with-images .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label {
  background-image: url("../images/torby_papierowe_z_nadrukiem.png");
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .przedmiot-section .radio-with-images .wpcf7-list-item:nth-child(4) .wpcf7-list-item-label {
  background-image: url("../images/wypelnienia_na_wymiar.png");
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .przedmiot-section .radio-with-images .wpcf7-list-item:nth-child(5) .wpcf7-list-item-label {
  background-image: url("../images/tasmy_z_nadrukiem.png");
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .form-section {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .personalizacja-section .bottom-personalizacja .personalizacja-form .form-section {
    width: 100%;
  }
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .form-control {
  width: 100%;
  padding: 15px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 15px;
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .privacy-info {
  width: 90%;
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .privacy-info a {
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
}
.personalizacja-section .bottom-personalizacja .personalizacja-form .wpcf7-list-item {
  margin: 0 !important;
}
.personalizacja-section .bottom-personalizacja .personalizacja-form input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid black;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 1em;
}
.personalizacja-section .bottom-personalizacja .personalizacja-form input[type=checkbox]:checked {
  background-color: #00bfff;
  border-color: #00bfff;
}
.personalizacja-section .bottom-personalizacja .personalizacja-form input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.ulubione-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 6vw 0em 6vw;
  gap: 3em;
  /* Minimalistyczne style dla tabeli listy życzeń YITH */
}
.ulubione-content .yith-wcwl-form {
  width: 100%;
  /* Pusta lista życzeń */
  /* Przyciski nawigacyjne dla listy życzeń */
}
.ulubione-content .yith-wcwl-form .wishlist_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 2rem;
  font-family: "Manrope", sans-serif;
  /* Nagłówki tabeli */
  /* Komórki tabeli */
  /* Hover effect dla wierszy */
  /* Kolumna usuwania */
  /* Kolumna miniaturki */
  /* Kolumna nazwy produktu */
  /* Kolumna ceny */
  /* Status dostępności */
  /* Przycisk dodania do koszyka */
  /* Responsywność */
}
.ulubione-content .yith-wcwl-form .wishlist_table thead th {
  display: none !important;
}
.ulubione-content .yith-wcwl-form .wishlist_table tbody td {
  padding: 1rem;
  border-bottom: 1px solid rgba(153, 229.4, 255, 0.3);
  color: #333333;
  font-weight: 400;
  transition: background-color 0.2s ease;
}
.ulubione-content .yith-wcwl-form .wishlist_table tr:last-child td {
  border-bottom: none;
}
.ulubione-content .yith-wcwl-form .wishlist_table tr:last-child td:first-child {
  border-bottom-left-radius: 4px;
}
.ulubione-content .yith-wcwl-form .wishlist_table tr:last-child td:last-child {
  border-bottom-right-radius: 4px;
}
.ulubione-content .yith-wcwl-form .wishlist_table tr:hover td {
  background-color: rgba(127.5, 223.125, 255, 0.1);
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-remove {
  width: 30px;
  text-align: center;
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-remove a.remove {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 22px;
  font-size: 18px;
  color: rgb(127.5, 127.5, 127.5);
  text-align: center;
  border-radius: 50%;
  border: 1px solid #cccccc;
  text-decoration: none;
  transition: all 0.2s ease;
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-remove a.remove:hover {
  color: #ffffff;
  background: linear-gradient(to right, #0099cc, #00bfff);
  border-color: transparent;
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-thumbnail {
  width: 80px;
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-thumbnail img {
  width: 60px;
  height: auto;
  border-radius: 4px;
  transition: transform 0.2s ease;
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-thumbnail img:hover {
  transform: scale(1.05);
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-name a {
  color: #333333;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-name a:hover {
  background: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-price del {
  color: #999999;
  font-size: 0.85rem;
  margin-right: 0.5rem;
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-price ins {
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-stock-status .wishlist-in-stock {
  color: #28a745;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-stock-status .wishlist-in-stock:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-stock-status .wishlist-out-of-stock {
  color: #dc3545;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-stock-status .wishlist-out-of-stock:before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-add-to-cart .add_to_cart {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(to right, #0099cc, #00bfff);
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-add-to-cart .add_to_cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 114.6, 153, 0.2);
}
.ulubione-content .yith-wcwl-form .wishlist_table .product-add-to-cart .add_to_cart:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .ulubione-content .yith-wcwl-form .wishlist_table thead {
    display: none;
  }
  .ulubione-content .yith-wcwl-form .wishlist_table tr {
    display: block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(153, 229.4, 255, 0.3);
    border-radius: 4px;
    padding: 1rem;
  }
  .ulubione-content .yith-wcwl-form .wishlist_table tr:last-child {
    margin-bottom: 0;
  }
  .ulubione-content .yith-wcwl-form .wishlist_table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(153, 229.4, 255, 0.2);
  }
  .ulubione-content .yith-wcwl-form .wishlist_table td:last-child {
    border-bottom: none;
  }
  .ulubione-content .yith-wcwl-form .wishlist_table td:before {
    content: attr(data-title);
    font-weight: 700;
    margin-right: 1rem;
  }
  .ulubione-content .yith-wcwl-form .wishlist_table .product-thumbnail {
    justify-content: center;
  }
  .ulubione-content .yith-wcwl-form .wishlist_table .product-thumbnail:before {
    display: none;
  }
  .ulubione-content .yith-wcwl-form .wishlist_table .product-thumbnail img {
    width: 80px;
  }
  .ulubione-content .yith-wcwl-form .wishlist_table .product-name {
    font-size: 1.1rem;
  }
  .ulubione-content .yith-wcwl-form .wishlist_table .product-add-to-cart {
    justify-content: flex-end;
  }
}
@media (max-width: 576px) {
  .ulubione-content .yith-wcwl-form .wishlist_table td {
    flex-direction: column;
    align-items: flex-start;
  }
  .ulubione-content .yith-wcwl-form .wishlist_table td:before {
    margin-bottom: 0.5rem;
  }
  .ulubione-content .yith-wcwl-form .wishlist_table .product-add-to-cart .add_to_cart {
    width: 100%;
    text-align: center;
  }
}
.ulubione-content .yith-wcwl-form .wishlist-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #333333;
  font-weight: 500;
}
.ulubione-content .yith-wcwl-form .wishlist-empty:before {
  content: "♡";
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #999999;
}
.ulubione-content .yith-wcwl-form .yith-wcwl-share,
.ulubione-content .yith-wcwl-form .wishlist-title-container {
  margin-bottom: 2rem;
}
.ulubione-content .yith-wcwl-form .yith-wcwl-share h2,
.ulubione-content .yith-wcwl-form .yith-wcwl-share h3,
.ulubione-content .yith-wcwl-form .wishlist-title-container h2,
.ulubione-content .yith-wcwl-form .wishlist-title-container h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #333333;
}
.ulubione-content .yith-wcwl-form .yith-wcwl-share .wishlist-title,
.ulubione-content .yith-wcwl-form .wishlist-title-container .wishlist-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ulubione-content .yith-wcwl-form .yith-wcwl-share .wishlist-title .btn,
.ulubione-content .yith-wcwl-form .wishlist-title-container .wishlist-title .btn {
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, #0099cc, #00bfff);
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
}
.ulubione-content .yith-wcwl-form .yith-wcwl-share .wishlist-title .btn:hover,
.ulubione-content .yith-wcwl-form .wishlist-title-container .wishlist-title .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 114.6, 153, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

body {
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  width: 100%;
  margin: 0 auto !important;
  background-color: #ffffff;
}

main {
  margin: 0 auto !important;
}

h1 {
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3.8rem;
  }
}
h1 span {
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  h1 span {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  h1 span {
    font-size: 3.8rem;
  }
}

h2 {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.625rem;
  }
}
h2 span {
  font-weight: 500;
  line-height: 1.2;
  font-size: 2.15rem;
}
@media (min-width: 768px) {
  h2 span {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  h2 span {
    font-size: 2.625rem;
  }
}

h3 {
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}
h3 span {
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  h3 span {
    font-size: 1.5rem;
  }
}

.h3-big {
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .h3-big {
    font-size: 1.6rem;
  }
}

a {
  text-decoration: none;
  color: white;
}
a:focus {
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

b,
strong {
  font-weight: 700;
}

p,
li,
span,
a,
select {
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  color: #333333;
}
@media (min-width: 1024px) {
  p,
  li,
  span,
  a,
  select {
    font-size: 1.1rem;
  }
}

a {
  text-decoration: none;
}
a:hover {
  color: #333333;
}

.tag {
  text-transform: uppercase;
  font-weight: 600;
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
}

.tag-border {
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 0.3em 1.2em;
  border-radius: 4px;
}

.gradient-text {
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
}

.main-button {
  padding: 1em 2em;
  background: white;
  color: black !important;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.main-button:hover {
  background: rgba(236, 236, 236, 0.897);
}

.main-button-gradient,
.wc-block-components-button {
  padding: 0.8em 1.8em !important;
  background-image: linear-gradient(to right, #0099cc 0%, #00bfff 50%, #0099cc 100%) !important;
  background-size: 200% 100% !important;
  background-position: right bottom !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  transition: background-position 0.3s ease-in-out !important;
  font-weight: 400 !important;
  cursor: pointer !important;
  border: none !important;
  text-align: center !important;
}
.main-button-gradient span,
.wc-block-components-button span {
  color: white !important;
}
.main-button-gradient:hover,
.wc-block-components-button:hover {
  background-position: left bottom !important;
}

.main-button-gradient-outline {
  position: relative !important;
  padding: 0.8em 1.8em !important;
  color: #00bfff !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  font-weight: 400 !important;
  cursor: pointer !important;
  border: none !important;
  background: transparent !important;
  z-index: 1 !important;
  overflow: hidden !important;
}
.main-button-gradient-outline::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: -1 !important;
  margin: -2px !important;
  border-radius: inherit !important;
  background-image: linear-gradient(to right, #0099cc 0%, #00bfff 50%, #0099cc 100%) !important;
  background-size: 200% 100% !important;
  background-position: right bottom !important;
  transition: background-position 0.3s ease-in-out !important;
}
.main-button-gradient-outline::after {
  content: "" !important;
  position: absolute !important;
  top: 2px !important;
  left: 2px !important;
  right: 2px !important;
  bottom: 2px !important;
  z-index: -1 !important;
  border-radius: calc(4px - 2px) !important;
  background: #fff !important;
}
.main-button-gradient-outline span {
  color: #00bfff !important;
  position: relative !important;
  z-index: 2 !important;
}
.main-button-gradient-outline:hover::before {
  background-position: left bottom !important;
}

.single-page-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 6vw 0em 6vw;
}
.single-page-section ol,
.single-page-section ul {
  margin-left: 2em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.error-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  gap: 2em;
  padding: 3em 6vw 0em 6vw;
  height: 50vh;
}/*# sourceMappingURL=main.css.map */