/* ============================================================
   Le Barbatelle — Redesign 2.0
   Nowy system designu: zmienne, typografia, layout, komponenty
   ============================================================ */

/* ---- Design tokens ---- */
:root {
  --green-900: #13291B;
  --green-800: #1C3B27;
  --green-700: #244A30;
  --green-500: #3E6B43;
  --green-300: #6B8C5E;
  --ivory: #F6F2E9;
  --ivory-2: #EEE8D8;
  --paper: #FBFAF4;
  --brass: #A9854A;
  --brass-2: #C2A064;
  --ink: #1B1A15;
  --muted: #6E6B5E;
  --line: rgba(27,26,21,.14);
  --line-soft: rgba(27,26,21,.08);
  --d: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset overwrites ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', system-ui, sans-serif !important;
  color: var(--ink);
  background: var(--paper);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16px !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: .005em;
}

p { font-size: 1rem !important; color: var(--ink); font-weight: 300; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; border-radius: 0 !important; }

/* ---- Utility classes ---- */
.lb-wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

.lb-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  color: var(--brass);
}
.lb-eyebrow.center { justify-content: center; }
.lb-eyebrow .ln { width: 42px; height: 1px; background: var(--brass); opacity: .55; flex: none; }
.lb-eyebrow svg { width: 18px; height: 24px; flex: none; }

.lb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .74rem;
  cursor: pointer;
  padding: 15px 30px;
  border: 1px solid var(--green-800);
  background: var(--green-800);
  color: var(--ivory);
  transition: all .45s var(--d);
  text-decoration: none;
}
.lb-btn:hover { background: transparent; color: var(--green-800); }
.lb-btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.lb-btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.lb-btn--brass { background: var(--brass); border-color: var(--brass); color: #fff; }
.lb-btn--brass:hover { background: transparent; color: var(--brass); }
.lb-btn--ivory { background: var(--ivory); border-color: var(--ivory); color: var(--green-900); }
.lb-btn--ivory:hover { background: transparent; color: var(--ivory); }

/* ============ TOP BAR ============ */
.lb-topbar {
  background: var(--green-900);
  color: rgba(246,242,233,.78);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 300;
  font-family: 'Jost', sans-serif;
}
.lb-topbar .lb-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
.lb-topbar span { display: inline-flex; align-items: center; gap: 7px; }
.lb-topbar a { color: rgba(246,242,233,.78); transition: color .3s; }
.lb-topbar a:hover { color: var(--brass-2); font-size: .72rem; }
@media (max-width: 760px) { .lb-topbar .tb-r { display: none; } }

/* ============ NAV ============ */
header.lb-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251,250,244,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .4s;
}
header.lb-nav.scrolled { box-shadow: 0 6px 30px rgba(19,41,27,.07); }

.lb-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
}
.lb-nav-logo img { height: 46px; width: auto; display: block; }
.lb-nav-logo { display: flex; align-items: center; }

.lb-nav-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.lb-nav-menu {
  /* nav wrapper — bez własnego flex, układ robi top-level ul */
}

/* Top-level <ul> generowany przez wp_nav_menu() */
.lb-nav-menu > ul {
  display: flex;
  gap: 34px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Ukryj tylko dropdown pod-listy (drugi poziom i głębiej) */
.lb-nav-menu li ul {
  display: none;
}

.lb-nav-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lb-nav-menu a,
.lb-nav-menu > ul > li > a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--ink) !important;
  position: relative;
  padding: 6px 0;
  text-decoration: none !important;
}
.lb-nav-menu a::after,
.lb-nav-menu > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width .4s var(--d);
}
.lb-nav-menu a:hover::after,
.lb-nav-menu > ul > li > a:hover::after { width: 100%; }

.lb-nav-icons {
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  align-items: center;
}
.lb-nav-icons button,
.lb-nav-icons a.lb-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color .3s;
  padding: 0;
  text-decoration: none;
}
.lb-nav-icons button:hover,
.lb-nav-icons a.lb-icon-btn:hover { color: var(--brass); }
.lb-nav-icons svg { width: 21px; height: 21px; }

.lb-b2b-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: #9B0002;
  color: #fff !important;
  font-family: 'Jost', sans-serif;
  font-size: .72rem !important;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .3s;
}
.lb-b2b-btn:hover { background: #7a0002 !important; color: #fff !important; }

@media (max-width: 1000px) { .lb-nav-center { display: none !important; } }

.lb-cart-dot {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--brass);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .6rem;
  font-weight: 500;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  letter-spacing: 0;
}

.lb-burger { display: none !important; }

@media (max-width: 1000px) {
  .lb-nav-menu { display: none !important; }
  .lb-nav-inner { grid-template-columns: auto 1fr auto; height: 72px; }
  .lb-nav-logo img { height: 38px; }
  .lb-burger { display: inline-flex !important; }
  .lb-burger svg { width: 24px; height: 24px; }
}

/* Mobile drawer */
.lb-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--green-900);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform .5s var(--d);
  visibility: hidden;
}
.lb-drawer.open { transform: translateY(0); visibility: visible; }
.lb-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--ivory);
  padding: 8px 0;
  transition: color .3s;
}
.lb-drawer a:hover { color: var(--brass-2); }
.lb-drawer .lb-close {
  position: absolute;
  top: 24px; right: 26px;
  background: none;
  border: none;
  color: var(--ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
}
.lb-drawer .lb-close svg { width: 28px; height: 28px; }

/* Custom search bar */
.custom-search {
  background: var(--green-900);
  padding: 10px 0;
}

/* ============ BREADCRUMBS ============ */
.lb-breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 0;
}
.lb-breadcrumbs #breadcrumbs,
.lb-breadcrumbs p {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--muted);
  margin: 0;
}
.lb-breadcrumbs a { color: var(--green-800); }

/* ============ INNER PAGES — max-width ============ */
/* Odpowiednik Storefront .col-full — otwierany w header.php, zamykany w footer.php */
.lb-inner-wrap {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* ============ HERO SLIDER ============ */
/* Wizualnie ukryty H1 (SEO, screen-reader) */
.lb-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.lb-hero { padding: 42px 0 0; }

.lb-slider {
  width: 100%;
  max-width: 1600px;
  height: 80vh;
  max-height: 720px;
  min-height: 320px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.lb-slides {
  height: 100%;
  display: flex;
  transition: transform .9s var(--d);
}
.lb-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--green-900);
}
.lb-slide-link {
  display: block;
  width: 100%;
  height: 100%;
}
.lb-slide img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
}
.lb-slide.active img { animation: lb-kenburns 7s linear forwards; }
@keyframes lb-kenburns { from { transform: scale(1.06); } to { transform: scale(1.14); } }

.lb-s-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 54px; height: 54px;
  border: 1px solid rgba(246,242,233,.5);
  background: rgba(19,41,27,.18);
  color: var(--ivory);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .4s;
  backdrop-filter: blur(2px);
}
.lb-s-arrow:hover { background: var(--ivory); color: var(--green-900); border-color: var(--ivory); }
.lb-s-arrow.prev { left: 24px; }
.lb-s-arrow.next { right: 24px; }
.lb-s-arrow svg { width: 18px; height: 18px; }

.lb-s-dots {
  position: absolute;
  bottom: 30px; left: 0; right: 0;
  z-index: 5;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.lb-s-dots button {
  width: 34px; height: 3px;
  border: none;
  background: rgba(246,242,233,.4);
  cursor: pointer;
  transition: background .4s;
  padding: 0;
}
.lb-s-dots button.on { background: var(--brass-2); }

/* Tablet */
@media (max-width: 900px) {
  .lb-slider { height: 60vw; max-height: 540px; }
  .lb-s-arrow { display: none; }
}
/* Mobile */
@media (max-width: 560px) {
  .lb-slider { height: 75vw; min-height: 260px; }
}

/* ============ SECTION SHELL ============ */
.lb-block { padding: 96px 0; }
.lb-sec-head { text-align: center; margin-bottom: 52px; }
.lb-sec-head .lb-eyebrow { margin-bottom: 14px; }
.lb-sec-head h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); font-weight: 500; }
.lb-sec-head h2 em { font-style: italic; color: var(--brass); }

/* ============ CAROUSEL ============ */
.lb-carousel { position: relative; }
.lb-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 26px;
  scrollbar-width: none;
}
.lb-track::-webkit-scrollbar { display: none; }

.lb-card {
  flex: 0 0 calc((100% - 78px) / 4);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line-soft);
  transition: transform .5s var(--d), box-shadow .5s var(--d);
  position: relative;
}
.lb-card:hover { transform: translateY(-7px); box-shadow: 0 24px 50px -28px rgba(19,41,27,.4); }

.lb-card-img {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  height: clamp(300px, 24vw, 350px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfaf4 100%);
  overflow: hidden;
}
.lb-card-img img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  transition: transform .6s var(--d);
  position: static !important;
}
.lb-card:hover .lb-card-img img { transform: scale(1.05); }

.lb-tag {
  position: absolute;
  top: 0; left: 0;
  background: var(--brass);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 7px 13px;
}
.lb-tag.sale { background: var(--green-800); }

.lb-card-body {
  padding: 22px 24px 26px;
  text-align: center;
  border-top: 1px solid var(--line-soft);
}
.lb-card-cat {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: .64rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 9px;
}
.lb-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.2;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-card-name a,
.lb-card-name a:link,
.lb-card-name a:visited {
  color: var(--ink) !important;
  text-decoration: none;
}
.lb-card-img:visited { color: inherit !important; }
.lb-card-price {
  margin: 12px 0 18px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink);
}
.lb-card-price .old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: .86rem;
  margin-right: 8px;
}
.lb-card-cart {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .68rem;
  color: var(--green-800);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: all .35s;
  display: inline-block;
}
.lb-card-cart:hover { color: var(--brass); border-color: var(--brass); }

.lb-c-nav { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }
.lb-c-nav button {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .4s;
}
.lb-c-nav button:hover { background: var(--green-800); color: var(--ivory); border-color: var(--green-800); }
.lb-c-nav svg { width: 16px; height: 16px; }

@media (max-width: 1000px) { .lb-card { flex-basis: calc((100% - 52px) / 3); } }
@media (max-width: 720px)  { .lb-card { flex-basis: calc((100% - 26px) / 2); } }
@media (max-width: 600px)  { .lb-card { flex-basis: 100%; scroll-snap-align: center; } }

/* ============ ABOUT ============ */
.lb-about { background: var(--ivory); position: relative; overflow: hidden; }
.lb-about .lb-mono-bg {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 520px;
  opacity: .05;
  color: var(--green-800);
  pointer-events: none;
}

.lb-about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; align-items: stretch; }

.lb-about-img {
  position: relative;
  min-height: 560px;
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
}
.lb-about-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lb-about-img .lb-stamp {
  position: absolute;
  bottom: 26px; left: 26px;
  background: var(--green-900);
  color: var(--ivory);
  padding: 22px 26px;
  max-width: 230px;
}
.lb-about-img .lb-stamp b {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.95rem;
  font-weight: 500;
  display: block;
  color: var(--brass-2);
  line-height: 1.04;
  margin-bottom: 6px;
}
.lb-about-img .lb-stamp span {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lb-about-txt {
  padding: clamp(40px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.lb-about-txt .lb-eyebrow { margin-bottom: 22px; }
.lb-about-txt h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); font-weight: 500; margin-bottom: 26px; }
.lb-about-txt h2 em { font-style: italic; color: var(--brass); }
.lb-about-txt p { color: #3c3a31; margin-bottom: 18px; max-width: 50ch; }
.lb-about-txt .lb-sign {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--green-700);
  margin-top: 14px;
}
@media (max-width: 880px) {
  .lb-about-grid { grid-template-columns: 1fr; }
  .lb-about-img { min-height: 380px; order: -1; }
  .lb-about .lb-mono-bg { display: none; }
}

/* ============ HORECA ============ */
.lb-horeca { position: relative; color: var(--ivory); overflow: hidden; background: var(--green-900); }
.lb-horeca-bg { position: absolute; inset: 0; }
.lb-horeca-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .26; }
.lb-horeca::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--green-900) 8%, rgba(19,41,27,.72) 60%, rgba(19,41,27,.5) 100%);
}
.lb-horeca .lb-wrap { position: relative; z-index: 3; padding: 104px 32px; }
.lb-horeca-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lb-horeca .lb-eyebrow { color: var(--brass-2); margin-bottom: 18px; }
.lb-horeca .lb-eyebrow .ln { background: var(--brass-2); }
.lb-horeca h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 500; margin-bottom: 20px; color: var(--ivory); }
.lb-horeca h2 em { font-style: italic; color: var(--brass-2); }
.lb-horeca .lb-lead { font-weight: 300; color: rgba(246,242,233,.88); max-width: 46ch; margin-bottom: 34px; }
.lb-ho-list { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 34px; }
.lb-ho-item { border-top: 1px solid rgba(194,160,100,.4); padding-top: 16px; }
.lb-ho-item .n { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--brass-2); display: block; margin-bottom: 6px; }
.lb-ho-item h4 { font-family: 'Jost', sans-serif; font-weight: 400; font-size: .96rem; letter-spacing: .02em; margin-bottom: 6px; color: var(--ivory); }
.lb-ho-item p { font-weight: 300; font-size: .86rem; color: rgba(246,242,233,.72); line-height: 1.6; }
@media (max-width: 880px) { .lb-horeca-grid { grid-template-columns: 1fr; gap: 44px; } .lb-ho-list { gap: 24px; } }
@media (max-width: 520px) { .lb-ho-list { grid-template-columns: 1fr; } }

/* ============ BLOG ============ */
.lb-blog { padding: 96px 0; }
.lb-blog-head { margin-bottom: 50px; }
.lb-blog-head .lb-eyebrow { margin-bottom: 14px; }
.lb-blog-head h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); font-weight: 500; }
.lb-blog-head h2 em { font-style: italic; color: var(--brass); }

.lb-blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.lb-post .lb-post-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.lb-post .lb-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--d); }
.lb-post:hover .lb-post-img img { transform: scale(1.05); }
.lb-post .lb-date {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--green-500);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 12px 22px;
}
.lb-post h3 { font-size: 1.7rem; font-weight: 500; margin: 24px 0 12px; line-height: 1.15; }
.lb-post .lb-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--brass);
  margin-bottom: 14px;
}
.lb-post .lb-tags svg { width: 14px; height: 14px; flex: none; }
.lb-post p { color: #3c3a31; font-weight: 300; margin-bottom: 22px; max-width: 48ch; }
.lb-post .lb-btn { padding: 13px 26px; }
@media (max-width: 860px) { .lb-blog-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ============ NEWSLETTER ============ */
.lb-news { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.lb-news-img { position: relative; background: linear-gradient(160deg, var(--green-700), var(--green-900)); }
.lb-news-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lb-news-form {
  background: var(--green-800);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 84px);
  position: relative;
  overflow: hidden;
}
.lb-news-form .lb-mono-bg {
  position: absolute;
  right: -50px; bottom: -40px;
  width: 300px;
  opacity: .07;
  color: var(--ivory);
  pointer-events: none;
}
.lb-news-form .lb-eyebrow { color: var(--brass-2); margin-bottom: 16px; position: relative; z-index: 2; }
.lb-news-form .lb-eyebrow .ln { background: var(--brass-2); }
.lb-news-form h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 500; margin-bottom: 14px; position: relative; z-index: 2; color: var(--ivory); }
.lb-news-form h2 em { font-style: italic; color: var(--brass-2); }
.lb-news-form .lb-perk { font-weight: 300; color: rgba(246,242,233,.85); margin-bottom: 30px; position: relative; z-index: 2; }
.lb-news-form .lb-perk b { color: var(--brass-2); font-weight: 500; font-family: 'Cormorant Garamond', serif; font-size: 1.25em; }

.lb-nf-row { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 2; }
.lb-nf-row input[type=text],
.lb-nf-row input[type=email] {
  background: var(--ivory) !important;
  color: var(--green-800) !important;
  border: none;
  border-bottom: 1px solid rgba(246,242,233,.35);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .95rem;
  padding: 13px 2px;
  transition: border-color .35s;
  width: 100%;
}
.lb-nf-row input::placeholder { color: var(--green-700); opacity: .7; letter-spacing: .04em; }
.lb-nf-row input:focus { outline: none; border-color: var(--brass-2); }

.lb-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}
.lb-consent input { margin-top: 4px; accent-color: var(--brass-2); width: 15px; height: 15px; flex: none; }
.lb-consent label { font-weight: 300; font-size: .73rem; line-height: 1.55; color: rgba(246,242,233,.7); }
.lb-consent a { color: var(--brass-2); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 880px) {
  .lb-news { grid-template-columns: 1fr; }
  .lb-news-img { min-height: 300px; position: relative; }
}

/* ============ FOOTER ============ */
footer.lb-ft { background: var(--green-900); color: rgba(246,242,233,.72); padding: 74px 0 0; }
.lb-ft-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }

.lb-ft-brand .lb-logo-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.lb-ft-brand .lb-logo-mark svg { width: 34px; height: 46px; color: var(--brass-2); }
.lb-ft-brand .lb-logo-mark .wm { font-family: 'Cormorant Garamond', serif; color: var(--ivory); }
.lb-ft-brand .lb-logo-mark .wm b { font-weight: 600; font-size: 1.5rem; letter-spacing: .02em; display: block; line-height: 1; }
.lb-ft-brand .lb-logo-mark .wm span { font-family: 'Jost', sans-serif; font-weight: 300; font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--brass-2); }
.lb-ft-brand p { font-weight: 300; font-size: .88rem; max-width: 32ch; line-height: 1.7; margin-bottom: 22px; color: rgba(246,242,233,.72); }

.lb-ft-social { display: flex; gap: 12px; }
.lb-ft-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(246,242,233,.22);
  display: grid;
  place-items: center;
  color: var(--ivory);
  transition: all .4s;
  text-decoration: none;
}
.lb-ft-social a:hover { background: var(--brass); border-color: var(--brass); }
.lb-ft-social svg { width: 16px; height: 16px; }

.lb-ft-col h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .74rem;
  color: var(--ivory);
  margin-bottom: 20px;
}
.lb-ft-col a {
  display: block;
  font-weight: 300;
  font-size: .88rem;
  padding: 6px 0;
  color: rgba(246,242,233,.66);
  transition: color .3s;
  text-decoration: none;
}
.lb-ft-col a:hover { color: var(--brass-2); font-size: .88rem; }
.lb-ft-col p.lb-line { font-weight: 300; font-size: .88rem; line-height: 1.7; margin-bottom: 4px; color: rgba(246,242,233,.66); }
.lb-ft-col .lb-line a { display: inline; padding: 0; font-size: .88rem; color: rgba(246,242,233,.66); }
.lb-ft-col .lb-line a:hover { color: var(--brass-2); }

.lb-ft-bottom {
  border-top: 1px solid rgba(246,242,233,.12);
  margin-top: 60px;
  padding: 24px 0;
}
.lb-ft-bottom .lb-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 300;
  font-size: .76rem;
  letter-spacing: .05em;
  color: rgba(246,242,233,.5);
}
.lb-ft-bottom a { color: rgba(246,242,233,.5); text-decoration: none; }
.lb-ft-bottom a:hover { color: var(--brass-2); }

.lb-age { display: inline-flex; align-items: center; gap: 8px; }
.lb-age b {
  border: 1px solid var(--brass-2);
  color: var(--brass-2);
  border-radius: 50%;
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: .66rem;
}

@media (max-width: 880px) { .lb-ft-grid { grid-template-columns: 1fr 1fr; } .lb-ft-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .lb-ft-grid { grid-template-columns: 1fr; } }

/* ============ Monogram SVG background helper ============ */
.lb-mono-bg { width: 100%; height: 100%; }

/* ============ WooCommerce overrides ============ */
.woocommerce .products .product,
.woocommerce-page .products .product {
  font-family: 'Jost', sans-serif;
}
.woocommerce .button,
.woocommerce button.button {
  font-family: 'Jost', sans-serif !important;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Hide old nav-shop-header on new layout */
.nav-shop-header { display: none !important; }

/* Hide old site-header on new layout */
header#masthead.site-header { display: none !important; }

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   OVERRIDES — neutralizacja agresywnych stylów starego motywu
   (sass/style.css ma: a, a:link { color:#093b10; font-size:20px })
   ============================================================ */

/* Przyciski — ivory tekst na zielonym tle, zielony na hover */
a.lb-btn,
a.lb-btn:link,
a.lb-btn:visited {
  color: #F6F2E9 !important;
  font-size: .74rem !important;
  text-decoration: none !important;
}
a.lb-btn:hover {
  color: var(--green-800) !important;
}
a.lb-btn.lb-btn--ivory,
a.lb-btn.lb-btn--ivory:link,
a.lb-btn.lb-btn--ivory:visited {
  color: var(--green-900) !important;
}
a.lb-btn.lb-btn--ivory:hover {
  color: #F6F2E9 !important;
}
a.lb-btn.lb-btn--brass,
a.lb-btn.lb-btn--brass:link,
a.lb-btn.lb-btn--brass:visited {
  color: #fff !important;
}
a.lb-btn.lb-btn--brass:hover {
  color: var(--brass) !important;
}

/* Karuzela — "Do koszyka" link */
a.lb-card-cart,
a.lb-card-cart:link,
a.lb-card-cart:visited {
  color: var(--green-800) !important;
  font-size: .68rem !important;
}
a.lb-card-cart:hover {
  color: var(--brass) !important;
}

/* Stopka — linki w kolumnach nawigacyjnych */
footer.lb-ft a,
footer.lb-ft a:link,
footer.lb-ft a:visited {
  color: rgba(246,242,233,.66) !important;
  font-size: .88rem !important;
  text-decoration: none !important;
}
footer.lb-ft a:hover {
  color: var(--brass-2) !important;
}

/* Stopka — social icons */
.lb-ft-social a,
.lb-ft-social a:link,
.lb-ft-social a:visited {
  color: #F6F2E9 !important;
  font-size: 0 !important; /* usuwa font-size z tekstu alternatywnego */
}
.lb-ft-social a:hover {
  color: #F6F2E9 !important;
}

/* Stopka — pasek dolny (regulamin/polityka/cookies) */
.lb-ft-bottom a,
.lb-ft-bottom a:link,
.lb-ft-bottom a:visited {
  color: rgba(246,242,233,.5) !important;
  font-size: .76rem !important;
}
.lb-ft-bottom a:hover {
  color: var(--brass-2) !important;
}

/* Topbar — linki */
.lb-topbar a,
.lb-topbar a:link,
.lb-topbar a:visited {
  color: rgba(246,242,233,.78) !important;
  font-size: .72rem !important;
}
.lb-topbar a:hover {
  color: var(--brass-2) !important;
}

/* Nav — linki menu */
.lb-nav-menu a,
.lb-nav-menu a:link,
.lb-nav-menu a:visited,
.lb-nav-menu > li > a,
.lb-nav-menu > li > a:link,
.lb-nav-menu > li > a:visited {
  color: var(--ink) !important;
  font-size: .85rem !important;
  text-decoration: none !important;
}

/* Drawer — linki mobile */
.lb-drawer a,
.lb-drawer a:link,
.lb-drawer a:visited {
  color: #F6F2E9 !important;
  font-size: 2rem !important;
}
.lb-drawer a:hover {
  color: var(--brass-2) !important;
}



/* Blog — link przyciski */
.lb-post a.lb-btn,
.lb-post a.lb-btn:link,
.lb-post a.lb-btn:visited {
  color: #F6F2E9 !important;
}

/* Nav icons — ikony (account) */
.lb-nav-icons a.lb-icon-btn,
.lb-nav-icons a.lb-icon-btn:link,
.lb-nav-icons a.lb-icon-btn:visited {
  color: var(--ink) !important;
  font-size: 0 !important;
}
.lb-nav-icons a.lb-icon-btn:hover {
  color: var(--brass) !important;
}

/* Newsletter — linki w consent */
.lb-consent a,
.lb-consent a:link,
.lb-consent a:visited {
  color: var(--brass-2) !important;
  font-size: .73rem !important;
}

/* About — sign */
.lb-about-txt a.lb-btn,
.lb-about-txt a.lb-btn:link,
.lb-about-txt a.lb-btn:visited {
  color: #F6F2E9 !important;
}

/* Font — wyższa specificity (html body = 0,0,2) pokonuje
   storefront-child-style: body,button,input,textarea { Yanone !important } (0,0,1) */
html body,
html body button,
html body input,
html body select,
html body textarea,
html body span,
html body div,
html body p,
html body li,
html body td,
html body th,
html body label {
  font-family: 'Jost', system-ui, sans-serif !important;
}
html body h1, html body h2, html body h3,
html body h4, html body h5, html body h6 {
  font-family: 'Cormorant Garamond', serif !important;
}
