@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: #111827;
  background-color: #f5f6f8;
  line-height: 1.5;
}

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

ul {
  list-style: none;
}

button,
input,
select {
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 6px;
}
.badge--new {
  background-color: #1aba1a;
}
.badge--hot {
  background-color: #ef233c;
}

.site-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.site-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.site-overlay.site-overlay--cart {
  z-index: 900;
}

.button {
  border-radius: 7px;
  background-color: #ef233c;
  color: #ffffff;
  padding: 10px 15px;
  font-size: 12px;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: rgb(226.8983050847, 16.5016949153, 42.2855932203);
}
@media (min-width: 1024px) {
  .button {
    font-size: 14px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 110;
  border-bottom: 1px solid #e5e7eb;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}
@media (min-width: 1024px) {
  .site-header {
    top: -41px;
  }
}
.site-header.header--hidden {
  transform: translateY(-100%);
}
.site-header.header--scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.site-header.header--at-top {
  transition: none;
}
.site-header.header--no-click {
  pointer-events: none;
}
@media (min-width: 1024px) {
  .site-header.header--no-click {
    pointer-events: auto;
  }
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  .header-overlay {
    display: none !important;
  }
}

.top-bar {
  display: none;
  font-size: 13px;
  color: #5c626d;
  border-bottom: 1px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .top-bar {
    display: block;
  }
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
}
.top-bar__left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  line-height: 1;
}
.top-bar__left strong {
  color: #111827;
}
.top-bar__bullet {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ef233c;
}
.top-bar__bullet::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 35, 59, 0.6);
  animation: pulseBullet 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}
@keyframes pulseBullet {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 35, 59, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(239, 35, 59, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 35, 59, 0);
  }
}
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar__link {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.top-bar__link:hover {
  color: #ef233c;
}
.top-bar__icon {
  width: 16px;
  height: 16px;
}

.main-header {
  background-color: #ffffff;
}
.main-header__inner {
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (min-width: 1024px) {
  .main-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.main-header__mobile-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  min-height: 50px;
}
@media (min-width: 1024px) {
  .main-header__mobile-wrap {
    display: contents;
  }
}
.main-header__search-wrap {
  width: 100%;
  margin-top: 12px;
}
@media (min-width: 1024px) {
  .main-header__search-wrap {
    margin-top: 0;
    order: 2;
    flex: 1;
    max-width: 600px;
    margin: 0 32px;
  }
}

.logo {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1024px) {
  .logo {
    position: static;
    transform: none;
    order: 1;
  }
}
.logo__img {
  height: 50px;
}
@media (min-width: 1024px) {
  .logo__img {
    height: 60px;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle .hamburger-box {
  width: 24px;
  height: 16px;
  position: relative;
}
.menu-toggle .hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
  width: 100%;
  height: 2px;
  background-color: #111827;
  border-radius: 2px;
  position: absolute;
  transition: transform 0.2s ease, background-color 0s 0.2s;
}
.menu-toggle .hamburger-inner::before, .menu-toggle .hamburger-inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #111827;
  border-radius: 2px;
  position: absolute;
  transition: transform 0.2s ease;
}
.menu-toggle .hamburger-inner::before {
  top: -6px;
}
.menu-toggle .hamburger-inner::after {
  bottom: -6px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .header-actions {
    gap: 10px;
    order: 3;
  }
}
.header-actions__item {
  position: relative;
  display: flex;
  align-items: center;
}
.header-actions__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111827;
  transition: color 0.2s ease;
}
.header-actions__btn:hover .header-actions__icon {
  filter: invert(50%);
}
.header-actions__icon {
  width: auto;
  height: 30px;
}

.header-help {
  display: none;
}
@media (min-width: 1024px) {
  .header-help {
    display: flex;
  }
}

.header-account {
  display: flex;
}

.header-help__dropdown,
.header-account__dropdown {
  display: none;
}
@media (min-width: 1024px) {
  .header-help__dropdown,
  .header-account__dropdown {
    display: block;
    position: absolute;
    top: 100%;
    right: -20px;
    width: 250px;
    padding-top: 12px;
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
}
.header-help__bridge,
.header-account__bridge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  background: transparent;
}
.header-help__inner,
.header-account__inner {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .header-help:hover .header-help__dropdown,
  .header-help:hover .header-account__dropdown,
  .header-account:hover .header-help__dropdown,
  .header-account:hover .header-account__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-help__section,
.header-account__section {
  padding: 16px 0;
}
.header-help__section:first-child,
.header-account__section:first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header-help__title,
.header-account__title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #5c626d;
  margin-bottom: 8px;
  padding: 0 24px;
}
.header-help__list,
.header-account__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
}
.header-help__list li,
.header-account__list li {
  width: 100%;
}
.header-help__list a,
.header-account__list a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #111827;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-weight: 500;
}
.header-help__list a:hover,
.header-account__list a:hover {
  background-color: #f5f6f8;
  color: #ef233c;
}
.header-help__list--icons,
.header-account__list--icons {
  gap: 4px;
}
.header-help__list--icons a,
.header-account__list--icons a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-help__list--icons a img,
.header-account__list--icons a img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.header-help__list--icons a:hover img,
.header-account__list--icons a:hover img {
  opacity: 1;
}
.header-help__phone,
.header-account__phone {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
}
.header-help__phone img,
.header-account__phone img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  margin-top: 2px;
}
.header-help__phone-details,
.header-account__phone-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header-help__phone-details a,
.header-account__phone-details a {
  padding: 0;
  background: transparent;
  display: inline;
}
.header-help__phone-details a:hover,
.header-account__phone-details a:hover {
  background: transparent;
}
.header-help__phone-number,
.header-account__phone-number {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #111827 !important;
}
.header-help__phone-hours,
.header-account__phone-hours {
  font-size: 12px;
  color: #5c626d;
  line-height: 1.4;
}

.cart-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-wrapper__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: #ef233c;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.cart-info {
  display: none;
}
@media (min-width: 1024px) {
  .cart-info {
    display: flex;
    flex-direction: column;
  }
}
.cart-info__label {
  font-size: 13px;
  color: #111827;
  font-weight: 600;
}
.cart-info__price {
  font-size: 13px;
  color: #5c626d;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  height: 36px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .search-form {
    height: 44px;
    border-radius: 8px;
  }
}
.search-form__select-wrap {
  display: none;
  position: relative;
  height: 100%;
  align-items: center;
  border-right: 1px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .search-form__select-wrap {
    display: flex;
  }
}
.search-form__select-toggle {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 32px 0 16px;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.search-form__select-toggle:hover {
  background-color: #f5f6f8;
}
.search-form__select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  pointer-events: none;
  transition: transform 0.2s ease;
}
.search-form__select-wrap.is-open .search-form__select-arrow {
  transform: translateY(-50%) rotate(180deg);
}
.search-form__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 250px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
  padding: 8px 0;
}
.search-form__select-wrap.is-open .search-form__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.search-form__dropdown-list {
  display: flex;
  flex-direction: column;
}
.search-form__option {
  width: 100%;
  text-align: left;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  background-color: transparent;
  transition: all 0.2s ease;
}
.search-form__option:hover, .search-form__option.is-active {
  background-color: #f5f6f8;
  color: #ef233c;
}
.search-form__input {
  flex: 1;
  height: 100%;
  padding: 0 16px 0 4px;
  font-size: 13px;
  color: #111827;
}
@media (min-width: 1024px) {
  .search-form__input {
    padding: 0 16px;
  }
}
.search-form__input::-moz-placeholder {
  color: #5c626d;
}
.search-form__input::placeholder {
  color: #5c626d;
}
.search-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 100%;
  background-color: transparent;
  order: -1;
}
@media (min-width: 1024px) {
  .search-form__btn {
    order: 0;
    border-radius: 8px;
    background-color: #ef233c;
    transition: background-color 0.2s ease;
  }
  .search-form__btn:hover {
    background-color: rgb(231.6525423729, 16.8474576271, 43.1716101695);
  }
}
.search-form__btn img {
  width: 16px;
  height: 16px;
  opacity: 0.4;
  filter: brightness(0);
}
@media (min-width: 1024px) {
  .search-form__btn img {
    width: 20px;
    height: 20px;
    opacity: 1;
    filter: brightness(0) invert(1);
  }
}
.search-form .ajax-search-results {
  display: none;
}
@media (min-width: 1024px) {
  .search-form .ajax-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .search-form .ajax-search-results.is-visible {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    min-height: 200px;
  }
  .search-form .ajax-search-results__left {
    padding: 24px;
    border-right: 1px solid #e5e7eb;
    background: #fafafa;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  .search-form .ajax-search-results__right {
    padding: 24px;
  }
  .search-form .ajax-search-results__title {
    font-size: 11px;
    text-transform: uppercase;
    color: #5c626d;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    font-weight: 600;
  }
  .search-form .ajax-search-results__message {
    grid-column: 1/-1;
    padding: 40px;
    text-align: center;
    color: #5c626d;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .search-form .ajax-search-results__loader {
    width: 24px;
    height: 24px;
    border: 2px solid #e5e7eb;
    border-top-color: #ef233c;
    border-radius: 50%;
    animation: ajax-spin 0.8s linear infinite;
  }
  @keyframes ajax-spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .search-form .ajax-search-results__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .search-form .ajax-search-results__list-item {
    margin-bottom: 4px;
  }
  .search-form .ajax-search-results__list-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    color: #111827;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .search-form .ajax-search-results__list-item a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  .search-form .ajax-search-results__list-item a:hover {
    background-color: #ffffff;
    color: #ef233c;
  }
  .search-form .ajax-search-results__products-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .search-form .ajax-search-results__product {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    color: #111827;
    transition: background-color 0.2s ease;
  }
  .search-form .ajax-search-results__product:hover {
    background-color: #fafafa;
  }
  .search-form .ajax-search-results__product-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-form .ajax-search-results__product-image img {
    max-width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .search-form .ajax-search-results__product-info {
    flex: 1;
    min-width: 0;
  }
  .search-form .ajax-search-results__product-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
  }
  .search-form .ajax-search-results__product-price {
    font-size: 13px;
    color: #ef233c;
    font-weight: 700;
  }
  .search-form .ajax-search-results__product-price del {
    color: #5c626d;
    font-weight: 400;
    margin-right: 6px;
    font-size: 11px;
  }
  .search-form .ajax-search-results__product-price ins {
    text-decoration: none;
  }
}
.search-form .search-form {
  position: relative;
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 90%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 101;
  transform: translateX(-100%);
  pointer-events: auto;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}
.nav-bar.is-open {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .nav-bar {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none;
    z-index: auto;
    overflow-y: visible;
    overflow-x: visible;
    border-top: 1px solid #e5e7eb;
    background-color: transparent;
  }
}
.nav-bar__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .nav-bar__mobile-header {
    display: none;
  }
}
.nav-bar__mobile-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}
.nav-bar__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-bar__close-icon {
  width: 20px;
  height: 20px;
  position: relative;
}
.nav-bar__close-icon span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111827;
  border-radius: 2px;
}
.nav-bar__close-icon span:first-child {
  transform: translateY(-50%) rotate(45deg);
}
.nav-bar__close-icon span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}
.nav-bar__inner {
  padding: 0;
}
@media (min-width: 1024px) {
  .nav-bar__inner {
    padding: 0 1rem;
  }
}

.nav-menu {
  display: flex;
  flex-direction: column;
}
.nav-menu .nav-menu__group-title {
  font-size: 12px;
  font-weight: 600;
  color: #5c626d;
  padding: 24px 20px 5px 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-menu .nav-menu__group-title--spaced {
  margin-top: 8px;
  padding-top: 24px;
}
@media (min-width: 1024px) {
  .nav-menu .nav-menu__group-title {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .nav-menu {
    flex-direction: row;
    gap: 32px;
  }
}
.nav-menu__item {
  border-bottom: 1px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .nav-menu__item {
    border-bottom: none;
  }
}
.nav-menu__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  transition: color 0.2s ease;
}
@media (min-width: 1024px) {
  .nav-menu__link {
    padding: 16px 0;
    gap: 6px;
    font-size: 13px;
  }
}
.nav-menu__link:hover {
  color: #ef233c;
}
.nav-menu__link--hot {
  color: #ef233c;
}
.nav-menu__arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  transition: transform 0.2s ease;
  transform: rotate(-90deg);
}
@media (min-width: 1024px) {
  .nav-menu__arrow {
    transform: rotate(0);
  }
}
@media (min-width: 1024px) {
  .nav-menu__link.is-active .nav-menu__arrow {
    transform: rotate(180deg);
  }
}

.mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f6f8;
  z-index: 102;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
}
.mega-menu.is-open {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    overflow-x: visible;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #e5e7eb;
    padding-bottom: 32px;
    z-index: 95;
  }
  .mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.mega-menu__inner {
  padding: 0;
}
@media (min-width: 1024px) {
  .mega-menu__inner {
    padding: 0 1rem;
  }
}
.mega-menu__mobile-header {
  display: flex;
  align-items: center;
  padding: 16px 10px;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .mega-menu__mobile-header {
    display: none;
  }
}
.mega-menu__back {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #5c626d;
}
.mega-menu__back img {
  width: 16px;
  height: 16px;
  rotate: 90deg;
}
.mega-menu__mobile-title {
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  transform: translateX(-16px);
}
.mega-menu__content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .mega-menu__content {
    flex-direction: row;
    gap: 64px;
    padding-top: 32px;
  }
}
@media (min-width: 1024px) {
  .mega-menu__categories {
    flex: 1;
  }
}
.mega-menu__column-title {
  display: block;
  font-size: 13px;
  color: #5c626d;
  margin-bottom: 16px;
  padding: 24px 20px 0;
}
@media (min-width: 1024px) {
  .mega-menu__column-title {
    padding: 0;
    margin-bottom: 24px;
  }
}
.mega-menu__list {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .mega-menu__list {
    background-color: transparent;
    display: block;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
.mega-menu__list li {
  border-bottom: 1px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .mega-menu__list li {
    border-bottom: none;
    margin-bottom: 20px;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
}
.mega-menu__list a {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  transition: color 0.3s;
}
@media (min-width: 1024px) {
  .mega-menu__list a {
    padding: 0;
    font-size: 14px;
  }
  .mega-menu__list a:hover {
    color: #ef233c;
  }
}
.mega-menu__list a img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  opacity: 0.6;
}
.mega-menu__products {
  padding-bottom: 32px;
}
@media (min-width: 1024px) {
  .mega-menu__products {
    padding-bottom: 0;
    flex: 1;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .products-grid {
    padding: 0;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }
}

.product-card {
  display: flex;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  border-color: #ef233c;
  box-shadow: 0 4px 12px rgba(239, 35, 60, 0.08);
}
.product-card__img-wrap {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .product-card__img-wrap {
    width: 100px;
    height: 100px;
  }
}
.product-card__img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 16px;
  flex: 1;
}
.product-card__brand {
  font-size: 11px;
  color: #5c626d;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.product-card__title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 8px;
}
.product-card__price {
  display: block;
}
.product-card__price .screen-reader-text {
  display: none;
}
.product-card__price del {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 400;
  margin-bottom: 2px;
}
.product-card__price .price-prefix {
  display: inline-block;
  font-size: 13px;
  color: #5c626d;
  font-weight: 500;
  margin-right: 4px;
}
.product-card__price ins {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #1aba1a;
  background: transparent;
}
.product-card__price > .amount {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #1aba1a;
}
.product-card__price .iworks-omnibus {
  display: block;
  margin: 4px 0 0 0;
  padding: 0;
  font-size: 11px;
  color: #5c626d;
  line-height: 1.2;
}
.product-card__price .iworks-omnibus .amount {
  font-size: 11px;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .mobile-only-item {
    display: none !important;
  }
}

.nav-menu__divider {
  height: 1px;
  background-color: #e5e7eb;
  margin: 8px 20px;
}

.mobile-help-phone {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px 32px 20px;
}
.mobile-help-phone img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  margin-top: 2px;
}
.mobile-help-phone__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-help-phone__details a {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}
.mobile-help-phone__details span {
  font-size: 12px;
  color: #5c626d;
  line-height: 1.4;
}

.mobile-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fafafa;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out, visibility 0.25s ease-out;
}
.mobile-search-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
@media (min-width: 1024px) {
  .mobile-search-modal {
    display: none !important;
  }
}
.mobile-search-modal__header {
  display: flex;
  align-items: center;
  height: 60px;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 16px 0 8px;
  background-color: #ffffff;
}
.mobile-search-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: #111827;
  cursor: pointer;
}
.mobile-search-modal__form {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.mobile-search-modal__input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #111827;
  outline: none;
}
.mobile-search-modal__input::-moz-placeholder {
  color: #5c626d;
}
.mobile-search-modal__input::placeholder {
  color: #5c626d;
}
.mobile-search-modal__content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.mobile-search-modal__results {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-search-modal__results .ajax-search-results__title {
  font-size: 11px;
  text-transform: uppercase;
  color: #5c626d;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-weight: 600;
}
.mobile-search-modal__results .ajax-search-results__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-search-modal__results .ajax-search-results__list-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 8px;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}
.mobile-search-modal__results .ajax-search-results__list-item a .ajax-icon {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  flex-shrink: 0;
}
.mobile-search-modal__results .ajax-search-results__products-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-search-modal__results .ajax-search-results__product {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  color: #111827;
  border: 1px solid #e5e7eb;
}
.mobile-search-modal__results .ajax-search-results__product-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-search-modal__results .ajax-search-results__product-image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-search-modal__results .ajax-search-results__product-info {
  flex: 1;
  min-width: 0;
}
.mobile-search-modal__results .ajax-search-results__product-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.mobile-search-modal__results .ajax-search-results__product-price {
  font-size: 14px;
  color: #ef233c;
  font-weight: 700;
}
.mobile-search-modal__results .ajax-search-results__product-price del {
  color: #5c626d;
  font-weight: 400;
  margin-right: 6px;
  font-size: 11px;
}
.mobile-search-modal__results .ajax-search-results__product-price ins {
  text-decoration: none;
}
.mobile-search-modal__results .ajax-search-results__message {
  text-align: center;
  padding: 30px;
  color: #5c626d;
}

.site-footer {
  background-color: #f5f6f8;
}

.footer-top {
  padding: 48px 0 32px;
}
@media (min-width: 768px) {
  .footer-top {
    padding: 56px 0 40px;
  }
}
@media (min-width: 1024px) {
  .footer-top {
    padding: 64px 0 75px;
  }
}
.footer-top__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .footer-top__inner {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .footer-newsletter {
    flex: 0 0 340px;
    max-width: 340px;
  }
}
.footer-newsletter__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .footer-newsletter__title {
    text-align: left;
    font-size: 26px;
  }
}
.footer-newsletter__desc {
  text-align: center;
  font-size: 13px;
  color: #5c626d;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .footer-newsletter__desc {
    text-align: left;
  }
}
.footer-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-newsletter__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 0 5px 0 15px;
  height: 48px;
}
.footer-newsletter__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.5;
}
.footer-newsletter__input {
  flex: 1;
  height: 100%;
  font-size: 13px;
  color: #111827;
  background: transparent;
}
.footer-newsletter__input::-moz-placeholder {
  color: #5c626d;
}
.footer-newsletter__input::placeholder {
  color: #5c626d;
}
.footer-newsletter__submit {
  height: 48px;
  padding: 0 10px;
  background-color: #ef233c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.footer-newsletter__submit:hover {
  background-color: rgb(226.8983050847, 16.5016949153, 42.2855932203);
}
.footer-newsletter__success {
  background-color: #e6f4ea;
  color: #137333;
  border: 1px solid #ceead6;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.footer-newsletter__privacy {
  text-align: center;
  font-size: 12px;
  color: #5c626d;
}
@media (min-width: 768px) {
  .footer-newsletter__privacy {
    text-align: left;
  }
}
.footer-newsletter__privacy a {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-newsletter__privacy a:hover {
  color: #ef233c;
}

.footer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .footer-nav {
    flex-direction: row;
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .footer-nav__column {
    flex: 1;
  }
}
.footer-nav__column--company {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .footer-nav__column--company {
    margin-bottom: 0;
  }
}
.footer-nav__column--company .footer-nav__heading {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .footer-nav__column--company .footer-nav__heading {
    font-size: 13px;
  }
}
.footer-nav__column--accordion {
  border-top: 1px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .footer-nav__column--accordion {
    border-top: none;
  }
}
.footer-nav__heading-wrap {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}
.footer-nav__heading--accordion {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  background: transparent;
  border: none;
  padding: 16px 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
@media (min-width: 1024px) {
  .footer-nav__heading--accordion {
    cursor: default;
    padding: 0;
    font-size: 13px;
    margin-bottom: 16px;
    pointer-events: none;
  }
}
.footer-nav__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media (min-width: 1024px) {
  .footer-nav__chevron {
    display: none;
  }
}
.footer-nav__list--collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.footer-nav__list--collapsible::after {
  content: "";
  display: block;
  height: 24px;
}
@media (min-width: 1024px) {
  .footer-nav__list--collapsible {
    max-height: none !important;
    overflow: visible;
  }
  .footer-nav__list--collapsible::after {
    display: none;
  }
}
.footer-nav__column--accordion.is-open .footer-nav__chevron {
  transform: rotate(180deg);
}
.footer-nav__column--accordion.is-open .footer-nav__heading--accordion {
  color: #ef233c;
}
.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav__item {
  font-size: 13px;
  color: #5c626d;
  line-height: 1.4;
}
.footer-nav__item--text a {
  color: #5c626d;
  transition: color 0.2s ease;
}
.footer-nav__item--text a:hover {
  color: #ef233c;
}
.footer-nav__link {
  color: #5c626d;
  transition: color 0.2s ease;
}
.footer-nav__link:hover {
  color: #ef233c;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 20px 0;
}
.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer-bottom__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bottom__copy {
  font-size: 13px;
  color: #5c626d;
  order: 2;
}
@media (min-width: 1024px) {
  .footer-bottom__copy {
    order: 1;
  }
}
.footer-bottom__payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  order: 1;
}
@media (min-width: 1024px) {
  .footer-bottom__payments {
    width: auto;
    order: 2;
    justify-content: flex-end;
    gap: 16px;
  }
}
.footer-bottom__payment-logo {
  height: 13px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.main-slider__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 220px;
  background-image: url("https://stryjek.piotrrysz.pl/wp-content/uploads/2026/03/slider-mobile.jpg");
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .main-slider__item {
    height: 400px;
    background-image: url("https://stryjek.piotrrysz.pl/wp-content/uploads/2026/03/slider-desktop-scaled.jpg");
  }
}
.main-slider__item--second {
  background-image: url("https://stryjek.piotrrysz.pl/wp-content/uploads/2026/03/slider-proba-scaled.webp");
}
@media (min-width: 1024px) {
  .main-slider__item--second {
    background-image: url("https://stryjek.piotrrysz.pl/wp-content/uploads/2026/03/slider-proba-scaled.webp");
  }
}
.main-slider__item--third {
  background-image: url("https://stryjek.piotrrysz.pl/wp-content/uploads/2026/03/slider-proba2-scaled.webp");
}
@media (min-width: 1024px) {
  .main-slider__item--third {
    background-image: url("https://stryjek.piotrrysz.pl/wp-content/uploads/2026/03/slider-proba2-scaled.webp");
  }
}
.main-slider__item .description {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
}
@media (min-width: 1024px) {
  .main-slider__item .description {
    position: relative;
    width: 100%;
  }
}
.main-slider__item .description .subtitle {
  font-size: 12px;
  color: #5c626d;
}
@media (min-width: 1024px) {
  .main-slider__item .description .subtitle {
    font-size: 13px;
  }
}
.main-slider__item .description .title {
  font-size: 18px;
  color: #000000;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .main-slider__item .description .title {
    font-size: 40px;
  }
}
.main-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  padding: 0;
}
.main-slider .slick-arrow:hover {
  background-color: #ffffff;
  border-color: #ef233c;
}
@media (min-width: 1024px) {
  .main-slider .slick-arrow {
    width: 48px;
    height: 48px;
  }
}
.main-slider .slick-arrow img {
  width: 14px;
  height: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
@media (min-width: 1024px) {
  .main-slider .slick-arrow img {
    width: 18px;
    height: 18px;
  }
}
.main-slider .slick-arrow:hover img {
  opacity: 1;
}
.main-slider .slick-prev {
  left: 10px;
}
@media (min-width: 1024px) {
  .main-slider .slick-prev {
    left: 20px;
  }
}
.main-slider .slick-prev img {
  transform: rotate(90deg);
}
.main-slider .slick-next {
  right: 10px;
}
@media (min-width: 1024px) {
  .main-slider .slick-next {
    right: 20px;
  }
}
.main-slider .slick-next img {
  transform: rotate(-90deg);
}
.main-slider .slick-dots {
  display: none !important;
}
@media (min-width: 1024px) {
  .main-slider .slick-dots {
    display: flex !important;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    z-index: 10;
  }
}
.main-slider .slick-dots li {
  margin: 0;
}
.main-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 30px;
  height: 4px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  transition: background-color 0.3s ease, width 0.3s ease;
}
.main-slider .slick-dots li button:hover, .main-slider .slick-dots li button:focus {
  background: rgba(0, 0, 0, 0.6);
}
.main-slider .slick-dots li.slick-active button {
  background: #ef233c;
  width: 50px;
}

.categories-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 60px;
}
@media (min-width: 1024px) {
  .categories-section {
    flex-direction: row-reverse;
    align-items: stretch;
    gap: 24px;
    margin-top: 80px;
  }
}
.categories-section__title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .categories-section__title {
    text-align: left;
    font-size: 26px;
    margin-bottom: 40px;
    width: 100%;
  }
}

.sale-container {
  width: 100%;
}
@media (min-width: 1024px) {
  .sale-container {
    width: 360px;
    flex-shrink: 0;
  }
}

.sale-card {
  background: #ffffff;
  border: 1px solid #ef233c;
  border-radius: 16px;
  padding: 24px;
}
@media (min-width: 1024px) {
  .sale-card {
    padding: 32px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}
.sale-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.sale-card__title {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sale-card__title .red-dot {
  width: 10px;
  height: 10px;
  background-color: #ef233c;
  border-radius: 50%;
  display: inline-block;
}
.sale-card__savings {
  text-align: right;
  display: flex;
  flex-direction: column;
}
.sale-card__savings-label {
  font-size: 13px;
  color: #5c626d;
}
.sale-card__savings-value {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
}
.sale-card__image {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.sale-card__image img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.sale-card__product-name {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .sale-card__product-name {
    font-size: 18px;
  }
}
.sale-card__price-box {
  margin-bottom: 20px;
}
.sale-card__current-price {
  font-size: 26px;
  font-weight: 700;
  color: #1aba1a;
}
.sale-card__lowest-price {
  font-size: 13px;
  color: #5c626d;
}
.sale-card__timer-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .sale-card__timer-box {
    margin-top: auto;
  }
}
.sale-card__timer {
  display: flex;
  gap: 8px;
}
.sale-card__timer .timer-unit {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 5px;
  text-align: center;
  min-width: 56px;
}
.sale-card__timer .timer-unit .timer-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}
.sale-card__timer .timer-unit .timer-label {
  display: block;
  font-size: 11px;
  color: #5c626d;
}
.sale-card__timer-info {
  font-size: 12px;
  color: #5c626d;
  line-height: 1.4;
}
.sale-card__timer-info strong {
  color: #111827;
  font-weight: 700;
}
.sale-card__btn {
  width: 100%;
  background-color: #ef233c;
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  text-decoration: none;
}
.sale-card__btn:hover {
  background-color: rgb(231.6525423729, 16.8474576271, 43.1716101695);
}

.categories-container {
  width: 100%;
  padding: 0 10px;
}
@media (min-width: 1024px) {
  .categories-container {
    flex: 1;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  }
}

.categories-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.categories-tabs::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .categories-tabs {
    display: none;
  }
}

.tab-btn {
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #5c626d;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}
.tab-btn.is-active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.categories-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 24px 20px;
}
@media (min-width: 1024px) {
  .categories-content {
    background: transparent;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
  }
}

.category-card {
  display: none;
}
.category-card.is-active {
  display: block;
}
@media (min-width: 1024px) {
  .category-card {
    display: block !important;
    position: relative;
    padding-right: 32px;
  }
  .category-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background-color: #e5e7eb;
  }
  .category-card:last-child {
    padding-right: 0;
  }
}
.category-card__image {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  min-height: 180px;
  align-items: center;
}
.category-card__image img {
  max-width: 100%;
  height: auto;
  max-height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}
.category-card__info {
  text-align: left;
}
.category-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .category-card__title {
    font-size: 18px;
  }
}
.category-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-card__list li {
  font-size: 13px;
  color: #5c626d;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.category-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ef233c;
}
.category-card__list li a:hover {
  color: #ef233c;
}
.category-card__all {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
  font-size: 12px;
  color: #111827;
}
.category-card__all a {
  padding: 8px 10px;
  border: 1px solid #111827;
  border-radius: 8px;
  transition: color 0.3s, border 0.3s;
}
.category-card__all a:hover {
  color: #ef233c;
  border: 1px solid #ef233c;
}

.advantages-section {
  background-color: #f5f6f8;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .advantages-section {
    padding: 28px 0;
  }
}
@media (min-width: 1024px) {
  .advantages-section {
    padding: 32px 0;
  }
}
.advantages-section__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
}
@media (min-width: 768px) {
  .advantages-section__inner {
    gap: 28px 32px;
  }
}
@media (min-width: 1024px) {
  .advantages-section__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.advantage-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 12px;
}
@media (min-width: 768px) {
  .advantage-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
  }
}
@media (min-width: 1024px) {
  .advantage-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0 24px;
    position: relative;
  }
  .advantage-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background-color: #e5e7eb;
  }
  .advantage-card:first-child {
    padding-left: 0;
  }
  .advantage-card:last-child {
    padding-right: 0;
  }
}
.advantage-card__icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .advantage-card__icon {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1024px) {
  .advantage-card__icon {
    width: 45px;
    height: 45px;
  }
}
.advantage-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.advantage-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.advantage-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .advantage-card__title {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .advantage-card__title {
    font-size: 18px;
  }
}
.advantage-card__desc {
  font-size: 13px;
  color: #5c626d;
  line-height: 1.4;
}

.about-us-section {
  padding: 48px 0;
  background-color: #f5f6f8;
}
@media (min-width: 768px) {
  .about-us-section {
    padding: 56px 0;
  }
}
@media (min-width: 1024px) {
  .about-us-section {
    padding: 72px 0;
  }
}
.about-us-section__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .about-us-section__inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
}
.about-us-section__image-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .about-us-section__image-wrap {
    width: 48%;
    max-width: 520px;
  }
}
.about-us-section__img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
@media (min-width: 768px) {
  .about-us-section__img {
    max-height: 200px;
  }
}
@media (min-width: 1024px) {
  .about-us-section__img {
    max-height: none;
  }
}
.about-us-section__content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .about-us-section__content {
    flex: 1;
  }
}
.about-us-section__subtitle {
  font-size: 13px;
  margin-bottom: 12px;
  color: #ef233c;
  text-align: center;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .about-us-section__subtitle {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .about-us-section__subtitle {
    text-align: left;
  }
}
.about-us-section__title {
  font-weight: 600;
  font-size: 22px;
  color: #111827;
  line-height: 1.25;
  text-align: center;
  margin: 0;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .about-us-section__title {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .about-us-section__title {
    font-size: 26px;
    text-align: left;
  }
}
.about-us-section__desc {
  font-size: 13px;
  color: #5c626d;
  line-height: 1.65;
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .about-us-section__desc {
    font-size: 15px;
  }
}
@media (min-width: 1024px) {
  .about-us-section__desc {
    text-align: left;
  }
}
.about-us-section__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .about-us-section__stats {
    gap: 24px;
  }
}
.about-us-section__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
@media (min-width: 1024px) {
  .about-us-section__stat {
    text-align: left;
  }
}
.about-us-section__stat-value {
  font-size: 22px;
  font-weight: bold;
  color: #111827;
  line-height: 1;
}
@media (min-width: 768px) {
  .about-us-section__stat-value {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  .about-us-section__stat-value {
    font-size: 30px;
  }
}
.about-us-section__stat-label {
  font-size: 12px;
  color: #5c626d;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .about-us-section__stat-label {
    font-size: 13px;
  }
}

.products-container-section {
  padding: 40px 0 48px;
  background-color: #f5f6f8;
}
@media (min-width: 768px) {
  .products-container-section {
    padding: 48px 0 56px;
  }
}
@media (min-width: 1024px) {
  .products-container-section {
    padding: 56px 0 64px;
  }
}
.products-container-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .products-container-section__header {
    margin-bottom: 32px;
  }
}
.products-container-section__title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}
@media (min-width: 768px) {
  .products-container-section__title {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .products-container-section__title {
    font-size: 26px;
  }
}
.products-container-section__arrows {
  display: flex;
  gap: 8px;
}

.products-slider-prev,
.products-slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.products-slider-prev img,
.products-slider-next img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.products-slider-prev:hover:not(.is-disabled),
.products-slider-next:hover:not(.is-disabled) {
  background: #f5f6f8;
  border-color: rgb(200.1739130435, 204.3913043478, 212.8260869565);
}
.products-slider-prev.is-disabled,
.products-slider-next.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.products-slider-prev img {
  transform: rotate(90deg);
}

.products-slider-next img {
  transform: rotate(-90deg);
}

.products-slider-wrap {
  overflow: hidden;
}

.products-slider .slick-list {
  overflow: visible;
  margin: 0 -8px;
}
@media (max-width: 767px) {
  .products-slider .slick-list {
    padding-right: 28% !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .products-slider .slick-list {
    padding-right: 18% !important;
  }
}
.products-slider .slick-track {
  margin-left: 0 !important;
  display: flex !important;
  justify-content: flex-start;
}
.products-slider .slick-slide {
  padding: 0 8px;
  height: auto;
}
.products-slider .slick-slide > div {
  height: 100%;
}

.product-slide__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease;
  padding: 16px;
  position: relative;
}
.product-slide__inner:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.product-slide__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}
.product-slide__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .product-slide__img-wrap {
    min-height: 140px;
  }
}
.product-slide__img {
  max-width: 100%;
  max-height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1024px) {
  .product-slide__img {
    max-height: 140px;
  }
}
.product-slide__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.product-slide__brand {
  font-size: 12px;
  color: #5c626d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-slide__title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
  margin: 0 0 8px;
}
@media (min-width: 1024px) {
  .product-slide__title {
    font-size: 13px;
  }
}
.product-slide__price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
}
.product-slide__price {
  font-size: 18px;
  font-weight: 700;
  color: #1aba1a;
}
@media (min-width: 1024px) {
  .product-slide__price {
    font-size: 16px;
  }
}
.product-slide__lowest {
  font-size: 12px;
  color: #5c626d;
}

.badge-label {
  display: inline-block;
  font-size: 11px;
  padding: 2px 5px;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
.badge-label--promo {
  background-color: #ef233c;
  color: #ffffff;
}
.badge-label--new {
  background-color: #1aba1a;
  color: #ffffff;
}

.offer-section {
  background-color: #f5f6f8;
  padding: 56px 0 64px;
}
@media (min-width: 768px) {
  .offer-section {
    padding: 64px 0 72px;
  }
}
@media (min-width: 1024px) {
  .offer-section {
    padding: 72px 0 80px;
    max-width: 1000px;
    margin: 0 auto;
  }
}
.offer-section__top {
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .offer-section__top {
    margin-bottom: 32px;
  }
}
.offer-section__subtitle {
  font-size: 13px;
  font-weight: 500;
  color: #ef233c;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.offer-section__title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  max-width: 680px;
  margin: 0 auto 32px;
}
@media (min-width: 768px) {
  .offer-section__title {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .offer-section__title {
    font-size: 28px;
  }
}

.offer-tabs-bar {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .offer-tabs-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    background-color: #f5f6f8;
    padding: 12px 0;
    transition: top 0.4s ease-in-out;
  }
}
@media (min-width: 1024px) {
  .offer-tabs-bar {
    margin-bottom: 40px;
  }
}

.offer-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.offer-tab-btn {
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #5c626d;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.offer-tab-btn:hover {
  border-color: rgb(200.1739130435, 204.3913043478, 212.8260869565);
  color: #111827;
}
.offer-tab-btn.is-active {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.offer-section__panels {
  position: relative;
}

.offer-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.offer-panel.is-active {
  display: flex;
}
.offer-panel.is-visible {
  opacity: 1;
}
@media (min-width: 1024px) {
  .offer-panel {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
}
.offer-panel__content {
  order: 2;
}
@media (min-width: 1024px) {
  .offer-panel__content {
    order: 1;
    flex: 1;
  }
}
.offer-panel__image {
  order: 1;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .offer-panel__image {
    order: 2;
    width: 46%;
    max-width: 520px;
  }
}
.offer-panel__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
.offer-panel__heading {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .offer-panel__heading {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .offer-panel__heading {
    font-size: 24px;
    text-align: left;
  }
}
.offer-panel__desc {
  font-size: 14px;
  color: #5c626d;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: center;
}
.offer-panel__desc:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .offer-panel__desc {
    text-align: left;
    font-size: 15px;
  }
}

.categories-links-section {
  margin-top: 20px;
  padding: 0 0 48px;
}
@media (min-width: 768px) {
  .categories-links-section {
    padding-bottom: 56px;
  }
}
@media (min-width: 1024px) {
  .categories-links-section {
    padding-bottom: 64px;
  }
}
.categories-links-section__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .categories-links-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .categories-links-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cat-link-card {
  display: flex;
  align-items: stretch;
  background-color: #f5f6f8;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 160px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}
.cat-link-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 20px 24px 24px;
  gap: 10px;
}
.cat-link-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
}
@media (min-width: 1024px) {
  .cat-link-card__title {
    font-size: 18px;
  }
}
.cat-link-card__btn {
  display: inline-block;
  background-color: #ef233c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  transition: background-color 0.2s ease;
}
.cat-link-card:hover .cat-link-card__btn {
  background-color: rgb(226.8983050847, 16.5016949153, 42.2855932203);
}
.cat-link-card__img-wrap {
  width: 42%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .cat-link-card__img-wrap {
    width: 44%;
  }
}
.cat-link-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  mask-image: linear-gradient(to right, transparent 0%, black 18%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%);
  transition: transform 0.4s ease;
}
.cat-link-card:hover .cat-link-card__img {
  transform: scale(1.04);
}

.contact-section {
  padding: 0 0 20px;
}

.contact-banner {
  position: relative;
  background-color: #ef233c;
  border-radius: 20px;
  overflow: hidden;
  color: #ffffff;
  background-image: url("https://stryjek.piotrrysz.pl/wp-content/uploads/2026/03/kontakt-mobile.jpg");
  background-size: cover;
  background-position: center top;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-banner {
    background-image: url("https://stryjek.piotrrysz.pl/wp-content/uploads/2026/03/kontakt-desktop-scaled.jpg");
    background-position: center;
    flex-direction: row;
    align-items: center;
    text-align: left;
    min-height: 160px;
    border-radius: 16px;
  }
}
.contact-banner__content {
  padding: 60% 24px 8px;
  z-index: 1;
}
@media (min-width: 768px) {
  .contact-banner__content {
    padding: 24px 0 24px 40px;
    flex: 0 0 auto;
    max-width: 340px;
  }
}
.contact-banner__title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .contact-banner__title {
    font-size: 24px;
  }
}
.contact-banner__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.contact-banner__cta {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 24px 28px;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-banner__cta {
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 24px 40px;
    margin-left: auto;
    width: auto;
  }
}
.contact-banner__phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
@media (min-width: 768px) {
  .contact-banner__phone-wrap {
    align-items: flex-start;
  }
}
.contact-banner__phone-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.contact-banner__phone {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.contact-banner__phone:hover {
  opacity: 0.85;
}
.contact-banner__chat-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #ef233c;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.contact-banner__chat-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .contact-banner__chat-btn {
    width: auto;
    padding: 12px 20px;
  }
}

.blog-section {
  padding: 48px 0 56px;
}
@media (min-width: 768px) {
  .blog-section {
    padding: 56px 0 64px;
  }
}
@media (min-width: 1024px) {
  .blog-section {
    padding: 64px 0 72px;
  }
}
.blog-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .blog-section__header {
    margin-bottom: 32px;
  }
}
.blog-section__title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}
@media (min-width: 768px) {
  .blog-section__title {
    font-size: 24px;
  }
}
.blog-section__arrows {
  display: flex;
  gap: 8px;
}
.blog-section__arrows .blog-slider-prev,
.blog-section__arrows .blog-slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.blog-section__arrows .blog-slider-prev img,
.blog-section__arrows .blog-slider-next img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.blog-section__arrows .blog-slider-prev:hover:not(.is-disabled),
.blog-section__arrows .blog-slider-next:hover:not(.is-disabled) {
  background: #f5f6f8;
  border-color: rgb(200.1739130435, 204.3913043478, 212.8260869565);
}
.blog-section__arrows .blog-slider-prev[disabled], .blog-section__arrows .blog-slider-prev.is-disabled,
.blog-section__arrows .blog-slider-next[disabled],
.blog-section__arrows .blog-slider-next.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.blog-section__arrows .blog-slider-prev img {
  transform: rotate(90deg);
}
.blog-section__arrows .blog-slider-next img {
  transform: rotate(-90deg);
}
.blog-section__cta {
  text-align: center;
  margin-top: 36px;
}
.blog-section__all-btn {
  display: inline-block;
  background-color: #ef233c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.blog-section__all-btn:hover {
  background-color: rgb(226.8983050847, 16.5016949153, 42.2855932203);
}

.blog-slider .slick-track {
  margin-left: 0 !important;
  display: flex !important;
  justify-content: flex-start !important;
}

.blog-slide {
  padding: 0 8px;
}
.blog-slide:hover .blog-slide__img {
  transform: scale(1.04);
}
.blog-slide__inner {
  display: block;
  text-decoration: none;
  color: #111827;
  border-radius: 12px;
  overflow: hidden;
}
.blog-slide__img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 10px;
}
.blog-slide__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-slide__inner:hover .blog-slide__img {
  transform: scale(1.04);
}
.blog-slide__body {
  padding: 14px 4px 8px;
}
.blog-slide__date {
  font-size: 13px;
  color: #5c626d;
  display: block;
  margin-bottom: 8px;
}
.blog-slide__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-slide__excerpt {
  font-size: 13px;
  color: #5c626d;
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.blog-slide__read-more {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #ef233c;
  transition: color 0.2s ease;
}
.blog-slide__inner:hover .blog-slide__read-more {
  color: rgb(217.3898305085, 15.8101694915, 40.513559322);
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background-color: #ffffff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}
.cart-sidebar.is-open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .cart-sidebar {
    width: 400px;
  }
}
.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
  border-bottom: 1px solid #e5e7eb;
}
.cart-sidebar__title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.cart-sidebar__close {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  padding: 0;
  transition: color 0.2s;
}
.cart-sidebar__close span {
  text-transform: lowercase;
}
.cart-sidebar__close span::first-letter {
  text-transform: uppercase;
}
.cart-sidebar__close .nav-bar__close-icon {
  position: relative;
  width: 16px;
  height: 16px;
  order: 1;
}
.cart-sidebar__close .nav-bar__close-icon span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #111827;
  transition: background-color 0.2s;
}
.cart-sidebar__close .nav-bar__close-icon span:first-child {
  transform: translateY(-50%) rotate(45deg);
}
.cart-sidebar__close .nav-bar__close-icon span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}
.cart-sidebar__close:hover {
  color: #ef233c;
}
.cart-sidebar__close:hover .nav-bar__close-icon span {
  background-color: #ef233c;
}
.cart-sidebar__dynamic-area {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.cart-sidebar__content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 15px;
}
.cart-sidebar__content::-webkit-scrollbar {
  width: 6px;
}
.cart-sidebar__content::-webkit-scrollbar-track {
  background: transparent;
}
.cart-sidebar__content::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 10px;
}
.cart-sidebar .cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}
.cart-sidebar .cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.cart-sidebar .cart-item__img-wrap {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 4px;
  overflow: hidden;
}
.cart-sidebar .cart-item__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-sidebar .cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-sidebar .cart-item__details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.cart-sidebar .cart-item__name {
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .cart-sidebar .cart-item__name {
    font-size: 15px;
  }
}
.cart-sidebar .cart-item__remove {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 0.2s;
}
.cart-sidebar .cart-item__remove:hover {
  opacity: 1;
}
.cart-sidebar .cart-item__remove:hover .cart-item__remove-icon span {
  background-color: #ef233c;
}
.cart-sidebar .cart-item__remove-icon {
  position: relative;
  width: 14px;
  height: 14px;
}
.cart-sidebar .cart-item__remove-icon span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #111827;
  transition: background-color 0.2s;
}
.cart-sidebar .cart-item__remove-icon span:first-child {
  transform: translateY(-50%) rotate(45deg);
}
.cart-sidebar .cart-item__remove-icon span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}
.cart-sidebar .cart-item__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-sidebar .cart-item__price {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}
@media (min-width: 1024px) {
  .cart-sidebar .cart-item__price {
    font-size: 16px;
  }
}
.cart-sidebar .quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}
.cart-sidebar .quantity-control__btn {
  width: 20px;
  height: 20px;
  background: #f5f6f8;
  border: none;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
@media (min-width: 1024px) {
  .cart-sidebar .quantity-control__btn {
    width: 22px;
    height: 22px;
  }
}
.cart-sidebar .quantity-control__btn:hover {
  background: rgb(230, 232.5, 237.5);
}
.cart-sidebar .quantity-control__input {
  width: 30px;
  height: 20px;
  border: none;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: #111827;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
}
@media (min-width: 1024px) {
  .cart-sidebar .quantity-control__input {
    width: 32px;
    height: 22px;
    font-size: 11px;
  }
}
.cart-sidebar .quantity-control__input::-webkit-outer-spin-button, .cart-sidebar .quantity-control__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-sidebar__footer {
  padding: 15px 10px;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.03);
}
.cart-sidebar .cart-summary {
  margin-bottom: 24px;
}
.cart-sidebar .cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cart-sidebar .cart-summary__row--total {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}
.cart-sidebar .cart-summary__delivery-text {
  font-size: 13px;
  color: #111827;
  margin: 0 0 8px;
}
.cart-sidebar .cart-summary__delivery-text strong {
  color: #ef233c;
}
.cart-sidebar .cart-summary__progress-bar {
  width: 100%;
  height: 6px;
  background-color: #eee;
  border-radius: 3px;
  overflow: hidden;
}
.cart-sidebar .cart-summary__progress-fill {
  height: 100%;
  background-color: #ef233c;
  border-radius: 3px;
  transition: width 0.5s ease;
}
.cart-sidebar__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-sidebar__btn {
  width: 100%;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  letter-spacing: 0.02em;
}
.cart-sidebar__btn.btn--primary {
  background-color: #ef233c;
  color: #ffffff;
}
.cart-sidebar__btn.btn--primary:hover {
  background-color: rgb(231.6525423729, 16.8474576271, 43.1716101695);
}
.cart-sidebar__btn.btn--secondary {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111827;
}
.cart-sidebar__btn.btn--secondary:hover {
  background-color: #f5f6f8;
}

.account-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background-color: #ffffff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}
.account-sidebar.is-open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .account-sidebar {
    width: 340px;
  }
}
.account-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
  border-bottom: 1px solid #e5e7eb;
}
.account-sidebar__title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.account-sidebar__close {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  padding: 0;
  transition: color 0.2s;
}
.account-sidebar__close span {
  text-transform: lowercase;
}
.account-sidebar__close span::first-letter {
  text-transform: uppercase;
}
.account-sidebar__close .nav-bar__close-icon {
  position: relative;
  width: 16px;
  height: 16px;
  order: 1;
}
.account-sidebar__close .nav-bar__close-icon span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #111827;
  transition: background-color 0.2s;
}
.account-sidebar__close .nav-bar__close-icon span:first-child {
  transform: translateY(-50%) rotate(45deg);
}
.account-sidebar__close .nav-bar__close-icon span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}
.account-sidebar__close:hover {
  color: #ef233c;
}
.account-sidebar__close:hover .nav-bar__close-icon span {
  background-color: #ef233c;
}
.account-sidebar__content {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px;
}
.account-sidebar__content .sidebar-login-error {
  margin-top: 20px;
  font-size: 13px;
  color: #ef233c;
}
.account-sidebar__content::-webkit-scrollbar {
  width: 6px;
}
.account-sidebar__content::-webkit-scrollbar-track {
  background: transparent;
}
.account-sidebar__content::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 10px;
}
.account-sidebar__content form.login {
  display: block;
  margin-top: 24px;
}
.account-sidebar__content form.login .form-row {
  width: 100% !important;
  float: none !important;
  margin-bottom: 20px !important;
  padding: 0 !important;
}
.account-sidebar__content form.login .form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}
.account-sidebar__content form.login .form-row label .required {
  color: #ef233c;
  text-decoration: none;
  margin-left: 3px;
}
.account-sidebar__content form.login .form-row input.input-text {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  outline: none !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  transition: border-color 0.2s !important;
}
.account-sidebar__content form.login .form-row input.input-text:focus {
  border-color: #ef233c !important;
}
.account-sidebar__content form.login div.clear {
  display: none !important;
}
.account-sidebar__content form.login p.form-row:has(button[type=submit]),
.account-sidebar__content form.login p.form-row:has(.woocommerce-form-login__submit) {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  margin-bottom: 15px !important;
  margin-top: 5px !important;
}
.account-sidebar__content form.login p.form-row:has(button[type=submit]) .woocommerce-form-login__rememberme,
.account-sidebar__content form.login p.form-row:has(.woocommerce-form-login__submit) .woocommerce-form-login__rememberme {
  display: inline-flex !important;
  align-items: center !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  cursor: pointer !important;
  margin: 0 !important;
  color: #555 !important;
}
.account-sidebar__content form.login p.form-row:has(button[type=submit]) .woocommerce-form-login__rememberme input,
.account-sidebar__content form.login p.form-row:has(.woocommerce-form-login__submit) .woocommerce-form-login__rememberme input {
  margin-right: 8px !important;
  cursor: pointer !important;
}
.account-sidebar__content form.login p.form-row:has(button[type=submit]) button[type=submit],
.account-sidebar__content form.login p.form-row:has(.woocommerce-form-login__submit) button[type=submit] {
  width: 100% !important;
  background-color: #ef233c !important;
  color: #fff !important;
  padding: 10px !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background-color 0.2s !important;
}
.account-sidebar__content form.login p.form-row:has(button[type=submit]) button[type=submit]:hover,
.account-sidebar__content form.login p.form-row:has(.woocommerce-form-login__submit) button[type=submit]:hover {
  background-color: rgb(207.8813559322, 15.1186440678, 38.7415254237) !important;
}
.account-sidebar__content form.login p.lost_password {
  text-align: center !important;
  margin: 0 !important;
  padding-top: 10px !important;
}
.account-sidebar__content form.login p.lost_password a {
  color: #111827 !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}
.account-sidebar__content form.login p.lost_password a:hover {
  color: #ef233c !important;
  text-decoration: underline !important;
}

.account-register {
  margin-top: 40px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}
.account-register__icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  opacity: 0.15;
}
.account-register__icon-wrap img {
  width: 100%;
  height: 100%;
}
.account-register__text {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}
.account-register__link {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  border-bottom: 2px solid #ef233c;
  transition: color 0.2s;
}
.account-register__link:hover {
  color: #5c626d;
}

/* =========================================
   STYLOWANIE MODALI (DOSTAWA / PŁATNOŚCI)
   ========================================= */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.custom-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.custom-modal-overlay.is-open .custom-modal-box {
  transform: translateY(0);
}
.custom-modal-overlay .custom-modal-box {
  background: #fff;
  width: 95%;
  max-width: 550px;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-height: 90vh;
  overflow-y: auto;
}
.custom-modal-overlay .custom-modal-box::-webkit-scrollbar {
  width: 6px;
}
.custom-modal-overlay .custom-modal-box::-webkit-scrollbar-track {
  background: transparent;
}
.custom-modal-overlay .custom-modal-box::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .custom-modal-overlay .custom-modal-box {
    padding: 30px;
    width: 90%;
  }
}
.custom-modal-overlay .modal-close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 5px;
  display: flex;
  transition: color 0.2s ease;
}
.custom-modal-overlay .modal-close-icon:hover {
  color: #ef233c;
}
.custom-modal-overlay .modal-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-right: 30px;
}
.custom-modal-overlay .modal-header .modal-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(220, 38, 38, 0.05);
  color: #ef233c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.custom-modal-overlay .modal-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #111827;
}
.custom-modal-overlay .modal-header p {
  font-size: 13px;
  color: #5c626d;
  margin: 0;
}
.custom-modal-overlay .modal-body .modal-body-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 15px;
}
.custom-modal-overlay .modal-body .modal-body-top h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #111827;
}
.custom-modal-overlay .modal-body .modal-body-top .modal-link {
  font-size: 13px;
  color: #5c626d;
  text-decoration: underline;
  transition: color 0.2s;
}
.custom-modal-overlay .modal-body .modal-body-top .modal-link:hover {
  color: #ef233c;
}
.custom-modal-overlay .modal-body .modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-modal-overlay .modal-body .modal-list li {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 10px;
  background-color: #fff;
}
.custom-modal-overlay .modal-body .modal-list li:last-child {
  margin-bottom: 0;
}
.custom-modal-overlay .modal-body .modal-list li .method-logo {
  width: 75px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  gap: 6px;
}
.custom-modal-overlay .modal-body .modal-list li .method-logo.multi-logo {
  width: 85px;
  justify-content: center;
}
.custom-modal-overlay .modal-body .modal-list li .method-logo.multi-logo img {
  width: 38px;
  height: auto;
}
.custom-modal-overlay .modal-body .modal-list li .method-logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.custom-modal-overlay .modal-body .modal-list li .method-logo svg {
  max-height: 28px;
  width: auto;
  margin: 0 auto;
}
.custom-modal-overlay .modal-body .modal-list li .method-logo.pickup-logo {
  color: #ef233c;
}
.custom-modal-overlay .modal-body .modal-list li .method-logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.custom-modal-overlay .modal-body .modal-list li .method-name {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}
.custom-modal-overlay .modal-body .modal-list li .method-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
}
.custom-modal-overlay .modal-body .modal-list li .method-info .method-name {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  line-height: 1.2;
}
.custom-modal-overlay .modal-body .modal-list li .method-info .method-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.2;
}
.custom-modal-overlay .modal-body .security-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  padding: 12px 16px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}
.custom-modal-overlay .modal-body .security-banner span {
  font-size: 12px;
  line-height: 1.4;
  color: #475569;
}
.custom-modal-overlay .modal-body .security-banner svg {
  color: #ef233c;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.custom-modal-overlay .modal-footer {
  margin-top: 30px;
  text-align: center;
}
.custom-modal-overlay .modal-footer .modal-close-btn {
  background-color: #fff;
  border: 1px solid #111827;
  color: #111827;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.custom-modal-overlay .modal-footer .modal-close-btn:hover {
  background-color: #111827;
  color: #fff;
}

/* ==========================================================================
   GŁÓWNY UKŁAD KATALOGU (Shop Catalog)
   ========================================================================== */
.shop-catalog {
  padding: 20px 0 48px;
  background-color: #f5f6f8;
}
@media (min-width: 768px) {
  .shop-catalog {
    padding: 30px 0 56px;
  }
}
@media (min-width: 1024px) {
  .shop-catalog {
    padding: 40px 0 64px;
  }
}
.shop-catalog__header {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .shop-catalog__header {
    margin-bottom: 32px;
  }
}
.shop-catalog__breadcrumbs {
  margin-bottom: 16px;
}
.shop-catalog__title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
@media (min-width: 768px) {
  .shop-catalog__title {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .shop-catalog__title {
    font-size: 26px;
  }
}
.shop-catalog__layout {
  display: block;
}
@media (min-width: 1024px) {
  .shop-catalog__layout {
    display: flex;
    align-items: flex-start;
    gap: 32px;
  }
}
.shop-catalog__sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .shop-catalog__sidebar {
    display: block;
    width: 300px;
    flex-shrink: 0;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
  }
}
.shop-catalog__content {
  width: 100%;
}
@media (min-width: 1024px) {
  .shop-catalog__content {
    flex-grow: 1;
    min-width: 0;
  }
}

/* ==========================================================================
   BREADCRUMBS (Okruszki)
   ========================================================================== */
.shop-breadcrumb {
  display: flex;
  align-items: center;
  /* ZMIANY DLA PRZEWIJANIA POZIOMEGO */
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap; /* Chroni ostatni element (zwykły tekst) przed łamaniem wideo */
}
.shop-breadcrumb::-webkit-scrollbar {
  display: none;
}
.shop-breadcrumb {
  font-size: 11px;
  font-weight: 500;
  color: #ef233c;
}
.shop-breadcrumb a {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Zapobiega ściskaniu */
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}
.shop-breadcrumb a:hover {
  color: #ef233c;
}
.shop-breadcrumb .breadcrumb-home-icon {
  width: 13px;
  height: 13px;
  margin-bottom: 2px;
  flex-shrink: 0; /* Zapobiega ściskaniu ikony */
}
.shop-breadcrumb .breadcrumb-separator {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Zapobiega ściskaniu separatora */
  margin: 0 8px;
  color: #111827;
}
.shop-breadcrumb .breadcrumb-separator svg {
  opacity: 0.4;
  display: block; /* Zapobiega skakaniu w osi Y */
}
@media (min-width: 1024px) {
  .shop-breadcrumb {
    font-size: 13px;
  }
  .shop-breadcrumb .breadcrumb-home-icon {
    width: 15px;
    height: 15px;
  }
}

/* ==========================================================================
   SHOP TOPBAR (Narzędzia)
   ========================================================================== */
.shop-topbar {
  margin-bottom: 24px;
}
.shop-topbar__mobile {
  display: flex;
  gap: 8px;
}
@media (min-width: 1024px) {
  .shop-topbar__mobile {
    display: none;
  }
}
.shop-topbar__mobile .shop-topbar__view-btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c626d;
  cursor: pointer;
  transition: all 0.2s;
}
@media (min-width: 575px) {
  .shop-topbar__mobile .shop-topbar__view-btn {
    display: none;
  }
}
.shop-topbar__mobile .shop-topbar__view-btn:hover {
  color: #111827;
  border-color: #111827;
}
.shop-topbar__mobile .shop-topbar__view-btn.is-active {
  color: #5c626d;
  border-color: #e5e7eb;
}
.shop-topbar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
}
.shop-topbar__btn:hover {
  background-color: #f5f6f8;
}
.shop-topbar__desktop {
  display: none;
}
@media (min-width: 1024px) {
  .shop-topbar__desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.shop-topbar__left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.shop-topbar__view-toggle {
  display: flex;
  gap: 8px;
}
.shop-topbar__view-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #5c626d;
  cursor: pointer;
  transition: all 0.2s ease;
}
.shop-topbar__view-btn:hover {
  color: #111827;
}
.shop-topbar__view-btn.is-active {
  border-color: #111827;
  color: #111827;
}
.shop-topbar__sort-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shop-topbar__sort-label {
  font-size: 13px;
  font-weight: 500;
  color: #5c626d;
}
.shop-topbar__right {
  display: flex;
  align-items: center;
}
.shop-topbar__pagination {
  display: none;
}
@media (min-width: 1200px) {
  .shop-topbar__pagination {
    display: block;
    border-left: 1px solid #e5e7eb;
    margin-left: 24px;
    padding-left: 24px;
  }
}

/* Custom Dropdown Sortowania */
.shop-sort-custom {
  position: relative;
  width: 200px;
}
.shop-sort-custom__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 44px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
}
.shop-sort-custom__arrow {
  color: #5c626d;
  transition: transform 0.2s ease;
}
.shop-sort-custom.is-open .shop-sort-custom__arrow {
  transform: rotate(180deg);
}
.shop-sort-custom__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 100%;
  min-width: 200px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
  padding: 8px 0;
}
.shop-sort-custom.is-open .shop-sort-custom__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.shop-sort-custom__option {
  width: 100%;
  text-align: left;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  background: transparent;
  border: none;
  cursor: pointer;
}
.shop-sort-custom__option:hover, .shop-sort-custom__option.is-active {
  background-color: #f5f6f8;
  color: #ef233c;
}

/* ==========================================================================
   PAGINACJA
   ========================================================================== */
.woocommerce-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  border: none;
}
.woocommerce-pagination ul.page-numbers .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  background: #f5f6f8;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  transition: all 0.2s;
}
.woocommerce-pagination ul.page-numbers .page-numbers:hover, .woocommerce-pagination ul.page-numbers .page-numbers.current {
  background: #ffffff;
  border-color: #111827;
}
.woocommerce-pagination ul.page-numbers .page-numbers.current {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.woocommerce-pagination ul.page-numbers .page-numbers.prev, .woocommerce-pagination ul.page-numbers .page-numbers.next {
  border-radius: 50%;
  background: #ffffff;
  width: 40px;
  padding: 0;
}
.woocommerce-pagination ul.page-numbers .page-numbers.prev svg, .woocommerce-pagination ul.page-numbers .page-numbers.next svg {
  display: block;
}

.shop-catalog__pagination-bottom {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

/* ==========================================================================
   KARTA PRODUKTU
   ========================================================================== */
.shop-catalog__products .woocommerce-no-products-found .woocommerce-info {
  border-top-color: #ef233c;
}
.shop-catalog__products .woocommerce-no-products-found .woocommerce-info::before {
  color: #ef233c;
}

.shop-catalog__products ul.products {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 576px) {
  .shop-catalog__products ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .shop-catalog__products ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .js-products-container.is-mobile-2cols ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }
  .js-products-container.is-mobile-2cols ul.products .shop-card__title {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .js-products-container.is-mobile-2cols ul.products .shop-card__price-native .price .amount {
    font-size: 16px !important;
  }
  .js-products-container.is-mobile-2cols ul.products .shop-card__qty-wrap {
    display: none;
  }
  .js-products-container.is-mobile-2cols ul.products .shop-card__btn {
    width: 100%;
  }
}
/* ==========================================================================
   MOBILE DRAWERS (Sortowanie)
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2500;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.3s;
}
.mobile-drawer.is-open {
  visibility: visible;
  pointer-events: all;
}
.mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.mobile-drawer.is-open .mobile-drawer__overlay {
  opacity: 1;
}
.mobile-drawer__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  padding: 24px 20px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}
.mobile-drawer.is-open .mobile-drawer__content {
  transform: translateY(0);
}
.mobile-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.mobile-drawer__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}
.mobile-drawer__close {
  font-size: 32px;
  line-height: 1;
  background: none;
  border: none;
  color: #5c626d;
  cursor: pointer;
}
.mobile-drawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-drawer__option {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  background: none;
  border: none;
  border-bottom: 1px solid #f5f6f8;
  text-align: left;
}
.mobile-drawer__option.is-active {
  color: #ef233c;
  font-weight: 700;
}
.mobile-drawer__option:last-child {
  border-bottom: none;
}

/* =========================================
   MOBILNE FILTRY (FULLSCREEN DRAWER)
   ========================================= */
.mobile-filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  visibility: hidden;
  pointer-events: none;
}

.mobile-filter-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-filter-drawer__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-filter-drawer.is-open .mobile-filter-drawer__content {
  transform: translateX(0);
}

.mobile-filter-drawer__header {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 2;
  flex-shrink: 0;
}

.mobile-filter-drawer__back {
  background: none;
  border: none;
  padding: 0;
  margin-right: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #111;
}

.mobile-filter-drawer__title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.mobile-filter-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 0 100px 0; /* 100px padding na dole na telefonie dla przycisków */
  background: #fff;
}

@media (min-width: 1024px) {
  .mobile-filter-drawer {
    display: none !important;
  }
}
/* ==========================================================================
   WSPÓLNE STYLOWANIE FILTRÓW BEROCKET (Desktop Sidebar & Mobile Drawer)
   ========================================================================== */
/* 1. Kontener filtrów jako siatka Flexbox - pozwala łatwo ułożyć przyciski */
.shop-catalog__filters {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* 2. Ukrywamy powielony nagłówek wstrzyknięty przez WP */
.shop-catalog__filters .widget-filtrow {
  display: none;
  width: 100%;
}
@media (min-width: 1024px) {
  .shop-catalog__filters .widget-filtrow {
    display: block;
  }
  .shop-catalog__filters .widget-filtrow h2 {
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 1px solid #d8dce2;
  }
}

/* 3. Domyślnie każdy widżet (Cena, Kategorie) zajmuje pełną szerokość */
.berocket_single_filter_widget {
  width: 100%;
  box-sizing: border-box;
}
.berocket_single_filter_widget:last-of-type {
  margin-bottom: 20px;
}

/* Tytuły nad filtrami */
.bapf_head h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0 0 16px 0;
  padding: 0;
  border: none;
}

/* =========================================
   UKŁAD PRZYCISKÓW WSPÓLNY (Desktop 35% / 65%)
   ========================================= */
/* Przycisk Wyczyść (przedostatni element) */
.shop-catalog__filters > .berocket_single_filter_widget:nth-last-child(2) {
  width: 35%;
  margin-bottom: 0;
  padding-right: 10px; /* Odstęp między przyciskami */
}

/* Przycisk Zatwierdź (ostatni element) */
.shop-catalog__filters > .berocket_single_filter_widget:last-child {
  width: 65%;
  margin-bottom: 0;
}

/* Reset marginesów w kontenerach przycisków */
.shop-catalog__filters > .berocket_single_filter_widget:nth-last-child(-n+2) .bapf_sfilter,
.shop-catalog__filters > .berocket_single_filter_widget:nth-last-child(-n+2) .bapf_body {
  margin: 0;
  padding: 0;
}

/* =========================================
   STYLOWANIE PRZYCISKÓW WIZUALNE
   ========================================= */
.bapf_button.bapf_reset {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  background: transparent;
  color: #9ca3af;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}

.bapf_button.bapf_reset:hover {
  color: #4b5563;
}

.bapf_button.bapf_update {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  background-color: #ef233c; /* Używamy Twojej zmiennej SCSS! */
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.bapf_button.bapf_update:hover {
  background-color: rgb(207.8813559322, 15.1186440678, 38.7415254237); /* Prawidłowe przyciemnienie w SCSS */
}

/* =========================================
   WYJĄTEK TYLKO DLA MOBILE (Zakotwiczenie przycisków na dole ekranu)
   ========================================= */
.mobile-filter-drawer__body .berocket_single_filter_widget {
  padding: 0 20px; /* W mobilnym dodajemy wcięcie boczne do filtrów */
}

/* Na telefonie te przyciski zostają wyrwane z Flexboxa i przybite do dołu za pomocą position: absolute */
.mobile-filter-drawer__body .shop-catalog__filters > .berocket_single_filter_widget:nth-last-child(2) {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  z-index: 20;
}

.mobile-filter-drawer__body .shop-catalog__filters > .berocket_single_filter_widget:last-child {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  z-index: 20;
}

/* =========================================
   STYLOWANIE CHECKBOXÓW (Wspólne)
   ========================================= */
.bapf_body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bapf_body ul li {
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* KLUCZOWE: Pozwala zagnieżdżonej liście spaść do nowej linii */
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Ikona rozwijania podkategorii (+/-) */
.bapf_body ul li i.fa {
  margin-left: auto; /* Wypycha ikonę do samej prawej krawędzi */
  cursor: pointer;
  color: #9ca3af;
  padding: 4px 8px; /* Powiększa obszar kliknięcia (lepsze UX na mobile) */
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.bapf_body ul li i.fa:hover {
  color: #ef233c; /* Używamy Twojej zmiennej! */
}

/* Zagnieżdżona lista podkategorii */
.bapf_body ul li ul {
  width: 100%; /* Wymusza 100% szerokości, zrzucając listę pod główny checkbox */
  padding-left: 32px; /* Wcięcie: 20px (szerokość checkboxa) + 12px (odstęp) */
  margin-top: 12px; /* Odstęp od rodzica */
  /* Opcjonalnie: żeby podkategorie były minimalnie ciaśniej upakowane */
  gap: 10px;
}

/* Usunięcie marginesu dla ostatniej podkategorii, by nie robiła pustej przestrzeni */
.bapf_body ul li ul li:last-child {
  margin-bottom: 0;
}

.bapf_body input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid #d8dce2;
  border-radius: 6px;
  background-color: #fff;
  margin: 0 12px 0 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.bapf_body input[type=checkbox]:checked {
  background-color: #ef233c;
  border-color: #ef233c;
}

.bapf_body input[type=checkbox]:checked::after {
  content: "";
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  top: 3px;
}

.bapf_body label {
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
  line-height: 1.4;
  transition: color 0.2s;
}

.bapf_body li.checked label {
  color: #111;
  font-weight: 600;
}

/* =========================================
   STYLOWANIE SUWAKA CENY (BeRocket / Ion.RangeSlider)
   ========================================= */
.bapf_body .bapf_slidr_all {
  padding-top: 10px;
}
.bapf_body .bapf_slidr_all .irs--big .irs-line,
.bapf_body .bapf_slidr_all .irs--big .irs-bar,
.bapf_body .bapf_slidr_all .irs--big .irs-handle {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
.bapf_body .bapf_slidr_all .irs--big .irs-line {
  background-color: #e5e7eb !important;
  height: 6px !important;
  border-radius: 6px !important;
  top: 33px !important;
}
.bapf_body .bapf_slidr_all .irs--big .irs-bar {
  background-color: #ef233c !important;
  height: 6px !important;
  border-radius: 6px !important;
  top: 33px !important;
}
.bapf_body .bapf_slidr_all .irs--big .irs-handle {
  width: 24px !important;
  height: 24px !important;
  background-color: #fff !important;
  border: 2px solid #ef233c !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  top: 24px !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.bapf_body .bapf_slidr_all .irs--big .irs-handle:hover, .bapf_body .bapf_slidr_all .irs--big .irs-handle:active {
  transform: scale(1.15) !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
}
.bapf_body .bapf_slidr_all .irs--big .irs-handle i {
  display: none !important;
}
.bapf_body .bapf_slidr_all .irs--big .irs-from,
.bapf_body .bapf_slidr_all .irs--big .irs-to,
.bapf_body .bapf_slidr_all .irs--big .irs-single {
  background: transparent !important;
  color: #5c626d !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 0 !important;
  top: 0 !important;
  text-shadow: none !important;
  border-radius: 0 !important;
}
.bapf_body .bapf_slidr_all .irs--big .irs-from:before, .bapf_body .bapf_slidr_all .irs--big .irs-from:after,
.bapf_body .bapf_slidr_all .irs--big .irs-to:before,
.bapf_body .bapf_slidr_all .irs--big .irs-to:after,
.bapf_body .bapf_slidr_all .irs--big .irs-single:before,
.bapf_body .bapf_slidr_all .irs--big .irs-single:after {
  display: none !important;
}
.bapf_body .bapf_slidr_all .irs--big .irs-min,
.bapf_body .bapf_slidr_all .irs--big .irs-max,
.bapf_body .bapf_slidr_all .irs--big .irs-shadow {
  display: none !important;
}

/* =========================================
   ANIMACJA WŁASNEGO LOGO W LOADERZE BEROCKET
   ========================================= */
/* Namierzamy kontener loadera BeRocket i samo zdjęcie */
.shop-card {
  display: flex;
  height: 100%;
}
.shop-card a.added_to_cart.wc-forward {
  display: none !important;
}
.shop-card__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  transition: all 0.25s ease;
}
.shop-card__inner:hover {
  border-color: #111827;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.shop-card__badges {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.shop-card__badges .badge-label--promo {
  background: #ef233c;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}
.shop-card__img-wrap {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.shop-card__img-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.shop-card__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.shop-card__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.shop-card__details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.shop-card__brand {
  font-size: 11px;
  color: #5c626d;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}
.shop-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 16px 0;
}
.shop-card__title a {
  text-decoration: none;
  color: #111827;
}
.shop-card__title a:hover {
  color: #ef233c;
}
.shop-card__options {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.shop-card__variants {
  display: flex;
  gap: 6px;
}
.shop-card .variant-btn {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 500;
  color: #5c626d;
  cursor: pointer;
  transition: all 0.2s ease;
}
.shop-card .variant-btn:hover {
  border-color: #1aba1a;
  color: #1aba1a;
}
.shop-card .variant-btn.is-active {
  border-color: #1aba1a;
  color: #1aba1a;
  box-shadow: 0 0 0 1px #1aba1a;
}
.shop-card__variants-label {
  font-size: 10px;
  line-height: 1.2;
  color: #5c626d;
}
.shop-card__variants-label span {
  color: #111827;
  font-weight: bold;
}
.shop-card__price-native {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  width: 100%;
}
.shop-card__price-native .amount bdi {
  color: #1aba1a;
  font-size: 20px;
  font-weight: 700;
}
.shop-card__price-native .price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin: 0;
  width: 100%;
  color: #1aba1a;
}
.shop-card__price-native .screen-reader-text {
  display: none !important;
}
.shop-card__price-native del {
  margin-left: 8px;
  order: 3;
  color: #5c626d;
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
  opacity: 0.8;
}
.shop-card__price-native del .amount,
.shop-card__price-native del bdi,
.shop-card__price-native del span {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-decoration: inherit !important;
}
.shop-card__price-native ins {
  order: 1;
  text-decoration: none;
  background-color: transparent;
}
.shop-card__price-native ins .amount,
.shop-card__price-native ins bdi,
.shop-card__price-native ins span {
  color: #1aba1a;
  font-size: 20px;
  font-weight: 700;
}
.shop-card__price-native > .amount, .shop-card__price-native > bdi,
.shop-card__price-native .price > .amount,
.shop-card__price-native .price > bdi {
  order: 1;
  text-decoration: none;
  background-color: transparent;
  color: #1aba1a;
  font-size: 20px;
  font-weight: 700;
}
.shop-card__price-native .woocommerce-price-suffix,
.shop-card__price-native .price-suffix {
  order: 2;
  font-size: 13px;
  font-weight: 400;
  color: #5c626d;
  text-transform: lowercase;
  margin-left: 4px;
}
.shop-card__price-native .iworks-omnibus {
  order: 4;
  width: 100%;
  font-size: 11px;
  color: #5c626d;
  margin-top: 2px;
  font-weight: 400;
}
.shop-card__price-native .iworks-omnibus bdi,
.shop-card__price-native .iworks-omnibus .amount,
.shop-card__price-native .iworks-omnibus span {
  font-size: inherit !important;
  color: inherit !important;
  font-weight: inherit !important;
}
.shop-card .iworks-omnibus {
  order: 4;
  width: 100%;
  font-size: 11px;
  color: #5c626d;
  margin-top: 2px;
}
.shop-card .iworks-omnibus bdi {
  font-size: 11px;
  color: #5c626d;
  font-weight: normal;
}
.shop-card__omnibus {
  font-size: 11px;
  color: #5c626d;
  margin-top: 2px;
}
.shop-card__delivery--list {
  display: none;
  margin-top: 8px;
}
.shop-card__delivery--grid {
  margin-top: 8px;
}
.shop-card p.stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
}
.shop-card p.stock::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.shop-card p.stock.in-stock {
  background-color: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.shop-card p.stock.in-stock::before {
  background-color: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}
.shop-card p.stock.out-of-stock {
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.shop-card p.stock.out-of-stock::before {
  background-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}
.shop-card p.stock.low-stock {
  background-color: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.shop-card p.stock.low-stock::before {
  background-color: #f59e0b;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}
.shop-card p.stock .backorder-info-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  background-color: #5c626d;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  font-family: serif;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.shop-card p.stock .backorder-info-trigger:hover {
  transform: scale(1.05);
  background-color: #111827;
}
.shop-card .dynamic-backorder-notice {
  margin-top: 16px;
  background-color: #f5f6f8;
  color: #5c626d;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
  border-left: 3px solid #5c626d;
  width: 100%;
  box-sizing: border-box;
  animation: fadeInCard 0.3s ease;
}
.shop-card .dynamic-backorder-notice strong {
  color: #111827;
  font-weight: 600;
}
@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.shop-card__action-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
}
.shop-card__qty-wrap {
  flex: 0 0 110px;
  width: 110px;
}
.shop-card__qty-wrap .quantity-stepper {
  display: flex;
  height: 44px;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
.shop-card__qty-wrap .quantity-stepper__btn {
  flex: 0 0 35px;
  padding: 0;
  background: transparent;
  border: none;
  color: #111827;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-card__qty-wrap .quantity-stepper__btn:hover {
  background: #f1f3f5;
}
.shop-card__qty-wrap .quantity-stepper__btn:first-of-type {
  border-right: 1px solid #e5e7eb;
}
.shop-card__qty-wrap .quantity-stepper__btn:last-of-type {
  border-left: 1px solid #e5e7eb;
}
.shop-card__qty-wrap .quantity-stepper__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: #ffffff;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  padding: 0;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.shop-card__qty-wrap .quantity-stepper__input::-webkit-outer-spin-button, .shop-card__qty-wrap .quantity-stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.shop-card__qty-wrap .quantity-stepper__input:focus {
  outline: none;
}
.shop-card__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f6f8;
  color: #111827;
  height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.shop-card__btn:hover {
  background-color: #ef233c;
  color: #ffffff;
}

/* ==========================================================================
   6. WIDOK LISTY (is-list-view) - TYLKO DLA DESKTOPU (> 1024px)
   ========================================================================== */
@media (min-width: 1024px) {
  .js-products-container.is-list-view ul.products {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .js-products-container.is-list-view .shop-card__inner {
    flex-direction: row;
    align-items: stretch;
    padding: 0;
  }
  .js-products-container.is-list-view .shop-card__img-wrap {
    width: 240px;
    padding: 24px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .js-products-container.is-list-view .shop-card__info {
    flex-direction: row;
    flex-grow: 1;
    padding: 24px 32px 24px 0;
    align-items: center;
  }
  .js-products-container.is-list-view .shop-card__details {
    flex-grow: 1;
    padding-right: 32px;
  }
  .js-products-container.is-list-view .shop-card__actions {
    flex-shrink: 0;
    padding-left: 32px;
    border-left: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .js-products-container.is-list-view .shop-card__delivery--grid {
    display: none;
    font-weight: 500;
    color: #111827;
    font-size: 11px;
    margin-top: 8px;
  }
  .js-products-container.is-list-view .shop-card__delivery--list {
    display: block;
    font-weight: 500;
    color: #111827;
    font-size: 11px;
    margin-top: 8px;
  }
  .js-products-container.is-list-view .shop-card__title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .js-products-container.is-list-view .shop-card__action-row {
    margin-top: 20px;
  }
}
.blog-subpage-main {
  position: relative;
}
.blog-subpage-main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}
.blog-subpage-main .container .blog-cards-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}
.blog-subpage-main .container .blog-cards-grid .blog-card {
  animation: fadeInUp 0.6s ease-out forwards;
}
.blog-subpage-main .container .blog-cards-grid .blog-card:hover .blog-card__img {
  transform: scale(1.04);
}
.blog-subpage-main .container .blog-cards-grid .blog-card__img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 10px;
}
.blog-subpage-main .container .blog-cards-grid .blog-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-subpage-main .container .blog-cards-grid .blog-card__body {
  padding: 14px 4px 8px;
}
.blog-subpage-main .container .blog-cards-grid .blog-card__date {
  font-size: 13px;
  color: #5c626d;
  display: block;
  margin-bottom: 8px;
}
.blog-subpage-main .container .blog-cards-grid .blog-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-subpage-main .container .blog-cards-grid .blog-card__excerpt {
  font-size: 13px;
  color: #5c626d;
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.blog-subpage-main .container .blog-cards-grid .blog-card__btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #ef233c;
}
.blog-subpage-main .container .pagination-container {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.blog-subpage-main .container .pagination-container .screen-reader-text {
  display: none;
}
.blog-subpage-main .container .pagination-container nav.pagination {
  position: static;
  transform: none;
  background: transparent;
}
.blog-subpage-main .container .pagination-container .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: transparent;
}
.blog-subpage-main .container .pagination-container .nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}
.blog-subpage-main .container .pagination-container .nav-links .page-numbers:hover:not(.dots):not(.current) {
  border-color: #ef233c;
  color: #ef233c;
}
.blog-subpage-main .container .pagination-container .nav-links .page-numbers.current {
  background-color: #ef233c;
  color: #fff;
  border-color: #ef233c;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.blog-subpage-main .container .pagination-container .nav-links .page-numbers.dots {
  border: none;
  background: transparent;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .blog-subpage-main .container .blog-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .blog-subpage-main .container {
    padding: 60px 20px;
  }
  .blog-subpage-main .container .blog-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
}
.post-container {
  padding: 30px 20px;
}
.post-container .content .category-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.post-container .content .category-container .category {
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #ef233c;
  padding: 2px 10px;
  border-radius: 8px;
  color: #ef233c;
  font-size: 11px;
  letter-spacing: 1.4px;
  transition: color 0.3s, background-color 0.3s;
}
.post-container .content .category-container .category:hover {
  color: #fff;
  background-color: #ef233c;
}
.post-container .content .wp-block-heading {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 23px;
  text-align: left;
}
.post-container .content h1 {
  font-size: 26px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.post-container .content h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 26px;
}
.post-container .content h3.wp-block-heading {
  font-size: 20px;
}
.post-container .content h4.wp-block-heading {
  font-size: 18px;
}
.post-container .content .wp-block-list {
  margin-left: 20px;
}
.post-container .content .wp-block-list li {
  list-style: disc;
  font-size: 14px;
  margin-bottom: 10px;
}
.post-container .content .wp-block-list li::marker {
  color: #ef233c;
}
.post-container .content .wp-block-list li:last-of-type {
  margin-bottom: 0;
}
.post-container .content table thead {
  background-color: #ef233c;
  color: #fff;
  border: 1px solid #000;
}
.post-container .content table thead tr th {
  padding: 15px 8px;
}
.post-container .content table tbody tr td {
  font-size: 14px;
}
.post-container .content .wp-block-image {
  margin-top: 30px;
  border-radius: 10px !important;
}
.post-container .content .wp-block-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  max-height: 500px;
  border-radius: 10px !important;
}
.post-container .content p {
  margin: 10px 0 20px;
  font-size: 14px;
}
.post-container .content p a {
  text-decoration: none;
}
.post-container .content p a:hover {
  color: #ef233c;
}
.post-container .content .post-navigation {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.post-container .content .post-navigation .nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-container .content .post-navigation .nav-card {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.post-container .content .post-navigation .nav-card:hover {
  background: #fff;
  border-color: #ef233c;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.post-container .content .post-navigation .nav-card:hover .icon {
  background: #ef233c;
  color: #fff;
}
.post-container .content .post-navigation .nav-card .icon {
  width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #666;
  flex-shrink: 0;
}
.post-container .content .post-navigation .nav-card .icon svg {
  width: 16px;
  height: auto;
}
.post-container .content .post-navigation .nav-card .text {
  display: flex;
  flex-direction: column;
}
.post-container .content .post-navigation .nav-card .text span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 4px;
}
.post-container .content .post-navigation .nav-card .text p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}
.post-container .content .post-navigation .nav-card.prev .text {
  margin-left: 15px;
  text-align: left;
}
.post-container .content .post-navigation .nav-card.next {
  justify-content: flex-end;
}
.post-container .content .post-navigation .nav-card.next .text {
  margin-right: 15px;
  text-align: right;
}
.post-container .content .post-navigation .nav-placeholder {
  display: none;
  flex: 1;
}
.post-container .sidebar {
  display: none;
}

@media (min-width: 768px) {
  .post-container {
    display: flex;
    flex-direction: row;
    gap: 35px;
  }
  .post-container .content {
    width: 75%;
  }
  .post-container .content h1,
  .post-container .content h2 {
    font-size: 30px;
  }
  .post-container .content .post-navigation .nav-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
  .post-container .content .post-navigation .nav-placeholder {
    display: block;
  }
  .post-container .sidebar {
    position: sticky;
    top: 10px;
    display: block;
    padding: 25px 15px;
    border-radius: 16px;
    width: 25%;
    align-self: flex-start;
    background-color: #ffffff;
  }
  .post-container .sidebar h3 {
    font-size: 17px;
    text-transform: uppercase;
  }
  .post-container .sidebar .category .container {
    margin: 10px 0 20px;
    display: flex;
    flex-direction: column;
  }
  .post-container .sidebar .category .container a {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 13px;
    color: #333;
    transition: color 0.3s;
  }
  .post-container .sidebar .category .container a:hover {
    color: #ef233c;
  }
  .post-container .sidebar .latest-posts .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
  }
  .post-container .sidebar .latest-posts .container a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
  }
  .post-container .sidebar .latest-posts .container a:hover {
    color: #ef233c;
  }
  .post-container .sidebar .latest-posts .container a .card {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  .post-container .sidebar .latest-posts .container a .card:hover .image img {
    transform: scale(1.05);
  }
  .post-container .sidebar .latest-posts .container a .card .image {
    border-radius: 10px;
    width: 30%;
    height: 60px;
    overflow: hidden;
  }
  .post-container .sidebar .latest-posts .container a .card .image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.3s;
  }
  .post-container .sidebar .latest-posts .container a .card .description {
    width: 70%;
  }
  .post-container .sidebar .latest-posts .container a .card .description p:first-of-type {
    font-size: 14px;
    margin-bottom: 7px;
  }
  .post-container .sidebar .latest-posts .container a .card .description p:last-of-type {
    color: #333;
    font-size: 12px;
  }
}
.subpage-header {
  padding: 20px 0;
  width: 100%;
  /* 1. TYTUŁ (Teraz jest w dobrym miejscu!) */
}
.subpage-header__title {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 22px; /* Dostosuj do swojego projektu */
  color: #111;
}
@media (min-width: 1024px) {
  .subpage-header__title {
    font-size: 30px;
  }
}
.subpage-header .container {
  /* 2. BREADCRUMBS */
}
.subpage-header .container .breadcrumbs {
  display: flex;
  align-items: center;
  /* ZMIANY DLA PRZEWIJANIA POZIOMEGO */
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap;
}
.subpage-header .container .breadcrumbs::-webkit-scrollbar {
  display: none;
}
.subpage-header .container .breadcrumbs {
  font-size: 11px;
  font-weight: 500;
  color: #ef233c;
}
.subpage-header .container .breadcrumbs__link {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Zapobiega ściskaniu */
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}
.subpage-header .container .breadcrumbs__link:hover {
  color: #ef233c;
}
.subpage-header .container .breadcrumbs__icon {
  width: 13px;
  height: 13px;
  margin-bottom: 2px;
  flex-shrink: 0; /* Zapobiega ściskaniu */
  transition: filter 0.2s ease; /* Płynne wejście inwersji */
}
.subpage-header .container .breadcrumbs__icon:hover {
  filter: invert(50%);
}
.subpage-header .container .breadcrumbs__separator {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Zapobiega ściskaniu */
  margin: 0 10px;
  color: #111827; /* Zgodnie z Twoim kodem */
}
.subpage-header .container .breadcrumbs__separator svg {
  opacity: 0.4;
  display: block; /* To naprawia "skakanie" strzałek w pionie */
}
.subpage-header .container .breadcrumbs__current {
  color: #ef233c;
  flex-shrink: 0; /* Zapobiega ściskaniu */
}
@media (min-width: 1024px) {
  .subpage-header .container .breadcrumbs {
    font-size: 13px;
    /* Bezpośrednie odwołanie do ikony na desktopie */
  }
  .subpage-header .container .breadcrumbs .breadcrumbs__icon {
    width: 16px;
    height: 16px;
  }
}

.normal-subpages-header {
  position: relative;
  background-image: url("https://stryjek.piotrrysz.pl/wp-content/uploads/2026/03/slider-mobile.jpg");
  background-position: center;
  background-size: cover;
  z-index: 3;
}
@media (min-width: 768px) {
  .normal-subpages-header {
    background-image: url("https://stryjek.piotrrysz.pl/wp-content/uploads/2026/03/slider-desktop-scaled.jpg");
  }
}
.normal-subpages-header .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: -5;
}
.normal-subpages-header .container {
  z-index: 20;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .normal-subpages-header .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .normal-subpages-header .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.normal-subpages-header .container .breadcrumbs {
  display: flex;
  align-items: center;
  /* ZMIANY DLA PRZEWIJANIA POZIOMEGO */
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap;
}
.normal-subpages-header .container .breadcrumbs::-webkit-scrollbar {
  display: none;
}
.normal-subpages-header .container .breadcrumbs {
  font-size: 11px;
  font-weight: 500;
  color: #ef233c;
}
.normal-subpages-header .container .breadcrumbs__link {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Zapobiega ściskaniu */
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}
.normal-subpages-header .container .breadcrumbs__link:hover {
  color: #ef233c;
}
.normal-subpages-header .container .breadcrumbs__icon {
  width: 13px;
  height: 13px;
  margin-bottom: 2px;
  flex-shrink: 0; /* Zapobiega ściskaniu */
  transition: filter 0.2s ease; /* Płynne wejście inwersji */
}
.normal-subpages-header .container .breadcrumbs__icon:hover {
  filter: invert(50%);
}
.normal-subpages-header .container .breadcrumbs__separator {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Zapobiega ściskaniu */
  margin: 0 10px;
  color: #000000; /* Zachowany Twój kolor */
}
.normal-subpages-header .container .breadcrumbs__separator svg {
  opacity: 0.4;
  display: block; /* To naprawia "skakanie" strzałek w pionie */
}
.normal-subpages-header .container .breadcrumbs__current {
  color: #ef233c;
  flex-shrink: 0; /* Zapobiega ściskaniu */
}
@media (min-width: 1024px) {
  .normal-subpages-header .container .breadcrumbs {
    font-size: 13px;
    /* Bezpośrednie odwołanie do ikony na desktopie */
  }
  .normal-subpages-header .container .breadcrumbs .breadcrumbs__icon {
    width: 16px;
    height: 16px;
  }
}
.normal-subpages-header .container .title {
  color: #000000;
  padding: 10px 0;
  font-size: 22px;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .normal-subpages-header .container .title {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .normal-subpages-header .container .title {
    font-size: 30px;
  }
}
.normal-subpages-header .container .description {
  width: 50%;
  color: #5c626d;
  font-size: 13px;
}
@media (min-width: 1024px) {
  .normal-subpages-header .container .description {
    font-size: 14px;
  }
}

.text-page-container {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 1024px) {
  .text-page-container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.text-page-container .text-page-content {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(17, 24, 39, 0.85);
}
@media (min-width: 1024px) {
  .text-page-container .text-page-content {
    font-size: 16px;
  }
}
.text-page-container .text-page-content p {
  margin-bottom: 8px;
}
.text-page-container .text-page-content p:last-child {
  margin-bottom: 0;
}
.text-page-container .text-page-content h2,
.text-page-container .text-page-content h3,
.text-page-container .text-page-content h4 {
  color: #111827;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.text-page-container .text-page-content h2 {
  font-size: 28px;
}
.text-page-container .text-page-content h3 {
  font-size: 22px;
}
.text-page-container .text-page-content h4 {
  font-size: 18px;
}
.text-page-container .text-page-content > *:first-child {
  margin-top: 0;
}
.text-page-container .text-page-content ul {
  list-style-type: disc;
}
.text-page-container .text-page-content ul li::marker {
  color: #ef233c;
}
.text-page-container .text-page-content ol {
  list-style-type: decimal;
}
.text-page-container .text-page-content ul,
.text-page-container .text-page-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.text-page-container .text-page-content ul li,
.text-page-container .text-page-content ol li {
  margin-bottom: 12px;
  position: relative;
}
.text-page-container .text-page-content a {
  color: #ef233c;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}
.text-page-container .text-page-content a:hover {
  color: rgb(128.4437086093, 113.3774834437, 169.1225165563);
}
.text-page-container .text-page-content strong,
.text-page-container .text-page-content b {
  font-weight: 600;
  color: #111827;
}
.text-page-container .text-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.text-page-container .text-page-content table th,
.text-page-container .text-page-content table td {
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}
.text-page-container .text-page-content table th {
  background-color: rgba(239, 35, 60, 0.05);
  font-weight: 600;
  color: #111827;
}

.shipping-subpage-main .container {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .shipping-subpage-main .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.shipping-subpage-main .container .title {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  margin: 8px 0;
}
@media (min-width: 1024px) {
  .shipping-subpage-main .container .title {
    font-size: 26px;
  }
}
.shipping-subpage-main .container .description {
  color: #5c626d;
  font-size: 13px;
}
@media (min-width: 1024px) {
  .shipping-subpage-main .container .description {
    font-size: 14px;
  }
}
.shipping-subpage-main .container .shipping-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.shipping-subpage-main .container .shipping-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .shipping-subpage-main .container .shipping-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .shipping-subpage-main .container .shipping-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
    margin-bottom: 50px;
  }
}
.shipping-subpage-main .container .shipping-grid .item {
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 16px;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.shipping-subpage-main .container .shipping-grid .item:hover {
  box-shadow: 0px 10px 10px -8px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}
.shipping-subpage-main .container .shipping-grid .item .shipping-logo,
.shipping-subpage-main .container .shipping-grid .item .shipping-logo-placeholder {
  order: -1;
  height: 35px;
  max-width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  .shipping-subpage-main .container .shipping-grid .item .shipping-logo,
  .shipping-subpage-main .container .shipping-grid .item .shipping-logo-placeholder {
    height: 40px;
  }
}
.shipping-subpage-main .container .shipping-grid .item .pickup-icon {
  color: #ef233c;
  width: auto;
  stroke-width: 1.5;
}
.shipping-subpage-main .container .shipping-grid .item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000000;
}
@media (min-width: 1024px) {
  .shipping-subpage-main .container .shipping-grid .item h3 {
    font-size: 18px;
  }
}
.shipping-subpage-main .container .shipping-grid .item .price {
  font-size: 20px;
  font-weight: 700;
  color: #ef233c;
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .shipping-subpage-main .container .shipping-grid .item .price {
    font-size: 22px;
  }
}
.shipping-subpage-main .container .shipping-grid .item p {
  font-size: 13px;
  color: #5c626d;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .shipping-subpage-main .container .shipping-grid .item p {
    font-size: 14px;
  }
}
.shipping-subpage-main .container .shipping-grid .item .note {
  margin-top: auto;
  padding-top: 20px;
  font-size: 12px;
  color: rgb(115.3432835821, 122.8656716418, 136.6567164179);
}
.shipping-subpage-main .container .promo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 24px;
  margin: 0 auto 50px auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  text-align: center;
}
@media (min-width: 1024px) {
  .shipping-subpage-main .container .promo-badge {
    flex-direction: row;
    padding: 14px 32px;
    margin-bottom: 70px;
  }
}
.shipping-subpage-main .container .promo-badge .promo-icon {
  width: 22px;
  height: 22px;
  color: #ef233c;
  flex-shrink: 0;
}
.shipping-subpage-main .container .promo-badge .promo-text {
  font-size: 13px;
  color: #000000;
}
@media (min-width: 1024px) {
  .shipping-subpage-main .container .promo-badge .promo-text {
    font-size: 14px;
  }
}
.shipping-subpage-main .container .promo-badge .promo-text strong {
  font-weight: 700;
}
.shipping-subpage-main .container .promo-badge .promo-text .dimmed {
  color: #5c626d;
  margin-left: 4px;
}
.shipping-subpage-main .container .faq-section {
  max-width: 800px;
  margin: 0 auto;
}
.shipping-subpage-main .container .faq-section .title {
  text-align: center;
  margin-bottom: 30px;
}
.shipping-subpage-main .container .faq-section .faq-item {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: background-color 0.2s;
}
.shipping-subpage-main .container .faq-section .faq-item summary {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  list-style: none;
  position: relative;
  outline: none;
}
.shipping-subpage-main .container .faq-section .faq-item summary::-webkit-details-marker {
  display: none;
}
.shipping-subpage-main .container .faq-section .faq-item summary:after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #ef233c;
  font-weight: 400;
}
.shipping-subpage-main .container .faq-section .faq-item[open] {
  background-color: #ffffff;
  border-color: #ef233c;
}
.shipping-subpage-main .container .faq-section .faq-item[open] summary:after {
  content: "−";
}
.shipping-subpage-main .container .faq-section .faq-item .faq-content {
  padding: 0 20px 20px 20px;
  font-size: 13px;
  color: #5c626d;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .shipping-subpage-main .container .faq-section .faq-item .faq-content {
    font-size: 14px;
  }
}
.shipping-subpage-main .container .faq-section .faq-item .faq-content p {
  margin: 0;
}

.error-404-main .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .error-404-main .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.error-404-main .container .error-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}
.error-404-main .container .error-header .error-code {
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  color: #ef233c;
  margin-bottom: 20px;
  opacity: 0.15;
}
@media (min-width: 1024px) {
  .error-404-main .container .error-header .error-code {
    font-size: 140px;
  }
}
.error-404-main .container .error-header .title {
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .error-404-main .container .error-header .title {
    font-size: 32px;
    margin-top: -80px;
  }
}
.error-404-main .container .error-header .description {
  color: #5c626d;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .error-404-main .container .error-header .description {
    font-size: 15px;
  }
}
.error-404-main .container .error-header .btn-return {
  display: inline-block;
  background-color: #ef233c;
  color: #ffffff;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.1s;
  position: relative;
  z-index: 2;
}
.error-404-main .container .error-header .btn-return:hover {
  background-color: rgb(207.8813559322, 15.1186440678, 38.7415254237);
}
.error-404-main .container .error-header .btn-return:active {
  transform: scale(0.98);
}
.error-404-main .container .error-suggestions .suggestions-title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .error-404-main .container .error-suggestions .suggestions-title {
    font-size: 20px;
  }
}
.error-404-main .container .error-suggestions .links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .error-404-main .container .error-suggestions .links-grid {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .error-404-main .container .error-suggestions .links-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}
.error-404-main .container .error-suggestions .links-grid .item {
  padding: 20px 10px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}
@media (min-width: 768px) {
  .error-404-main .container .error-suggestions .links-grid .item {
    padding: 30px 20px;
    border-radius: 16px;
  }
}
.error-404-main .container .error-suggestions .links-grid .item:hover {
  box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: #e5e7eb;
}
.error-404-main .container .error-suggestions .links-grid .item:hover .icon {
  transform: scale(1.1);
}
.error-404-main .container .error-suggestions .links-grid .item:hover .card-btn {
  background-color: #ef233c;
  color: #ffffff;
}
.error-404-main .container .error-suggestions .links-grid .item .icon {
  height: 30px;
  width: 30px;
  color: #ef233c;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
@media (min-width: 1024px) {
  .error-404-main .container .error-suggestions .links-grid .item .icon {
    height: 40px;
    width: 40px;
    margin-bottom: 20px;
  }
}
.error-404-main .container .error-suggestions .links-grid .item h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000000;
}
@media (min-width: 1024px) {
  .error-404-main .container .error-suggestions .links-grid .item h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }
}
.error-404-main .container .error-suggestions .links-grid .item p {
  font-size: 11px;
  color: #5c626d;
  margin: 0;
}
@media (min-width: 1024px) {
  .error-404-main .container .error-suggestions .links-grid .item p {
    font-size: 13px;
  }
}
.error-404-main .container .error-suggestions .links-grid .item .card-btn {
  margin-top: auto;
  padding: 6px 12px;
  border: 1px solid #ef233c;
  border-radius: 6px;
  color: #ef233c;
  font-size: 11px;
  font-weight: 600;
  background-color: transparent;
  transition: all 0.3s ease;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .error-404-main .container .error-suggestions .links-grid .item .card-btn {
    padding: 8px 20px;
    font-size: 12px;
    margin-top: 25px;
  }
}

/* =========================================
   MOJE KONTO - GŁÓWNY UKŁAD (LAYOUT)
   ========================================= */
.my-account-page {
  padding-top: 0;
  padding-bottom: 30px;
  border-bottom: 2px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .my-account-page {
    padding-bottom: 60px;
  }
}

.woocommerce:has(.woocommerce-MyAccount-navigation) {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .woocommerce:has(.woocommerce-MyAccount-navigation) {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .woocommerce:has(.woocommerce-MyAccount-navigation) {
    gap: 64px;
  }
}

.woocommerce-MyAccount-navigation {
  width: 100%;
}
@media (min-width: 768px) {
  .woocommerce-MyAccount-navigation {
    flex: 0 0 240px;
    max-width: 240px;
  }
}
@media (min-width: 1024px) {
  .woocommerce-MyAccount-navigation {
    flex: 0 0 280px;
    max-width: 280px;
  }
}

.woocommerce-MyAccount-content {
  width: 100%;
  flex: 1;
  min-width: 0;
}

/* =========================================
   MOJE KONTO - KAFELKI KOKPITU
   ========================================= */
.myaccount-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .myaccount-dashboard-grid {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .myaccount-dashboard-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.dashboard-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  text-decoration: none;
  color: #111827;
  transition: all 0.2s ease-in-out;
}
.dashboard-card__icon {
  color: #9ca3af;
  margin-bottom: 16px;
  transition: color 0.2s ease;
}
.dashboard-card__icon svg {
  display: block;
}
.dashboard-card__title {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.dashboard-card:hover {
  border-color: #ef233c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: #ef233c;
}
.dashboard-card:hover .dashboard-card__icon {
  color: #ef233c;
}

/* =========================================
   MOJE KONTO - NAWIGACJA (LEWE MENU)
   ========================================= */
.woocommerce-MyAccount-navigation {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 16px;
  border: 1px solid #e5e7eb;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-MyAccount-navigation li {
  margin-bottom: 4px;
}
.woocommerce-MyAccount-navigation li:last-child {
  margin-bottom: 0;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}
.woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  color: #111827;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.woocommerce-MyAccount-navigation li a:hover {
  background-color: #f9fafb;
  color: #ef233c;
}
.woocommerce-MyAccount-navigation li.is-active a {
  background-color: #f3f4f6;
  font-weight: 600;
  color: #111827;
}
.woocommerce-MyAccount-navigation li.is-active a:hover {
  color: #ef233c;
}

/* =========================================
   MOJE KONTO - TABELE (ZAMÓWIENIA, POBRANIA)
   ========================================= */
.woocommerce-MyAccount-content table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  text-align: left;
  margin-bottom: 24px;
}
.woocommerce-MyAccount-content table.shop_table thead th {
  background-color: #f9fafb;
  color: #111827;
  font-weight: 600;
  font-size: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}
.woocommerce-MyAccount-content table.shop_table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  color: #111827;
  font-size: 15px;
  vertical-align: middle;
}
.woocommerce-MyAccount-content table.shop_table tbody td.woocommerce-orders-table__cell-order-number a {
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}
.woocommerce-MyAccount-content table.shop_table tbody td.woocommerce-orders-table__cell-order-number a:hover {
  color: #ef233c;
}
.woocommerce-MyAccount-content table.shop_table tbody td.woocommerce-orders-table__cell-order-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}
.woocommerce-MyAccount-content table.shop_table tbody tr:last-child td {
  border-bottom: none;
}
.woocommerce-MyAccount-content table.shop_table .button {
  display: inline-block;
  background-color: #ef233c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
  border: 1px solid transparent;
  margin: 0 !important;
}
.woocommerce-MyAccount-content table.shop_table .button:hover {
  background-color: rgb(217.3898305085, 15.8101694915, 40.513559322);
  color: #ffffff;
}
.woocommerce-MyAccount-content table.shop_table .button.pay {
  background-color: #1aba1a !important;
  color: #fff !important;
}
.woocommerce-MyAccount-content table.shop_table .button.pay:hover {
  background-color: rgb(27.9948051948, 162.2051948052, 77.3974025974) !important;
}
.woocommerce-MyAccount-content table.shop_table .button.cancel {
  background-color: transparent !important;
  color: #5c626d !important;
  border: 1px solid #e5e7eb !important;
}
.woocommerce-MyAccount-content table.shop_table .button.cancel:hover {
  background-color: #f3f4f6 !important;
  color: #111827 !important;
  border-color: #5c626d !important;
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-content table.shop_table {
    border: none !important;
    display: block !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  .woocommerce-MyAccount-content table.shop_table thead {
    display: none !important;
  }
  .woocommerce-MyAccount-content table.shop_table tbody {
    display: block !important;
    width: 100% !important;
    background: transparent !important;
  }
  .woocommerce-MyAccount-content table.shop_table tbody tr {
    display: block !important;
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 0 !important;
    margin-bottom: 24px !important;
    width: 100% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    overflow: hidden !important;
  }
  .woocommerce-MyAccount-content table.shop_table tbody td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border: none !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    text-align: right !important;
    color: #111827 !important;
  }
  .woocommerce-MyAccount-content table.shop_table tbody td::before {
    content: attr(data-title) !important;
    display: block !important;
    font-weight: 600 !important;
    text-align: left !important;
    margin-right: auto !important;
    color: #5c626d !important;
    flex-shrink: 0 !important;
  }
  .woocommerce-MyAccount-content table.shop_table tbody td:last-child {
    border-bottom: none !important;
  }
  .woocommerce-MyAccount-content table.shop_table tbody td.woocommerce-orders-table__cell-order-number {
    display: block !important;
    text-align: left !important;
    padding: 16px 20px !important;
    background-color: #fdfdfd !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
  }
  .woocommerce-MyAccount-content table.shop_table tbody td.woocommerce-orders-table__cell-order-number::before {
    display: none !important;
  }
  .woocommerce-MyAccount-content table.shop_table tbody td.woocommerce-orders-table__cell-order-number a {
    font-weight: 800 !important;
    font-size: 16px !important;
    color: #111827 !important;
  }
  .woocommerce-MyAccount-content table.shop_table tbody td.woocommerce-orders-table__cell-order-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 20px !important;
  }
  .woocommerce-MyAccount-content table.shop_table tbody td.woocommerce-orders-table__cell-order-actions::before {
    display: block !important;
    width: 100% !important;
    margin-bottom: 4px !important;
    font-size: 14px !important;
    color: #111827 !important;
  }
  .woocommerce-MyAccount-content table.shop_table tbody td.woocommerce-orders-table__cell-order-actions .button {
    width: auto !important;
    flex: 1 1 auto !important;
    padding: 12px !important;
    font-size: 14px !important;
    margin: 0 !important;
    display: block !important;
    text-align: center !important;
  }
}
.woocommerce-MyAccount-content .woocommerce-Message,
.woocommerce-MyAccount-content .woocommerce-info {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.woocommerce-MyAccount-content .woocommerce-Message::before,
.woocommerce-MyAccount-content .woocommerce-info::before {
  display: none;
}
.woocommerce-MyAccount-content .woocommerce-Message .button,
.woocommerce-MyAccount-content .woocommerce-info .button {
  display: inline-block;
  background-color: #ef233c;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  border: none;
  transition: color 0.3s, background-color 0.3s;
}
.woocommerce-MyAccount-content .woocommerce-Message .button:hover,
.woocommerce-MyAccount-content .woocommerce-info .button:hover {
  color: #ffffff;
  background-color: rgb(207.8813559322, 15.1186440678, 38.7415254237);
}

/* =========================================
   MOJE KONTO - SZCZEGÓŁY ZAMÓWIENIA (VIEW ORDER)
   ========================================= */
.woocommerce-MyAccount-content .order-again {
  text-align: center;
}
.woocommerce-MyAccount-content .order-again a {
  background-color: #ef233c;
  border-radius: 8px;
  color: #ffffff;
  transition: background-color 0.3s, color 0.3s;
}
.woocommerce-MyAccount-content .order-again a:hover {
  background-color: rgb(207.8813559322, 15.1186440678, 38.7415254237);
  color: #ffffff;
}
.woocommerce-MyAccount-content p:has(mark.order-number) {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  margin-bottom: 32px;
  color: #111827;
}
.woocommerce-MyAccount-content p:has(mark.order-number) mark {
  background-color: transparent;
  font-weight: 700;
  color: #ef233c;
}
.woocommerce-MyAccount-content h2.woocommerce-order-details__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 40px;
  color: #111827;
}
.woocommerce-MyAccount-content .woocommerce-table--order-details {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  margin-bottom: 40px;
}
.woocommerce-MyAccount-content .woocommerce-table--order-details thead th {
  background-color: #f9fafb;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}
.woocommerce-MyAccount-content .woocommerce-table--order-details thead th:last-child {
  text-align: right;
}
.woocommerce-MyAccount-content .woocommerce-table--order-details tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
  color: #111827;
}
.woocommerce-MyAccount-content .woocommerce-table--order-details tbody td:last-child {
  text-align: right;
}
.woocommerce-MyAccount-content .woocommerce-table--order-details tbody td.woocommerce-table__product-name a {
  color: #111827;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.woocommerce-MyAccount-content .woocommerce-table--order-details tbody td.woocommerce-table__product-name a:hover {
  color: #ef233c;
}
.woocommerce-MyAccount-content .woocommerce-table--order-details tbody td.woocommerce-table__product-name .product-quantity {
  font-weight: 700;
  color: #5c626d;
  margin-left: 4px;
}
.woocommerce-MyAccount-content .woocommerce-table--order-details tfoot th,
.woocommerce-MyAccount-content .woocommerce-table--order-details tfoot td {
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  background-color: #fdfdfd;
}
.woocommerce-MyAccount-content .woocommerce-table--order-details tfoot th {
  font-weight: 600;
  text-align: left;
  color: #111827;
}
.woocommerce-MyAccount-content .woocommerce-table--order-details tfoot td {
  text-align: right;
  font-weight: 600;
  color: #111827;
}
.woocommerce-MyAccount-content .woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-MyAccount-content .woocommerce-table--order-details tfoot tr:last-child td {
  border-bottom: none;
}
.woocommerce-MyAccount-content .woocommerce-customer-details .col2-set::before,
.woocommerce-MyAccount-content .woocommerce-customer-details .col2-set::after,
.woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns::before,
.woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns::after {
  display: none !important;
}
.woocommerce-MyAccount-content .woocommerce-customer-details .col2-set,
.woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
}
@media (min-width: 768px) {
  .woocommerce-MyAccount-content .woocommerce-customer-details .col2-set,
  .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.woocommerce-MyAccount-content .woocommerce-customer-details .col-1,
.woocommerce-MyAccount-content .woocommerce-customer-details .col-2,
.woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-column {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
}
.woocommerce-MyAccount-content .woocommerce-customer-details .col-1 h2.woocommerce-column__title,
.woocommerce-MyAccount-content .woocommerce-customer-details .col-2 h2.woocommerce-column__title,
.woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-column h2.woocommerce-column__title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  color: #111827;
}
.woocommerce-MyAccount-content .woocommerce-customer-details address {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  font-style: normal;
  line-height: 1.6;
  color: #111827;
  margin-bottom: 0;
  flex-grow: 1;
}
.woocommerce-MyAccount-content .woocommerce-customer-details address p {
  margin-bottom: 0;
}

/* =========================================
   MOJE KONTO - ZAKŁADKA ADRESY
   ========================================= */
.woocommerce-MyAccount-content > p:first-of-type {
  color: #5c626d;
  margin-bottom: 24px;
  font-size: 15px;
}
.woocommerce-MyAccount-content .woocommerce-Addresses.addresses::before, .woocommerce-MyAccount-content .woocommerce-Addresses.addresses::after {
  display: none !important;
}
.woocommerce-MyAccount-content .woocommerce-Addresses.addresses {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .woocommerce-MyAccount-content .woocommerce-Addresses.addresses {
    grid-template-columns: repeat(2, 1fr);
  }
}
.woocommerce-MyAccount-content .woocommerce-Addresses.addresses .u-column1,
.woocommerce-MyAccount-content .woocommerce-Addresses.addresses .u-column2 {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.woocommerce-MyAccount-content .woocommerce-Addresses.addresses .u-column1 .woocommerce-Address-title,
.woocommerce-MyAccount-content .woocommerce-Addresses.addresses .u-column2 .woocommerce-Address-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}
.woocommerce-MyAccount-content .woocommerce-Addresses.addresses .u-column1 .woocommerce-Address-title h2,
.woocommerce-MyAccount-content .woocommerce-Addresses.addresses .u-column2 .woocommerce-Address-title h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #111827;
}
.woocommerce-MyAccount-content .woocommerce-Addresses.addresses .u-column1 .woocommerce-Address-title .edit,
.woocommerce-MyAccount-content .woocommerce-Addresses.addresses .u-column2 .woocommerce-Address-title .edit {
  font-size: 14px;
  font-weight: 600;
  color: #ef233c;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 4px 8px;
  border-radius: 6px;
}
.woocommerce-MyAccount-content .woocommerce-Addresses.addresses .u-column1 .woocommerce-Address-title .edit:hover,
.woocommerce-MyAccount-content .woocommerce-Addresses.addresses .u-column2 .woocommerce-Address-title .edit:hover {
  background-color: #f9fafb;
  color: rgb(207.8813559322, 15.1186440678, 38.7415254237);
}
.woocommerce-MyAccount-content .woocommerce-Addresses.addresses .u-column1 address,
.woocommerce-MyAccount-content .woocommerce-Addresses.addresses .u-column2 address {
  font-style: normal;
  line-height: 1.6;
  color: #111827;
  margin: 0;
  flex-grow: 1;
}

/* =========================================
   WOOCOMMERCE - UNIWERSALNE FORMULARZE
   (Ostateczna poprawka układu)
   ========================================= */
.woocommerce-MyAccount-content form::after {
  content: "";
  display: table;
  clear: both;
}
.woocommerce-MyAccount-content form h2,
.woocommerce-MyAccount-content form h3 {
  font-size: 22px;
  margin-bottom: 24px;
  color: #333;
}
.woocommerce-MyAccount-content form .form-row {
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
  width: 100%;
  display: block;
}
.woocommerce-MyAccount-content form .form-row ~ .clear {
  display: none !important;
}
.woocommerce-MyAccount-content form .form-row-first,
.woocommerce-MyAccount-content form .form-row-last {
  width: 100% !important;
}
@media screen and (min-width: 768px) {
  .woocommerce-MyAccount-content form .form-row-first,
  .woocommerce-MyAccount-content form .form-row-last {
    width: calc(50% - 10px) !important;
    float: left !important;
  }
}
@media screen and (min-width: 768px) {
  .woocommerce-MyAccount-content form .form-row-last {
    float: right !important;
  }
}
.woocommerce-MyAccount-content form .form-row-wide {
  clear: both !important;
  width: 100% !important;
  float: none !important;
}
.woocommerce-MyAccount-content form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.woocommerce-MyAccount-content form label .required {
  color: #d11c38;
  text-decoration: none;
  margin-left: 4px;
}
.woocommerce-MyAccount-content form label .optional {
  color: #888;
  font-weight: 400;
  margin-left: 4px;
}
.woocommerce-MyAccount-content form input[type=text],
.woocommerce-MyAccount-content form input[type=password],
.woocommerce-MyAccount-content form input[type=email],
.woocommerce-MyAccount-content form input[type=tel],
.woocommerce-MyAccount-content form textarea,
.woocommerce-MyAccount-content form select {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 4px !important;
  background-color: #fff !important;
  color: #333 !important;
  font-size: 15px !important;
  box-sizing: border-box !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease !important;
}
.woocommerce-MyAccount-content form input[type=text]:focus,
.woocommerce-MyAccount-content form input[type=password]:focus,
.woocommerce-MyAccount-content form input[type=email]:focus,
.woocommerce-MyAccount-content form input[type=tel]:focus,
.woocommerce-MyAccount-content form textarea:focus,
.woocommerce-MyAccount-content form select:focus {
  border-color: #ef233c !important;
  box-shadow: 0 0 0 1px #ef233c !important;
}
.woocommerce-MyAccount-content form span.description,
.woocommerce-MyAccount-content form #account_display_name_description {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #777;
  font-style: italic;
}
.woocommerce-MyAccount-content form fieldset {
  border: 1px solid #e5e7eb !important;
  border-radius: 4px !important;
  padding: 25px 20px 10px !important;
  margin-top: 30px !important;
  margin-bottom: 30px !important;
  background: transparent !important;
}
.woocommerce-MyAccount-content form fieldset legend {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  padding: 0 10px;
  width: auto;
  border: none;
  margin-bottom: 0;
}
.woocommerce-MyAccount-content form .button,
.woocommerce-MyAccount-content form button[type=submit] {
  display: inline-block !important;
  background-color: #ef233c !important;
  color: #fff !important;
  padding: 14px 30px !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  margin-top: 15px !important;
  transition: background 0.2s !important;
  width: auto !important;
}
.woocommerce-MyAccount-content form .button:hover,
.woocommerce-MyAccount-content form button[type=submit]:hover {
  background-color: rgb(207.8813559322, 15.1186440678, 38.7415254237) !important;
}

.select2-container .select2-selection--single {
  height: 45px !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center !important;
  background-color: #fff !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 16px !important;
  color: #333 !important;
  font-size: 15px !important;
}
.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  right: 10px !important;
}

/* =========================================
   MOJE KONTO - LOGOWANIE I REJESTRACJA
   (Pancerny fix oparty na rzeczywistym HTML)
   ========================================= */
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  padding: 16px 20px !important;
  margin: 0 auto 24px auto !important;
  max-width: 1000px;
  list-style: none !important;
  background-color: #ffffff !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid #e5e7eb !important;
  font-size: 15px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
.woocommerce .woocommerce-error::before, .woocommerce .woocommerce-error::after,
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-message::after,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-info::after {
  display: none !important;
}
.woocommerce .woocommerce-error li,
.woocommerce .woocommerce-message li,
.woocommerce .woocommerce-info li {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}
.woocommerce .woocommerce-error li strong,
.woocommerce .woocommerce-message li strong,
.woocommerce .woocommerce-info li strong {
  font-weight: 700 !important;
}
.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-message .button,
.woocommerce .woocommerce-info .button {
  float: right !important;
  background-color: transparent !important;
  color: #333 !important;
  border: 1px solid #dcdcdc !important;
  padding: 6px 16px !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  margin-top: -4px !important;
  margin-bottom: -4px !important;
}
.woocommerce .woocommerce-error .button:hover,
.woocommerce .woocommerce-message .button:hover,
.woocommerce .woocommerce-info .button:hover {
  background-color: #f9fafb !important;
}
.woocommerce .woocommerce-error {
  border-left: 4px solid #ef233c !important;
}
.woocommerce .woocommerce-error li {
  color: #ef233c !important;
}
.woocommerce .woocommerce-message {
  border-left: 4px solid #1aba1a !important;
}
.woocommerce .woocommerce-message li {
  color: #1aba1a !important;
}
.woocommerce .woocommerce-info {
  border-left: 4px solid #3b82f6 !important;
}
.woocommerce .woocommerce-info li {
  color: #1e3a8a !important;
}
.woocommerce #customer_login {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
.woocommerce #customer_login::before, .woocommerce #customer_login::after {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .woocommerce #customer_login {
    grid-template-columns: 1fr 1fr;
  }
}
.woocommerce #customer_login .u-column1,
.woocommerce #customer_login .u-column2 {
  width: 100% !important;
  float: none !important;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .woocommerce #customer_login .u-column1,
  .woocommerce #customer_login .u-column2 {
    padding: 50px 40px;
  }
}
.woocommerce #customer_login .u-column1 h2,
.woocommerce #customer_login .u-column2 h2 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (min-width: 1024px) {
  .woocommerce #customer_login .u-column1 h2,
  .woocommerce #customer_login .u-column2 h2 {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .woocommerce #customer_login .u-column1 {
    border-right: 1px solid #f3f4f6;
  }
}
.woocommerce form.login,
.woocommerce form.register {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce form.login p.form-row,
.woocommerce form.register p.form-row {
  margin-bottom: 20px;
  padding: 0;
}
.woocommerce form.login p:nth-of-type(2),
.woocommerce form.register p:nth-of-type(2) {
  font-size: 14px;
}
.woocommerce form.login label,
.woocommerce form.register label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}
.woocommerce form.login label .required,
.woocommerce form.register label .required {
  color: #ef233c;
  text-decoration: none;
  margin-left: 3px;
}
.woocommerce form.login input.input-text,
.woocommerce form.register input.input-text {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 4px !important;
  background-color: #fff !important;
  color: #333 !important;
  font-size: 15px !important;
  box-sizing: border-box !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease !important;
}
.woocommerce form.login input.input-text:focus,
.woocommerce form.register input.input-text:focus {
  border-color: #ef233c !important;
}
.woocommerce form.login .button,
.woocommerce form.register .button {
  background-color: #ef233c !important;
  color: #fff !important;
  padding: 14px 24px !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  width: 100% !important;
  margin-top: 10px;
  transition: background-color 0.2s !important;
}
.woocommerce form.login .button:hover,
.woocommerce form.register .button:hover {
  background-color: rgb(207.8813559322, 15.1186440678, 38.7415254237) !important;
}
.woocommerce form.login .woocommerce-form-login__rememberme,
.woocommerce form.register .woocommerce-form-login__rememberme {
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
}
.woocommerce form.login .woocommerce-form-login__rememberme input[type=checkbox],
.woocommerce form.register .woocommerce-form-login__rememberme input[type=checkbox] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.woocommerce form.login .woocommerce-LostPassword,
.woocommerce form.register .woocommerce-LostPassword {
  text-align: center;
  margin-top: 15px;
}
.woocommerce form.login .woocommerce-LostPassword a,
.woocommerce form.register .woocommerce-LostPassword a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
}
.woocommerce form.login .woocommerce-LostPassword a:hover,
.woocommerce form.register .woocommerce-LostPassword a:hover {
  color: #ef233c;
  text-decoration: underline;
}
.woocommerce .woocommerce-privacy-policy-text {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 20px;
}
.woocommerce .woocommerce-privacy-policy-text a {
  color: #ef233c;
  text-decoration: underline;
}
.woocommerce form.lost_reset_password {
  max-width: 500px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .woocommerce form.lost_reset_password {
    padding: 40px;
  }
}
.woocommerce form.lost_reset_password::after {
  content: "";
  display: table;
  clear: both;
}
.woocommerce form.lost_reset_password > p:first-of-type {
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 15px;
}
.woocommerce form.lost_reset_password p.form-row {
  margin-bottom: 20px;
  padding: 0;
  width: 100% !important;
  float: none !important;
}
.woocommerce form.lost_reset_password label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}
.woocommerce form.lost_reset_password label .required {
  color: #ef233c;
  text-decoration: none;
  margin-left: 3px;
}
.woocommerce form.lost_reset_password input.input-text {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 4px !important;
  background-color: #fff !important;
  color: #333 !important;
  font-size: 15px !important;
  box-sizing: border-box !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease !important;
}
.woocommerce form.lost_reset_password input.input-text:focus {
  border-color: #ef233c !important;
}
.woocommerce form.lost_reset_password .button {
  background-color: #ef233c !important;
  color: #fff !important;
  padding: 14px 24px !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  width: 100% !important;
  margin-top: 10px;
  transition: background 0.2s !important;
}
.woocommerce form.lost_reset_password .button:hover {
  background-color: rgb(207.8813559322, 15.1186440678, 38.7415254237) !important;
}

/* =========================================
   STRONA POJEDYNCZEGO PRODUKTU (Mobile First)
   ========================================= */
.custom-product-layout {
  background-color: #ffffff;
}
.custom-product-layout.product-type-variable .product-buy-section > .price,
.custom-product-layout.product-type-variable .product-buy-section > .iworks-omnibus {
  display: none !important;
}
.custom-product-layout .product-breadcrumbs {
  padding: 20px 1rem;
}
.custom-product-layout .product-breadcrumbs .breadcrumbs {
  display: flex;
  align-items: center;
  /* ZMIANY DLA PRZEWIJANIA POZIOMEGO */
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* Płynne przewijanie na iOS */
  scrollbar-width: none; /* Ukrywa pasek przewijania (Firefox) */
  /* Ukrywa pasek przewijania (Chrome, Safari, Edge) */
}
.custom-product-layout .product-breadcrumbs .breadcrumbs::-webkit-scrollbar {
  display: none;
}
.custom-product-layout .product-breadcrumbs .breadcrumbs {
  font-size: 11px;
  font-weight: 500;
  color: #ef233c;
}
.custom-product-layout .product-breadcrumbs .breadcrumbs__link {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Zapobiega ściskaniu linku */
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}
.custom-product-layout .product-breadcrumbs .breadcrumbs__link:hover {
  color: #ef233c;
}
.custom-product-layout .product-breadcrumbs .breadcrumbs__icon {
  width: 13px;
  height: 13px;
  margin-bottom: 2px;
  flex-shrink: 0; /* Zapobiega ściskaniu ikony */
}
.custom-product-layout .product-breadcrumbs .breadcrumbs__separator {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Zapobiega ściskaniu separatora */
  margin: 0 10px;
  color: #111827;
}
.custom-product-layout .product-breadcrumbs .breadcrumbs__separator svg {
  opacity: 0.4;
  display: block;
}
.custom-product-layout .product-breadcrumbs .breadcrumbs__current {
  color: #ef233c;
  flex-shrink: 0; /* Zapobiega ściskaniu aktualnej strony */
  white-space: nowrap; /* Upewnia się, że tekst się nie złamie w połowie słowa */
}
@media (min-width: 1024px) {
  .custom-product-layout .product-breadcrumbs .breadcrumbs {
    font-size: 13px;
  }
  .custom-product-layout .product-breadcrumbs .breadcrumbs .breadcrumbs__icon {
    width: 16px;
    height: 16px;
  }
}
.custom-product-layout .product-hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .custom-product-layout .product-hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: start;
  }
}
.custom-product-layout .product-hero__gallery {
  width: 100%;
  min-width: 0;
}
.custom-product-layout .product-hero__gallery .onsale {
  display: none;
}
.custom-product-layout .product-hero__gallery .woocommerce-product-gallery {
  position: relative;
}
.custom-product-layout .product-hero__gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 20px;
  width: 20px;
  z-index: 50;
  background: center/cover no-repeat url("/wp-content/uploads/2026/03/search-product.svg") !important;
  background-position: center;
  background-size: cover;
}
.custom-product-layout .product-hero__gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger img,
.custom-product-layout .product-hero__gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger span,
.custom-product-layout .product-hero__gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger svg {
  display: none !important;
}
.custom-product-layout .product-hero__gallery .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  border-radius: 8px;
  margin-bottom: 20px;
}
.custom-product-layout .product-hero__gallery .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  position: relative;
  text-align: center;
  width: 100%;
  display: block;
}
.custom-product-layout .product-hero__gallery .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
  max-height: 260px !important;
  width: auto !important;
  display: block !important;
  margin: 0 auto !important;
}
@media (min-width: 1024px) {
  .custom-product-layout .product-hero__gallery .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
    max-height: 440px !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.custom-product-layout .product-hero__gallery .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img.zoomImg {
  max-height: none !important;
  max-width: none !important;
  position: absolute !important;
}
.custom-product-layout .product-hero__gallery .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin-top: 10px;
  list-style: none;
}
.custom-product-layout .product-hero__gallery .woocommerce-product-gallery .flex-control-thumbs li {
  width: 8px;
  height: 8px;
}
.custom-product-layout .product-hero__gallery .woocommerce-product-gallery .flex-control-thumbs li img {
  box-sizing: border-box;
  width: 8px !important;
  height: 8px !important;
  padding-top: 8px !important;
  overflow: hidden !important;
  background-color: #d1d5db !important;
  border-radius: 50% !important;
  border: none !important;
  cursor: pointer;
  transition: background-color 0.2s;
  display: block;
}
.custom-product-layout .product-hero__gallery .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  background-color: #4b5563 !important;
}
@media screen and (min-width: 992px) {
  .custom-product-layout .product-hero__gallery .woocommerce-product-gallery .flex-control-thumbs {
    justify-content: flex-start;
    gap: 8px;
  }
  .custom-product-layout .product-hero__gallery .woocommerce-product-gallery .flex-control-thumbs li {
    width: 70px;
    height: auto;
  }
  .custom-product-layout .product-hero__gallery .woocommerce-product-gallery .flex-control-thumbs li img {
    padding-top: 0 !important;
    width: 70px !important;
    height: 70px !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    background-color: transparent !important;
    border-radius: 4px !important;
    border: 1px solid #e5e7eb !important;
  }
  .custom-product-layout .product-hero__gallery .woocommerce-product-gallery .flex-control-thumbs li img.flex-active, .custom-product-layout .product-hero__gallery .woocommerce-product-gallery .flex-control-thumbs li img:hover {
    border-color: #111827 !important;
  }
}
.custom-product-layout .product-hero__summary {
  width: 100%;
}
.custom-product-layout .product-hero__summary .product-brand {
  font-size: 14px;
  color: #5c626d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.custom-product-layout .product-hero__summary .product-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 6px 0;
}
@media screen and (min-width: 992px) {
  .custom-product-layout .product-hero__summary .product-title {
    font-size: 32px;
  }
}
.custom-product-layout .product-hero__summary .product-sku {
  font-size: 10px;
  color: #5c626d;
  margin-bottom: 24px;
}
.custom-product-layout .product-hero__summary .product-sku .sku {
  color: #5c626d;
}
.custom-product-layout .product-hero__summary .product-buy-section {
  display: flex;
  flex-direction: column;
}
.custom-product-layout .product-hero__summary .product-buy-section .product-spec-link {
  order: -1;
  margin-bottom: 12px;
}
.custom-product-layout .product-hero__summary .product-buy-section .product-spec-link a {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
}
.custom-product-layout .product-hero__summary .product-buy-section .product-spec-link a img {
  margin-left: 8px;
  width: 13px;
}
.custom-product-layout .product-hero__summary .product-buy-section .product-spec-link a:hover {
  color: #111;
}
.custom-product-layout .product-hero__summary .product-buy-section p.stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
}
.custom-product-layout .product-hero__summary .product-buy-section p.stock .backorder-info-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background-color: #5c626d; /* Pomarańczowy, dopasowany do tekstu */
  color: #fff; /* Biała literka i */
  font-size: 11px;
  font-weight: 700;
  font-family: serif; /* Dla ładnego, klasycznego kształtu litery 'i' */
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.custom-product-layout .product-hero__summary .product-buy-section p.stock .backorder-info-trigger:hover {
  transform: scale(1.1);
  background-color: #111827; /* Ciemniejszy pomarańczowy po najechaniu */
}
.custom-product-layout .product-hero__summary .product-buy-section p.stock::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.custom-product-layout .product-hero__summary .product-buy-section p.stock.in-stock {
  background-color: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.custom-product-layout .product-hero__summary .product-buy-section p.stock.in-stock::before {
  background-color: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}
.custom-product-layout .product-hero__summary .product-buy-section p.stock.out-of-stock {
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.custom-product-layout .product-hero__summary .product-buy-section p.stock.out-of-stock::before {
  background-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}
.custom-product-layout .product-hero__summary .product-buy-section p.stock.low-stock {
  background-color: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.custom-product-layout .product-hero__summary .product-buy-section p.stock.low-stock::before {
  background-color: #f59e0b;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}
.custom-product-layout .product-hero__summary .product-buy-section {
  /* Kontener na dynamiczny komunikat o częściowej produkcji */
}
.custom-product-layout .product-hero__summary .product-buy-section .dynamic-backorder-notice {
  background-color: #f5f6f8;
  color: #5c626d;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  border: 1px solid #e5e7eb;
  border-left: 3px solid #5c626d;
  animation: fadeIn 0.3s ease;
}
.custom-product-layout .product-hero__summary .product-buy-section .dynamic-backorder-notice strong {
  color: #111827;
  font-weight: 600;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.custom-product-layout .product-hero__summary .product-buy-section .woocommerce-variation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.custom-product-layout .product-hero__summary .product-buy-section .woocommerce-variation .woocommerce-variation-availability {
  margin: 0;
}
.custom-product-layout .product-hero__summary .product-buy-section .woocommerce-variation .woocommerce-variation-availability p.stock {
  margin-bottom: 0;
}
.custom-product-layout .product-hero__summary .product-buy-section .woocommerce-variation .woocommerce-variation-price .price {
  margin: 0;
}
.custom-product-layout .product-hero__summary .product-buy-section .price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.custom-product-layout .product-hero__summary .product-buy-section .price > span.amount,
.custom-product-layout .product-hero__summary .product-buy-section .price > .woocommerce-Price-amount {
  order: 1;
  font-size: 28px;
  font-weight: 600;
  color: #1aba1a;
  line-height: 1;
}
.custom-product-layout .product-hero__summary .product-buy-section .price ins {
  text-decoration: none;
  order: 1;
  margin-right: 0;
}
.custom-product-layout .product-hero__summary .product-buy-section .price ins .woocommerce-Price-amount,
.custom-product-layout .product-hero__summary .product-buy-section .price ins bdi {
  font-size: 28px;
  font-weight: 600;
  color: #1aba1a;
  line-height: 1;
}
.custom-product-layout .product-hero__summary .product-buy-section .price .woocommerce-price-suffix,
.custom-product-layout .product-hero__summary .product-buy-section .price .price-suffix {
  order: 2;
  font-size: 14px;
  font-weight: 400;
  color: #5c626d;
  text-transform: lowercase;
  margin-left: 6px;
  margin-right: 12px;
}
.custom-product-layout .product-hero__summary .product-buy-section .price del {
  order: 3;
}
.custom-product-layout .product-hero__summary .product-buy-section .price del .woocommerce-Price-amount,
.custom-product-layout .product-hero__summary .product-buy-section .price del bdi {
  font-size: 16px;
  font-weight: 400;
  color: #9ca3af;
  text-decoration: line-through;
  line-height: 1;
}
.custom-product-layout .product-hero__summary .product-buy-section .price .screen-reader-text {
  display: none !important;
}
.custom-product-layout .product-hero__summary .product-buy-section .iworks-omnibus {
  margin-top: 4px;
  order: 4;
  width: 100%;
  margin-bottom: 0;
  font-size: 13px;
  color: #6b7280;
}
.custom-product-layout .product-hero__summary .product-buy-section .variations {
  margin-bottom: 24px;
  width: 100%;
  border-spacing: 0;
}
.custom-product-layout .product-hero__summary .product-buy-section .variations tbody,
.custom-product-layout .product-hero__summary .product-buy-section .variations tr {
  display: flex;
  flex-direction: column;
}
.custom-product-layout .product-hero__summary .product-buy-section .variations th,
.custom-product-layout .product-hero__summary .product-buy-section .variations td.label {
  display: block;
  padding: 0 0 12px 0;
  text-align: left;
}
.custom-product-layout .product-hero__summary .product-buy-section .variations th label,
.custom-product-layout .product-hero__summary .product-buy-section .variations td.label label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 400;
  margin: 0;
}
.custom-product-layout .product-hero__summary .product-buy-section .variations th label strong,
.custom-product-layout .product-hero__summary .product-buy-section .variations td.label label strong {
  color: #111;
  font-weight: 600;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart {
  order: 4;
  margin-top: 10px;
  margin-bottom: 32px;
  width: 100%;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .custom-addons-container {
  width: 100%;
  flex: 0 0 100%;
  margin-bottom: 24px;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .custom-addons-container .custom-addons-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 12px 0;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .custom-addons-container .custom-addons-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .custom-addons-container .custom-addon-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: #f5f6f8;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .custom-addons-container .custom-addon-item:hover {
  border-color: #ef233c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .custom-addons-container .custom-addon-item .js-custom-addon-checkbox {
  margin-right: 12px;
  width: 18px;
  height: 18px;
  accent-color: #ef233c;
  cursor: pointer;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .custom-addons-container .custom-addon-item .custom-addon-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .custom-addons-container .custom-addon-item .custom-addon-name {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  line-height: 1.3;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .custom-addons-container .custom-addon-item .custom-addon-price {
  font-size: 13px;
  font-weight: 600;
  color: #5c626d;
  white-space: nowrap;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations {
  margin-bottom: 24px;
  width: 100%;
  border-spacing: 0;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations tbody {
  display: block;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations tr {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .custom-product-layout .product-hero__summary .product-buy-section form.cart .variations tr {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations th,
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.label {
  order: 2;
  padding: 0;
  text-align: left;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations th label,
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.label label {
  font-size: 10px;
  line-height: 0;
  color: #6b7280;
  font-weight: 400;
  margin: 0;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations th label strong,
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.label label strong {
  display: block;
  color: #111;
  font-weight: 600;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .custom-product-layout .product-hero__summary .product-buy-section form.cart .variations th,
  .custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.label {
    order: 1;
    padding: 0 0 12px 0;
  }
  .custom-product-layout .product-hero__summary .product-buy-section form.cart .variations th label,
  .custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.label label {
    line-height: 1.2;
    font-size: 12px;
  }
  .custom-product-layout .product-hero__summary .product-buy-section form.cart .variations th label strong,
  .custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.label label strong {
    display: inline;
    margin-top: 0;
  }
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.value {
  order: 1;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.value {
    order: 2;
    margin-bottom: 16px;
  }
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.value select {
  display: none !important;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.value .custom-swatches-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.value .custom-swatches-wrapper .swatch-btn {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  height: 40px;
  width: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.value .custom-swatches-wrapper .swatch-btn:hover {
  border-color: #9ca3af;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.value .custom-swatches-wrapper .swatch-btn.selected {
  border-color: #1aba1a;
  color: #1aba1a;
  box-shadow: 0 0 0 1px #1aba1a;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.value .reset_variations {
  display: none;
  margin-top: 12px;
  font-size: 12px;
  color: #6b7280;
  text-decoration: none;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .variations td.value .reset_variations:hover {
  color: #ef233c;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .single_variation_wrap {
  display: flex;
  flex-direction: column;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .single_variation_wrap .woocommerce-variation-price {
  margin-bottom: 16px;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart.cart:not(.variations_form),
.custom-product-layout .product-hero__summary .product-buy-section form.cart .woocommerce-variation-add-to-cart {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .quantity {
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  height: 40px;
  width: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  overflow: hidden;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .quantity label {
  display: none !important;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .quantity .qty-btn {
  background: transparent;
  border: none;
  color: #6b7280;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 32px;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.2s, background-color 0.2s;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .quantity .qty-btn:hover {
  color: #111;
  background-color: #f9fafb;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .quantity input.qty {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  background: transparent;
  padding: 0;
  margin: 0;
  box-shadow: none;
  -moz-appearance: textfield;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .quantity input.qty::-webkit-outer-spin-button, .custom-product-layout .product-hero__summary .product-buy-section form.cart .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart .quantity input.qty:focus {
  outline: none;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart button.single_add_to_cart_button {
  flex: 1;
  height: 40px;
  background-color: #ef233c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.2s;
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart button.single_add_to_cart_button:hover {
  background-color: rgb(217.3898305085, 15.8101694915, 40.513559322);
}
.custom-product-layout .product-hero__summary .product-buy-section form.cart button.single_add_to_cart_button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media screen and (min-width: 768px) {
  .custom-product-layout .product-hero__summary .product-buy-section form.cart button.single_add_to_cart_button {
    max-width: 240px;
  }
}
.custom-product-layout .product-hero__summary .product-info-triggers {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.custom-product-layout .product-hero__summary .product-info-triggers .trigger-btn {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .custom-product-layout .product-hero__summary .product-info-triggers .trigger-btn {
    width: 70%;
  }
}
.custom-product-layout .product-hero__summary .product-info-triggers .trigger-btn {
  background-color: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  outline: none;
}
.custom-product-layout .product-hero__summary .product-info-triggers .trigger-btn:hover {
  background-color: #ffffff;
  border-color: #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}
.custom-product-layout .product-hero__summary .product-info-triggers .trigger-btn:hover .trigger-icon,
.custom-product-layout .product-hero__summary .product-info-triggers .trigger-btn:hover .trigger-arrow {
  color: #ef233c;
}
.custom-product-layout .product-hero__summary .product-info-triggers .trigger-btn:hover .trigger-arrow {
  transform: translateX(3px);
}
.custom-product-layout .product-hero__summary .product-info-triggers .trigger-btn .trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  margin-right: 12px;
  transition: color 0.3s ease;
}
.custom-product-layout .product-hero__summary .product-info-triggers .trigger-btn .trigger-icon svg {
  width: 20px;
  height: 20px;
}
.custom-product-layout .product-hero__summary .product-info-triggers .trigger-btn .trigger-text {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}
.custom-product-layout .product-hero__summary .product-info-triggers .trigger-btn .trigger-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all 0.3s ease;
}
.custom-product-layout .product-hero__summary .product-info-triggers .trigger-btn .trigger-arrow svg {
  width: 16px;
  height: 16px;
}
.custom-product-layout .product-sticky-bar {
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: #fff;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: top 0.4s ease-in-out;
}
.custom-product-layout .product-sticky-bar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}
.custom-product-layout .product-sticky-bar__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .custom-product-layout .product-sticky-bar__nav {
    width: auto;
    gap: 24px;
  }
}
.custom-product-layout .product-sticky-bar__nav .scroll-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  color: #4b5563;
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}
.custom-product-layout .product-sticky-bar__nav .scroll-to-top:hover {
  border-color: #111;
  color: #111;
}
.custom-product-layout .product-sticky-bar__nav .nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.custom-product-layout .product-sticky-bar__nav .nav-links::-webkit-scrollbar {
  display: none;
}
.custom-product-layout .product-sticky-bar__nav .nav-links li {
  flex-shrink: 0;
}
.custom-product-layout .product-sticky-bar__nav .nav-links li a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.2s;
  white-space: nowrap;
}
.custom-product-layout .product-sticky-bar__nav .nav-links li a:hover, .custom-product-layout .product-sticky-bar__nav .nav-links li a.active {
  color: #111;
  font-weight: 600;
}
.custom-product-layout .product-sticky-bar__cart {
  display: none;
}
@media screen and (min-width: 992px) {
  .custom-product-layout .product-sticky-bar__cart {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
  }
  .custom-product-layout .product-sticky-bar__cart.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .custom-product-layout .product-sticky-bar__cart .cart-product-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .custom-product-layout .product-sticky-bar__cart .cart-product-info .thumb {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    overflow: hidden;
  }
  .custom-product-layout .product-sticky-bar__cart .cart-product-info .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .custom-product-layout .product-sticky-bar__cart .cart-product-info .price {
    align-self: end;
    font-size: 14px;
    font-weight: 600;
    color: #111;
  }
  .custom-product-layout .product-sticky-bar__cart .cart-product-info .price del {
    display: none;
  }
  .custom-product-layout .product-sticky-bar__cart .cart-product-info .price ins {
    text-decoration: none;
  }
  .custom-product-layout .product-sticky-bar__cart .cart-product-info .price .price-prefix {
    font-weight: 400;
    color: #6b7280;
  }
  .custom-product-layout .product-sticky-bar__cart .cart-product-info .price .iworks-omnibus {
    display: none;
  }
  .custom-product-layout .product-sticky-bar__cart .sticky-add-to-cart {
    height: 30px;
    padding: 0 24px;
    background-color: #ef233c;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
  }
  .custom-product-layout .product-sticky-bar__cart .sticky-add-to-cart:hover {
    background-color: rgb(217.3898305085, 15.8101694915, 40.513559322);
  }
}
.custom-product-layout .product-content-section {
  background-color: #ffffff;
  scroll-margin-top: 100px;
}
.custom-product-layout .product-content-section:last-of-type {
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.custom-product-layout .product-content-section .section-title {
  margin-top: 30px;
  font-size: 16px;
}
@media (min-width: 1024px) {
  .custom-product-layout .product-content-section .section-title {
    font-size: 22px;
  }
}
.custom-product-layout .product-content-section .read-more-wrapper {
  position: relative;
  max-height: 280px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.custom-product-layout .product-content-section .read-more-wrapper.is-expanded .read-more-fade {
  opacity: 0;
  pointer-events: none;
}
.custom-product-layout .product-content-section .read-more-wrapper .read-more-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.custom-product-layout .product-content-section .read-more-action {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.custom-product-layout .product-content-section .read-more-action .read-more-btn {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.custom-product-layout .product-content-section .read-more-action .read-more-btn:hover {
  border-color: #111;
  color: #111;
}
.custom-product-layout .product-content-section .read-more-action .read-more-btn .btn-icon {
  transition: transform 0.3s ease;
}
.custom-product-layout .product-content-section .read-more-action .read-more-btn.is-open .btn-icon {
  transform: rotate(180deg);
}
.custom-product-layout .product-content-section .section-content {
  padding: 25px 0;
}
.custom-product-layout .product-content-section .section-content h2 {
  font-size: 16px;
  margin-bottom: 15px;
  margin-top: 25px;
}
.custom-product-layout .product-content-section .section-content h2:first-of-type {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .custom-product-layout .product-content-section .section-content h2 {
    font-size: 22px;
  }
}
.custom-product-layout .product-content-section .section-content p {
  margin-bottom: 8px;
  font-size: 13px;
  color: #5c626d;
}
@media (min-width: 1024px) {
  .custom-product-layout .product-content-section .section-content p {
    font-size: 15px;
  }
}
.custom-product-layout .product-content-section .section-content ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 20px;
  list-style: disc;
}
.custom-product-layout .product-content-section .section-content ul li::marker {
  color: #ef233c;
}
.custom-product-layout .product-content-section .section-content ol {
  margin-left: 20px;
}
.custom-product-layout .product-content-section .section-content ol li::marker {
  font-size: 13px;
}
.custom-product-layout .product-content-section .section-content.product-specification {
  margin-top: 10px;
  padding: 0 !important;
}
.custom-product-layout .product-content-section .section-content.product-specification ul.spec-list {
  display: block !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.custom-product-layout .product-content-section .section-content.product-specification ul.spec-list li.spec-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 12px 16px;
  margin: 0 !important;
  border-bottom: 1px solid #f3f4f6;
}
.custom-product-layout .product-content-section .section-content.product-specification ul.spec-list li.spec-row:nth-child(odd) {
  background-color: #f5f6f8;
}
.custom-product-layout .product-content-section .section-content.product-specification ul.spec-list li.spec-row:nth-child(even) {
  background-color: transparent;
}
.custom-product-layout .product-content-section .section-content.product-specification ul.spec-list li.spec-row:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .custom-product-layout .product-content-section .section-content.product-specification ul.spec-list li.spec-row {
    padding: 16px 24px;
  }
}
.custom-product-layout .product-content-section .section-content.product-specification ul.spec-list li.spec-row::marker {
  display: none;
  content: "";
}
.custom-product-layout .product-content-section .section-content.product-specification ul.spec-list li.spec-row .spec-label {
  flex: 0 0 40%;
  font-weight: 600;
  color: #1a1d21;
  font-size: 13px;
  padding-right: 16px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .custom-product-layout .product-content-section .section-content.product-specification ul.spec-list li.spec-row .spec-label {
    flex: 0 0 30%;
    font-size: 14px;
    padding-right: 32px;
  }
}
.custom-product-layout .product-content-section .section-content.product-specification ul.spec-list li.spec-row .spec-value {
  flex: 1;
  color: #5c626d;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  word-break: break-word;
  text-align: left;
}
.custom-product-layout .product-content-section .section-content.product-specification ul.spec-list li.spec-row .spec-value p {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .custom-product-layout .product-content-section .section-content.product-specification ul.spec-list li.spec-row .spec-value {
    font-size: 14px;
  }
}
.custom-product-layout .product-producer-section {
  padding: 40px 1rem 0;
  margin-top: 20px;
}
@media screen and (min-width: 992px) {
  .custom-product-layout .product-producer-section {
    padding: 60px 1rem 0;
    margin-top: 40px;
  }
}
.custom-product-layout .product-producer-section .section-title {
  font-size: 16px;
}
@media (min-width: 1024px) {
  .custom-product-layout .product-producer-section .section-title {
    font-size: 22px;
  }
}
.custom-product-layout .product-producer-section .producer-grid {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .custom-product-layout .product-producer-section .producer-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
}
.custom-product-layout .product-producer-section .producer-grid .producer-column {
  flex: 1 1 calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
}
.custom-product-layout .product-producer-section .producer-grid .producer-column .column-title {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin: 0 0 8px 0;
}
.custom-product-layout .product-producer-section .producer-grid .producer-column .column-content {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}
.custom-product-layout .product-producer-section .producer-grid .producer-column .column-content p {
  margin: 0;
}
.custom-product-layout .product-producer-section .producer-grid .producer-column.files-column {
  display: flex;
  flex-direction: column;
}
.custom-product-layout .product-producer-section .producer-grid .producer-column.files-column .files-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.custom-product-layout .product-producer-section .producer-grid .producer-column.files-column .single-file-item {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #f3f4f6;
}
.custom-product-layout .product-producer-section .producer-grid .producer-column.files-column .single-file-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.custom-product-layout .product-producer-section .producer-grid .producer-column.files-column .single-file-item .download-link {
  font-size: 14px;
  color: #6b7280;
  text-decoration: underline;
  text-decoration-color: #d1d5db;
  text-underline-offset: 4px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.custom-product-layout .product-producer-section .producer-grid .producer-column.files-column .single-file-item .download-link:hover {
  color: #111;
  text-decoration-color: #111;
}
.custom-product-layout .product-producer-section .producer-grid .producer-column.files-column .single-file-item .download-icon {
  color: #6b7280;
  padding-left: 16px;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}
.custom-product-layout .product-producer-section .producer-grid .producer-column.files-column .single-file-item .download-icon:hover {
  color: #111;
  transform: translateY(-2px);
}
.custom-product-layout .product-related-section {
  padding: 40px 1rem;
  margin-top: 20px;
}
@media screen and (min-width: 992px) {
  .custom-product-layout .product-related-section {
    padding: 60px 1rem;
    margin-top: 30px;
  }
}
.custom-product-layout .product-related-section .related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.custom-product-layout .product-related-section .related-header .section-title {
  font-size: 16px;
}
@media (min-width: 1024px) {
  .custom-product-layout .product-related-section .related-header .section-title {
    font-size: 22px;
  }
}
.custom-product-layout .product-related-section .related-header .products-container-section__arrows {
  display: flex;
  gap: 8px;
}
.custom-product-layout .product-related-section .related-header .products-container-section__arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.custom-product-layout .product-related-section .related-header .products-container-section__arrows button:hover {
  border-color: #111;
  background: #f9fafb;
}
.custom-product-layout .product-related-section .related-header .products-container-section__arrows button img {
  width: 16px;
  height: auto;
}
.custom-product-layout .product-related-section ul.related-products-slider {
  margin: 0 -10px !important;
  padding: 0;
  list-style: none;
}
.custom-product-layout .product-related-section ul.related-products-slider .slick-track {
  margin-left: 0 !important;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
}
.custom-product-layout .product-related-section ul.related-products-slider .slick-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column;
}
.custom-product-layout .product-related-section ul.related-products-slider .slick-slide > div {
  display: flex;
  flex-grow: 1;
  width: 100%;
}
.custom-product-layout .product-related-section ul.related-products-slider li.product {
  margin: 0 10px !important;
  float: none;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1;
  width: 100%;
}
.custom-product-layout .product-related-section ul.related-products-slider li.product > div[class*=wrap],
.custom-product-layout .product-related-section ul.related-products-slider li.product > div[class*=inner] {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.custom-product-layout .product-related-section ul.related-products-slider li.product > a:first-of-type,
.custom-product-layout .product-related-section ul.related-products-slider li.product a.woocommerce-LoopProduct-link {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.custom-product-layout .product-related-section ul.related-products-slider li.product .price {
  margin-top: auto;
}
.custom-product-layout .product-related-section ul.related-products-slider:not(.slick-initialized) li.product {
  display: none;
}
.custom-product-layout .product-related-section ul.related-products-slider:not(.slick-initialized) li.product:first-child, .custom-product-layout .product-related-section ul.related-products-slider:not(.slick-initialized) li.product:nth-child(2), .custom-product-layout .product-related-section ul.related-products-slider:not(.slick-initialized) li.product:nth-child(3), .custom-product-layout .product-related-section ul.related-products-slider:not(.slick-initialized) li.product:nth-child(4) {
  display: flex !important;
}

/* ==========================================
   MODAL INFORMACYJNY (BACKORDERS)
   ========================================== */
.backorder-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}
.backorder-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.backorder-modal-overlay.active .backorder-modal-content {
  transform: translateY(0) scale(1);
}

.backorder-modal-content {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  padding: 30px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.backorder-modal-content .backorder-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}
.backorder-modal-content .backorder-modal-close:hover {
  color: #333;
}
.backorder-modal-content .backorder-modal-header {
  margin-bottom: 20px;
}
.backorder-modal-content .backorder-modal-header h3 {
  margin: 0;
  font-size: 20px;
  color: #ef233c;
  font-weight: 700;
}
.backorder-modal-content .backorder-modal-body p {
  margin-bottom: 15px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.backorder-modal-content .backorder-modal-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.backorder-modal-content .backorder-modal-body ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.backorder-modal-content .backorder-modal-body ul li::before {
  content: "•";
  color: #ef233c;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 14px;
}
.backorder-modal-content .backorder-modal-body ul li strong {
  color: #222;
}
.backorder-modal-content .backorder-modal-body .backorder-modal-action {
  font-weight: 600;
  color: #222;
  margin-bottom: 0;
  text-align: center;
  background: rgba(239, 35, 60, 0.1);
  padding: 10px;
  border-radius: 6px;
}

.wc-block-components-product-metadata__description {
  display: none !important;
}

main.my-account-page.wrapper,
main.page.wrapper {
  background-color: #f5f6f8;
}

.wp-block-woocommerce-cart .wc-block-components-sidebar-layout {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  align-items: flex-start !important;
}
@media (min-width: 1024px) {
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 40px !important;
  }
}
.wp-block-woocommerce-cart .wc-block-cart__main {
  width: 100% !important;
  max-width: 100% !important;
  flex: 1 1 auto !important;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .wp-block-woocommerce-cart .wc-block-cart__main {
    padding: 30px;
  }
}
.wp-block-woocommerce-cart .wc-block-cart-items {
  width: 100%;
  border-collapse: collapse;
}
.wp-block-woocommerce-cart .wc-block-cart-items thead {
  display: none;
}
@media (min-width: 768px) {
  .wp-block-woocommerce-cart .wc-block-cart-items thead {
    display: table-header-group;
  }
  .wp-block-woocommerce-cart .wc-block-cart-items thead th {
    text-align: left;
    padding: 0 0 20px;
    border-bottom: 1px solid #e5e7eb;
    color: #5c626d;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-items__row {
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  gap: 16px;
}
@media (min-width: 768px) {
  .wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-items__row {
    display: table-row;
    padding: 0;
    gap: 0;
  }
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-items__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-items__row td {
    padding: 24px 0;
    vertical-align: middle;
    border-bottom: 1px solid #e5e7eb;
  }
}
@media (min-width: 768px) {
  .wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-items__row:last-child td {
    border-bottom: none;
  }
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__image {
  width: 80px;
  padding: 0;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__image {
    width: 100px;
    padding: 24px 24px 24px 0 !important;
    display: table-cell;
  }
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__image a {
  display: block;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__image img {
  width: 100%;
  height: auto;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 4px;
  background: #ffffff;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__product {
  flex: 1;
}
@media (min-width: 768px) {
  .wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__product {
    display: table-cell;
    padding-right: 24px !important;
  }
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__product .wc-block-cart-item__wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-product-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
  padding-right: 30px;
}
@media (min-width: 768px) {
  .wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-product-name {
    font-size: 16px;
    padding-right: 0;
  }
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-product-name:hover {
  color: #ef233c;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-product-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-product-price .wc-block-components-product-price__regular,
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-product-price del {
  color: #5c626d !important;
  font-size: 13px;
  text-decoration: line-through;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-product-price .wc-block-components-product-price__value,
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-product-price ins {
  color: #1aba1a !important;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-product-details {
  font-size: 12px;
  color: #5c626d;
  margin: 4px 0;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-product-details strong {
  color: #111827;
  font-weight: 600;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-quantity-selector__button {
  width: 28px;
  height: 28px;
  background: #f5f6f8;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  transition: background 0.2s;
  padding: 0;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-quantity-selector__button:hover:not(:disabled) {
  background: rgb(230, 232.5, 237.5);
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-quantity-selector__button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-quantity-selector__input {
  width: 36px;
  height: 28px;
  border: none;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  padding: 0;
  background: transparent;
  -moz-appearance: textfield;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-quantity-selector__input::-webkit-outer-spin-button, .wp-block-woocommerce-cart .wc-block-cart-items .wc-block-components-quantity-selector__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__remove-link {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #5c626d;
  opacity: 0.6;
  transition: all 0.2s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 768px) {
  .wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__remove-link {
    position: relative;
    top: auto;
    right: auto;
  }
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__remove-link svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__remove-link:hover {
  opacity: 1;
  color: #ef233c;
}
.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__total {
  display: none;
}
@media (min-width: 768px) {
  .wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__total {
    display: table-cell;
    text-align: right;
    vertical-align: middle;
    padding-left: 24px;
  }
  .wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__total .wc-block-components-product-price__value {
    font-size: 18px;
    font-weight: 700;
    color: #111827 !important;
  }
  .wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item__total .wc-block-components-sale-badge {
    display: inline-block;
    margin-top: 6px;
    font-size: 11px;
    color: #1aba1a !important;
    background: rgba(34, 197, 94, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
  }
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 auto !important;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
@media (min-width: 1024px) {
  .wp-block-woocommerce-cart .wc-block-cart__sidebar {
    width: 380px !important;
    min-width: 380px !important;
    max-width: 380px !important;
    position: sticky;
    top: 120px;
  }
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-cart__totals-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px;
  padding-bottom: 16px;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-coupon {
  margin-bottom: 20px;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-coupon .wc-block-components-panel__button {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  background: transparent;
  border: none;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-coupon .wc-block-components-panel__button:hover {
  color: #ef233c;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-coupon .wc-block-components-panel__button svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #5c626d;
  margin-bottom: 12px;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-item__value {
  color: #111827;
  font-weight: 600;
  text-align: right;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-footer-item {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  margin-top: 16px;
  align-items: flex-end;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 24px;
  font-weight: 800;
  color: #ef233c !important;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-cart__submit-button {
  width: 100%;
  background: #ef233c !important;
  color: #ffffff !important;
  text-align: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  transition: background 0.2s, transform 0.1s;
  box-sizing: border-box;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-cart__submit-button:hover {
  background: rgb(231.6525423729, 16.8474576271, 43.1716101695) !important;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-cart__submit-button:active {
  transform: scale(0.98);
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-cart__submit-button .wc-block-components-button__text {
  display: block;
}

.wp-block-woocommerce-empty-cart-block {
  padding: 0 16px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .wp-block-woocommerce-empty-cart-block {
    padding: 0 24px;
    margin-bottom: 60px;
  }
}
.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
  content: "";
  display: block;
  margin: 0 auto 24px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(239, 35, 60, 0.08);
  -webkit-mask-image: url("/wp-content/uploads/2026/03/buy.svg");
  mask-image: url("/wp-content/uploads/2026/03/buy.svg");
  -webkit-mask-size: 40px 40px;
  mask-size: 40px 40px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-image: none !important;
  background-color: #ef233c;
}
@media (min-width: 1024px) {
  .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
    width: 100px;
    height: 100px;
    margin-bottom: 32px;
    -webkit-mask-size: 48px 48px;
    mask-size: 48px 48px;
  }
}
.wp-block-woocommerce-empty-cart-block p:not(.iworks-omnibus) {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  color: #5c626d;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .wp-block-woocommerce-empty-cart-block p:not(.iworks-omnibus) {
    font-size: 15px;
  }
}
.wp-block-woocommerce-empty-cart-block p > a[href*=sklep] {
  display: inline-block;
  background: #ef233c;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  margin-top: 16px;
  box-shadow: 0 4px 15px rgba(239, 35, 60, 0.2);
}
.wp-block-woocommerce-empty-cart-block p > a[href*=sklep]:hover {
  background: rgb(231.6525423729, 16.8474576271, 43.1716101695);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(239, 35, 60, 0.3);
  text-decoration: none;
}
.wp-block-woocommerce-empty-cart-block p > a[href*=sklep]:active {
  transform: scale(0.98);
}

.custom-cart-slider.product-related-section {
  padding: 20px 0 0 0;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .custom-cart-slider.product-related-section {
    padding: 40px 0 0 0;
    margin-top: 30px;
  }
}
.custom-cart-slider.product-related-section .related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.custom-cart-slider.product-related-section .related-header .section-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
@media (min-width: 1024px) {
  .custom-cart-slider.product-related-section .related-header .section-title {
    font-size: 24px;
  }
}
.custom-cart-slider.product-related-section .related-header .products-container-section__arrows {
  display: flex;
  gap: 8px;
}
.custom-cart-slider.product-related-section .related-header .products-container-section__arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.custom-cart-slider.product-related-section .related-header .products-container-section__arrows button:hover:not(.is-disabled) {
  border-color: #111827;
  background: #f5f6f8;
}
.custom-cart-slider.product-related-section .related-header .products-container-section__arrows button.is-disabled, .custom-cart-slider.product-related-section .related-header .products-container-section__arrows button[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}
.custom-cart-slider.product-related-section .related-header .products-container-section__arrows button img {
  width: 14px;
  height: auto;
}
.custom-cart-slider.product-related-section ul.related-products-slider {
  margin: 0 -10px !important;
  padding: 0;
  list-style: none;
}
.custom-cart-slider.product-related-section ul.related-products-slider .slick-track {
  margin-left: 0 !important;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
}
.custom-cart-slider.product-related-section ul.related-products-slider .slick-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column;
}
.custom-cart-slider.product-related-section ul.related-products-slider .slick-slide > div {
  display: flex;
  flex-grow: 1;
  width: 100%;
}
.custom-cart-slider.product-related-section ul.related-products-slider li.product {
  margin: 0 10px !important;
  float: none;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1;
  width: 100%;
}
.custom-cart-slider.product-related-section ul.related-products-slider li.product > div[class*=wrap],
.custom-cart-slider.product-related-section ul.related-products-slider li.product > div[class*=inner] {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.custom-cart-slider.product-related-section ul.related-products-slider li.product > a:first-of-type,
.custom-cart-slider.product-related-section ul.related-products-slider li.product a.woocommerce-LoopProduct-link {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.custom-cart-slider.product-related-section ul.related-products-slider li.product .price {
  margin-top: auto;
  margin-bottom: 12px;
}
.custom-cart-slider.product-related-section ul.related-products-slider:not(.slick-initialized) li.product {
  display: none !important;
}
.custom-cart-slider.product-related-section ul.related-products-slider:not(.slick-initialized) li.product:first-child, .custom-cart-slider.product-related-section ul.related-products-slider:not(.slick-initialized) li.product:nth-child(2), .custom-cart-slider.product-related-section ul.related-products-slider:not(.slick-initialized) li.product:nth-child(3), .custom-cart-slider.product-related-section ul.related-products-slider:not(.slick-initialized) li.product:nth-child(4) {
  display: flex !important;
}

main.page.wrapper {
  background-color: #f5f6f8;
}

.wp-block-woocommerce-checkout {
  padding-top: 30px;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .wp-block-woocommerce-checkout {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  align-items: flex-start !important;
}
@media (min-width: 1024px) {
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 40px !important;
  }
}
.wp-block-woocommerce-checkout .wc-block-checkout__main {
  flex: 1 1 0% !important;
  min-width: 0 !important;
  width: 100% !important;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .wp-block-woocommerce-checkout .wc-block-checkout__main {
    padding: 40px;
  }
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-checkout-step {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-left: none;
  border-right: none;
  border-top: none;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-checkout-step:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-checkout-step__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-checkout-step__title {
    font-size: 20px;
  }
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-radio-control__option {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  margin-bottom: 12px !important;
  transition: all 0.2s ease !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-radio-control__option .wc-block-components-radio-control__input {
  margin: 0 !important;
  flex-shrink: 0 !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-radio-control__option .wc-block-components-radio-control__option-layout {
  flex: 1 !important;
  margin: 0 !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-radio-control__option .wc-block-components-radio-control__option-layout .wc-block-components-radio-control__label-group {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-radio-control__option .wc-block-components-radio-control__secondary-label {
  font-weight: 700 !important;
  color: #111827 !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-radio-control__option.wc-block-components-radio-control__option-checked {
  border-color: #1aba1a !important;
  box-shadow: 0 0 0 1px #1aba1a !important;
  background-color: rgba(34, 197, 94, 0.04) !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-radio-control-accordion-option {
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  margin-bottom: 12px !important;
  padding: 0 !important;
  transition: all 0.2s ease !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-radio-control-accordion-option.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  border-color: #1aba1a !important;
  box-shadow: 0 0 0 1px #1aba1a !important;
  background-color: rgba(34, 197, 94, 0.04) !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  margin-bottom: 0 !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control-accordion-content {
  padding: 0 16px 16px 44px !important;
  color: #5c626d !important;
  font-size: 13px !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-checkout__actions_row {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}
@media (min-width: 768px) {
  .wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-checkout__actions_row {
    flex-direction: row;
    justify-content: space-between;
  }
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5c626d;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button svg {
  fill: currentColor;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button:hover {
  color: #ef233c;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  width: 100%;
  background: #ef233c !important;
  color: #ffffff !important;
  text-align: center;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  transition: background 0.2s, transform 0.1s;
}
@media (min-width: 768px) {
  .wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
    width: auto;
  }
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
  background: rgb(231.6525423729, 16.8474576271, 43.1716101695) !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:active {
  transform: scale(0.98);
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar {
  width: 100% !important;
  flex: 0 0 auto !important;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
@media (min-width: 1024px) {
  .wp-block-woocommerce-checkout .wc-block-checkout__sidebar {
    width: 480px !important;
    flex: 0 0 480px !important;
    position: sticky;
    top: 120px;
  }
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__title {
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__title-text {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item {
  display: grid !important;
  grid-template-columns: 64px 1fr auto !important;
  gap: 16px !important;
  align-items: center !important;
  padding: 16px 0 !important;
  border-bottom: 1px dashed #e5e7eb !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item:last-child {
  border-bottom: none !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__image {
  width: 64px !important;
  height: 64px !important;
  margin: 0 !important;
  position: relative !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  padding: 4px !important;
  background: #ffffff !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__image img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  border-radius: 4px !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__image .wc-block-components-order-summary-item__quantity {
  position: absolute !important;
  top: -8px !important;
  right: -8px !important;
  background-color: #5c626d !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  width: 22px !important;
  height: 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  padding: 0 !important;
  border: 2px solid #ffffff !important;
  line-height: 1 !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__description {
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  min-width: 0 !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__description .wc-block-components-product-name {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__description .wc-block-cart-item__prices {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 6px !important;
  margin: 0 !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__description .wc-block-cart-item__prices del,
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__description .wc-block-cart-item__prices .wc-block-components-product-price__regular {
  color: #5c626d !important;
  font-size: 11px !important;
  text-decoration: line-through !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__description .wc-block-cart-item__prices ins,
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__description .wc-block-cart-item__prices .wc-block-components-product-price__value {
  color: #1aba1a !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  background: transparent !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__description .wc-block-components-product-details {
  font-size: 11px !important;
  color: #5c626d !important;
  margin: 0 !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__total-price {
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  text-align: right !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__total-price .wc-block-components-product-price__value {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #111827 !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__total-price .wc-block-components-sale-badge {
  display: inline-block !important;
  margin-top: 4px !important;
  font-size: 10px !important;
  color: #1aba1a !important;
  background: rgba(34, 197, 94, 0.1) !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-coupon {
  margin: 20px 0;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-coupon .wc-block-components-panel__button {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  background: transparent;
  border: none;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-coupon .wc-block-components-panel__button:hover {
  color: #ef233c;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-coupon .wc-block-components-panel__button svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #5c626d;
  margin-bottom: 12px;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-item__value {
  color: #111827;
  font-weight: 600;
  text-align: right;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-footer-item {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  margin-top: 16px;
  align-items: flex-end;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 24px;
  font-weight: 800;
  color: #ef233c !important;
}

.woocommerce-order .woocommerce-notice--success {
  background: transparent;
  border: none;
  color: #111827;
  padding: 0;
  text-align: center;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  margin-bottom: 32px;
  gap: 12px;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-notice--success {
    font-size: 24px;
    margin-bottom: 48px;
    gap: 16px;
  }
}
.woocommerce-order .woocommerce-notice--success::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-radius: 50%;
  font-weight: 400;
  width: 48px;
  height: 48px;
  font-size: 24px;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-notice--success::before {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }
}
.woocommerce-order > p {
  display: none;
}
.woocommerce-order .woocommerce-order-overview {
  background: #ffffff;
  list-style: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  border: none !important;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 12px;
  padding: 24px;
  margin: 0 0 24px 0;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-order-overview {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
  }
}
.woocommerce-order .woocommerce-order-overview li {
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  flex: none;
  gap: 4px;
  padding: 0 !important;
  font-size: 10px;
  color: #5c626d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.woocommerce-order .woocommerce-order-overview li::after, .woocommerce-order .woocommerce-order-overview li::before {
  display: none !important;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-order-overview li {
    flex: 1 1 140px;
    gap: 8px;
    font-size: 11px;
  }
}
.woocommerce-order .woocommerce-order-overview li strong {
  color: #111827;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 700;
  word-break: break-word;
  font-size: 13px;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-order-overview li strong {
    font-size: 15px;
  }
}
.woocommerce-order .woocommerce-order-details {
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  border: none;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-order-details {
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1024px) {
  .woocommerce-order .woocommerce-order-details {
    padding: 40px;
  }
}
.woocommerce-order .woocommerce-order-details__title {
  font-weight: 700;
  color: #111827;
  padding-bottom: 0;
  border: none;
  font-size: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-order-details__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.woocommerce-order .woocommerce-order-details .woocommerce-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  table-layout: auto;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table th,
.woocommerce-order .woocommerce-order-details .woocommerce-table td {
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 16px 0;
  font-size: 13px;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-order-details .woocommerce-table th,
  .woocommerce-order .woocommerce-order-details .woocommerce-table td {
    padding: 20px 0;
    font-size: 14px;
  }
}
.woocommerce-order .woocommerce-order-details .woocommerce-table thead th {
  font-weight: 700;
  color: #5c626d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 0;
  font-size: 10px;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-order-details .woocommerce-table thead th {
    font-size: 12px;
  }
}
.woocommerce-order .woocommerce-order-details .woocommerce-table th.product-total,
.woocommerce-order .woocommerce-order-details .woocommerce-table td.product-total {
  text-align: right;
  white-space: nowrap !important;
  padding-left: 16px;
  width: 30%;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table .product-name {
  width: 70%;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table .product-name a {
  color: #111827;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
  line-height: 1.4;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table .product-name a:hover {
  color: #ef233c;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table .product-name .product-quantity {
  color: #5c626d;
  font-weight: 600;
  margin-left: 4px;
  display: inline-block;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table .product-total {
  font-weight: 700;
  color: #111827;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table tfoot th,
.woocommerce-order .woocommerce-order-details .woocommerce-table tfoot td {
  padding: 12px 0;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-order-details .woocommerce-table tfoot th,
  .woocommerce-order .woocommerce-order-details .woocommerce-table tfoot td {
    padding: 16px 0;
  }
}
.woocommerce-order .woocommerce-order-details .woocommerce-table tfoot th {
  font-weight: 600;
  color: #5c626d;
  padding-right: 16px;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table tfoot td {
  font-weight: 700;
  color: #111827;
  text-align: right;
  white-space: nowrap !important;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table tfoot td .shipped_via {
  display: block;
  color: #5c626d;
  font-weight: 400;
  margin-top: 4px;
  font-size: 11px;
  white-space: normal;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-order-details .woocommerce-table tfoot td .shipped_via {
    font-size: 12px;
  }
}
.woocommerce-order .woocommerce-order-details .woocommerce-table tfoot tr:nth-last-child(2) th {
  color: #111827;
  border-bottom: none;
  font-size: 14px;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-order-details .woocommerce-table tfoot tr:nth-last-child(2) th {
    font-size: 16px;
  }
}
.woocommerce-order .woocommerce-order-details .woocommerce-table tfoot tr:nth-last-child(2) td {
  border-bottom: none;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table tfoot tr:nth-last-child(2) td .amount {
  font-weight: 800;
  color: #1aba1a;
  font-size: 18px;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-order-details .woocommerce-table tfoot tr:nth-last-child(2) td .amount {
    font-size: 24px;
  }
}
.woocommerce-order .woocommerce-order-details .woocommerce-table tfoot tr:last-child th,
.woocommerce-order .woocommerce-order-details .woocommerce-table tfoot tr:last-child td {
  border-bottom: none;
  padding-bottom: 0;
}
.woocommerce-order .woocommerce-customer-details {
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  border: none;
  border-radius: 12px;
  padding: 24px 20px;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-customer-details {
    border-radius: 16px;
    padding: 40px 32px;
  }
}
@media (min-width: 1024px) {
  .woocommerce-order .woocommerce-customer-details {
    padding: 50px 40px;
  }
}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-customer-details .woocommerce-columns {
    flex-direction: row;
    gap: 0;
  }
}
.woocommerce-order .woocommerce-customer-details .woocommerce-column {
  flex: 1;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-customer-details .woocommerce-column:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding-right: 40px !important;
  }
  .woocommerce-order .woocommerce-customer-details .woocommerce-column:last-child {
    padding-left: 40px !important;
  }
}
.woocommerce-order .woocommerce-customer-details .woocommerce-column__title {
  font-weight: 700;
  color: #111827;
  padding-bottom: 0;
  border: none;
  font-size: 15px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-customer-details .woocommerce-column__title {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.woocommerce-order .woocommerce-customer-details .woocommerce-column address {
  font-style: normal;
  line-height: 1.6;
  color: #5c626d;
  margin: 0;
  border: none;
  padding: 0;
  font-size: 13px;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-customer-details .woocommerce-column address {
    font-size: 14px;
  }
}
.woocommerce-order .woocommerce-customer-details .woocommerce-column address p {
  color: #111827;
  font-weight: 600;
  margin: 12px 0 0 0;
}
@media (min-width: 768px) {
  .woocommerce-order .woocommerce-customer-details .woocommerce-column address p {
    margin: 16px 0 0 0;
  }
}

.woocommerce .woocommerce-info {
  text-align: center;
  color: #5c626d;
  font-size: 14px;
  background: transparent;
  border: none;
  padding: 0;
}
@media (min-width: 768px) {
  .woocommerce .woocommerce-info {
    font-size: 15px;
  }
}
.woocommerce .woocommerce-info::before {
  display: none;
}
.woocommerce form.woocommerce-form-login {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  border: none;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .woocommerce form.woocommerce-form-login {
    padding: 40px;
  }
}
.woocommerce form.woocommerce-form-login .form-row {
  float: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding: 0;
}
.woocommerce form.woocommerce-form-login .form-row label {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.4;
}
.woocommerce form.woocommerce-form-login .form-row label .required {
  color: #ef233c;
  text-decoration: none;
}
.woocommerce form.woocommerce-form-login .form-row input.input-text {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fdfdfd;
  font-size: 15px;
  color: #111827;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.woocommerce form.woocommerce-form-login .form-row input.input-text:focus {
  border-color: #ef233c;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 1px #ef233c;
}
.woocommerce form.woocommerce-form-login .password-input {
  position: relative;
  display: block;
  width: 100%;
}
.woocommerce form.woocommerce-form-login .password-input .show-password-input {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.woocommerce form.woocommerce-form-login .password-input .show-password-input:hover {
  opacity: 1;
  color: #ef233c;
}
.woocommerce form.woocommerce-form-login .form-row:not(.form-row-first):not(.form-row-last) {
  margin-top: 8px;
}
.woocommerce form.woocommerce-form-login .form-row:not(.form-row-first):not(.form-row-last) .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  font-weight: 400;
  color: #5c626d;
  cursor: pointer;
}
.woocommerce form.woocommerce-form-login .form-row:not(.form-row-first):not(.form-row-last) .woocommerce-form__label-for-checkbox input[type=checkbox] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #ef233c;
  cursor: pointer;
}
.woocommerce form.woocommerce-form-login .form-row:not(.form-row-first):not(.form-row-last) .woocommerce-button {
  width: 100%;
  background: #ef233c;
  color: #ffffff;
  padding: 16px;
  margin-top: 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
}
.woocommerce form.woocommerce-form-login .form-row:not(.form-row-first):not(.form-row-last) .woocommerce-button:hover {
  background: rgb(231.6525423729, 16.8474576271, 43.1716101695);
}
.woocommerce form.woocommerce-form-login .form-row:not(.form-row-first):not(.form-row-last) .woocommerce-button:active {
  transform: scale(0.98);
}
.woocommerce form.woocommerce-form-login .lost_password {
  text-align: center;
  margin: 16px 0 0 0;
  padding: 0;
}
.woocommerce form.woocommerce-form-login .lost_password a {
  color: #5c626d;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.woocommerce form.woocommerce-form-login .lost_password a:hover {
  color: #ef233c;
  text-decoration: underline;
}
.woocommerce form.woocommerce-form-login .clear {
  display: none;
}

.woocommerce-notice--success.woocommerce-thankyou-order-received {
  background: transparent;
  border: none;
  color: #111827;
  padding: 0;
  text-align: center;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
  gap: 12px;
}
@media (min-width: 768px) {
  .woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-size: 24px;
    gap: 16px;
  }
}
.woocommerce-notice--success.woocommerce-thankyou-order-received::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-radius: 50%;
  font-weight: 400;
  width: 48px;
  height: 48px;
  font-size: 24px;
}
@media (min-width: 768px) {
  .woocommerce-notice--success.woocommerce-thankyou-order-received::before {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }
}

.contact-subpage-main .container .icons-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .contact-subpage-main .container .icons-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .contact-subpage-main .container .icons-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.contact-subpage-main .container .icons-container .item {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  transition: box-shadow 0.3s;
}
.contact-subpage-main .container .icons-container .item:hover {
  box-shadow: 0px 10px 10px -8px rgba(0, 0, 0, 0.25);
}
.contact-subpage-main .container .icons-container .item:hover .icon {
  transform: scale(1.1);
}
.contact-subpage-main .container .icons-container .item .icon {
  position: relative;
  height: 40px;
  width: 40px;
  background-color: #ef233c;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}
.contact-subpage-main .container .icons-container .item .icon svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
@media (min-width: 1024px) {
  .contact-subpage-main .container .icons-container .item .icon {
    height: 48px;
    width: 48px;
  }
  .contact-subpage-main .container .icons-container .item .icon svg {
    height: 22px;
    width: 22px;
  }
}
.contact-subpage-main .container .icons-container .item h3 {
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .contact-subpage-main .container .icons-container .item h3 {
    font-size: 18px;
  }
}
.contact-subpage-main .container .icons-container .item a {
  margin-top: 8px;
  font-size: 13px;
  color: #5c626d;
  transition: color 0.3s;
}
.contact-subpage-main .container .icons-container .item a:hover {
  color: #ef233c;
}
@media (min-width: 1024px) {
  .contact-subpage-main .container .icons-container .item a {
    font-size: 14px;
  }
}
.contact-subpage-main .container .icons-container .item p {
  font-size: 13px;
  color: #5c626d;
}
@media (min-width: 1024px) {
  .contact-subpage-main .container .icons-container .item p {
    font-size: 14px;
  }
}
.contact-subpage-main .container .icons-container .item p:first-of-type {
  margin-top: 8px;
}
.contact-subpage-main .container .form-map-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .contact-subpage-main .container .form-map-container {
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 50px;
  }
}
.contact-subpage-main .container .form-map-container .form-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 16px;
}
.contact-subpage-main .container .form-map-container .form-container h2 {
  color: #ef233c;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .contact-subpage-main .container .form-map-container .form-container h2 {
    font-size: 13px;
  }
}
.contact-subpage-main .container .form-map-container .form-container .title {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  margin: 8px 0;
}
@media (min-width: 1024px) {
  .contact-subpage-main .container .form-map-container .form-container .title {
    font-size: 26px;
  }
}
.contact-subpage-main .container .form-map-container .form-container .description {
  color: #5c626d;
  font-size: 13px;
}
@media (min-width: 1024px) {
  .contact-subpage-main .container .form-map-container .form-container .description {
    font-size: 14px;
  }
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 {
  margin-top: 24px;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 p {
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 p br {
  display: none;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 .form-row {
  margin: 0;
  padding: 0;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 label {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 label .required {
  color: #111827;
  margin-left: 2px;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 input[type=text],
.contact-subpage-main .container .form-map-container .form-container .wpcf7 input[type=email],
.contact-subpage-main .container .form-map-container .form-container .wpcf7 input[type=tel],
.contact-subpage-main .container .form-map-container .form-container .wpcf7 textarea {
  width: 100%;
  padding: 16px 10px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  color: #111827;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 input[type=text]::-moz-placeholder, .contact-subpage-main .container .form-map-container .form-container .wpcf7 input[type=email]::-moz-placeholder, .contact-subpage-main .container .form-map-container .form-container .wpcf7 input[type=tel]::-moz-placeholder, .contact-subpage-main .container .form-map-container .form-container .wpcf7 textarea::-moz-placeholder {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #5c626d;
  font-weight: 400;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 input[type=text]::placeholder,
.contact-subpage-main .container .form-map-container .form-container .wpcf7 input[type=email]::placeholder,
.contact-subpage-main .container .form-map-container .form-container .wpcf7 input[type=tel]::placeholder,
.contact-subpage-main .container .form-map-container .form-container .wpcf7 textarea::placeholder {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #5c626d;
  font-weight: 400;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 input[type=text]:focus,
.contact-subpage-main .container .form-map-container .form-container .wpcf7 input[type=email]:focus,
.contact-subpage-main .container .form-map-container .form-container .wpcf7 input[type=tel]:focus,
.contact-subpage-main .container .form-map-container .form-container .wpcf7 textarea:focus {
  border-color: #ef233c;
  background-color: #ffffff;
  outline: none;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 textarea {
  font-family: "Inter", sans-serif;
  min-height: 140px;
  resize: vertical;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 .file-group input[type=file] {
  width: 100%;
  padding: 12px 0;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 .file-group input[type=file]::file-selector-button {
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 8px 16px;
  border-radius: 6px;
  color: #111827;
  font-weight: 500;
  cursor: pointer;
  margin-right: 12px;
  transition: background-color 0.2s;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 .file-group input[type=file]::file-selector-button:hover {
  background-color: #e5e7eb;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 .file-group .file-info {
  display: block;
  font-size: 12px;
  color: #5c626d;
  margin-top: -8px;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 .submit-row p {
  margin-bottom: 0;
  align-items: flex-end;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 .submit-row input[type=submit] {
  background-color: #ef233c;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 .submit-row input[type=submit]:hover {
  background-color: rgb(207.8813559322, 15.1186440678, 38.7415254237);
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 .submit-row input[type=submit]:active {
  transform: scale(0.98);
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 .submit-row .wpcf7-spinner {
  display: none;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 .wpcf7-response-output {
  margin: 20px 0 0 0 !important;
  padding: 16px !important;
  border-radius: 8px !important;
  font-size: 14px;
  font-weight: 500;
  border: none !important;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  background-color: #fef2f2;
  color: #ef4444;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #f0fdf4;
  color: #22c55e;
}
.contact-subpage-main .container .form-map-container .form-container .wpcf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #ef4444;
}
.contact-subpage-main .container .form-map-container .form-container .map {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  margin-top: 24px;
}
.contact-subpage-main .container .form-map-container .form-container .map iframe {
  flex-grow: 1;
  border-radius: 16px;
}

.about-company-subpage-main {
  background-color: #fff;
  padding-top: 40px;
}
@media (min-width: 992px) {
  .about-company-subpage-main {
    padding-top: 60px;
  }
}
.about-company-subpage-main .about-history {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-history {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
.about-company-subpage-main .about-history__content {
  flex: 1;
}
.about-company-subpage-main .about-history__subtitle {
  display: block;
  color: #ef233c;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.about-company-subpage-main .about-history__title {
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin: 0 0 24px 0;
}
.about-company-subpage-main .about-history__text {
  color: #5c626d;
  font-size: 14px;
  line-height: 1.6;
}
.about-company-subpage-main .about-history__text p {
  margin-bottom: 16px;
}
.about-company-subpage-main .about-history__text p:last-child {
  margin-bottom: 0;
}
.about-company-subpage-main .about-history__text strong {
  color: #111827;
  font-weight: 600;
}
.about-company-subpage-main .about-history__image-col {
  flex: 1;
  position: relative;
}
.about-company-subpage-main .about-history__image-wrapper {
  position: relative;
  border-radius: 20px;
}
.about-company-subpage-main .about-history__image-wrapper .about-history__image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.about-company-subpage-main .about-history__badge {
  position: absolute;
  background: #ffffff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  bottom: 15px;
  left: 15px;
  right: 15px;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-history__badge {
    bottom: 30px;
    left: -40px;
    right: auto;
  }
}
.about-company-subpage-main .about-history__badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(239, 35, 59, 0.1);
  color: #ef233c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-company-subpage-main .about-history__badge-icon svg {
  width: 20px;
  height: 20px;
}
.about-company-subpage-main .about-history__badge-text {
  display: flex;
  flex-direction: column;
}
.about-company-subpage-main .about-history__badge-text strong {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
}
.about-company-subpage-main .about-history__badge-text span {
  font-size: 12px;
  color: #5c626d;
  font-weight: 500;
}
.about-company-subpage-main .about-stats {
  background-color: #f5f6f8;
  padding-top: 40px;
  margin-top: 40px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-stats {
    padding-top: 60px;
    margin-top: 60px;
    padding-bottom: 80px;
  }
}
.about-company-subpage-main .about-stats__header {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-stats__header {
    margin-bottom: 60px;
  }
}
.about-company-subpage-main .about-stats__subtitle {
  display: inline-block;
  color: #ef233c;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.about-company-subpage-main .about-stats__title {
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin: 0;
}
.about-company-subpage-main .about-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .about-company-subpage-main .about-stats__grid {
    gap: 16px;
  }
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.about-company-subpage-main .about-stats__card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-stats__card {
    padding: 32px 24px;
  }
}
.about-company-subpage-main .about-stats__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.about-company-subpage-main .about-stats__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(239, 35, 59, 0.08);
  color: #ef233c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-stats__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
  }
}
.about-company-subpage-main .about-stats__icon svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-stats__icon svg {
    width: 24px;
    height: 24px;
  }
}
.about-company-subpage-main .about-stats__number {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-stats__number {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
.about-company-subpage-main .about-stats__dot {
  color: #ef233c;
}
.about-company-subpage-main .about-stats__desc {
  color: #5c626d;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-stats__desc {
    font-size: 14px;
    line-height: 1.5;
  }
}
.about-company-subpage-main .about-lines {
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-lines {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.about-company-subpage-main .about-lines__header {
  max-width: 700px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-lines__header {
    margin-bottom: 50px;
  }
}
.about-company-subpage-main .about-lines__subtitle {
  display: inline-block;
  color: #ef233c;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.about-company-subpage-main .about-lines__title {
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin: 0 0 16px 0;
}
.about-company-subpage-main .about-lines__desc {
  color: #5c626d;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.about-company-subpage-main .about-lines__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .about-company-subpage-main .about-lines__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-lines__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-company-subpage-main .line-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-company-subpage-main .line-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.about-company-subpage-main .line-card__image-box {
  position: relative;
  background-color: #f5f6f8;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
}
.about-company-subpage-main .line-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #ef233c;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.about-company-subpage-main .line-card__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-company-subpage-main .line-card__content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.about-company-subpage-main .line-card__brand {
  font-size: 11px;
  color: #8c94a3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.about-company-subpage-main .line-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px 0;
}
.about-company-subpage-main .line-card__text {
  font-size: 14px;
  color: #5c626d;
  line-height: 1.6;
  margin: 0 0 24px 0;
}
.about-company-subpage-main .line-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.about-company-subpage-main .line-card__list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.about-company-subpage-main .line-card__list li:last-child {
  margin-bottom: 0;
}
.about-company-subpage-main .line-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background-color: #ef233c;
  border-radius: 50%;
}
.about-company-subpage-main .line-card__list li a {
  font-size: 14px;
  color: #111827;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-company-subpage-main .line-card__list li a:hover {
  color: #ef233c;
}
.about-company-subpage-main .line-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ef233c;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  width: -moz-max-content;
  width: max-content;
  transition: gap 0.2s ease;
}
.about-company-subpage-main .line-card__cta:hover {
  gap: 12px;
}
.about-company-subpage-main .about-b2b {
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-b2b {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.about-company-subpage-main .about-b2b__container {
  background-color: #f5f6f8;
  border-radius: 20px;
  padding: 32px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-b2b__container {
    padding: 64px;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
}
.about-company-subpage-main .about-b2b__image-col {
  width: 100%;
}
.about-company-subpage-main .about-b2b__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.about-company-subpage-main .about-b2b__content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-company-subpage-main .about-b2b__subtitle {
  display: inline-block;
  color: #ef233c;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.about-company-subpage-main .about-b2b__title {
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin: 0 0 16px 0;
}
.about-company-subpage-main .about-b2b__desc {
  color: #5c626d;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 32px 0;
}
.about-company-subpage-main .about-b2b__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-company-subpage-main .about-b2b__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-company-subpage-main .about-b2b__step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ef233c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-company-subpage-main .about-b2b__step-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-company-subpage-main .about-b2b__step-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-company-subpage-main .about-b2b__step-title svg {
  color: #ef233c;
}
.about-company-subpage-main .about-b2b__step-desc {
  font-size: 13px;
  color: #5c626d;
  line-height: 1.4;
  margin: 0;
}
.about-company-subpage-main .about-b2b__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ef233c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, gap 0.2s ease;
}
.about-company-subpage-main .about-b2b__cta:hover {
  background-color: rgb(217.3898305085, 15.8101694915, 40.513559322);
  gap: 12px;
}
.about-company-subpage-main .b2b-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.about-company-subpage-main .b2b-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.about-company-subpage-main .b2b-modal.is-open .b2b-modal__dialog {
  transform: translateY(0) scale(1);
}
.about-company-subpage-main .b2b-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.about-company-subpage-main .b2b-modal__dialog {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .about-company-subpage-main .b2b-modal__dialog {
    padding: 48px;
  }
}
.about-company-subpage-main .b2b-modal__dialog::-webkit-scrollbar {
  width: 6px;
}
.about-company-subpage-main .b2b-modal__dialog::-webkit-scrollbar-thumb {
  background-color: #e5e7eb;
  border-radius: 10px;
}
.about-company-subpage-main .b2b-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #8c94a3;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.about-company-subpage-main .b2b-modal__close:hover {
  background-color: #f5f6f8;
  color: #111827;
}
.about-company-subpage-main .b2b-modal__subtitle {
  display: block;
  color: #ef233c;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.about-company-subpage-main .b2b-modal__title {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}
.about-company-subpage-main .b2b-modal__desc {
  color: #5c626d;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 32px 0;
}
.about-company-subpage-main .custom-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-company-subpage-main .custom-form span.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.about-company-subpage-main .custom-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-company-subpage-main .custom-form__group label {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}
.about-company-subpage-main .custom-form__group input[type=text],
.about-company-subpage-main .custom-form__group input[type=email],
.about-company-subpage-main .custom-form__group input[type=tel],
.about-company-subpage-main .custom-form__group textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  color: #111827;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.about-company-subpage-main .custom-form__group input[type=text]::-moz-placeholder, .about-company-subpage-main .custom-form__group input[type=email]::-moz-placeholder, .about-company-subpage-main .custom-form__group input[type=tel]::-moz-placeholder, .about-company-subpage-main .custom-form__group textarea::-moz-placeholder {
  color: #a0aabf;
}
.about-company-subpage-main .custom-form__group input[type=text]::placeholder,
.about-company-subpage-main .custom-form__group input[type=email]::placeholder,
.about-company-subpage-main .custom-form__group input[type=tel]::placeholder,
.about-company-subpage-main .custom-form__group textarea::placeholder {
  color: #a0aabf;
}
.about-company-subpage-main .custom-form__group input[type=text]:focus,
.about-company-subpage-main .custom-form__group input[type=email]:focus,
.about-company-subpage-main .custom-form__group input[type=tel]:focus,
.about-company-subpage-main .custom-form__group textarea:focus {
  outline: none;
  border-color: #ef233c;
  box-shadow: 0 0 0 3px rgba(239, 35, 59, 0.1);
}
.about-company-subpage-main .custom-form__group textarea {
  resize: vertical;
  min-height: 120px;
}
.about-company-subpage-main .custom-form__file {
  font-size: 14px;
  color: #5c626d;
}
.about-company-subpage-main .custom-form__file::file-selector-button {
  margin-right: 16px;
  padding: 10px 16px;
  background-color: #f5f6f8;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: #111827;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.about-company-subpage-main .custom-form__file::file-selector-button:hover {
  background-color: #e5e7eb;
}
.about-company-subpage-main .custom-form__note {
  font-size: 12px;
  color: #8c94a3;
  margin-top: 4px;
}
.about-company-subpage-main .custom-form__submit-wrapper {
  margin-top: 10px;
}
.about-company-subpage-main .custom-form__submit-wrapper p {
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  gap: 16px;
}
.about-company-subpage-main .custom-form__submit-wrapper .custom-form__submit {
  width: auto;
}
.about-company-subpage-main .custom-form__submit-wrapper .wpcf7-spinner {
  display: none;
}
.about-company-subpage-main .custom-form__submit {
  background-color: #ef233c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.about-company-subpage-main .custom-form__submit:hover {
  background-color: rgb(217.3898305085, 15.8101694915, 40.513559322);
  transform: translateY(-2px);
}
.about-company-subpage-main .custom-form .wpcf7-not-valid {
  border-color: #ef233c !important;
}
.about-company-subpage-main .custom-form .wpcf7-not-valid:focus {
  box-shadow: 0 0 0 3px rgba(239, 35, 59, 0.1) !important;
}
.about-company-subpage-main .custom-form .wpcf7-not-valid-tip {
  color: #ef233c;
  font-size: 12px;
  font-weight: 500;
  margin-top: 6px;
  display: block;
}
.about-company-subpage-main .b2b-modal .wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0 0 !important;
  padding: 14px 16px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  border-color: rgba(239, 35, 59, 0.15) !important;
}
.about-company-subpage-main .b2b-modal .wpcf7 form .wpcf7-response-output.wpcf7-validation-errors, .about-company-subpage-main .b2b-modal .wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ng, .about-company-subpage-main .b2b-modal .wpcf7 form .wpcf7-response-output.wpcf7-spam-blocked {
  background-color: rgba(239, 35, 59, 0.05) !important;
  border-color: rgba(239, 35, 59, 0.15) !important;
  color: #ef233c !important;
}
.about-company-subpage-main .b2b-modal .wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: rgba(16, 185, 129, 0.08) !important;
  border-color: rgba(16, 185, 129, 0.2) !important;
  color: #059669 !important;
}
.about-company-subpage-main .about-partners {
  padding-top: 40px;
  padding-bottom: 60px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-partners {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.about-company-subpage-main .about-partners__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-partners__header {
    margin-bottom: 50px;
  }
}
.about-company-subpage-main .about-partners__subtitle {
  display: inline-block;
  color: #ef233c;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.about-company-subpage-main .about-partners__title {
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin: 0 0 12px 0;
}
.about-company-subpage-main .about-partners__desc {
  color: #5c626d;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.about-company-subpage-main .about-partners__carousel-wrapper {
  margin-top: 30px;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.about-company-subpage-main .about-partners__carousel {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  flex-wrap: nowrap;
}
.about-company-subpage-main .about-partners__carousel:hover .about-partners__track {
  animation-play-state: paused;
}
.about-company-subpage-main .about-partners__track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: nowrap;
  gap: 60px;
  padding-right: 60px;
  animation: marqueeLogos 60s linear infinite;
}
@media (min-width: 768px) {
  .about-company-subpage-main .about-partners__track {
    gap: 80px;
    padding-right: 80px;
  }
}
.about-company-subpage-main .about-partners .partner-logo {
  height: 35px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: default;
}
@media (min-width: 768px) {
  .about-company-subpage-main .about-partners .partner-logo {
    height: 45px;
  }
}
.about-company-subpage-main .about-partners .partner-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}
@keyframes marqueeLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.about-company-subpage-main .about-features {
  background-color: #f5f6f8;
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-features {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.about-company-subpage-main .about-features__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-features__header {
    margin-bottom: 50px;
  }
}
.about-company-subpage-main .about-features__subtitle {
  display: inline-block;
  color: #ef233c;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.about-company-subpage-main .about-features__title {
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin: 0;
}
.about-company-subpage-main .about-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .about-company-subpage-main .about-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .about-company-subpage-main .about-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.about-company-subpage-main .feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
@media (min-width: 992px) {
  .about-company-subpage-main .feature-card {
    padding: 32px 24px;
  }
}
.about-company-subpage-main .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.about-company-subpage-main .feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(239, 35, 59, 0.08);
  color: #ef233c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .about-company-subpage-main .feature-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
  }
}
.about-company-subpage-main .feature-card__icon svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 992px) {
  .about-company-subpage-main .feature-card__icon svg {
    width: 24px;
    height: 24px;
  }
}
.about-company-subpage-main .feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px 0;
}
@media (min-width: 992px) {
  .about-company-subpage-main .feature-card__title {
    font-size: 20px;
    margin: 0 0 12px 0;
  }
}
.about-company-subpage-main .feature-card__desc {
  color: #5c626d;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 20px 0;
}
@media (min-width: 992px) {
  .about-company-subpage-main .feature-card__desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 24px 0;
  }
}
.about-company-subpage-main .feature-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ef233c;
}
.about-company-subpage-main .feature-card__footer svg {
  width: 14px;
  height: 14px;
}
@media (min-width: 992px) {
  .about-company-subpage-main .feature-card__footer svg {
    width: 16px;
    height: 16px;
  }
}
.about-company-subpage-main .feature-card__footer span {
  font-size: 12px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .about-company-subpage-main .feature-card__footer span {
    font-size: 13px;
  }
}/*# sourceMappingURL=main.css.map */