:root{
  --container: 1200px;
  --pad: 24px;
  --radius: 0px;
  --radius-lg: 0px;
  --border: #e7e7e7;
  --text: #141414;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --card: #ffffff;
  --brand: #7b1e27;
  --brand-brown: #7b1e27;
  --brand-orange: #f08a24;
  --brand-wholesale-stock: #b72a33;

  /* Spacing */
  --space-1: 12px;
  --space-2: 18px;
  --space-3: 28px;
  --space-4: 50px;
  --space-5: 70px;

  /* Typography */
  --fs-h1: clamp(44px, 5.2vw, 89px);
  --fs-h2: clamp(30px, 3.2vw, 56px);
  --fs-h3: clamp(22px, 2.1vw, 34px);
  --fs-h4: clamp(18px, 1.6vw, 24px);
  --fs-p:  clamp(16px, 1.1vw, 18px);

  --lh-tight: 1.05;
  --lh-title: 1.12;
  --lh-body:  1.55;
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

h1, h2, h3, h4{
  margin: 0 0 var(--space-2);
  font-weight: 400;
}

h1{
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h2{
  font-size: 37px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--brand);
}

h3{
  font-size: var(--fs-h3);
  line-height: var(--lh-title);
}

h4{
  font-size: var(--fs-h4);
  line-height: var(--lh-title);
}

p, li{
  font-size: var(--fs-p);
  line-height: var(--lh-body);
}

p{
  font-weight: 300;
}

a{ color: inherit; }

/* Preview mode: block navigation via links */
.is-preview a[href]{
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

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

.container{
  width: min(var(--container), calc(100% - var(--pad)*2));
  margin-inline:auto;
}

.site-header{
  border-bottom: 1px solid var(--border);
  background: #fff;
}

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

.brand{
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration:none;
}

.nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap: 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 22px;
  min-height: 44px;
  border-radius: 0;
  text-decoration:none;
  border: 1px solid var(--brand);
  background: #fff;
  color: var(--brand);
  cursor:pointer;
  font-weight: 400;
}

/* =========================
   Button Variants
========================= */

.btn--secondary{
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.btn--secondary:hover,
.btn--secondary:focus{
  background: var(--brand);
  color: #fff;
}

.btn:hover{
  background: var(--brand);
  color: #fff;
}

.btn--primary{
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.btn--primary:hover{
	background: #fff;
	color: var(--brand);
	border-color: var(--brand);
}

.hero .btn--primary:hover{
	border-color: #fff;
}

.section{
  padding: var(--space-4) 0;
}

.page-template-default:not(.home) .section,
.page:not(.home) .section {
	padding-top: 50px;
	padding-bottom: 50px;
}

body:not(.home) h1,
body:not(.home) .page-title,
body:not(.home) .entry-title {
	font-size: 58px;
	letter-spacing: 0.01em;
}

.section--lg{
  padding: var(--space-5) 0;
}

.section-title,
.section__title{
  font-size: 37px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 18px;
}

.grid{
  display:grid;
  gap: 16px;
}

.grid--3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 18px;
}

.muted{ color: var(--muted); }

.section--news{
  background:#3f3f3f;
  padding: 60px 0;
}

.section--news .section__title{
  color:#fff;
  font-size: 37px;
  line-height: 1.15;
  margin: 0 0 26px;
  text-align:center;
}

.news-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.news-card{
  border: 0;
}

.news-card__link{
  display:block;
  text-decoration:none;
  color: inherit;
}

.news-card__media{
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 22px;
  min-height: 340px;
  overflow: hidden;
  background: none;
  border: 0;
}

.news-card__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.70) 100%
  );
  opacity: 1;
  transition: opacity 400ms ease;
  z-index: 1;
}

.news-card__date{
  position: relative;
  color:#fff;
  font-size: 14px;
  line-height: 1;
  margin: 0;
  letter-spacing: 0.2px;
  justify-self: start;
  align-self: start;
  z-index: 2;
}

.news-card__title{
  position: relative;
  margin: 0;
  color:#fff;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 300;
  max-width: 92%;
  align-self: end;
  z-index: 2;
  transition: transform 500ms ease;
}

.news-card__media::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--news-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 600ms ease;
  z-index: 0;
}

.news-card__link:hover .news-card__media::before{
  transform: scale(1.04);
}

.news-card__link:hover .news-card__overlay{
  opacity: 0.92;
}

.news-card__link:hover .news-card__title{
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce){
  .news-card__media::before,
  .news-card__overlay,
  .news-card__title{
    transition: none;
  }
}

.news-card__link:focus-visible{
  outline: 2px solid #fff;
  outline-offset: 4px;
}

/* Blog page */

.blog-hero__content{
	text-align: center;
}

.page-hero__eyebrow{
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 16px;
	font-size: 13px;
	color: inherit;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.page-hero__eyebrow a{
	text-decoration: none;
	color: inherit;
}

.page-hero__eyebrow a:hover,
.page-hero__eyebrow a:focus-visible{
	text-decoration: underline;
}

.blog-hero__title{
	margin: 0;
	color: inherit;
}

.blog-hero__intro{
	max-width: 62ch;
	margin: 18px 0 0;
	color: inherit;
}

.blog-hero__subtitle{
	margin: 14px 0 0;
	max-width: 62ch;
}

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

.blog-grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px 26px;
	align-items: stretch;
}

.blog-card{
	border: 1px solid var(--border);
	background: #fff;
	overflow: hidden;
}

.blog-card__link{
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-card__media{
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f5f5f5;
}

.blog-card__image{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.blog-card__image--placeholder{
	background: linear-gradient(135deg, #f1f1f1 0%, #e8e8e8 100%);
}

.blog-card__content{
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 10px;
	padding: 18px 18px 20px;
}

.blog-card__date{
	margin: 0;
	font-size: 12px;
	line-height: 1.2;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.blog-card__title{
	margin: 0;
	font-size: clamp(20px, 1.6vw, 25px);
	line-height: 1.18;
	color: var(--brand);
	text-transform: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-grid--archive .blog-card__title{
	display: block;
	-webkit-line-clamp: unset;
	-webkit-box-orient: initial;
	min-height: calc(1.18em * 4);
	overflow: visible;
}

.blog-card__excerpt{
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: #272727;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-card__views{
	margin: auto 0 0;
	padding-top: 8px;
	font-size: 14px;
	color: var(--muted);
}

.blog-card__link:hover,
.blog-card__link:focus-visible{
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.blog-card__link:hover .blog-card__image,
.blog-card__link:focus-visible .blog-card__image{
	transform: scale(1.03);
}

.blog-card__link:focus-visible{
	outline: 2px solid var(--brand);
	outline-offset: -2px;
}

.blog-pagination{
	margin-top: 38px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.blog-pagination .page-numbers{
	display: inline-flex;
	min-width: 40px;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	padding: 0 12px;
	text-decoration: none;
	color: inherit;
}

.blog-pagination .page-numbers.current{
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
}

.blog-empty{
	margin: 0;
	color: var(--muted);
	font-size: 18px;
}

@media (max-width: 980px){
  .section--news{
    padding: 60px 0;
  }

  .news-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-card__media{
    min-height: 260px;
  }

  .news-card__title{
    font-size: 22px;
  }

	.blog-grid{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}


@media (max-width: 900px){
  .grid--3{ grid-template-columns: 1fr; }
  .nav ul{ flex-wrap:wrap; }
}

@media (max-width: 700px){
	.blog-grid{
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.blog-hero__intro{
		font-size: 16px;
	}
}

.hero{
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display:flex;
}

.hero__overlay{
  width:100%;
  background: rgba(0,0,0,0.45);
  display:flex;
  align-items:center;
}

.hero__inner{
  color:#fff;
  padding: 80px 0;
}

.hero__title{
  font-size: clamp(40px,6vw,70px);
  margin:0 0 12px;
}

.hero__subtitle{
  font-size:18px;
  margin:0 0 24px;
}

.category-card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
}

.category-card__image{
  height:200px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
  padding:20px;
  color:#fff;
  font-weight:600;
  background-color:#000;
}

.category-card__image h3{
  margin:0;
}

.category-card__content{
  padding:18px;
}

.section--about{
  padding: 90px 0;
  background: #fff;
}

.about-split{
  display:grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  align-items: stretch;
}

.about-split__left{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  background-color:#222;
  position: relative;
  padding: 44px 34px;
  color:#fff;
}

.about-split__left::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 65%, rgba(0,0,0,0.10) 100%);
}

.about-split__label{
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
  font-size: clamp(36px, 4vw, 70px);
  line-height: 1.05;
  margin: 0;
}

.about-split__right{
  position: relative;
  display:flex;
  align-items:center;
}

.about-split__right::before{
  content:"";
  position:absolute;
  left: -18px;
  top: 10px;
  width: 4px;
  height: calc(100% - 20px);
  background: var(--brand);
}

.about-panel{
  width:100%;
  padding: 34px 34px 38px;
}

.about-panel__title{
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 56px);
  line-height: 1.12;
}

.about-panel__text{
  margin: 0 0 28px;
  font-weight: 300;
  max-width: 62ch;
}

.about-panel__actions{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card--product{
  position: relative;
}

.badge{
  position:absolute;
  top:10px;
  left:10px;
  background: var(--brand);
  color:#fff;
  font-size:12px;
  padding:6px 10px;
  border-radius:6px;
}

.section--community{
  background:#cfcfcf;
  padding: 60px 0;
}

.community{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  background:#fff;
  border: 0;
  overflow: hidden;
}

.community__content{
  padding: 34px 44px;
  text-align:center;
}

.community__title{
  margin: 0 0 10px;
  font-size: 37px;
  line-height: 1.15;
}

.community__subtitle{
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.community__list{
  margin: 0 auto 22px;
  padding: 0;
  list-style: none;
  max-width: 520px;
  display:grid;
  gap: 10px;
  text-align:left;
}

.community__list li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.45;
}

.community__list li::before{
  content:"";
  width: 6px;
  height: 6px;
  margin-top: 9px;
  background: var(--brand);
  flex: 0 0 6px;
}

.community__media{
  min-height: 360px;
  background-color:#fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 981px){
  .community__title{
    white-space: nowrap;
  }
}

@media (max-width: 980px){
  .section--about{
    padding: 70px 0;
  }

  .about-split{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-split__left{
    min-height: auto;
  }

  .about-split__right::before{
    display:none;
  }

  .about-panel{
    padding: 22px 0 0;
  }

  .section--community{
    padding: 50px 0;
  }

  .community{
    grid-template-columns:1fr;
  }

  .community__content{
    padding: 26px 20px;
    text-align:left;
  }

  .community__list{
    max-width: none;
  }

  .community__media{
    min-height: 220px;
    order: -1;
  }
}

.site-header{
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.header-inner{
  display:grid;
  grid-template-columns: 180px minmax(260px, 1fr) auto auto;
  align-items:center;
  gap: 18px;
  padding: 18px 0;
}

.header-left{
  min-width: 0;
}

.brand{
  display: inline-flex;
}

.brand .custom-logo-link{ display:inline-flex; }
.brand img{ max-height: 44px; width:auto; }

.header-search{
  max-width: 520px;
}

.header-search form{
  display:flex;
  align-items:center;
  border: 1px solid #1b1b1b;
  border-radius: 2px;
  overflow:hidden;
  background:#fff;
  height: 40px;
}

.header-search input[type="search"],
.header-search input[type="text"]{
  border:0;
  outline:0;
  width:100%;
  padding: 0 12px;
  height: 40px;
  font-size: 14px;
}

.header-search button,
.header-search input[type="submit"]{
  border:0;
  background:#fff;
  padding: 0 14px;
  height: 40px;
  cursor:pointer;
}

.header-nav .menu{
  display:flex;
  gap: 26px;
  list-style:none;
  margin:0;
  padding:0;
  justify-content:space-around;
}

.header-nav .menu a,
.site-header nav a,
.main-nav a{
  text-decoration:none;
  font-size: 16px;
}

/* Header - menú principal (solo primer nivel) */
.site-header .menu > li > a{
  text-transform: uppercase;
  position: relative;
  color: var(--text);
  transition: color 0.2s ease;
}

.site-header .menu > li > a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-header .menu > li > a:hover,
.site-header .menu > li > a:focus-visible{
  color: var(--brand);
}

.site-header .menu > li > a:hover::after,
.site-header .menu > li > a:focus-visible::after,
.header-nav .menu li.current-menu-item > a::after,
.header-nav .menu li.current_page_item > a::after,
.header-nav .menu li.current-menu-parent > a::after{
  transform: scaleX(1);
}

.site-header .menu > li > a:focus-visible,
.header-account .account-link:focus-visible{
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}

.header-nav .menu > li{
  position: relative;
}

.menu-item--products-mega > a{
  padding: 10px 18px;
}

.menu-item--products-mega:hover > a,
.menu-item--products-mega:focus-within > a,
.menu-item--products-mega.current-menu-item > a,
.menu-item--products-mega.current-menu-parent > a{
  background: transparent;
  color: var(--brand);
}

.menu-item--products-mega::after{
  content: "";
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 14px;
}

.site-header__mega-menu{
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--container), calc(100vw - var(--pad) * 2));
  background: #fff;
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.menu-item--products-mega:hover > .site-header__mega-menu,
.menu-item--products-mega:focus-within > .site-header__mega-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-header__mega-menu-inner{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 36px);
}

.site-header__mega-menu-column{
  min-width: 0;
}

.site-header__mega-menu-title{
  display: block;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #262626;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}

.site-header__mega-menu-all .site-header__mega-menu-title{
  color: var(--brand-brown);
  font-weight: 700;
}

.site-header__mega-menu-links{
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__mega-menu-link{
  display: block;
  padding: 7px 0 8px;
  border-bottom: 1px solid #262626;
  font-size: 16px;
  line-height: 1.35;
  text-transform: none;
}

.site-header__mega-menu-link:hover,
.site-header__mega-menu-link:focus-visible,
.site-header__mega-menu-title:hover,
.site-header__mega-menu-title:focus-visible{
  color: var(--brand);
}

.header-account{
  display:flex;
  align-items:center;
  gap: 14px;
  justify-content:flex-end;
  white-space:nowrap;
}

.account-link{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  font-size: 14px;
}

.account-link--muted{
  color: var(--muted);
}

.account-icon{
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display:inline-block;
}

.header-burger{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.burger-lines{
  width: 18px;
  height: 2px;
  background:#111;
  position:relative;
  display:block;
}
.burger-lines::before,
.burger-lines::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background:#111;
}
.burger-lines::before{ top:-6px; }
.burger-lines::after{ top:6px; }

.mobile-menu{
  border-top: 1px solid var(--border);
  background:#fff;
  padding: 16px 0 24px;
}
.mobile-menu__top{ margin-bottom: 16px; }
.mobile-menu__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.mobile-menu__list a{ text-decoration:none; font-size:16px; }
.mobile-menu__account{ margin-top: 18px; display:flex; gap: 10px; flex-wrap:wrap; }

@media (max-width: 980px){
  .header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .header-search,
  .header-nav,
  .header-account{
    display:none;
  }

  .header-burger{
    display:inline-flex;
    margin-left: auto;
    flex-shrink: 0;
  }

  .site-header__mega-menu{
    display: none;
  }

  .site-header .custom-logo{
    max-width: 130px;
    width: 100%;
    height: auto;
  }

  .mobile-menu__top .macht-search{
    height: 42px;
  }

  .mobile-menu__top .macht-search__field{
    padding: 0 14px;
  }

  .mobile-menu__top .macht-search__submit{
    width: 44px;
  }
}

@media (min-width: 981px) and (max-width: 1440px){
  .site-header__mega-menu-title{
    font-size: clamp(16px, 1.2vw, 18px);
  }

  .site-header__mega-menu-link{
    font-size: clamp(14px, 1.05vw, 16px);
  }
}

.screen-reader-text{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

.macht-search{
  display:flex;
  align-items:stretch;
  border: 1px solid #1b1b1b;
  border-radius: 2px;
  overflow: hidden;
  background:#fff;
  height: 40px;
  width: 100%;
}

.macht-search__field{
  border:0;
  outline:0;
  height: 100%;
  width: 100%;
  padding: 0 16px;
  font-size: 14px;
  text-align: left;
}

.macht-search__submit{
  border:0;
  border-left: 1px solid #1b1b1b;
  background:#fff;
  height: 100%;
  width: 48px;
  flex-shrink: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.macht-search__icon{
  display:block;
}


.woocommerce .woocommerce-notices-wrapper{
  margin-bottom: var(--space-2);
}

.woocommerce .woocommerce-notices-wrapper > *:last-child{
  margin-bottom: 0;
}

.woocommerce form .form-row{
  margin: 0 0 var(--space-1);
}

.woocommerce form .form-row label{
  display:block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 400;
}

.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="password"],
.woocommerce input[type="tel"],
.woocommerce textarea,
.woocommerce select{
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  background: #fff;
}

.woocommerce textarea{
  min-height: 120px;
}

.woocommerce input[type="text"]:focus,
.woocommerce input[type="email"]:focus,
.woocommerce input[type="password"]:focus,
.woocommerce input[type="tel"]:focus,
.woocommerce textarea:focus,
.woocommerce select:focus,
.woocommerce form .password-input input:focus{
  border-color: var(--brand);
  outline: 2px solid color-mix(in srgb, var(--brand) 24%, transparent);
  outline-offset: 1px;
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 44px;
  border-radius: var(--radius);
  padding: 12px 22px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  text-decoration:none;
  cursor:pointer;
  font-size: 15px;
  font-weight: 400;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover{
  background: #fff;
  color: var(--brand);
  border-color: var(--brand);
}

.woocommerce button.button:focus-visible,
.woocommerce a.button:focus-visible,
.woocommerce input.button:focus-visible,
.woocommerce #respond input#submit:focus-visible,
.woocommerce #respond input#submit.alt:focus-visible,
.woocommerce a.button.alt:focus-visible,
.woocommerce button.button.alt:focus-visible,
.woocommerce input.button.alt:focus-visible,
.woocommerce-account .woocommerce-MyAccount-navigation li a:focus-visible{
  outline: 2px solid color-mix(in srgb, var(--brand) 28%, transparent);
  outline-offset: 2px;
}

.woocommerce-account .section-title,
.woocommerce-account .entry-title,
.woocommerce-account .page-title{
  margin-bottom: var(--space-3);
}

.woocommerce-account .entry-content,
.woocommerce-account .woocommerce{
  width: 100%;
}

.woocommerce-account .woocommerce{
  display:grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: var(--space-3);
  align-items: start;
  width: 100%;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after{
  content: none;
  display: none;
}

.woocommerce-account .woocommerce h2,
.woocommerce-account .woocommerce h3{
  margin-bottom: var(--space-1);
  font-size: clamp(22px, 2vw, 30px);
  color: var(--brand);
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .u-column1,
.woocommerce-account .u-column2,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-ResetPassword,
.woocommerce-account .woocommerce-address-fields{
  border: 1px solid var(--border);
  background: #fff;
  padding: var(--space-2);
}

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

.woocommerce-account .woocommerce-MyAccount-navigation li + li{
  border-top: 1px solid var(--border);
}

.woocommerce-account .woocommerce-MyAccount-navigation li a{
  display:block;
  padding: 14px 8px;
  text-decoration:none;
  font-size: 16px;
  transition: color .2s ease, background-color .2s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover{
  background: #f8f5f5;
  color: var(--brand);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:hover{
  background: color-mix(in srgb, var(--brand) 9%, #fff);
  color: var(--brand);
}

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

.woocommerce-account .woocommerce-MyAccount-content p:first-child{
  margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content p{
  max-width: 72ch;
}

.woocommerce-account .woocommerce-MyAccount-navigation{
  float: none;
  width: 100%;
  grid-column: 1;
  grid-row: 1;
}

.woocommerce-account .woocommerce-MyAccount-content{
  float: none;
  grid-column: 2;
  grid-row: 1;
}

.woocommerce-account .woocommerce-Addresses{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
}

.woocommerce-account .woocommerce-Addresses::before,
.woocommerce-account .woocommerce-Addresses::after{
  content: none;
}

.woocommerce-account .woocommerce-Address{
  float: none;
  width: 100%;
  margin: 0;
  border: 1px solid var(--border);
  padding: var(--space-2);
}

.woocommerce-account .woocommerce-Address-title{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: var(--space-1);
}

.woocommerce-account .woocommerce-Address-title h3{
  margin: 0;
}

.woocommerce-account .woocommerce-EditAccountForm fieldset{
  margin-top: var(--space-2);
}

.woocommerce-account .woocommerce-EditAccountForm fieldset legend{
  padding: 0;
  font-size: 20px;
  color: var(--brand);
}

.woocommerce-account .woocommerce-form-login .woocommerce-form-login__submit{
  margin-right: var(--space-1);
}

.woocommerce-account .lost_password,
.woocommerce-account .woocommerce-LostPassword{
  margin-top: var(--space-1);
}

.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 15px;
}

.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox input{
  width: 16px;
  height: 16px;
  margin: 0;
}

.woocommerce-account .woocommerce-form-login .woocommerce-form-login__rememberme{
  margin-right: var(--space-1);
}

.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-message{
  margin: 0 0 var(--space-2);
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  background: #fff;
  list-style: none;
}

.woocommerce-account .woocommerce-error{
  border-left-color: #b42318;
}

.woocommerce-account .woocommerce-message{
  border-left-color: #2f7a3f;
}

@media(max-width: 980px){
  .woocommerce-account .woocommerce{
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content{
    grid-column: auto;
    grid-row: auto;
  }

  .woocommerce-account .woocommerce-Addresses{
    grid-template-columns: 1fr;
  }
}

.header-inner{
  grid-template-columns: 150px minmax(240px, 415px) 1fr auto;
  gap: 26px;
}

@media (max-width: 980px){
  .header-inner{
    grid-template-columns: none;
    gap: 12px;
  }
}

.brand img{
  max-height: 36px;
}

.header-search{
  max-width: 415px;
}

.macht-search{
  height: 40px;
}

.macht-search__field{
  height: 100%;
  padding: 0 16px;
  text-align: left;
}

.macht-search__submit{
  height: 100%;
  width: 48px;
  border-left: 1px solid #1b1b1b;
}

.account-icon{
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: var(--brand);
}

.account-icon__svg{
  display:block;
}

.header-nav .menu li.current-menu-item > a,
.header-nav .menu li.current_page_item > a,
.header-nav .menu li.current-menu-parent > a{
  color: var(--brand);
  font-weight: 500;
}

.header-account .account-link{
  color: var(--brand);
  font-weight: 500;
}

.header-account .account-link:hover{
  opacity: 0.85;
}

.header-account .account-link:hover,
.header-account .account-link:focus-visible{
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hero{
  min-height: 560px;
  background-size: cover;
  background-position: center;
  display:flex;
}

.hero--noimage{
  background: #222;
}

.hero__overlay{
  width:100%;
  display:flex;
  align-items:center;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.32) 0%,
    rgba(0,0,0,0.40) 55%,
    rgba(0,0,0,0.58) 100%
  );
}

.hero__inner{
  color:#fff;
  padding: 92px 0;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.hero__title{
  font-size: var(--fs-h1);
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.hero__subtitle{
  font-size: clamp(18px, 1.9vw, 30px);
  font-weight: 300;
  margin-bottom: var(--space-3);
  max-width: 900px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

@media (max-width: 520px){
  :root{
    --space-4: 42px;
    --space-5: 56px;
  }
}

@media (max-width: 980px){
  .hero{
    min-height: 440px;
  }

  .hero__inner{
    padding: 72px 0;
  }

  .hero__subtitle{
    max-width: 34ch;
  }
}

@media (max-width: 520px){
  .hero{
    min-height: 380px;
  }

  .hero__inner{
    padding: 56px 0;
  }

}

.category-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.category-card-pro{
  border: 1px solid var(--border);
  border-radius: 0;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
  display:flex;
  flex-direction:column;
}

.category-card-pro:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.09);
}

.category-card-pro__cover{
  position:relative;
  display:block;
  text-decoration:none;
  color: inherit;
}

.category-card-pro__image{
  height: 280px;
  background-size: cover;
  background-position: center;
  background-color:#222;
}

.category-card-pro__overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
}

.category-card-pro__title{
  margin:0;
  color:#fff;
  text-align:center;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.category-card-pro__chips{
  padding: 22px 22px 10px;
  display:flex;
  flex-direction: column;
  gap: 14px;
  min-height: 160px;
}

.chip{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-height: 44px;
  padding: 8px 18px;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  text-decoration:none;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  background:#fff;
  width: 100%;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.chip__label{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  text-align: left;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
  width: 100%;
}

.chip:hover{
  background: var(--brand);
  border-color: var(--brand);
  color:#fff;
  transform: translateY(-1px);
}

.category-card-pro__footer{
  padding: 0 18px 18px;
  margin-top:auto;
}

.category-card-pro__cta{
  text-decoration:none;
  color: var(--brand);
  font-weight: 400;
}

.category-card-pro__cta:hover{
  text-decoration: underline;
}

@media (min-width: 981px){
  .category-card-pro{
    min-height: 590px;
  }
}

@media (max-width: 980px){
  .category-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .category-card-pro__image{
    height: 220px;
  }
  .category-card-pro__chips{
    opacity: 1;
    transform: none;
  }
}

.best-sellers{
  text-align: center;
}

.best-sellers--fullbleed{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
}

.best-sellers__swiper{
  position: relative;
  overflow: hidden;
  padding: 0 16px;
}

.best-sellers__swiper .swiper-slide{
  width: 280px;
}

.best-sellers__pagination{
  margin-top: 12px;
  text-align: center;
}

.best-sellers__pagination .swiper-pagination-bullet{
  background: #999;
  opacity: 1;
}

.best-sellers__pagination .swiper-pagination-bullet-active{
  background: #666;
}

@media (min-width: 768px){
  .best-sellers__swiper{
    padding: 0 24px;
  }

  .best-sellers__swiper .swiper-slide{
    width: 320px;
  }
}

.bs-card{
  width: 100%;
  max-width: 360px;
}

.bs-card__link{
  position:relative;
  display:block;
  text-decoration:none;
  color: var(--text);
  border: 1px solid #111;
  background:#fff;
}

.bs-card__media{
  width:100%;
  aspect-ratio: 1 / 1;
  overflow:hidden;
  background:#f3f3f3;
}

.bs-card__img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.bs-card__title{
  margin:0;
  padding: 18px 18px 20px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
  text-align:center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.35em * 2 + 38px);
}

.bs-badge{
  position:absolute;
  top:0;
  left:0;
  display:inline-flex;
  align-items:center;
  height: 30px;
  padding: 0 14px;
  background: var(--brand);
  color:#fff;
  font-size: 14px;
  font-weight: 400;
  z-index: 2;
}

.bs-card__link:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

@media (max-width: 980px){
  .bs-card{
    max-width: 520px;
  }
}

.faq__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  margin-bottom:32px;
}

.faq__title{
  margin:0;
}

.faq__search{
  max-width: 420px;
  width: 100%;
}

.faq__search-input{
  width:100%;
  border:0;
  border-bottom:1px solid #111;
  padding:10px 0;
  font: inherit;
  outline:none;
}

.faq__items{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.faq__item{
  border:1px solid #111;
  padding:22px 24px;
}

.faq__question{
  position:relative;
  padding-right:56px;
  cursor:pointer;
  list-style:none;
  font-size:22px;
  font-weight:400;
}

.faq__question::-webkit-details-marker{ display:none; }
.faq__question::marker{ content:""; }

.faq__question::after{
  --chev-size:10px;

  content:"";
  position:absolute;
  right:22px;
  top:50%;
  width:var(--chev-size);
  height:var(--chev-size);
  border-right:2px solid #111;
  border-bottom:2px solid #111;
  transform:translateY(-60%) rotate(45deg);
  transition:transform 220ms ease;
}

.faq__item[open] > .faq__question::after{
  transform:translateY(-40%) rotate(-135deg);
}

.faq__question:focus{
  outline:none;
}

.faq__question:focus-visible{
  outline:2px solid currentColor;
  outline-offset:4px;
}

.faq__answer{
  margin-top:14px;
  max-width: 78ch;
}

.faq__answer p{ margin:0; }

@media (max-width: 800px){
  .faq__head{
    flex-direction:column;
  }
}

/* =========================
   BENEFICIOS (refinement)
   ========================= */

.beneficios{
  background: var(--brand-brown);
  color:#fff;
  padding: 56px 0;
}

.beneficios__box{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.beneficios__title{
  margin:0 0 10px;
  color:#fff;
}

.beneficios__subtitle{
  margin:0;
  opacity:.9;
}

.beneficios__form{
  max-width: 760px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
}

.beneficios__field{
  min-width: 0;
  text-align:left;
}

.beneficios__label{
  display:block;
  margin:0 0 10px;
  font-size:16px;
  opacity:.95;
}

.beneficios__input{
  width:100%;
  height:56px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.06);
  color:#fff;
  border-radius:0;
  outline:none;
}

.beneficios__input::placeholder{
  color:rgba(255,255,255,.65);
}

.beneficios__input:focus{
  border-color:rgba(255,255,255,.65);
  background:rgba(255,255,255,.10);
}

.beneficios__btn{
  height:56px;
  min-width:220px;
  padding:0 22px;
  border-radius:0;
  border:2px solid #fff;
  background: transparent;
  color:#fff;
  cursor:pointer;
  transition: opacity .3s ease;
}

.beneficios__btn:hover,
.beneficios__btn:focus-visible{
  opacity: .9;
  outline:none;
}

@media (max-width: 768px){
  .beneficios__form{
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .beneficios__btn{
    width:100%;
    min-width:0;
  }
}

/* =========================
   FOOTER
   ========================= */
.site-footer{
  background: #2f2f2f;
  color: #f3f3f3;
  padding: 70px 0 0;
}

.site-footer__inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 60px;
  padding-bottom: 50px;
}

.site-footer__logo{
  text-decoration: none;
}

.site-footer__logo img{
  display: block;
  height: auto;
  max-width: 180px;
}

.site-footer__desc{
  margin: 18px 0 18px;
  max-width: 380px;
  opacity: .9;
  line-height: 1.6;
}

.site-footer__title{
  margin: 0 0 16px;
  font-size: 18px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.site-footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer a{
  color: #d9d9d9;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.site-footer a:hover{
  color: var(--brand);
}

.site-footer__social{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__social-link{
  opacity: .9;
}

.site-footer__list--contact a,
.site-footer__list--contact span{
  color: #d9d9d9;
  opacity: .95;
}

.site-footer__cta{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 0;
}

.site-footer__bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
}

.site-footer__bottom-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.site-footer__bottom small{
  color: rgba(255,255,255,.75);
}

.site-footer__sep{
  margin: 0 10px;
  opacity: .6;
}

@media (max-width: 1024px){
  .site-footer__inner{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px){
  .site-footer{
    padding-top: 55px;
  }
  .site-footer__inner{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer__bottom-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero{
  position: relative;
  overflow: hidden;
}

.hero__slides{
  position: absolute;
  inset: 0;
}

.hero__slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 250ms ease;
}

.hero__slide.is-active{
  opacity: 1;
}

.hero__overlay{
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,.40);
}

.hero__content{
  position: relative;
}

.category-card__title{
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section--about{
  background: #D75009;
  color: #fff;
}

.section--about .about__divider,
.section--about .about__line,
.section--about .about-split__right::before{
  display: none;
}

.section--about p a,
.section--about .about__content a{ color: inherit; }
.section--about .muted{ color: rgba(255,255,255,.85); }

.section__title--center,
.section-title.section__title--center{
  text-align: center;
}

/* Best Sellers: título centrado y con separación */
.section--best-sellers .section__title{
  text-align: center;
  margin: 0 0 16px;
}

/* slider: separación respecto del título */
.section--best-sellers .best-sellers--fullbleed{
  margin-top: 0;
}

/* si el Swiper queda muy “pegado” arriba por padding */
.section--best-sellers .best-sellers__swiper{
  padding-top: 8px;
}

@media (max-width: 767px){
  .section--about .about-split__left{
    min-height: 180px;
    background-size: cover;
    background-position: center;
  }
}

.product-card--subtle,
.product-card--subtle .bs-card__link{
  border: 1px solid #d9d9d9;
}

.section--community{
  background: #f3f3f3;
}

.section--community .community__box{
  background: transparent;
  border: 0;
  padding: 0;
}

.section--community .community,
.section--community .community__box,
.section--community .community__content{
  text-align: left;
}

.section--community .community{
  background: transparent;
}

.post-card__title{
  font-size: 16px;
  line-height: 1.25;
}

.faq--narrow{
  max-width: 820px;
  margin: 0 auto;
}

.faq details,
.faq .faq__item{
  border: 0;
  padding: 0;
}

.faq summary,
.faq .faq__question{
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-left: 28px;
  padding-right: 28px;
}

.faq summary::before,
.faq .faq__question::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: url("/wp-content/uploads/2026/03/triangulo-macht.png") no-repeat center / contain;
}

.faq summary::-webkit-details-marker,
.faq .faq__question::-webkit-details-marker{ display: none; }

.faq summary::after,
.faq .faq__question::after{
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1;
  width: auto;
  height: auto;
  border: 0;
  transform: none;
}

.faq details[open] summary::after,
.faq details[open] .faq__question::after{
  content: "–";
  transform: none;
}

.about-macht{
  background-image: url("/wp-content/uploads/2026/03/franjabordo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.about-macht__content{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-macht__content h2,
.about-macht__content p{
  color: #fff;
}

.about-macht__actions{
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn.btn--orange{
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
}

.btn.btn--orange:hover{
  opacity: 0.9;
}

/* FAQ questions */
.section--faq summary{
  color: #333;
}


.page-hero {
	color: #ffffff;
}

.page-hero--has-bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	position: relative;
	isolation: isolate;
}

.page-hero__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}


.blog-hero > .container {
	padding-top: 50px;
	padding-bottom: 50px;
}

.page-hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	max-width: 720px;
	margin: 0 auto;
}

.page-hero__title {
	max-width: 460px;
	margin: 0;
}

.page-hero__text-wrap {
	max-width: 480px;
}

.page-hero__text {
	max-width: 480px;
	margin: 0 0 20px;
	line-height: 1.65;
}

.page-hero__button,
.wholesale-form__submit {
	background-color: var(--color-accent);
	border-color: var(--color-accent);
	color: #fff;
}

.page-hero__button:hover,
.page-hero__button:focus-visible,
.wholesale-form__submit:hover,
.wholesale-form__submit:focus-visible {
	background-color: var(--color-accent);
	border-color: var(--color-accent);
	opacity: 0.92;
}

.page-hero--has-bg .page-hero__title,
.page-hero--has-bg .page-hero__text,
.page-hero--has-bg .page-hero__eyebrow,
.page-hero--has-bg .page-hero__eyebrow a {
	color: #fff;
}

.wholesale-hero {
	background-image: url('/wp-content/uploads/2026/03/franjabordo-1.webp');
}

.wholesale-benefits {
	padding: 0;
}

.wholesale-benefits__container {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

.wholesale-benefits__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.wholesale-benefits__item {
	padding: 64px 32px 60px;
	text-align: center;
	min-height: 420px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	transition: opacity 240ms ease;
}

.wholesale-benefits__item--dark {
	background: #434343;
	color: #fff;
}

.wholesale-benefits__item--mid {
	background: var(--brand-wholesale-stock);
	color: #fff;
}

.wholesale-benefits__item--light {
	background: #9b9b9b;
	color: #fff;
}

.wholesale-benefits__item--brand {
	background: #8d2028;
	color: #fff;
}

.wholesale-benefits__icon-wrap {
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
}

.wholesale-benefits__icon {
	display: block;
	width: auto;
	max-width: 110px;
	max-height: 90px;
	height: auto;
}

.wholesale-benefits__title {
	margin: 0 0 18px;
	max-width: 240px;
	font-size: 18px;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.wholesale-benefits__text {
	margin: 0;
	max-width: 260px;
	line-height: 1.6;
}

.wholesale-conditions {
	background: #f3f3f3;
	text-align: center;
	padding: 50px 0;
}

.wholesale-conditions .section-title {
	margin-bottom: 20px;
}

.wholesale-conditions__list {
	display: inline-block;
	margin: 0 auto 18px;
	padding-left: 1.2rem;
	text-align: left;
}

.wholesale-conditions__list li + li {
	margin-top: 8px;
}

.wholesale-conditions__note {
	margin: 0;
}

.wholesale-conditions__note strong {
	font-weight: 700;
}

.wholesale-form {
	background: #f3f3f3;
	padding: 50px 0;
}

.wholesale-form__box {
	background: #fff;
	padding: 40px;
	display: grid;
	grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
	gap: 40px;
	align-items: start;
}

.wholesale-form__title {
	margin-bottom: 28px;
	text-align: left;
}

.wholesale-form__steps {
	margin: 0;
	padding-left: 1.35rem;
}

.wholesale-form__steps li + li {
	margin-top: 12px;
}

.wholesale-form__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 20px;
	margin-bottom: 24px;
}

.wholesale-form__field {
	display: flex;
	flex-direction: column;
}

.wholesale-form__field--full {
	grid-column: 1 / -1;
}

.wholesale-form__field label {
	margin-bottom: 6px;
	font-size: 0.95rem;
}

.wholesale-form__field input {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid rgba(0, 0, 0, 0.25);
	background: #fff;
	color: inherit;
}

.wholesale-form__submit {
	width: 100%;
}

.wholesale-form__form-wrap .fluentform {
	width: 100%;
}

.wholesale-form__form-wrap .ff-t-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 20px;
}

.wholesale-form__form-wrap .ff-t-cell {
	width: 100%;
	margin: 0;
}

.wholesale-form__form-wrap .ff-el-group {
	margin-bottom: 18px;
}

.wholesale-form__form-wrap .ff-el-form-control {
	display: block;
	width: 100%;
	min-height: 46px;
	padding: 10px 18px;
	border: 1px solid rgba(0, 0, 0, 0.14);
	background: #fff;
	color: inherit;
	font-size: 16px;
	line-height: 1.3;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
}

.wholesale-form__form-wrap .ff-el-form-control::placeholder {
	color: #7d8793;
	opacity: 1;
}

.wholesale-form__form-wrap .ff-el-form-control:focus {
	outline: none;
	border-color: var(--color-brand);
	box-shadow: none;
}

.wholesale-form__form-wrap .ff-el-input--label {
	display: none;
}

.wholesale-form__form-wrap .ff_submit_btn_wrapper {
	margin-top: 10px;
}

.wholesale-form__form-wrap .ff-btn.ff-btn-submit.mayorista-button,
.wholesale-form__form-wrap button.ff-btn.ff-btn-submit.mayorista-button,
.wholesale-form__form-wrap button.mayorista-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	min-height: 44px;
	padding: 12px 22px;
	border: 1px solid #f08a24 !important;
	border-radius: 0 !important;
	background: #f08a24 !important;
	color: #fff !important;
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	box-shadow: none;
	transition: opacity 240ms ease, background-color 240ms ease, border-color 240ms ease;
}

.wholesale-form__form-wrap .ff-btn.ff-btn-submit.mayorista-button:hover,
.wholesale-form__form-wrap .ff-btn.ff-btn-submit.mayorista-button:focus-visible,
.wholesale-form__form-wrap button.ff-btn.ff-btn-submit.mayorista-button:hover,
.wholesale-form__form-wrap button.ff-btn.ff-btn-submit.mayorista-button:focus-visible,
.wholesale-form__form-wrap button.mayorista-button:hover,
.wholesale-form__form-wrap button.mayorista-button:focus-visible {
	background: #f08a24 !important;
	border-color: #f08a24 !important;
	color: #fff !important;
	opacity: 0.92;
}

.wholesale-form__form-wrap .ff-btn.ff-btn-submit.mayorista-button:focus-visible,
.wholesale-form__form-wrap button.ff-btn.ff-btn-submit.mayorista-button:focus-visible,
.wholesale-form__form-wrap button.mayorista-button:focus-visible {
	outline: 2px solid transparent;
}

.wholesale-form__form-wrap .ff-errors-in-stack,
.wholesale-form__form-wrap .text-danger {
	margin-top: 8px;
	font-size: 14px;
}

.wholesale-form__form-wrap .ff-message-success {
	margin-top: 16px;
	padding: 12px 14px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #f5f5f5;
	color: inherit;
}

@media (max-width: 991px) {
	.wholesale-form__box,
	.wholesale-benefits__grid {
		grid-template-columns: 1fr 1fr;
	}

	.wholesale-benefits__item {
		min-height: 360px;
	}

	.wholesale-form__box {
		padding: 40px;
	}
}

@media (max-width: 767px) {
	.page-hero {
		padding: 88px 0;
	}

	.wholesale-benefits__grid,
	.wholesale-form__box,
	.wholesale-form__grid {
		grid-template-columns: 1fr;
	}

	.page-hero__text-wrap,
	.page-hero__title {
		max-width: none;
	}

	.wholesale-benefits__item {
		min-height: auto;
		padding: 44px 24px;
	}

	.wholesale-form__box {
		padding: 28px 24px;
		gap: 32px;
	}

	.wholesale-form__form-wrap .ff-t-container {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.wholesale-form__form-wrap .ff-btn.ff-btn-submit.mayorista-button,
	.wholesale-form__form-wrap button.ff-btn.ff-btn-submit.mayorista-button,
	.wholesale-form__form-wrap button.mayorista-button {
		width: 100%;
		min-width: 0;
	}

	.wholesale-form__title {
		text-align: center;
	}

	.wholesale-form__steps {
		max-width: 420px;
		margin: 0 auto;
	}
}

@media (max-width: 991px) {
	body:not(.home) h1,
	body:not(.home) .page-title,
	body:not(.home) .entry-title {
		font-size: 46px;
	}
}

@media (max-width: 767px) {
	body:not(.home) h1,
	body:not(.home) .page-title,
	body:not(.home) .entry-title {
		font-size: 36px;
		line-height: 1.02;
	}
}

/* =========================
   Product detail page (WooCommerce)
========================= */
.single-product .macht-product{
  max-width: 1200px;
  margin-inline: auto;
}

.macht-product__breadcrumb{
  margin: 0 0 clamp(20px, 2.8vw, 32px);
}

.macht-product__breadcrumb .woocommerce-breadcrumb{
  font-size: 14px;
  color: var(--muted);
}

.macht-product__top{
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(40px, 4vw, 60px);
  align-items: start;
}

.macht-product__gallery,
.macht-product__summary{
  min-width: 0;
}

.macht-product__gallery{
  max-width: 650px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.macht-product-gallery-main__slide,
.macht-product__gallery-placeholder{
  border: 0;
  background: transparent;
}

.macht-product-gallery-main__slide img,
.macht-product__gallery-placeholder img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.macht-product-gallery-thumbs{
  margin-top: 14px;
}

.macht-product-gallery-thumbs .swiper-wrapper{
  justify-content: center;
}

.macht-product-gallery-thumbs__slide{
  border: 0;
  cursor: pointer;
  opacity: 0.56;
  transition: opacity 200ms ease;
  background: transparent;
}

.macht-product-gallery-thumbs__slide:hover{
  opacity: 0.78;
}

.macht-product-gallery-thumbs__slide.swiper-slide-thumb-active{
  opacity: 1;
}

.macht-product-gallery-thumbs__slide img{
  width: 50%;
  margin-inline: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.macht-product .product_title{
  max-width: 14ch;
  font-size: 37px;
  line-height: 1.04;
  margin: 0;
}

.single-product .macht-product .product_title.entry-title{
  max-width: 14ch;
  font-size: 37px;
  line-height: 1.04;
  margin: 0;
}

.macht-product__summary{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.macht-product__sku{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.macht-product__subtitle{
  margin: 12px 0 0;
  max-width: 50ch;
  font-size: 17px;
  line-height: 1.4;
  color: var(--muted);
  text-transform: none;
}

.macht-product__attributes{
  margin: 22px 0 0;
  width: 100%;
  max-width: 560px;
  background: #f6f6f6;
  border: 0;
  padding: 16px 18px;
}

.macht-product__attributes-title{
  font-size: 12px;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}

.macht-product__attributes dl{
  margin: 0;
}

.macht-product__attributes dl > div{
  display: grid;
  grid-template-columns: minmax(112px, auto) 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.macht-product__attributes dt,
.macht-product__attributes dd,
.macht-product__observaciones p{
  margin: 0;
  text-transform: none;
}

.macht-product__attributes dt{
  font-size: 13px;
  font-weight: 400;
  color: #515151;
}

.macht-product__attributes dd{
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}

.macht-product__observaciones{
  margin-top: 14px;
  padding-top: 0;
  border-top: 0;
}

.macht-product__observaciones h3{
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #595959;
}

.macht-product__price-placeholder{
  display: inline-flex;
  justify-content: center;
  width: 220px;
  margin-top: 14px;
  border: 0;
  padding: 10px 14px;
  background: #fbfbfb;
}

.macht-product__price-placeholder p{
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  color: #383838;
}

.macht-product__favorite{
  margin-top: 18px;
  width: 220px;
  padding: 12px 22px;
  border-radius: 0;
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.macht-product__favorite:hover,
.macht-product__favorite:focus{
  background: #6c1a22;
  border-color: #6c1a22;
  color: #fff;
}

.macht-product__favorite:focus-visible,
.macht-product-gallery-thumbs__slide:focus-visible{
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.macht-product__details,
.macht-product__related{
  margin-top: clamp(42px, 5vw, 72px);
}

.macht-product__details{
  background: #f3f3f3;
  border: 0;
  box-shadow: none;
  padding: clamp(26px, 3.6vw, 42px) clamp(16px, 2.6vw, 30px);
}

.macht-product__detail-block--content{
  max-width: 76ch;
}

.macht-product__detail-block--content h2{
  margin-bottom: 10px;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.12;
  color: var(--brand);
}

.macht-product__related h2{
  margin-bottom: 16px;
}

.macht-product__related .products{
  list-style: none;
  margin: 0;
  padding: 0;
}

.macht-product-related__swiper .swiper-slide{
  width: clamp(220px, 22vw, 280px);
  height: auto;
}

.macht-product-related__swiper .swiper-slide .product{
  margin: 0;
  width: 100%;
}

.macht-product__related .products .product .bs-card__link,
.macht-product__related .products .product a{
  border-radius: 0;
  box-shadow: none;
}

.macht-product__related .products .product{
  border: 0;
  box-shadow: none;
  background: #fff;
}

.macht-product__related .products .product .button{
  border-radius: 0;
}

.macht-product__related .products .product .product_type_simple{
  display: none !important;
}

.macht-product__related .products .product .woocommerce-loop-product__title{
  text-align: center;
}

.macht-product__details .entry-content p{
  max-width: 70ch;
  line-height: 1.55;
}

@media (max-width: 1024px){
  .macht-product__top{
    grid-template-columns: 1fr;
    gap: 0;
  }

  .macht-product__gallery{
    max-width: 100%;
  }

  .macht-product__summary{
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
  }
}

@media (max-width: 767px){
  .macht-product .product_title{
    font-size: 32px;
  }

  .single-product .macht-product .product_title.entry-title{
    font-size: 32px;
  }

  .macht-product__subtitle{
    font-size: 16px;
  }
}

/* =========================
   Catalog listing (archive/search)
========================= */
.macht-catalog-page{
  display: block;
}

.macht-catalog__breadcrumb{
  margin: 0 0 clamp(28px, 4vw, 40px);
}

.macht-catalog__breadcrumb .woocommerce-breadcrumb{
  font-size: 13px;
  color: #777;
}

.macht-catalog{
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.macht-catalog__sidebar{
  position: sticky;
  top: 24px;
  display: grid;
  gap: 24px;
}

.macht-catalog-sidebar__block{
  padding: 0;
  background: #fff;
}

.macht-catalog-sidebar__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.macht-catalog-sidebar__header h2{
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--brand);
}

.macht-catalog-sidebar__clear,
.macht-catalog-nav__parent-link{
  font-size: 13px;
  color: #777;
  text-decoration: none;
}

.macht-catalog-nav__parent-link-wrap{
  margin: 0 0 16px;
}

.macht-catalog-nav__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.macht-catalog-nav__list--depth-1,
.macht-catalog-nav__list--depth-2,
.macht-catalog-nav__list--depth-3{
  margin-top: 10px;
  padding-left: 18px;
}

.macht-catalog-nav__link{
  display: inline-flex;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.macht-catalog-nav__item.is-featured-root > .macht-catalog-nav__link{
  color: #4d535d;
  font-weight: 550;
  font-size: 15.5px;
  text-transform: uppercase;
}

.macht-catalog-nav__item.is-active > .macht-catalog-nav__link{
  color: var(--text);
  font-weight: 700;
}

.macht-catalog-filters{
  display: grid;
  gap: 22px;
}

.macht-catalog-active-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.macht-catalog-active-filter{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.2;
}

.macht-catalog-active-filter__label{
  color: var(--text);
}

.macht-catalog-active-filter__remove{
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.macht-catalog-filter-group{
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.macht-catalog-filter-group__toggle{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--brand);
}

.macht-catalog-filter-group__toggle:focus-visible,
.macht-catalog-active-filter__remove:focus-visible{
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.macht-catalog-filter-group__icon{
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}

.macht-catalog-filter-group.is-collapsed .macht-catalog-filter-group__icon{
  transform: rotate(-45deg);
  margin-top: 0;
}

.macht-catalog-filter-group__options{
  display: grid;
  gap: 12px;
}

.macht-catalog-filter-group__options[hidden]{
  display: none !important;
}

.macht-catalog-filter-option{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.macht-catalog-filter-option[hidden],
.sidebar-item[hidden]{
  display: none !important;
}

.macht-catalog-filter-option input{
  width: 14px;
  height: 14px;
  margin-top: 3px;
  accent-color: var(--brand);
}

.macht-catalog-show-more-toggle{
  border: 0;
  background: transparent;
  padding: 0;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.3;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.macht-catalog-show-more-toggle:hover{
  color: var(--text);
}

.macht-catalog-show-more-toggle:focus-visible{
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.macht-catalog__main{
  min-width: 0;
}

.macht-catalog-toolbar{
  display: grid;
  gap: 14px;
  margin-bottom: clamp(24px, 3vw, 32px);
}

.macht-catalog-toolbar__heading{
  display: grid;
  gap: 8px;
}

.macht-catalog-page .macht-catalog-toolbar__heading h1,
.macht-catalog-page .macht-catalog-toolbar__heading .page-title{
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.macht-catalog-toolbar__description{
  margin: 0;
  font-size: 14px;
  color: #777;
}

.macht-catalog-toolbar__subheader{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.macht-catalog-toolbar__count{
  margin: 0;
  font-size: 14px;
  color: #777;
}

.macht-catalog-toolbar__sort{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.macht-catalog-toolbar__sort label{
  font-size: 13px;
  color: #777;
  white-space: nowrap;
}

.macht-catalog-toolbar__sort select{
  width: auto;
  min-width: 180px;
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #fff;
  padding: 0 36px 0 12px;
  font-size: 14px;
}

.macht-catalog-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.5vw, 30px);
}

.macht-catalog-card{
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.macht-catalog-card:hover{
  transform: translateY(-2px);
}

.macht-catalog-card__link{
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.macht-catalog-card__media{
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: clamp(12px, 1.6vw, 20px);
  background: #f6f6f6;
  overflow: hidden;
}

.macht-catalog-card__media-frame{
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.macht-catalog-card__image{
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.macht-catalog-card__content{
  padding: 10px 0 0;
}

.macht-catalog-card__title{
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.macht-catalog-empty{
  border: 1px solid var(--border);
  padding: 28px 22px;
  background: #fafafa;
}

.macht-catalog-empty p{
  margin: 0;
}

.macht-catalog-pagination{
  margin-top: clamp(32px, 4vw, 44px);
}

.macht-catalog-pagination .page-numbers{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.macht-catalog-pagination a,
.macht-catalog-pagination span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border);
  text-decoration: none;
}

.macht-catalog-pagination .current{
  border-color: var(--brand);
  color: var(--brand);
}

@media (max-width: 1024px){
  .macht-catalog{
    grid-template-columns: 1fr;
  }

  .macht-catalog__sidebar{
    position: static;
    order: -1;
  }

  .macht-catalog-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px){
  .macht-catalog-page .section{
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .macht-catalog-toolbar__subheader,
  .macht-catalog-toolbar__sort{
    flex-direction: column;
    align-items: stretch;
  }

  .macht-catalog-toolbar__sort select{
    width: 100%;
    min-width: 0;
  }

  .macht-catalog-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Single post page */
.single-post-page .section{
	padding-top: 40px;
	padding-bottom: 40px;
}

.single-post__container{
	max-width: 860px;
}

.single-post__eyebrow{
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 20px;
	font-size: 13px;
	color: var(--muted);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.single-post__eyebrow a{
	text-decoration: none;
}

.single-post__eyebrow a:hover,
.single-post__eyebrow a:focus-visible{
	text-decoration: underline;
}

.single-post__header{
	margin-bottom: 30px;
}

.single-post__title{
	margin: 0;
	font-size: clamp(34px, 4.5vw, 62px);
	line-height: 1;
	letter-spacing: 0.01em;
	color: var(--brand);
	text-transform: none;
}

.single-post__meta{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	font-size: 13px;
	color: var(--muted);
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.single-post__featured{
	margin: 0 0 36px;
}

.single-post__featured-image{
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.single-post__content{
	max-width: 720px;
}

.single-post__content > *:first-child{
	margin-top: 0;
}

.single-post__content p,
.single-post__content li{
	font-size: clamp(17px, 1.2vw, 20px);
	line-height: 1.75;
	color: #1b1b1b;
}

.single-post__content p{
	margin: 0 0 18px;
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4{
	color: var(--brand);
	text-transform: none;
	line-height: 1.15;
	margin: 40px 0 14px;
}

.single-post__content h2{
	font-size: 31px;
}

.single-post__content h3{
	font-size: clamp(23px, 2.2vw, 32px);
}

.single-post__content a{
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}

.single-post__content ul,
.single-post__content ol{
	margin: 0 0 18px;
	padding-left: 1.35em;
}

.single-post__content blockquote{
	margin: 28px 0;
	padding-left: 18px;
	border-left: 2px solid var(--brand);
	color: #2d2d2d;
}

.single-post__content figure,
.single-post__content .wp-block-image,
.single-post__content .wp-block-embed,
.single-post__content .wp-block-table,
.single-post__content .wp-block-quote{
	margin: 28px 0;
}

.single-post__content table{
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
}

.single-post__content th,
.single-post__content td{
	padding: 10px 12px;
	border-bottom: 1px solid #dbdbdb;
	text-align: left;
}

.single-post__footer{
	margin-top: 34px;
}

.single-post-related{
	padding-top: 18px;
}

.blog-grid--related .blog-card{
	border: 0;
}

.blog-grid--related .blog-card__content{
	padding-inline: 0;
}

.comments-area{
	max-width: 720px;
}

.comments-title,
.comment-reply-title{
	margin: 0 0 18px;
	font-size: clamp(24px, 2.2vw, 34px);
	color: var(--brand);
	text-transform: uppercase;
}

.comment-list,
.comment-list .children{
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-list > li,
.comment-list .children > li{
	margin-bottom: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid #e6e6e6;
}

.comment-metadata,
.comment-metadata a,
.comment-author{
	font-size: 14px;
	color: var(--muted);
	text-decoration: none;
}

.comment-content p{
	margin: 10px 0 0;
	font-size: 16px;
	line-height: 1.65;
}

.comment-form p{
	margin-bottom: 14px;
}

.comment-form label{
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	color: #3f3f3f;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"]{
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d2d2d2;
	font: inherit;
	background: #fff;
}

.comment-form-cookies-consent{
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

@media (max-width: 980px){
	.single-post__title{
		font-size: clamp(31px, 6.2vw, 52px);
	}

	.blog-grid--related{
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px){
	.single-post-page .section{
		padding-top: 34px;
		padding-bottom: 34px;
	}

	.single-post__header{
		margin-bottom: 24px;
	}

	.single-post__featured{
		margin-bottom: 28px;
	}

	.single-post__meta{
		display: flex;
		flex-wrap: wrap;
		gap: 6px 10px;
	}

	.single-post__content p,
	.single-post__content li{
		font-size: 17px;
		line-height: 1.68;
	}

	.single-post__content table{
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
}
