@keyframes olja-slide-simple{
  from { top: calc(1em * var(--h1-lh)); }
  to   { top: 0; }
}
@keyframes olja-shimmer { to { background-position: -200% 0; } }

/* ===== Header ===== */

.site-header.sticky,
.header-fixed,
.nav-fixed {
  padding-right: var(--sbw);
}

.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.olja-header {
  position: sticky;
  top: 0;
  z-index: 3000;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
  height: min-content;
}

.olja-header__grid {
  display: grid;
  align-items: center;
  width: 100%;
}

.hdr-burger {
  position: relative;
  appearance: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
}

.hdr-burger::before,
.hdr-burger::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
}

.hdr-burger::before {
  top: 10.5px;
}

.hdr-burger::after {
  bottom: 12px;
}

.olja-header__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 1.25rem);
}

.hdr-action {
  text-decoration: none;
  color: inherit;
  line-height: 1;
  padding: 20px 0px;
  font-size: 14px;
}

.hdr-lang {
  position: relative;
}

.hdr-lang.open .lang-dropdown {
  display: block;
}

body.home .site-header,
body.front-page .site-header {
  display: none !important;
}

body.page-template-page-limited-series .site-header,
body.page-template-page-limited-series .olja-header,
body.page-template-page-limited-series .site-footer,
body.page-template-page-limited-series .olja-footer,
body.page-template-page-limited-series #mobileNav,
body.page-template-page-limited-series .mobile-backdrop {
  display: none !important;
}

/* ===== Footer ===== */

.site-footer .widget_shopping_cart,
.widget_shopping_cart {
  display: none !important;
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 30px 16px 8px;
  height: min-content;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  width: 100%;
  margin: 0 auto;
}

.footer-row--top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 24px;
  width: 100%;
}

.footer-col--newsletter .footer-hint {
  margin: 0 0 20px 0;
  font-weight: 600;
}

.footer-col--links {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(120px, auto);
  column-gap: 80px;
  justify-content: end;
}

.link-group .footer-hint {
  margin: 0 0 40px 0;
  opacity: .6;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  row-gap: 8px;
}
.nav-links {
  list-style: none;
  padding: 0;
  display: grid;
  row-gap: 8px;
}


.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: #000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
}


.footer-links a:hover {
  opacity: 1;
}

.footer-row--bottom {
  display: flex;
  grid-template-columns: 1fr 1fr;
  align-items: baseline;
  gap: 16px;
  justify-content: space-between;
}

.footer-brandline {
  font-family: "Geist", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 200px;
  color: #fff;
  text-align: left;
  order: 1;
}

.footer-social {
  padding-right: 50px;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  order: 2;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  transition: opacity .2s ease, transform .06s ease;
}

.footer-social a:active {
  transform: scale(.97);
}

.footer-social svg {
  width: 100%;
  height: 100%;
  fill: #fff;
  opacity: .8;
}

.footer-social a:hover svg {
  opacity: 1;
}

/* ===== Home ===== */

body.home main.site-main,
body.front-page main.site-main {
  min-height: 100vh;
  min-height: 100svh;
}

.home-hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  display: block;
}

.home-hero__picture,
.home-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__image {
  object-fit: cover;
  object-position: center;
  max-width: none;
  display: block;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.25));
  z-index: 1;
  pointer-events: none;
}

.home-hero__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-content {
  padding: 4rem 0;
}

/* ===== Shop ===== */

.shop-intro {
  padding: 65px 16px 0;
}

.shop-intro-container {
  display: grid;
  grid-template-columns: .5fr 1fr;
  gap: 2rem;
  align-items: center;
}

.shop-intro-left h1 {
  text-align: left;
  font-size: 80px;
  font-weight: 600;
  letter-spacing: -3px;
}

.shop-intro-right {
  padding-right: 35vw;
}

.shop-intro-right p {
  font-size: 18px;
  text-align: left;
}

.shop-products {
  padding: 0px 16px 90px;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.shop-newsletter {
  position: relative;
  width: 100%;
  height: 60dvh;
  background-image:url('../img/newsletter-bg.jpg');
  display: flex;
  align-items: center;
}

.shop_table {
  border: none !important;
}

.olja-cart-totals .shop_table .cart-subtotal th {
  text-align: left;
  font-weight: 400;
  color: #4a4a4a;
}

.olja-cart-totals .shop_table .cart-subtotal td {
  text-align: right;
  font-weight: 400;
  color: #4a4a4a;
}

.shop-categories {
  width: 100%;
  margin: 15px 0;
}

.shop-categories .container {
  padding-right: 16px;
}

.shop-categories-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.shop-categories {
  position: relative;
  z-index: 50;
}

.shop-categories .shop-categories-nav {
  pointer-events: auto;
}

.shop-categories .cat-chip {
  cursor: pointer;
}

.woocommerce-cart .cart_totals .shop_table tr.cart-subtotal th,
.woocommerce-cart .cart_totals .shop_table tr.cart-subtotal td,
.woocommerce-cart .cart_totals .shop_table tr.cart-subtotal td .amount,
.woocommerce-cart .cart_totals .shop_table tr.cart-subtotal td .woocommerce-Price-amount,
.woocommerce-cart .cart_totals .shop_table tr.cart-subtotal td strong,
.woocommerce-cart .cart_totals .shop_table tr.cart-subtotal td b {
  font-weight: 400 !important;
}

.woocommerce-cart .cart_totals .shop_table tr.order-total th,
.woocommerce-cart .cart_totals .shop_table tr.order-total td,
.woocommerce-cart .cart_totals .shop_table tr.order-total td .amount,
.woocommerce-cart .cart_totals .shop_table tr.order-total td .woocommerce-Price-amount,
.woocommerce-cart .cart_totals .shop_table tr.order-total td strong,
.woocommerce-cart .cart_totals .shop_table tr.order-total td b {
  font-weight: 500 !important;
}

/* ===== Product ===== */

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

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 50px;
}

.product-name {
  font-family: Geist;
  font-size: 12px;
  margin: 0;
  text-align: left;
  flex: 1;
}

.product-price {
  font-size: 12px;
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
}

.single-product h1.product_title,
.single-product h1.entry-title,
.single-product header.entry-header,
.single-product .page-header,
.single-product .woocommerce-products-header__title.page-title,
.single-product .woocommerce .page-title {
  display: none !important;
}

.single-product .product .stock {
  display: none !important;
}

.product-page .wrapper {
  width: 100%;
  padding: 65px 16px 0;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(30px, 100px, 100px);
  padding: 0 16px 200px;
}

.product-left .product-media {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: center;
}

.product-thumbs-wrap {
  width: 96px;
}

#productThumbs {
  display: grid;
  gap: 10px;
  max-height: 420px;
  overflow-y: auto;
  padding: 0;
}

#productThumbs .thumb {
  display: block;
  width: 72px;
  height: 72px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

#productThumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

#productThumbs .thumb.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #111;
  border-radius: 3px;
}

.product-thumbs--vertical {
  gap: 8px;
  overflow-y: auto;
  padding-right: 0px;
  scroll-snap-type: y proximity;
  max-height: 100%;
}

.product-left .product-media .product-thumbs {
  grid-auto-flow: row;
}

.product-thumbs--vertical .thumb:is(:hover, :focus) {
  border-color: rgba(0,0,0,.35);
}

.product-image-main {
  width: 100%;
  aspect-ratio: 1 / .9;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.product-image-main--single .image-nav {
  display: none;
}

#productImageMain {
  position: relative;
}

#productIndicators.product-indicators {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(0,0,0,.28);
  border-radius: 9999px;
  backdrop-filter: blur(2px);
  pointer-events: auto;
  z-index: 2;
}

#productIndicators[hidden] {
  display: none !important;
}

#productIndicators .dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  padding: 0;
  cursor: pointer;
}

#productIndicators .dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

#productIndicators .dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.product-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: translateX(0);
  transition: transform .28s ease, opacity .28s ease;
}

.product-image--placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg, #fafafa, #fafafa 10px, #f0f0f0 10px, #f0f0f0 20px);
}

.product-thumbs {
  display: grid;
  gap: 8px;
  overflow-x: hidden;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
}

.product-thumbs .thumb {
  appearance: none;
  background: none;
  border: 1px solid rgba(0,0,0,.1);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  position: relative;
  transition: box-shadow .2s ease, border-color .2s ease;
  display: block;
  width: 70px;
  aspect-ratio: 1/1;
  line-height: 0;
}

.product-thumbs .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbs .thumb:is(:hover, :focus) {
  border-color: rgba(0,0,0,.35);
}

.product-thumbs .thumb.is-active {
  border-color: rgba(0,0,0,.35);
  box-shadow: inset 0 -4px 0 0 #000;
}

.product-thumbs--vertical .thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: #000;
  opacity: 0;
  transform: translateY(100%);
  transition: transform .18s ease, opacity .18s ease;
  pointer-events: none;
  z-index: 2;
}

.product-thumbs--vertical .thumb.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

#productImageMain.olja-no-anim img {
  transition: none !important;
  transform: none !important;
}

.product-heading {
  margin-bottom: 22px;
}

.product-title-logo {
  padding: 0 0 15px;
  font-size: 16px;
  margin: 0;
}

.product-title {
  font-weight: 500;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: -.3px;
  margin: 0 0 6px;
}

.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

.product-price-wrap .price {
  font-size: 16px;
  font-weight: 600;
  padding: 20px 0;
}

.product-attributes {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.single-product form.variations_form select[name="attribute_pa_color"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.single-product form.variations_form .reset_variations {
  font-size: 12px;
  opacity: .7;
}

.product-colors {
  margin: 20px 0 18px;
}

.product-colors .detail-label {
  margin: 0 0 8px;
  font-family: Geist;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: 12px;
  text-transform: uppercase;
}

.product-description {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.product-description p {
  margin: 0 0 10px;
}

.single-product .product-price-wrap .price ins {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.single-product .product-price-wrap .price a {
  text-decoration: none;
  border-bottom: 0;
  color: inherit;
}

.single-product .product-price-wrap .price del {
  text-decoration: line-through;
  opacity: .55;
  margin-right: .4em;
}

.single-product form.cart .single_add_to_cart_button {
  display: none !important;
}

.single-product form.cart .quantity {
  display: none !important;
}

.single-product form.variations_form .single_variation .price {
  display: none !important;
}

.single-product form.variations_form .reset_variations {
  display: none !important;
}

.single-product form.variations_form table.variations tr:has(select[name="attribute_pa_color"]) {
  display: none !important;
}

.product-colors.is-error .detail-label {
  color: #b00020;
}

#productImageMain {
  touch-action: pan-y;
}

.wp-block-woocommerce-cart td.product-name .amount {
  display:none !important;
}

.olja-cart-table .column-image,
.olja-cart-table .product-thumbnail {
  width: 150px !important;
}

.olja-cart-table .column-qty,
.olja-cart-table .product-quantity {
  width: 170px;
  text-align: center;
}

.olja-cart-table .column-total,
.olja-cart-table .product-subtotal {
  width: 140px;
  text-align: right;
}

.olja-cart-table .product-name .olja-brand {
  display:block;
  margin-bottom:4px;
  font-size:12px;
  font-weight:600;
  opacity:.8;
  letter-spacing:.02em;
}

.olja-cart-table .product-name .olja-unit-price {
  display:none;
}

.olja-cart-table .product-quantity .qty {
  max-width: 50px;
  text-align: center;
  padding: 8px 0;
  border:1px solid rgba(0,0,0,.15);
  border-radius: 5px;
}

.olja-cart-table .product-name .olja-remove {
  display:inline-block;
  margin-top:8px;
  font-size:12px;
  opacity:.75;
}

.olja-cart-table .product-name .olja-brand {
  display:block;
  letter-spacing:.02em;
  opacity:.85;
}

.olja-cart-table .product-name .olja-brand--top {
  display:block;
  font-size:12px;
  font-weight:600;
  letter-spacing:.02em;
  opacity:.85;
  margin-bottom:4px;
}

.olja-cart-table .product-name .olja-product-name {
  display:inline-block;
  font-size:16px;
  font-weight: 600;
  line-height:1.3;
  margin:0 0 6px 0;
}

.olja-cart-table .product-name .olja-brand--below {
  font-size:13px;
  font-weight:600;
  margin: 2px 0 6px;
  opacity:.9;
}

.olja-cart-table .product-quantity .qty::-webkit-outer-spin-button,
.olja-cart-table .product-quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.olja-cart-table .product-name .wc-item-meta {
  margin:0;
  padding:0;
}

.olja-cart-table .product-name .wc-item-meta li {
  list-style:none;
  margin:2px 0;
  font-size:12px;
  opacity:.9;
}

.olja-cart-table .product-name .wc-item-meta .wc-item-meta-label {
  font-weight:600;
  margin-right:4px;
}

.olja-cart-table .product-name .olja-remove {
  display:inline-block;
  margin-top:8px;
  font-size:12px;
  opacity:.75;
}

.product-item a {
  display:block;
  text-decoration:none;
  color:inherit;
}

.product-item .media {
  position: relative;
  overflow: hidden;
}

.product-item .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.product-item .img--primary {
  opacity: 1;
  transition: opacity .35s ease;
}

.product-item .img--secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}

.product-item .shade {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .35s ease;
  pointer-events: none;
}

.product-item .media {
  position:relative;
  overflow:hidden;
  aspect-ratio:4/5;
}

.product-item .media-track {
  display:flex;
  width:100%;
  height:100%;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling: touch;
}

.product-item .media-track::-webkit-scrollbar {
  display:none;
}

.product-item .media-slide {
  flex:0 0 100%;
  height:100%;
  scroll-snap-align:center;
}

.product-item .media-slide img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.product-item .media {
  position:relative;
  overflow:hidden;
  aspect-ratio:4/5;
}

.product-item .media-nav {
  position:absolute;
  inset:0;
  pointer-events:none;
}

.product-item .media-btn {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border:0;
  color:#8a8a8a;
  background: transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:40px;
  line-height:1;
  cursor:pointer;
  pointer-events:auto;
  opacity:0;
  transition: opacity .2s ease, background .2s ease;
}

.product-item .media-btn:hover{
  color: #000;
}

.product-item .btn-prev {
  left:8px;
}

.product-item .btn-next {
  right:8px;
}

.product-item .media-btn[disabled] {
  display:none !important;
}

.product-item .media-dots {
  display:none !important;
}

/* ===== Cart ===== */

body.olja-cart-open {
  overflow: hidden;
  padding-right: var(--sbw);
}

body.olja-cart-open {
  overflow: hidden;
}

.olja-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.40);
  opacity: 0;
  transition: opacity .22s ease;
  z-index: 100000;
}

.olja-cart-overlay[hidden] {
  pointer-events: none;
}

.olja-cart-overlay.is-visible {
  opacity: 1;
}

.olja-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 90vw);
  background: #fff;
  transform: translateX(110%);
  box-shadow: none;
  visibility: hidden;
  transition: transform .28s ease, box-shadow .2s ease, visibility 0s linear .28s;
  z-index: 100001;
  display: grid;
  grid-template-rows: auto 1fr;
  pointer-events: none;
}

.olja-cart-drawer.is-open {
  transform: translateX(0);
  box-shadow: -18px 0 40px rgba(0,0,0,.18) !important;
  visibility: visible;
  transition: transform .28s ease, box-shadow .2s ease, visibility 0s;
  pointer-events: auto;
}

.olja-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 35px;
}

.olja-cart-drawer__header h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  font-family: Geist;
}

.olja-cart-close {
  appearance: none;
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.olja-cart-close:hover {
  border-color: rgba(0,0,0,.35);
}

#oljaCartDrawer .olja-cart-drawer__body,
.olja-cart-drawer .olja-cart-drawer__body {
  flex:1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: 12px 30px 20px 30px;
}

#oljaCartDrawer,
.olja-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  max-height: 100svh;
  width: min(680px, 100vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

#oljaCartContent .olja-cart-empty {
  flex:1 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

#oljaCartContent .olja-cart-footer .olja-total-value {
  margin-left: auto;
  font-weight: 700;
  text-align: right;
}

#oljaCartContent .olja-cart-footer .olja-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  border: 1.5px solid #4a4a4a;
  background: transparent;
  color: #4a4a4a;
  font-weight: 600;
  padding: 17px 10px;
  border-radius: 4px;
  transition: filter .15s ease;
  text-transform: uppercase;
}

#oljaCartContent .olja-cart-footer .olja-cart-note {
  grid-column: 1 / -1;
  font-size: 14px;
  color: #666;
  margin: 0;
  padding: 5px 0 40px;
  font-weight: 300;
}

.olja-cart-header {
  flex: 0 0 auto;
}

.olja-cart-title {
  margin:0;
  font-size:18px;
  font-weight:700;
}

.olja-cart-close {
  background:none;
  border:0;
  font-size:18px;
  cursor:pointer;
}

.olja-cart-content {
  display:flex;
  flex-direction:column;
  min-height:0;
}

.olja-cart-items {
  list-style:none;
  margin:0;
  padding:0;
  overflow:hidden;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
}

.olja-cart-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: min-content;
  gap: 0 12px;
  border-top:1px solid #e9e9e9;
  padding:14px 16px;
  position:sticky;
  bottom:0;
  background:#fff;
  z-index: 1;
  flex: 0 0 auto;
}

#oljaCartContent .olja-cart-actions {
  display:flex;
  gap:10px;
  margin-top:12px;
}

#oljaCartContent .olja-cart-actions .olja-btn {
  flex:1 1 50%;
}

#oljaCartContent .olja-cart-footer .olja-cart-total,
#oljaCartContent .woocommerce-mini-cart__total {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  padding: 20px 0 0;
}

#oljaCartContent .olja-cart-footer .olja-cart-total .olja-total-value,
#oljaCartContent .woocommerce-mini-cart__total .amount {
  margin-left: auto;
  text-align: right;
  font-weight: 500;
}

#oljaCartContent .olja-cart-footer .olja-cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
  justify-items: stretch;
  margin-top: 12px;
}

#oljaCartContent .olja-cart-actions .olja-btn {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 10px;
  line-height: 1;
  transition: filter .15s ease, background-color .15s ease;
}

#oljaCartContent .olja-cart-actions .olja-btn:hover {
  filter: brightness(0.95);
}

#oljaCartContent .olja-cart-actions .olja-btn:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

#oljaCartDrawer .olja-cart-item {
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:nowrap;
  padding:14px 16px;
  border-bottom:.1px solid #eeeeee;
}

.woocommerce-cart .cart_totals .olja-cart-note {
  margin: 10px 0 18px;
  font-size: 12px;
  line-height: 1.4;
  opacity: .75;
  text-align: center;
  letter-spacing: -.2px;
}

.woocommerce-cart .cart_totals .olja-cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
}

.woocommerce-cart .cart_totals .olja-cart-btn {
  text-transform: none;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  line-height: 1;
}

.woocommerce-cart .cart_totals .olja-btn--ghost {
  border: 1px solid rgba(0,0,0,.15);
  background: transparent;
}

.woocommerce-cart .cart_totals .olja-btn--ghost:hover {
  border-color: rgba(0,0,0,.35);
}

.woocommerce-cart .cart_totals .olja-btn--primary {
  background: #111;
  color: #fff;
  border: 1px solid #111;
  font-weight: 600;
}

.woocommerce-cart .cart_totals .olja-btn--primary:hover {
  filter: brightness(.95);
}

.olja-cart-table {
  border: none !important;
}

.olja-cart-table thead th {
  font-weight: 600 !important;
  font-size: 14px;
  opacity: .7;
}

.olja-cart-table td {
  background: #fff;
  padding: 16px 10px;
}

.cart-collaterals {
  margin-top: 24px;
}

.olja-page-header + .container,
.olja-page-header + .olja-cart-layout {
  padding-top: 24px;
  margin-top: 8px;
}

.olja-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(290px, 1.2fr);
  gap: 100px;
  align-items: start;
}

.olja-cart-layout .woocommerce-cart-form {
  width: 100%;
}

.olja-cart-layout .cart-collaterals {
  position: sticky;
  top: 24px;
}

.olja-cart-layout .cart-collaterals .cart_totals,
.olja-cart-layout .cart-collaterals .cross-sells {
  width: 100%;
}

.olja-cart-layout .cart_totals {
  padding: 16px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  background: #fff;
}

.olja-cart-page {
  padding: 100px 130px;
}

.olja-cart-totals .olja-taxes-note-row td {
  padding:8px 0 14px;
}

.olja-cart-totals .olja-cart-note {
  font-size:12px;
  line-height:1.4;
  opacity:.75;
  margin:0;
}

.olja-cart-totals h2,
.olja-cart-totals .wc-block-cart__totals-title {
  display:none !important;
}

.cart-collaterals .olja-express-checkout {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.cart-collaterals .olja-express-checkout:empty {
  display: none;
}

.cart-collaterals .olja-express-checkout::before {
  content: "Express checkout";
  font-size: 12px;
  letter-spacing: .02em;
  opacity: .75;
}

.cart-collaterals .olja-express-checkout > * {
  width: 100%;
}

/* ===== Checkout ===== */

.olja-checkout-only .checkout-button {
  width:100%;
  border-radius:5px;
  padding:14px 16px;
  font-weight:600;
}

/* ===== Journal ===== */

.journal-page {
  padding: 65px 16px 0 16px;
}

.journal-header {
  margin-bottom: 30px;
}

h1.journal-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  padding-left: 16px;
}

.journal-collage-first {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-bottom:18px;
}

.journal-collage-first .journal-card.is-span-2 {
  grid-column: span 2;
}

.journal-collage-first .journal-card.is-half {
  grid-column: span 1;
}

.journal-card__media {
  position: relative !important;
  inset: auto !important;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.journal-card.is-tall   .journal-card__media {
  height: 550px;
}

.journal-card.is-half   .journal-card__media {
  height: 275px;
}

.journal-card.is-regular .journal-card__media {
  height: 400px;
}

.journal-card__media > img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: none;
  transition: transform .3s ease;
}

.journal-card:hover .journal-card__media > img {
  transform: scale(1.03);
}

.journal-card {
  display:block;
  overflow:hidden;
}

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

.journal-card__caption {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 14px;
  background: #fff;
}

.journal-card__text {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 6px;
  align-content: start;
}

.journal-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.2px;
  color: #111;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.journal-card__tags {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
}

.journal-tag {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 12px;
  line-height: 1;
  color: #111;
  text-decoration: none;
}

.journal-card__arrow {
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
}

.journal-card:hover .arrow-svg {
  transform: translateX(4px);
}

.journal-card__caption::after {
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:6px;
  height:1px;
  background:#111;
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .28s ease;
  opacity:.9;
}

.journal-card:hover .journal-card__caption::after {
  transform: scaleX(1);
}

.journal-card__meta {
  display:none !important;
}

.journal-collage-rest {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.journal-more-wrap {
  margin: 50px 0;
  display: grid;
  justify-content: center;
}

#olja-journal-load {
  background: #000;
  color: #fff;
  font-family: Geist;
  padding: 10px 60px;
  text-transform: uppercase;
  font-weight: 600;
}

.journal-title {
  --h1-lh: 1.05;
  line-height: var(--h1-lh);
}

/* ===== Modal/Policies ===== */

.olja-modal__overlay {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  opacity:0;
  transition:.2s;
  z-index:9997;
}

.olja-modal__overlay.is-visible {
  opacity:1;
}

.olja-modal {
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  z-index:9998;
  opacity:0;
  visibility:hidden;
  transition:opacity .2s,visibility 0s .2s;
  pointer-events: none;
}

.olja-modal.is-open {
  opacity:1;
  visibility:visible;
  transition:opacity .2s;
}

.olja-modal__dialog {
  pointer-events: auto;
  width:min(680px,92vw);
  aspect-ratio:1/2;
  max-height:min(92vh,1200px);
  background:#fff;
  border-radius:12px;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  overflow:hidden;
  display:grid;
  grid-template-rows:auto 1fr;
  transform:translateY(8px);
  transition:.2s;
  opacity:0;
  position: relative;
}

.olja-modal.is-open .olja-modal__dialog {
  transform:none;
  opacity:1;
}

.olja-modal__header {
  padding:16px 18px;
  border-bottom:1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12;
}

.olja-modal__title {
  margin:0;
  font-family: Geist;
  font-weight:700;
  font-size:28px;
}

.olja-modal p {
  font-size: 16px;
  font-weight: 300;
}

.olja-modal strong {
  font-weight: 600;
}

.olja-modal__close {
  position: static;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  line-height: 1;
  font-size: 22px;
  color: #111;
  flex: 0 0 auto;
}

.olja-modal__close:hover {
  border-color: rgba(0,0,0,.35);
}

.olja-modal__body {
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  padding:16px 18px 20px;
}

body.olja-modal-open {
  overflow:hidden;
}

/* ===== Utilities ===== */

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== General ===== */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  font-family: var(--wp--preset--font-family--Geist, Geist, Arial, sans-serif);
  background: var(--wp--preset--color--white, #fff);
  color: var(--wp--preset--color--black, #000);
  overflow-x: hidden;
}

:root {
  --sbw: 0px;
}

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

.site-logo {
  font-weight: 600;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.menu a {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Geist;
}

h1 {
  font-family: Geist;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

p {
  font-size: 12px;
  letter-spacing: -.5px;
}

:root {
  --header-pad: 12px;
  --hdr-h: 0px;
}

.header-menu {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(.75rem, 2vw, 1.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-menu a {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  padding: 20px 0px;
  font-size: 14px;
}

.header-menu a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 1px;
  width: 100%;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
  will-change: transform;
  pointer-events: none;
}

.header-menu a:hover::after,
.header-menu a:focus-visible::after{
  transform: scaleX(1);
}
.brand-logo {
  font-family: "Geist", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: clamp(25px, 2.2vw, 30px);
  color: inherit;
  text-decoration: none;
}

.lang-toggle {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 6px 0;
  font-size: 14px;
}

.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 4px;
  padding: 4px 0;
  min-width: 60px;
  z-index: 999;
}

.lang-dropdown li {
  margin: 0;
}

.lang-dropdown a {
  display: block;
  padding: 6px 12px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

.lang-dropdown a:hover {
  background: rgba(0,0,0,.05);
}

.brandmark {
  font-family: "Geist", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 15vw, 8rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.brandmark .dot {
  opacity: .9;
}

.hero-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.2rem, 1.8vw, .5rem);
}

.hero-menu li {
  margin: 0;
}

.hero-menu a {
  font-family: "Geist", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 2.4vw, 1rem);
  font-weight: 400;
  letter-spacing: -.4px;
  color: #fff;
  padding: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.hero-menu a:hover,
.hero-menu a:focus {
  opacity: .85;
  transform: translateY(-1px);
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding: 0 16px;
  align-items: center;
}

.newsletter-left h2 {
  text-align: center;
  color: #fff;
  font-family: Geist;
  font-size: 50px;
}

.newsletter-right {
  text-align: left;
}

.newsletter-right .newsletter-text {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.newsletter-form {
  display: flex;
  max-width: 400px;
}

.newsletter-form input {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter-form button {
  padding: 0.6rem 1rem;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}

.wc-breadcrumbs {
  font-size: 12px;
  letter-spacing: -.5px;
  margin: 80px 16px 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: #4a4a4a;
}

.wc-breadcrumbs span {
  opacity: .9;
}

.wc-breadcrumbs a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.wc-breadcrumbs a:hover {
  border-bottom-color: rgba(0,0,0,.35);
}

.image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #111;
  cursor: pointer;
  z-index: 3;
  transition: background .2s ease, border-color .2s ease, opacity .2s ease, transform .08s ease;
  opacity: .85;
}

.image-nav--prev {
  left: 8px;
}

.image-nav--next {
  right: 8px;
}

.image-nav:active {
  transform: translateY(-50%) scale(.98);
}

.olja-soldout-badge {
  background: #000;
  color: #fff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
}

.p-attr__name {
  font-family: Geist;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 4px;
  line-height: 1.2;
}

.p-attr__values {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  word-break: break-word;
}

.p-colors-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.selected-color {
  font-size: 12px;
  color: #666;
}

.p-colors-divider {
  height: 1px;
  background: rgba(0,0,0,.12);
  margin: 8px 0 12px;
}

.color-swatches .swatch .swatch-name {
  display: none;
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.swatch {
  display: inline-grid;
  grid-template-columns: 24px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.swatch input {
  display: none;
}

.swatch .dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.25);
  display: inline-block;
}

.swatch input:checked + .dot {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.swatch .swatch-name {
  font-size: 12px;
  letter-spacing: -.2px;
}

.color-swatches .swatch.is-disabled {
  opacity: .45;
  pointer-events: none;
  filter: grayscale(100%);
}

.color-swatches .swatch.is-disabled .dot {
  border-style: dashed;
}

.color-swatches .swatch {
  position: relative;
}

.color-swatches .swatch:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -8px);
  padding: 6px 8px;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  background: rgba(0,0,0,.85);
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 5;
}

.color-swatches .swatch:hover::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: rgba(0,0,0,.85);
  z-index: 5;
}

.dot[data-color="black"] {
  background: #000;
}

.dot[data-color="white"] {
  background: #fff;
}

.dot[data-color="cream"] {
  background: #f5efe7;
}

.dot[data-color="beige"] {
  background: #e7dfd1;
}

.dot[data-color="brown"] {
  background: #6a4a3c;
}

.dot[data-color="blush"] {
  background: #f1d4d4;
}

.olja-atc {
  margin-top: 16px;
}

.olja-atc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 50px 0 60px;
  padding: 20px 16px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  cursor: pointer;
  transition: transform .05s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
}

.olja-atc-btn:hover {
  background: #4a4a4a;
  border-color: #141414;
}

.olja-atc-btn:active {
  transform: translateY(1px);
}

.olja-atc-btn:disabled {
  opacity:.45;
  cursor: default;
}

.olja-atc-label {
  font-family: Geist;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.olja-atc-price {
  font-family: Geist;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.olja-atc-btn.is-disabled,
.olja-atc-btn[disabled] {
  background:#e6e6e6;
  color:#777;
  cursor:default;
  filter:none;
  justify-content:center;
}

.olja-atc-btn.is-disabled .olja-atc-price,
.olja-atc-btn[disabled] .olja-atc-price {
  display:none;
}

.olja-acc {
  margin-top: 0px;
  border-top: 1px solid rgba(0,0,0,.12);
}

.olja-acc__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.olja-acc__trigger span {
  font-family: Geist;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: 12px;
  text-transform: uppercase;
}

.olja-acc__chev {
  transition: transform .2s ease;
}

.olja-acc__trigger[aria-expanded="true"] .olja-acc__chev {
  transform: rotate(180deg);
}

.olja-acc__panel {
  overflow: hidden;
}

.olja-acc__content {
  padding: 8px 0 14px 0;
  font-size: 14px;
  color: #4a4a4a;
}

.olja-acc__content p {
  margin: 0 0 10px;
}

#oljaHeaderCart .count[data-cart-count="0"] {
  display: none;
}

#oljaHeaderCart .count:not([data-cart-count="0"]) {
  margin-left: 4px;
  font-weight: 600;
}

#oljaHeaderCart .count:not([data-cart-count="0"])::before {
  content: " (";
}

#oljaHeaderCart .count:not([data-cart-count="0"])::after {
  content: ")";
}

.woocommerce-mini-cart__empty-message {
  padding: 12px 0;
}

.woocommerce-mini-cart li {
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 12px 0;
}

.woocommerce-mini-cart__buttons .button {
  width: 100%;
  margin: 8px 0 0 0;
}

#oljaCartOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9998;
}

#oljaCartOverlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

#oljaCartDrawer.is-open {
  transform: translateX(0);
}

#oljaCartContent {
  flex:1 1 auto;
  display:flex;
  flex-direction:column;
  min-height:0;
}

.olja-btn-checkout {
  background: #4a4a4a !important;
  color: #fff !important;
}

.olja-btn-checkout:hover {
  filter: brightness(1.4);
}

.olja-btn-viewcart:hover {
  border: 1.5px solid #000 !important;
  color: #000 !important;
}

#oljaCartContent > .widget_shopping_cart_content {
  display:flex;
  flex-direction:column;
  min-height:0;
  flex:1 1 auto;
}

.olja-total-label {
  font-weight: 500;
}

#oljaCartContent .woocommerce-mini-cart__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
  justify-items: stretch;
}

#oljaCartContent .woocommerce-mini-cart__buttons .button {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid #111 !important;
  background: #fff !important;
  color: #111 !important;
  font-weight: 600;
  padding: 12px 14px !important;
  border-radius: 10px !important;
  line-height: 1;
  transition: filter .15s ease, background-color .15s ease;
}

#oljaCartContent .woocommerce-mini-cart__buttons .button:hover {
  filter: brightness(0.95);
}

#oljaCartContent .woocommerce-mini-cart__buttons .button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

#oljaCartContent .widget_shopping_cart_content .woocommerce-mini-cart {
  flex:1 1 auto;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  margin:0;
  padding:0;
}

#oljaCartContent .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
  position:sticky;
  bottom:0;
  background:#fff;
  padding:14px 16px;
  border-top:1px solid #e9e9e9;
  z-index:2;
}

#oljaCartContent .widget_shopping_cart_content .woocommerce-mini-cart__total {
  position:sticky;
  bottom:56px;
  background:#fff;
  padding:14px 16px;
  border-top:1px solid #e9e9e9;
  z-index:1;
}

#oljaCartDrawer .olja-ci-left {
  display:flex;
  gap:12px;
  flex:1 1 auto;
  min-width:0;
}

#oljaCartDrawer .olja-ci-thumb {
  flex:0 0 auto;
}

#oljaCartDrawer .olja-ci-thumb img {
  width:100px;
  height:100px;
  object-fit:cover;
  border-radius:5px;
  display:block;
}

#oljaCartDrawer .olja-ci-meta {
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}

#oljaCartDrawer .olja-ci-name {
  font-weight:600;
  text-decoration:none;
  color:#4a4a4a;
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

#oljaCartDrawer .olja-ci-attrs {
  color:#4a4a4a;
  font-size:14px;
}

#oljaCartDrawer .olja-ci-price {
  font-weight:600;
  color: #4a4a4a;
}

#oljaCartDrawer .olja-ci-right {
  margin-left:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
  flex:0 0 auto;
}

#oljaCartDrawer .olja-qty-controls {
  display:flex;
  align-items:center;
  gap:6px;
}

#oljaCartDrawer .olja-qty-btn {
  border:none;
  background: transparent;
  cursor:pointer;
}

#oljaCartDrawer .olja-qty-input {
  width:40px;
  height:28px;
  text-align:center;
  border:1px solid #ddd;
  border-radius:5px;
}

#oljaCartDrawer .olja-remove {
  height: auto;
  width: auto;
  display: block;
  font-size:12px;
  color:#4a4a4a !important;
  text-decoration:underline;
  font-weight: 400;
}

#oljaCartDrawer .olja-remove:hover {
  color:#4a4a4a !important;
  background: transparent;
  text-decoration:underline;
}

.about-page .wrapper {
  width: 100%;
  padding: 65px 16px 0 0;
}

.about-title {
  font-family: Geist;
  font-size: clamp(40px, 6vw, 72px);
  margin: 0 0 30px;
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
  gap: 48px;
}

.about-photo {
  width: min(66vw, 100%);
}

.about-photo img,
.about-photo__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f3f3f3;
}

.about-photo__placeholder {
  display: grid;
  place-items: center;
  color: #777;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  border: 1px dashed #ddd;
}

.about-text {
  align-self: end;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 600;
}

.about-text p {
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: -1px;
}

.about-text > *:first-child {
  margin-top: 0;
}

.about-text h2,
.about-text h3 {
  font-family: Geist;
  margin: 0 0 35px;
  font-size: 14px;
  letter-spacing: -.5px;
}

.about-text p + p {
  margin-top: 12px;
}

.about-slogan {
  width: 100%;
  text-align: center;
  margin: 100px 0;
}

.about-slogan .slogan-line1 {
  font-family: Geist;
  font-size: clamp(70px, 9vw, 128px);
  font-weight: 500;
}

.about-slogan .slogan-line2 {
  font-family: Geist;
  font-size: clamp(35px, 16px, 85px);
  font-weight: 500;
}

.site-main {
  overflow: hidden;
}

.contact-hero {
  height: calc(100dvh - var(--hdr-h));
  width: 100vw;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: 100%;
  width: 100%;
}

.contact-left {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 140px 0 30px 16px;
}

.contact-head h1 {
  margin: 0 0 60px 0;
  font-size: clamp(40px, 4vw, 60px);
  letter-spacing: -2px;
  font-weight: 700;
}

.contact-form .two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-wrap {
  padding-right: 150px;
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin: 30px 0 7px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  background: transparent;
  padding: 8px 4px;
  font: inherit;
  color: inherit;
  outline: none;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0,0,0,0.4);
  font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: rgba(0,0,0,0.8);
}

.btn-send {
  margin-top: 30px;
  border: 1px solid rgba(0,0,0,0.85);
  background: #111;
  color: #fff;
  padding: 12px 30px;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 600;
  width: fit-content;
}

.btn-send:hover {
  filter: brightness(0.95);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 1rem;
}

.contact-alert {
  font-size: 0.9rem;
  padding: 25px 0 0 15px;
}

.contact-alert.ok {
  color: #0a7a3f;
}

.contact-alert.err {
  color: #b00020;
}

.contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 2rem;
}

.detail-label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 0 0 30px;
  font-family: Geist;
}

.detail-value {
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 500;
}

.detail-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.detail-value a:hover {
  border-bottom-color: rgba(0,0,0,0.6);
}

.contact-right {
  background-image: var(--contact-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 400px;
}

.newsletter-form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  padding: 0 4px;
  border: none;
  border-bottom: .5px solid rgba(255,255,255,.5);
  background: transparent;
  color: #fff;
  outline: none;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,.5);
}

.newsletter-form button {
  height: 44px;
  padding: 0 16px;
  border: .5px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.newsletter-form button:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.hentry {
  padding: 50px 10vw;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
  margin: 30px 0 0 !important;
}

.woocommerce a.checkout-button {
  background-color: #4a4a4a !important;
  text-transform: uppercase;
  font-size: 16px !important;
  letter-spacing: -.5px;
  padding: 20px !important;
}

.woocommerce a.checkout-button:hover {
  background-color: #717171 !important;
}

.wp-block-woocommerce-cart .wc-block-components-product-name {
  display:block;
  line-height:1.2;
}

.wp-block-woocommerce-cart .wc-block-components-product-name::before {
  content:"olja.";
  display:block;
  margin-bottom:4px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.02em;
  opacity:.8;
}

.wc-block-components-product-low-stock-badge {
  display:none !important;
}

.wp-block-woocommerce-cart .wc-block-cart-item__product .wc-block-components-product-price {
  display:none !important;
}

.wp-block-woocommerce-cart .wc-block-components-product-low-stock-badge {
  display:none !important;
}

.wp-block-woocommerce-cart .wc-block-components-product-name {
  display:block;
  line-height:1.2;
}

.wp-block-woocommerce-cart .wc-block-components-product-name::before {
  content:"olja.";
  display:block;
  margin-bottom:4px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.02em;
  opacity:.8;
}

.olja-page-header {
  padding: 0 0 12px;
  margin: 0 auto;
}

.olja-page-title {
  font-size: clamp(28px, 3.2vw, 35px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: .01em;
  margin: 0;
}

.olja-remove {
  font-size: 12px;
  opacity: 90%;
}

.olja-update-hidden {
  position:absolute !important;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  white-space:nowrap;
  border:0;
  padding:0;
  margin:-1px;
}

.olja-qty {
  display: grid;
  grid-template-columns: 32px 66px 32px;
  grid-template-areas:
    "minus input plus"
    "remove remove remove";
  align-items: center;
  justify-content: center;
}

.olja-qty .olja-qty__btn--minus {
  grid-area: minus;
}

.olja-qty .olja-qty__btn--plus {
  grid-area: plus;
}

.olja-qty .olja-remove {
  grid-area: remove;
  justify-self: center;
  display: inline-block;
  margin-top: 2px;
  font-size: 12px;
  opacity: .85;
}

.olja-qty__btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background:transparent;
  font-size:18px;
  cursor:pointer;
  user-select:none;
}

.olja-qty__btn:hover {
  border-color: rgba(0,0,0,.3);
}

.order-total th {
  border: none !important;
  font-size: 24px;
  font-weight: 500 !important;
}

.order-total td {
  border: none !important;
  text-align: right;
  font-size: 24px;
  font-weight: 500 !important;
}

.cart img {
  width: 100% !important;
}

.olja-cc-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #111;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
  z-index: 1000000;
  padding: 14px;
}

.olja-cc-inner {
  display: grid;
  gap: 12px;
  align-items: center;
}

.olja-cc-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.olja-cc-link {
  color: #fff;
  text-decoration: underline;
}

.olja-cc-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.olja-cc-btn {
  appearance: none;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  white-space: nowrap;
}

.olja-cc-btn--primary {
  background:#fff;
  color:#111;
  border:1px solid #fff;
  font-weight:600;
}

.olja-cc-btn--ghost {
  background: transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
}

.olja-cc-btn--ghost:hover {
  border-color:#fff;
}

.olja-cc-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1000001;
  display: grid;
  place-items: center;
}

.olja-cc-modal__dialog {
  width: min(560px, 92vw);
  background:#fff;
  color:#111;
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(0,0,0,.3);
  overflow: hidden;
}

.olja-cc-modal__head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.olja-cc-modal__head h3 {
  margin:0;
  font-size: 18px;
}

.olja-cc-close {
  background: transparent;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.olja-cc-modal__body {
  padding: 12px 16px;
  display: grid;
  gap: 10px;
}

.olja-cc-row {
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 6px 10px;
  align-items:center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.olja-cc-label {
  font-weight: 600;
}

.olja-cc-help {
  font-size: 12px;
  color:#555;
  grid-column: 1 / -1;
}

.olja-cc-modal__foot {
  display:flex;
  justify-content:flex-end;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.olja-cc-banner[hidden],
.olja-cc-modal[hidden] {
  display: none !important;
}

body.page-template-page-limited-series {
  background: #000;
  color: #fff;
  min-height: 100vh;
}

.ls-logo {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  margin: 50px 100px;
}

.ls-logo .custom-logo {
  max-height: 28px;
  width: auto;
  display: block;
}

.ls-logo-text {
  font-family: Geist, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
}

.ls-logo-text .dot {
  opacity: .9;
}

.ls-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 100vh;
  width: 100%;
  background: #000;
}

.ls-left {
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 40px);
}

.ls-left-inner {
  width: min(800px, 80%);
  text-align: left;
  padding-left: 50px;
}

.ls-tag {
  font-family: Geist, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: 1.5px;
  opacity: .80;
  font-weight: 500;
  color: #b9b9b9;
}

.ls-title {
  margin: 0 0 26px;
  font-size: clamp(40px, 7vw, 90px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #fff;
}

.ls-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  justify-content: center;
  align-items: center;
  max-width: 560px;
}

.ls-form input[type="email"] {
  height: 48px;
  padding: 0 12px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  outline: none;
  font: inherit;
}

.ls-form input::placeholder {
  color: rgba(255,255,255,.55);
}

.ls-btn {
  height: 48px;
  padding: 0 16px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  cursor: pointer;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.ls-msg {
  margin: 8px 0 0;
  font-size: 14px;
  opacity: .9;
}

.ls-right {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-image: var(--ls-image);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
}

.arrow-svg {
  display:block;
  transition: transform .25s ease;
}

.olja-slide-simple__mask {
  display:inline-block;
  overflow:hidden;
  height: calc(1em * var(--h1-lh));
}

.olja-slide-simple__inner {
  position: relative;
  display: inline-block;
  top: calc(1em * var(--h1-lh));
  transition: none !important;
}

.olja-slide-simple .olja-slide-simple__inner {
  animation: olja-slide-simple 1000ms cubic-bezier(.55,.085,.68,.80) 40ms forwards;
}

.cat-chip{
  font-family: Geist;
  font-size: 16px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: none !important;
  border: 0 !important;
  color: #000;
  vertical-align: middle;
  height: var(--face-h, 1em);
}

.cat-chip .chip-wrap{
  display: block;
  will-change: transform;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}

.cat-chip .chip-face{
  display: block;
  font: inherit;
  line-height: inherit;
  white-space: nowrap;
  color: inherit;
}

.cat-chip:hover .chip-wrap{
  transform: translateY(calc(-1 * var(--face-h, 1em)));
}

/* Palette + timing */
.cat-chip{
  --idle: #aaa;
  --active: #111;
  --dur: 500ms;           /* animation speed */
  --ease-out: ease-out;
  --ease-in: ease-out;
  color: var(--idle);
  height: var(--face-h, 1em);
}

.cat-chip .chip-face{ color: inherit; }

.cat-chip .chip-wrap{
  transition: transform var(--dur) var(--ease-in);
  will-change: transform;
}

.cat-chip:not(.is-active):hover{
  color: var(--active);
}
.cat-chip:not(.is-active):hover .chip-wrap{
  transition-timing-function: var(--ease-out);
}

.cat-chip.is-active{
  color: var(--active);
}
.cat-chip.is-active .chip-wrap{
  transform: translateY(0) !important;
  transition: none;
}

.cat-chip.active,
.cat-chip[aria-current="true"],
.cat-chip[aria-selected="true"],
.cat-chip[aria-pressed="true"]{
  color: var(--active);
}
.cat-chip.active .chip-wrap,
.cat-chip[aria-current="true"] .chip-wrap,
.cat-chip[aria-selected="true"] .chip-wrap,
.cat-chip[aria-pressed="true"] .chip-wrap{
  transform: translateY(0) !important;
  transition: none;
}


.cat-chip.is-active {
  color: #000;
}

.olja-hidden {
  display: none !important;
}

.olja-loading {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  padding:8px 0;
}

.olja-skel {
  height:220px;
  border-radius:12px;
  background: linear-gradient(90deg, rgba(0,0,0,.06), rgba(0,0,0,.12), rgba(0,0,0,.06));
  background-size: 200% 100%;
  animation: olja-shimmer 1.2s infinite linear;
}

img, video {
  display: block;
}

/* ===== Responsive (@media) ===== */

@media (min-width: 992px) {
:root { --header-pad: 16px; }

.wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-item,
  .wp-block-woocommerce-cart .wc-block-cart-items .wc-block-cart-items__row{
    display: grid !important;
    grid-template-columns: 1fr 170px 140px;  
    column-gap: 24px;
    align-items: center;
  }

  
  .wp-block-woocommerce-cart .wc-block-cart-item__product{
    order: 1;
  }

  
  .wp-block-woocommerce-cart .wc-block-cart-item__quantity,
  .wp-block-woocommerce-cart .wc-block-components-quantity-selector{
    order: 2;
    justify-self: center;
  }

  
  .wp-block-woocommerce-cart .wc-block-cart-item__total,
  .wp-block-woocommerce-cart .wc-block-cart-item__line-total{
    order: 3;
    justify-self: end;
    text-align: right;
  }

  
  .wp-block-woocommerce-cart .wc-block-cart-item__remove{
    order: 3;
    justify-self: end;
    margin-top: 0;
  }

  
  .wp-block-woocommerce-cart .wc-block-cart-item__wrap{
    width: 100%;
  }
  .wp-block-woocommerce-cart td.olja-cart-item__qty .wc-block-components-quantity-selector{
    margin-left:-8px;      
  }
  .wp-block-woocommerce-cart td.olja-cart-item__qty .wc-block-cart-item__remove-link{
    margin-left:-8px;
  }

.wp-block-woocommerce-cart .wc-block-cart-items__header-image,
  .wp-block-woocommerce-cart td.wc-block-cart-item__image{ width:120px; }

  .wp-block-woocommerce-cart .wc-block-cart-items__header-product,
  .wp-block-woocommerce-cart td.wc-block-cart-item__product{ width:auto; }

  .wp-block-woocommerce-cart .olja-cart-header__qty,
  .wp-block-woocommerce-cart td.olja-cart-item__qty{ width:170px; text-align:left; }

  .wp-block-woocommerce-cart .wc-block-cart-items__header-total,
  .wp-block-woocommerce-cart td.wc-block-cart-item__total{ width:140px; text-align:right; }

  
  .wp-block-woocommerce-cart .wc-block-components-quantity-selector{
    display:inline-flex; align-items:center; gap:6px;
  }
  .wp-block-woocommerce-cart .wc-block-components-quantity-selector__input{
    max-width:64px; text-align:center;
  }

  
  .wp-block-woocommerce-cart .wc-block-cart-item__remove-link{
    display:inline-block; margin-top:6px; font-size:12px; opacity:.8;
  }

.wp-block-woocommerce-cart .wc-block-cart-items__header-image span,
  .wp-block-woocommerce-cart .wc-block-cart-items__header-product span{ text-align:left; display:block; }
  .wp-block-woocommerce-cart .olja-cart-header__qty span{ text-align:left; display:block; }
  .wp-block-woocommerce-cart .wc-block-cart-items__header-total span{ text-align:right; display:block; }

  
  .wp-block-woocommerce-cart table.wc-block-cart-items{
    table-layout: fixed;
    width: 100%;
  }
  .wp-block-woocommerce-cart .wc-block-cart-items__header-image,
  .wp-block-woocommerce-cart td.wc-block-cart-item__image{ width: 120px; }
  .wp-block-woocommerce-cart .wc-block-cart-items__header-total,
  .wp-block-woocommerce-cart td.wc-block-cart-item__total{ width: 140px; }

  
  .wp-block-woocommerce-cart td.wc-block-cart-item__image{ vertical-align: middle; }
  .wp-block-woocommerce-cart td.wc-block-cart-item__product{ vertical-align: middle; }
  .wp-block-woocommerce-cart td.wc-block-cart-item__total{ text-align: right; vertical-align: middle; }

  
  .wp-block-woocommerce-cart .wc-block-components-quantity-selector{
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .wp-block-woocommerce-cart .wc-block-components-quantity-selector__input{
    max-width: 64px;
    text-align: center;
  }

  
  .wp-block-woocommerce-cart .wc-block-cart-item__remove-link{
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    opacity: .8;
  }
}

@media (max-width: 992px) {
  .shop-intro-container,
  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
    .olja-slide-simple__mask{
    display: block;
  }
.ls-wrap { grid-template-columns: 1fr; grid-template-rows: 45vh auto; }
  .ls-right { min-height: 45vh; background-size: cover; background-position: center; }
  .ls-left { padding: 24px 16px 32px; }
  .ls-left-inner { width: 100%; }
  .ls-form { grid-template-columns: 1fr; }
.image-nav{ width: 34px; height: 34px; }
  .image-nav--prev{ left: 6px; }
  .image-nav--next{ right: 6px; }

.product-left .product-media{
    grid-template-columns: 1fr; 
    align-items: start;
  }
  .product-thumbs--vertical{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min-content;
    gap: 8px;
    overflow-x: auto;
    overflow-y: visible;
    max-height: none;
    order: 2;                     
    padding-right: 0;
    scroll-snap-type: x proximity;
  }
  .product-image-main{
    aspect-ratio: 1 / 1;         
  }
   .product-thumbs-wrap{
    grid-template-rows: 0 1fr 0;   
    width: auto;
  }
  .thumbs-nav{ display: none; }
  .product-thumbs--vertical{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min-content;
    overflow-x: auto;
    overflow-y: visible;
    gap: 8px;
    max-height: none;
  }
  .product-thumbs--vertical .thumb img{
    width: 72px; height: 86px;
  }

.product-layout{
    grid-template-columns: 1fr; 
  }
  .product-right{ order: 2; }
  .product-left { order: 1; }
  .product-image-main{ aspect-ratio: 1 / 1; }

.about-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 15px;
  }
  .about-text p {
    margin: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;   
    grid-template-rows: auto auto;
  }
  .contact-right {
    min-height: 40vh;             
  }

  .wp-block-woocommerce-cart .wc-block-components-quantity-selector{
    margin-top: 8px;
    justify-self: start; 
  }

.olja-cart-table thead{ display:none; }
  .olja-cart-table tr{ display:block; }
  .olja-cart-table td{ display:block; width:100%; text-align:left !important; }
  .olja-cart-table .product-quantity{ margin-top:8px; }

.wp-block-woocommerce-cart td.olja-cart-item__qty{
    text-align: left;
    padding-top: 8px;
  }
    .contact-right {
    order: -1;                
    width: 100%;
    height: 50vh;             
    min-height: 50vh;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
  }
    .contact-left {
    order: 0;
    padding: 20px 16px 24px;
  }
.contact-hero{
  height: min-content;
}

}

@media (max-width: 768px) {
  .newsletter-left h2 {
    text-align: center;
    margin-bottom: 1rem;
  }
  .shop-products-grid {
    grid-template-columns: 1fr 1fr;
  }
.olja-cc-inner{ grid-template-columns: 1fr auto; gap: 18px; }



}

@media (max-width: 576px) {
.shop-products-grid {
    grid-template-columns: 1fr;
  }
  .shop-intro{
    padding: 30px 16px 0;
  }
  .shop-intro-right{
    padding-right: 20vw;
  }
  .shop-intro-container{
    gap: 0;
  }

.about-page .wrapper{
padding: 40px 0 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-photo {
    width: 100%;          
  }
  .about-title {
    margin-bottom: 16px;
  }
  .about-text{
    padding: 0 16px;
  }

  .about-text p{
    font-weight: 400;
  }

.about-slogan { margin: 40px 0; }

.mobile-nav{
    position: fixed;
    right: 0;
    top: var(--hdr-h);                               
    width: 100%;
    height: calc(100dvh - var(--hdr-h));
    background: #fff;
    color: inherit;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform .25s ease, visibility .25s step-end;
    display: flex; flex-direction: column;
    border-left: 1px solid rgba(0,0,0,.08);
    visibility: hidden;
  }
  .mobile-nav.open{
    transform: translateX(0);
    visibility: visible;
    transition: transform .25s ease, visibility 0s;
  }
  .mobile-nav__menu{ padding: 30px 8px 20px; overflow-y: auto; }
  .mobile-menu{ list-style: none; margin: 0; padding: 0; display: grid; row-gap: 2px; }
  .mobile-menu a{ 
    display: block; 
    padding: 5px 10px; 
    text-decoration: none; 
    color: inherit;
    font-size: 24px;
    font-weight: 500; 
  }
  .mobile-nav__extras {
    padding: 30px 8px 0;
  }
  .mobile-extra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    align-items: start;
    padding-left: 15px;
  }
  .mobile-extra-grid .footer-hint {
    margin: 0 0 10px 10px;  /* matches your footer rhythm */
    opacity: .6;           /* same feel as footer hint */
  }
  .menu-hint{
    font-size: 11px;
    font-weight: 500;
    letter-spacing: -.8px;
    text-transform: uppercase;
    opacity: .9;
  }
  .mobile-extra-grid .footer-links li a {
    font-size: 14px;       /* same footer size */
    font-weight: 500;      /* same footer weight */
    padding: 6px 10px;     /* align with main mobile links padding */
    display: block;
  }
  .mobile-extra-grid .footer-links li a:hover {
    background: rgba(0,0,0,.04);
  }
  .mobile-menu a:hover{ background: rgba(0,0,0,.04); }
  .header-menu, .hdr-lang-wrapper, .hdr-account{ display: none !important; }
  .olja-header__grid{ grid-template-columns: auto 1fr; }
  .olja-header__center{ grid-column: 1; justify-self: start; }
  .olja-header__right{ grid-column: 2; justify-self: end; }

  .brand-logo{
    padding-left: 10px;
  }
    .contact-hero {
    width: 100vw;
    height: min-content;
    overflow: hidden;
  }
.contact-grid {
    display: flex;            
    flex-direction: column;   
  }
  .contact-head h1 {
    margin: 35px 0 16px;
  }
  
  .contact-form .two-cols {
    grid-template-columns: 1fr; 
    gap: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px 4px;
  }

  .contact-form-wrap{
    padding: 0;
  }

  
  .form-actions {
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 16px;
  }

  .contact-alert {
    font-size: 0.88rem;
  }
  .shop-products{
    padding: 0 0 90px;
  }
  .product-name{
    padding-left: 10px;
  }
#productThumbs { 
    display: none !important;
  }
  #productImageMain {
    margin: 0;          
    width: 100% !important;
  }
.wc-breadcrumbs{
  margin: 50px 3px 0;
  font-size: 10px;
  font-weight: 500;
}
.product-left .product-media{
  gap: 10px;
}
.product-right{
  padding: 0 16px 20px;
}
.product-price-wrap .price{
  padding: 0;
}
.product-price{
  padding-right: 10px;
}
.olja-cart-drawer__header{
  padding: 35px 16px;
}
#oljaCartDrawer,
  .olja-cart-drawer {
    
    transform: translateX(calc(100% + 40px));
    box-shadow: none;                 
    backface-visibility: hidden;      
    will-change: transform;
  }
  .olja-cart-drawer__body{
    padding: 0 16px 20px 16px !important;
  }
  .olja-cart-item{
    padding: 14px 0 !important;
  }
  .olja-ci-thumb img {
    width: 80px;
    height: 80px;
  }
  .olja-ci-right{
    align-items: center;
  }
  .olja-qty-controls{
    gap: 0;
  }
  .olja-qty-input{
    width: 30px;
  }
  .olja-cart-footer{
    padding: 0;
  }
  .olja-cart-footer .olja-btn{
    padding: 12px 10px !important;
  }

  #oljaCartDrawer.is-open,
  .olja-cart-drawer.is-open {
    transform: translateX(0);
    box-shadow: -24px 0 40px rgba(0,0,0,.22);
  }
  
  .product-media,
  .product-gallery,
  .olja-product-gallery {
    grid-template-columns: 1fr !important;
  }
  .product-layout{
    gap: 30px;
    padding: 0;
  }
  .olja-cart-layout{
    overflow: hidden;
  }
  .link-group .footer-hint{margin: 0 0 20px 0;}
  .olja-cart-page{padding: 60px 16px;}
  .olja-page-title{text-align: center;}
  .olja-page-header + .container{padding-top: 0;}
  .olja-cart-table td{display: block !important;}
  .olja-page-header{margin-bottom: 30px;
}
.olja-qty__btn{
  width: 28px;
  height: 28px;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 28px;
}
  
  .olja-cart-table .product-thumbnail{width: 115px !important;}
  .olja-cart-table .product-thumbnail > img{
    overflow: hidden;
  }
  .olja-cart-table td.product-thumbnail img{
      height:100%; 
      object-fit:cover;
      transform: scale(1.2); 
      transform-origin:center;
  }

    .olja-cart-table thead{ display:none; }

  
  .olja-cart-table tr.woocommerce-cart-form__cart-item{
    display: grid !important;
    grid-template-columns: 105px 1fr;
    grid-template-areas:
      "thumb name"
      "thumb total"
      ". qty";
    align-items: start;
    padding-bottom: 20px;
  }
  .woocommerce-cart-form__cart-item{
    border-top:1px solid rgba(0,0,0,.08);
  }
  
  .olja-cart-table td.product-thumbnail{ 
    grid-area: thumb; 
    padding: 0;
    background-color: transparent !important;
    border-top: none !important;
  }
  .olja-cart-table td.product-quantity{ 
    grid-area: qty; 
    border-top: none !important;
    background-color: transparent !important;
    padding-top: 0 !important;
  }
  .olja-cart-table td.product-subtotal{ 
    grid-area: total; 
    border-top: none !important;
    padding: 0 12px !important;
    background-color: transparent !important;
    
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
  }
  .olja-cart-table td.product-name{
    text-align: left !important;
    justify-self: start;
    grid-area: name; 
    padding: 0;
    border-top: none !important;
    background-color: transparent !important;
  }
  .olja-cart-table td.product-subtotal > *,
  .olja-cart-table td.product-name > *{
    text-align: left !important;
    margin-left: 0 !important;
    justify-content: flex-start !important;
  }
  .olja-cart-table td[data-title]::before{
    content: none !important;
    display: none !important;
  }

  
  .olja-cart-table td.product-thumbnail a,
  .olja-cart-table td.product-thumbnail img{
    display:block; width:100%;
  }
  .olja-cart-table td.product-thumbnail a{
    overflow:hidden;
    aspect-ratio: 1 / 1;
  }
  
  .olja-cart-table td.product-name .olja-brand--top{ margin-bottom:4px; }
  .olja-cart-table td.product-name .olja-product-name{ margin:0 0 6px; display:block; }
  .olja-cart-table td.product-name .olja-attr{ margin-top:4px; }

  
  .olja-cart-table td.product-quantity .olja-qty{
    width:100%;
    grid-template-columns: 28px 1fr 28px;
  }
  .olja-cart-table .product-quantity .qty{
    max-width: 40px;
    padding: 4px 0;
    border: none;
  }
  .olja-qty .olja-remove{
    display: none;
  }
  .product-quantity{
    width: 90px !important;
    margin-left: 12px;
  }
  .quantity{
    justify-self: anchor-center;
  }
  .order-total td{
    background-color: transparent !important;
  }
  .woocommerce-cart .cart_totals .shop_table.shop_table_responsive tr.cart-subtotal td[data-title]::before{
    font-weight: 400 !important;   
  }
  .woocommerce-cart .cart_totals .shop_table.shop_table_responsive tr.order-total td[data-title]::before{
    font-weight: 500 !important;   
  }
  .woocommerce-cart .cart_totals .shop_table tr.olja-taxes-note-row td::before{
    content: none !important;
    display: none !important;
    float: none !important;
  }

  .footer-row--bottom{
    flex-direction: column-reverse;
  }
  .footer-social{
    justify-self: end;  
  }

  .olja-cc-btn--ghost{
    font-size: 12px;
  }

  .olja-cc-btn--primary{
    font-size: 12px;
  }
  .ls-logo{
    margin: 10px 16px;
  }
  .ls-left{
    padding: 0 16px;
    margin-top: 200px;
    position: absolute;
    z-index: 1;
    width: 100%;
  }
  .ls-left-inner{
    padding: 0;
  }
  .ls-right{
    height: 100vh;
  }

body.nav-open{ overflow: hidden !important; }

.cart-collaterals .olja-express-checkout{ gap: 8px; margin-bottom: 10px; }

.olja-modal__dialog{width:94vw;aspect-ratio:1/2;max-height:92vh;border-radius:10px}

.journal-collage-first{ grid-template-columns: 1fr; }
  .journal-collage-rest { grid-template-columns: 1fr; }
  .journal-card__title{ font-size:15px; }
  .journal-card.is-tall   .journal-card__media,
  .journal-card.is-regular .journal-card__media{
    height: 275px;
  }
  .cat-chip{ padding: 0; font-size: 14px; }


}

@media (max-width: 640px) {
.header-menu{ display: none; }

.site-header .container{ height: 56px; }
  .menu{ gap: .75rem; }

}

@media (max-width: 380px) {
#oljaCartDrawer .olja-cart-item{ align-items:flex-start; }
  #oljaCartDrawer .olja-ci-name{ white-space:normal; }
}

@media (max-width: 1024px) {
.olja-cart-layout{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .olja-cart-layout .cart-collaterals{
    position: static; 
  }
}

@media (max-width:820px) {
.journal-collage-first{ grid-template-columns: repeat(2, 1fr); }
  .journal-collage-rest { grid-template-columns: repeat(2, 1fr); }
}


@media (prefers-reduced-motion: reduce) {

.product-item .img--primary,
  .product-item .img--secondary,
  .product-item .shade{ transition: none !important; }
}

@media (max-width: 700px) {
.olja-loading{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 460px) {
.olja-loading{ grid-template-columns:1fr; }
}

@media (hover: hover) {
.product-item a:hover .img--primary{ opacity: 0; }
  .product-item a:hover .img--secondary{ opacity: 1; }
  .product-item a:hover .shade{ background: rgba(0,0,0,.16); }
}

@media (hover:hover) {
.product-item .media:hover .media-btn{ opacity:1; }
}

@media (hover:none) {
.product-item .media-btn{ opacity:1; }
}

@media (min-width: 577px) {
.olja-header__grid{
    grid-template-columns: var(--header-pad,16px) 1fr auto 1fr var(--header-pad,16px);
  }
  .olja-header__left   { grid-column: 2; justify-self: start; }
  .olja-header__center { grid-column: 3; justify-self: center; }  
  .olja-header__right  { grid-column: 4; justify-self: end; display: flex; align-items: center; gap: clamp(.75rem, 2vw, 1.25rem); }
  
  
  .header-menu{ display: flex !important; }
  .hdr-burger{ display: none !important; }
  .mobile-nav{ display: none !important; transform: translateX(100%) !important; visibility: hidden !important; }
  .mobile-backdrop{ display: none !important; }

  
  .hdr-lang-wrapper, .hdr-lang .hdr-account{ 
    display: inline-flex !important;
    align-items: center;
    gap: 8px; }
}

@media (prefers-reduced-motion: no-preference) {
.hdr-burger::before, .hdr-burger::after{ transition: transform .2s ease, opacity .2s ease; }
  body.nav-open .hdr-burger::before{ transform: translateY(6px) rotate(45deg); }
  body.nav-open .hdr-burger::after { transform: translateY(-6px) rotate(-45deg); }
}

@media (max-width: 1100px) {
.footer-brandline{ font-size: 140px; }
}

@media (max-width: 780px) {
.footer-row--top{
    grid-template-columns: 1fr;       
  }
  .footer-col--links{
    grid-auto-flow: row;              
    grid-auto-rows: auto;
    column-gap: 0;
    row-gap: 28px;
    justify-content: start;
  }
  .footer-brandline{ font-size: 100px; }
}

@media (max-width: 480px) {
.footer-brandline{ font-size: 64px; }
}
