:root {
    --dark:#1b2523;
    --olive:#9d9877;
    --olive-dark:#827d61;
    --text:#1c2523;
    --muted:#8d8a72;
    --line:#e6e6e0;
    --container:1370px;
}

* {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
}

body {
    margin:0;
    font-family:Inter,Arial,sans-serif;
    color:var(--text);
    background:#fff;
    font-size:14px;
    line-height:1.45;
}

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

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

*:focus {outline: 0;}

a {text-decoration: none;
   cursor: pointer;}

b, strong {font-weight: 700;}

div {box-sizing: border-box;}

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

.container {
    width:min(var(--container),calc(100% - 48px));
    margin:0 auto;
}


.site-header {
  position: relative;
  z-index: 5;
  background: #fff;
}

.topbar {
  background: var(--dark);
  color: #fff;
}

.topbar__inner {
  height: 125px;
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 150px;
  height: auto;
  display: block;
}

.topbar__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  color: #aaa48a;
  font-weight: 800;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.contact-line span,
.contact-line em {
  font-size: 14px;
  font-style: normal;
  color: #aaa48a;
}

.contact-line strong {
  font-size: 28px;
  line-height: 1;
  color: #fff;
  font-weight: 900;
}

.contact-line .mail {
  margin-left: 8px;
  color: #aaa48a;
  font-size: 15px;
  text-decoration: none;
}

.user-line {
  display: flex;
  align-items: center;
  gap: 16px;
}

.account {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
}

.account img {
  width: 20px;
  height: auto;
  display: block;
}

.fav {
  color: #aaa48a;
  margin-right: 20px;
  border: 2px solid #aaa48a;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}

.cart-wrap {
  position: relative;
  height: 45px;
  min-width: 75px;
  padding: 0 16px 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid #aaa48a;
  border-right: 2px solid #aaa48a;
  border-bottom: 2px solid #aaa48a;
}

.cart-wrap::before,
.cart-wrap::after {
  content: "";
  position: absolute;
  background: #aaa48a;
}


.cart-icon {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon img {
  width: 22px;
  display: block;
}

.cart-count {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.cart-box {
  padding-left: 14px;
  color: #fff;
  font-size: 16px;
  line-height: 1.05;
  font-weight: 400;
}

.cart-box strong {
  font-size: 18px;
  font-weight: 900;
}

.nav {
  background: linear-gradient(to right, #fff 0 70%, #b5b39e 70% 100%);
  
}

.nav__inner {
  height: 74px;
  display: flex;
  align-items: space-between;
  max-width: 1800px;
   width: 100%;
   padding: 0 20px;
	margin: 0 auto;
}

.nav__menu-wrap {
  display: flex;
  align-items: center;
  flex: 1;
}

.menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {padding: 0 30px 0 0;
             position: relative;}

.menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #050505;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: .25s ease;
}

/* hover + active dla całego menu */
.menu li:hover > a,
.menu .current-menu-item > a,
.menu .current-menu-parent > a,
.menu .current-menu-ancestor > a {
  color: #aaa48a;
}

.menu a:after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.search {
  width: 557px;
  background: #b5b39e;
  display: flex;
  align-items: center;
  padding: 0 28px;
}

.search:before {
  content: "⌕";
  color: #fff;
  font-size: 42px;
  line-height: 1;
  margin-right: 12px;
}

.search input {
  width: 100%;
  height: 46px;
  border: 0;
  border-bottom: 2px solid #fff;
  background: transparent;
  color: #fff;
  padding: 0;
  font-size: 16px;
  font-weight: 800;
  outline: none;
}

.search input::placeholder {
  color: #fff;
  opacity: 1;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 30px;
  color: var(--dark);
}



.hero {
  height: 970px;
  overflow: hidden;
  background: #d4c1a3;
  position: relative;
}

.hero__bg {
  height: 100%;
  position: relative;
}

.hero__content {
  position: absolute;
  left: 7%;
  top: 115px;
  width: 690px;
  height: 390px;
}

.hero__frame {
  position: absolute;
  left: 0;
  top: 0;
  width: 610px;
  height: 320px;
  border-top: 6px solid #20292a;
  border-right: 6px solid #20292a;
}

.hero__frame::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 70px;
  background: #20292a;
}

.hero__logo {
  position: absolute;
  left: 70px;
  top: 95px;
  max-width: 520px;
  height: auto;
  z-index: 2;
}

.hero__gun {
  position: absolute;
  left: -110px;
  top: 235px;
  width: 760px;
  height: auto;
  z-index: 3;
}

.hero__btn {
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 24px 34px;
  background: #20292a;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}

.hero__btn span {
  font-size: 30px;
  line-height: 0;
  margin-top: -2px;
}

.hero__btn:hover {
  background: #000;
  color: #fff;
}

.section {
    padding:72px 0 0;
}

.section-title {
    margin:0 0 24px;
    text-transform:uppercase;
    color:var(--muted);
    font-size:21px;
    line-height:1;
    font-weight:900;
    letter-spacing:.02em;
}

.products-section {
  padding-top: 72px;
  overflow: hidden;
}

.products-slider-wrap {
  position: relative;
}

.products-slider {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  overflow: visible;
}

.products-track {
  display: flex;
  gap: 24px;
  transition: transform .45s ease;
}

.product-card {
  flex: 0 0 calc((100% - 72px) / 4);
  background: #fff;
  border: 1px solid var(--line);
  padding: 0 0 16px;
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}

.product-card.is-side {
  opacity: .16;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.product-card h3 {
  font-size: 14px;
  line-height: 1.2;
  margin: 12px 12px 4px;
  font-weight: 900;
}


.product-card {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.product-card__image {
  position: relative;
  display: block;
}

.product-card__image img {
  display: block;
}

.product-card__thumbs {
  position: absolute;
  top: -1px;
  right: -72px;
  width: 72px;
  background: #fff;
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 50;
}

.product-card:hover .product-card__thumbs {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.product-card__thumbs span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 6px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.product-card__thumbs span:last-child {
  border-bottom: 0;
}

.product-card__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-bottom: 0;
}

.product-card__actions {
  display: flex;
  margin: 12px 0 -16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.product-card:hover .product-card__actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.product-card__cart {
  flex: 1;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8d9492;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.product-card__fav {
  width: 48px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #183038;
  color: #fff;
  text-decoration: none;
}

.price {
  margin: 0 12px;
  font-weight: 800;
}

.products-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-20%);
  border: 0;
  background: transparent;
  color: #1b2523;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  padding: 10px;
}

.products-arrow--prev {
  left: calc((100% - min(var(--container), calc(100% - 48px))) / 2 - 42px);
}

.products-arrow--next {
  right: calc((100% - min(var(--container), calc(100% - 48px))) / 2 - 42px);
  color: var(--olive);
}

@media (max-width: 991px) {
  .product-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 575px) {
  .product-card {
    flex-basis: 100%;
  }

  .products-arrow--prev {
    left: 4px;
  }

  .products-arrow--next {
    right: 4px;
  }
}

.product-card {
    background:#fff;
    border:1px solid var(--line);
    padding:0 0 16px;
    transition:.25s;
}

.product-card:hover {
    transform:translateY(-4px);
    box-shadow:0 16px 30px rgba(0,0,0,.08);
    z-index: 30;
}

.product-card img {
    width:100%;
    aspect-ratio:1/1.18;
    object-fit:cover;
}

.product-card h3 {
    font-size:14px;
    line-height:1.2;
    margin:12px 12px 4px;
    font-weight:900;
}

.price {
    margin:0 12px;
    font-weight:800;
}

.price del {
    color:#777;
    font-weight:500;
    margin-right:5px;
}

.categories-section {
    padding-top:82px;
}

.category-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:270px;
    gap:28px;
}

.category-card,
.blog-card {
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px 34px;
    color:#fff;
    background-position:center;
    background-size:cover;
    overflow:hidden;
    min-height:250px;
}

.category-card:before,;
.blog-card:before {
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,0) 40%,rgba(0,0,0,.78) 100%);
    transition:.25s;
}

.category-card:hover:before,;
.blog-card:hover:before {
    background:linear-gradient(180deg,rgba(0,0,0,.1) 20%,rgba(0,0,0,.88) 100%);
}

.category-card span,
.category-card small,
.blog-card span,
.blog-card small {
    position:relative;
    z-index:1;
}

.category-card span,
.blog-card span {
    text-transform:uppercase;
    font-size:21px;
    line-height:1;
    font-weight:900;
}

.category-card small,
.blog-card small {

    margin-top:6px;
    font-size:12px;
    line-height:1.25;
    color:#e6e1d8;
}

.category-card--wide {
    grid-column:span 2;
}

.products-section--promo {
    padding-top:90px;
}

.category-grid--small {
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:235px;
    margin-top:80px;
}

                .brands {
                  overflow: hidden;
                  padding: 50px 0 0 0;
                  background: #fff;
                }

                .brands__track {
                  display: flex;
                  width: max-content;
                  will-change: transform;
                }

                .brands__group {
                  display: flex;
                  align-items: center;
                  gap: 90px;
                  padding-right: 90px;
                  flex-shrink: 0;
                }

                .brands img {
                  display: block;
                  max-height: 90px;
                  width: auto;
                  object-fit: contain;
                  flex-shrink: 0;
                }

											
.newsletter-section {
  padding: 45px 0;
}

.newsletter-box {
  position: relative;
  min-height: 370px;
  padding: 95px 110px 70px;
  background: url("img/newsletter.webp") center / cover no-repeat;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;

  color: #fff;
}

/* łamana linia jak w sklep stacjonarny */
.newsletter-box::before {
  content: "";
  position: absolute;

  left: 112px;
  top: 32px;

  width: calc(100% - 92px);
  height: 80px;

  border-top: 8px solid #fff;
  border-left: 8px solid #fff;

  pointer-events: none;
}

.newsletter-left,
.newsletter-right {
  position: relative;
  z-index: 2;
}

.newsletter-left h2 {
  margin: 0 0 28px;
  font-size: 42px;
  line-height: .92;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-left p {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
}

.newsletter-right h3 {
  margin: 0 0 26px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
}

.newsletter-form {
  width: 100%;
  max-width: 610px;
  height: 64px;

  border: 1px solid rgba(255,255,255,.9);

  display: flex;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;

  height: 100%;
  padding: 0 24px;

  border: 0;
  background: transparent;

  color: #fff;
  font-size: 20px;
  font-weight: 900;

  outline: none;
}

.newsletter-form input::placeholder {
  color: #fff;
  opacity: 1;
}

.newsletter-form button {
  width: 150px;
  border: 0;
  border-left: 3px solid #fff;

  background: transparent;

  color: #fff;
  font-size: 20px;
  font-weight: 900;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  transition: background .25s ease;
}

.newsletter-form button img {
  width: 18px;
  height: auto;
  display: block;
}

.newsletter-form button:hover {
  background: rgba(255,255,255,.08);
}

.newsletter-form button span {
  width: 14px;
  height: 14px;

  border-top: 4px solid #fff;
  border-right: 4px solid #fff;

  transform: rotate(45deg);

  display: block;

  margin-top: -2px;
}

.newsletter-check {
  margin-top: 28px;

  max-width: 670px;

  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;

  align-items: start;

  cursor: pointer;
}

.newsletter-check input {
  display: none;
}

.newsletter-check span {
  width: 34px;
  height: 34px;

  border: 2px solid #fff;

  display: block;

  transition: background .2s ease;
}

.newsletter-check input:checked + span {
  background: #b5b39e;
}

.newsletter-check em {
  font-style: normal;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500;
  color: #fff;
}


														/*		.newsletter-section {
															padding: 40px 0 54px;
														}

														.newsletter {
															position: relative;
															overflow: hidden;

															min-height: 242px;

															background: url('img/newsletter.webp') center/cover no-repeat;

															color: #fff;

															display: flex;
															align-items: center;
															justify-content: space-between;

															padding: 54px 78px;
														}

														.newsletter::before {
															content: "";

															position: absolute;
															left: 0;
															right: 0;
															bottom: 0;

															height: 134px;

															background: linear-gradient(
																to top,
																rgba(39, 43, 40, .9) 0%,
																rgba(39, 43, 40, .45) 38%,
																rgba(39, 43, 40, .12) 72%,
																rgba(39, 43, 40, 0) 100%
															);

															opacity: 0;

															transition: opacity .35s ease;

															z-index: 1;

															pointer-events: none;
														}

														.newsletter:hover::before {
															opacity: 1;
														}

														.newsletter > * {
															position: relative;
															z-index: 2;
														}

														.newsletter h2 {
															text-transform: uppercase;
															font-size: 32px;
															margin: 0 0 18px;
															font-weight: 900;
														}

														.newsletter p {
															margin: 0;
															font-size: 18px;
															font-weight: 800;
														}

														.newsletter form {
															width: 450px;
														}

														.newsletter label {
															display: block;
															margin-bottom: 10px;
															font-weight: 900;
														}

														.newsletter__row {
															display: flex;
															border: 1px solid rgba(255,255,255,.75);
														}

														.newsletter input {
															flex: 1;
															min-width: 0;

															background: rgba(255,255,255,.12);

															border: 0;

															color: #fff;

															padding: 0 18px;

															height: 43px;
														}

														.newsletter input::placeholder {
															color: #fff;
														}

														.newsletter button {
															width: 120px;

															border: 0;
															border-left: 1px solid rgba(255,255,255,.75);

															background: rgba(0,0,0,.2);

															color: #fff;

															font-weight: 900;
															text-transform: uppercase;

															transition:
																background .25s ease,
																color .25s ease;
														}

														.newsletter button:hover {
															background: #b5b39e;
															color: #fff;
														} */

.blog-section {
    padding-top:20px;
}

.blog-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:460px;
    gap:28px;
}

.blog-card {
    min-height:460px;
}

.blog-card--wide {
    grid-column:span 2;
}

.features {
    padding:55px 0 45px;
}

.features__grid {
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    text-align:center;
    color:#aaa58a;
}

.features__grid div {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    font-size:34px;
}

.features__grid strong {
    font-size:14px;
    color:#222;
}

.stationary {
    padding: 0 0 70px;
}

.stationary__box {
    position: relative;
    overflow: hidden;

    min-height: 365px;

    background: url('img/store.webp') center/cover no-repeat;

    color: #fff;

    display: grid;
    grid-template-columns: 1fr 1.25fr auto;

    align-items: center;

    gap: 40px;

    padding: 70px 86px;
}

.stationary__box::after {
    content: "";

    position: absolute;

    left: 86px;
    right: 0;
    bottom: 34px;

    height: 74px;

    border-left: 8px solid #fff;
    border-bottom: 8px solid #fff;

    pointer-events: none;
}

.stationary h2 {
    text-transform: uppercase;

    font-size: 36px;
    line-height: 1.05;

    margin: 0;

    font-weight: 900;

    position: relative;
    z-index: 2;
}

.stationary p {
    font-weight: 800;
    margin: 0;

    position: relative;
    z-index: 2;
}

.stationary .btn {
    position: relative;
    z-index: 2;
}

.google-reviews-section {
    padding: 0 0 70px;
}

.google-reviews {
    width: 100%;
}

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:54px;
    background:#a8a27e;
    color:#fff;
    text-transform:uppercase;
    font-weight:900;
    padding:0 34px;
}

														
.footer {
  background: var(--dark);
  color: #fff;
  padding: 92px 0 95px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1.25fr 1.1fr 1fr;
  gap: 78px;

  border-bottom: 2px solid rgba(255,255,255,.75);
  padding-bottom: 82px;
}

.footer h4 {
  margin: 0 0 14px;

  color: #b6ad83;

  font-size: 18px;
  line-height: 1;
  font-weight: 900;

  text-transform: uppercase;
}

.footer p {
  margin: 0 0 24px;

  color: #fff;

  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.footer strong {
  display: block;

  color: #fff;

  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
}

.footer a {
  color: #fff;

  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;

  text-decoration: none;

  transition: color .25s ease;
}

.footer a:hover {
  color: #b6ad83 !important;
  text-decoration: underline;
}

.footer__contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;

  margin-bottom: 34px;
}

.footer__icon {
  padding-top: 2px;
}

.footer__icon img {
  width: 34px;
  height: 34px;

  display: block;
  object-fit: contain;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 22px;

  margin-top: 36px;
  padding-left: 0;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__social img {
  width: 26px;
  height: 26px;

  display: block;
  object-fit: contain;
}

.footer__col--address p {
  margin-bottom: 24px;
}

.footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 0 26px;
  margin-top: 26px;

  background: #b6ad83;

  color: var(--dark) !important;

  font-size: 15px !important;
  font-weight: 900 !important;
  text-transform: uppercase;

  text-decoration: none !important;

  transition: background .25s ease;
}

.footer__btn:hover {
  background: #c5c2b0;
  color: var(--dark) !important;
  text-decoration: none !important;
}

.footer__col--payments img {
  display: block;

  max-width: 150px;
  height: auto;

  margin: 0 0 26px;
}

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

.footer-menu li {
  margin: 0 0 4px;
}

.footer-menu a {
  display: inline-block;
}

@media (max-width: 991px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 575px) {
  .footer {
    padding: 64px 0 72px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 54px;
  }

  .footer h4 {
    font-size: 16px;
  }

  .footer strong {
    font-size: 26px;
  }

  .footer p,
  .footer a {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 64px 0 72px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 54px;
    }

    .footer h4 {
        font-size: 16px;
    }

    .footer strong {
        font-size: 26px;
    }

    .footer p,
    .footer a {
        font-size: 16px;
    }
}


.topbar .container {max-width: 1800px;
                        width: 100%;
                        padding: 0 20px; }

/* WooCommerce - Moje konto / strony statyczne */

.static-page-content {
  max-width: 100%;
  color: var(--text);
}

.static-page-content .woocommerce {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  align-items: start;
}

/* Nawigacja konta */
.woocommerce-MyAccount-navigation {
  border: 1px solid var(--line);
  background: #fff;
}

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

.woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--line);
}

.woocommerce-MyAccount-navigation li:last-child {
  border-bottom: 0;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 15px 18px;
  color: var(--dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  transition: .25s ease;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation a:hover {
  background: var(--olive);
  color: #fff;
}

/* Content konta */
.woocommerce-MyAccount-content {
  border: 1px solid var(--line);
  background: #fff;
  padding: 34px;
  min-height: 360px;
}

.woocommerce-MyAccount-content p {
  margin: 0 0 18px;
}

/* Formularze */
.woocommerce form .form-row {
  margin: 0 0 18px;
  padding: 0;
}

.woocommerce label {
  display: block;
  margin-bottom: 7px;
  color: var(--dark);
  font-weight: 800;
  font-size: 13px;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: .25s ease;
}

.woocommerce textarea {
  height: 140px;
  padding: 14px;
}

.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(170,164,138,.18);
}

/* Fieldset hasła */
.woocommerce fieldset {
  margin: 26px 0 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

.woocommerce fieldset legend {
  padding: 0 10px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
}

/* Przyciski */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  background: var(--dark);
  color: #fff;
  padding: 0 28px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s ease;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
  background: var(--olive);
  color: #fff;
}

/* Tabele: zamówienia, pobrania itd. */
.woocommerce table.shop_table {
  width: 100%;
  border: 1px solid var(--line);
  border-collapse: collapse;
  margin: 0 0 24px;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.woocommerce table.shop_table th {
  background: #f8f8f6;
  color: var(--dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

/* Komunikaty */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border: 1px solid var(--line);
  background: #f8f8f6;
  padding: 16px 18px;
  margin: 0 0 24px;
  color: var(--text);
}

.woocommerce-message {
  border-left: 4px solid var(--olive);
}

.woocommerce-error {
  border-left: 4px solid #b00020;
}

/* Mobile */
@media (max-width: 768px) {
  .static-page-content .woocommerce {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .woocommerce-MyAccount-content {
    padding: 24px 18px;
  }

  .woocommerce table.shop_table {
    font-size: 13px;
  }
}

.breadcrumbs-section {
  width: 100%;
  background: #f3f3f3;
}

.breadcrumbs {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #888;
}

.breadcrumbs a {
  color: #888;
  text-decoration: none;
  transition: color .25s ease;
}

.breadcrumbs a:hover {
  color: #111;
}

.breadcrumbs span {
  color: #888;
}

      .blog-pagination {
        margin-top: 42px;
        padding: 16px 0;
        background: #f7f7f7;
        display: flex;
        justify-content: center;
      }

      .blog-pagination ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 18px;
      }

      .blog-pagination a,
      .blog-pagination span {
        color: #111;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
      }

      .blog-pagination .current {
        color: #b5b39e;
        font-weight: 900;
      }

      .blog-pagination .prev,
      .blog-pagination .next {
        font-size: 18px;
        line-height: 1;
      }


.products-search-section .section-title {
  margin-bottom: 24px;
}

.products-topbar {
  height: 54px;
  margin-bottom: 34px;
  padding: 0 18px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products-view-icons {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: #111;
}

.products-topbar .woocommerce-ordering {
  margin: 0;
}

.products-topbar select {
  min-width: 230px;
  height: 34px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 12px;
  font-size: 12px;
}

.products-grid--search {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px 24px;
}

.product-card--search {
  border: 0;
  box-shadow: none;
  padding-bottom: 0;
}

.product-card--search:hover {
  transform: none;
  box-shadow: none;
}

.product-card--search .product-card__image {
  border: 1px solid var(--line);
  background: #fff;
}

.product-card--search .product-card__image img {
  border-bottom: 0;
  object-fit: contain;
}

.product-card--search h3 {
  margin: 14px 0 4px;
  font-size: 13px;
  line-height: 1.2;
}

.product-card--search h3 a {
  color: #000;
  text-decoration: none;
}

.product-card--search .price {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .products-grid--search {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .products-grid--search {
    grid-template-columns: 1fr;
  }

  .products-topbar {
    align-items: flex-start;
    height: auto;
    gap: 14px;
    padding: 14px;
    flex-direction: column;
  }
}


.single-post-date {
  margin: -8px 0 24px;
  color: #aaa48a;
  font-size: 13px;
  font-weight: 700;
}

.single-post-content {
  font-size: 14px;
  line-height: 1.7;
}

.post-block {
  margin-bottom: 42px;
}

.post-block--text p {
  margin: 0 0 18px;
}

.post-block--text ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.post-block--text li {
  position: relative;
  padding: 18px 24px 18px 58px;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  background: #fff;
}

.post-block--text li::before {
  content: "✓";
  position: absolute;
  left: 24px;
  top: 16px;
  color: #aaa48a;
  font-size: 22px;
  line-height: 1;
}

.post-block--image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-block--split {
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  gap: 100px;
  align-items: start;
}

.post-block__text {
  line-height: 1.7;
}

.post-block__text p {
  margin: 0 0 18px;
}

.post-block__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .post-block--split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.error404-section {
  padding: 120px 0;
}

.error404-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.error404-code {
  font-size: clamp(120px, 18vw, 240px);
  line-height: .85;
  font-weight: 900;
  color: #aaa48a;
  margin-bottom: 28px;
  letter-spacing: -.04em;
}

.error404-box .section-title {
  margin-bottom: 22px;
}

.error404-box p {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.error404-box .btn {
  justify-content: center;
}

.products-view-icons {
  display: flex;
  gap: 14px;
}

.view-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: #111;
  font-weight: 800;
}

.view-toggle.is-active {
  color: #aaa48a;
}

.products-grid--search.is-list-view {
  grid-template-columns: 1fr;
}

.products-grid--search.is-list-view .product-card--search .product-card__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
}

.products-grid--search.is-list-view .product-card--search .product-card__image img {
  aspect-ratio: 1 / 1;
}

.user-line .account,
.user-line .account span,
.user-line .fav,
.user-line .cart-box,
.user-line .cart-box strong,
.user-line .cart-count {
  color: #fff !important;
}

.cky-btn.cky-btn-customize,
.cky-btn.cky-btn-reject,
.cky-btn.cky-btn-accept {
  background: #aaa48a !important;
  border-color: #aaa48a !important;
  color: #fff !important;

  transition: .25s ease;
}

.cky-btn.cky-btn-customize:hover,
.cky-btn.cky-btn-reject:hover,
.cky-btn.cky-btn-accept:hover {
  background: #101819 !important;
  border-color: #101819 !important;
  color: #fff !important;
}

.cky-btn.cky-btn-customize {
  color: #fff !important;
}

.cky-btn,
.cky-btn.cky-btn-customize,
.cky-btn.cky-btn-reject,
.cky-btn.cky-btn-accept,
.cky-btn.cky-btn-preferences {
  background: #aaa48a !important;
  border-color: #aaa48a !important;
  color: #fff !important;
}

.cky-btn:hover,
.cky-btn.cky-btn-customize:hover,
.cky-btn.cky-btn-reject:hover,
.cky-btn.cky-btn-accept:hover,
.cky-btn.cky-btn-preferences:hover {
  background: #101819 !important;
  border-color: #101819 !important;
  color: #fff !important;
}

.cky-btn *,
.cky-btn.cky-btn-preferences * {
  color: #fff !important;
}

.cky-btn-revisit-wrapper {
  background: #aaa48a !important;
}

.cky-btn-revisit-wrapper:hover {
  background: #101819 !important;
}

a[href^="mailto:"]:hover {
  text-decoration: underline;
}

.footer a {
  transition: color .25s ease;
}

.footer a:hover {
  color: #b6ad83 !important;
  text-decoration: underline;
}

.footer a[href^="mailto:"]:hover {
  color: #b6ad83 !important;
}


.product-card__cart,
.product-card__fav,
.single_add_to_cart_button,
.button.alt,
.woocommerce button.button,
.woocommerce a.button {
  transition:
    background .25s ease,
    border-color .25s ease,
    color .25s ease;
}

.product-card__cart:hover,
.product-card__fav:hover,
.single_add_to_cart_button:hover,
.button.alt:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
  background: #b5b39e !important;
  border-color: #b5b39e !important;
  color: #fff !important;
}

