/* ============================
   Lorando & Morini – Main Styles
   Koffie als ritueel, niet als product.
   ============================ */

:root {
  --coffee-brown: #512810;   /* Donkerbruin – hoofdtekst, titels */
  --coffee-cream: #FEFCF8;   /* Zacht wit – basisachtergrond */
  --accent-gold: #BD9E67;    /* Licht goud – accenten, CTA */
  --deep-grey: #464340;      /* Donkergrijs – subtiele tekstaccenten */
}

/* Base Typography & Body */
body {
  font-family: 'Jost', sans-serif;
  margin: 0;
  background: var(--coffee-cream);
  color: var(--coffee-brown);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* Optionele heading-stijl volgens brandbook */
h1, h2, h3, .shop-title, .product-title, .cart-title, .related.products h2 {
  font-family: 'Domine', sans-serif;
  letter-spacing: 0.01em;
}

/* ============================
   Header & Navigation
   ============================ */

.site-header {
  background: var(--coffee-cream);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}


.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area img {
  max-height: 60px;
}

.shop-section {
  max-width: 1400px;
  margin: auto;
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--coffee-brown);
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-menu a:hover {
  opacity: 0.6;
}

/* Cart button – warm en rustig */
.cart-button {
  text-decoration: none;
  background: var(--accent-gold);
  color: var(--coffee-cream);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.cart-button:hover {
  background: var(--coffee-brown);
  opacity: 0.95;
}

.cart-count {
  font-weight: bold;
}

.site-main {
  max-width: 1400px;
  margin: auto;
}

.bean-list li {
    margin: 0.4rem 0;
    list-style: none;
    position: relative;
    padding-left: 1.2rem;
}

.bean-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.6em;
  height: 0.4em;
  background: var(--coffee-brown);
  border-radius: 60% / 50%;
  transform: rotate(-20deg) translateY(-50%);
}

/* ----------------------------------------------- */
/* BUTTONS — Lorando & Morini                      */
/* ----------------------------------------------- */

.btn {
  display: inline-block;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: 'Jost', sans-serif;
}

/* Primary button (dark espresso) */
.btn-primary {
  background: var(--coffee-brown) !important;
  color: white !important;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.btn-primary:hover {
  background: var(--accent-gold);
}

/* Outline button (espresso outline) */
.btn-outline {
  background: transparent;
  border: 2px solid var(--coffee-brown);
  color: var(--coffee-brown);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: white;
}

/* Ghost button (dark text only) */
.btn-ghost-dark {
  background: transparent;
  color: var(--coffee-brown);
}

.btn-ghost-dark:hover {
  color: var(--accent-gold);
}

/* Ghost button for dark backgrounds */
.btn-ghost-light {
  background: transparent;
  color: var(--coffee-cream);
}

.btn-ghost-light:hover {
  color: var(--accent-gold);
}

/* Small */
.btn-sm {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

/* Large (perfect for CTA banners) */
.btn-lg {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}


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

.site-footer {
  background: var(--coffee-brown);
  color: var(--coffee-cream);
  padding: 2.5rem 1rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-nav a {
  color: var(--coffee-cream);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.65;
}

.footer-info {
  font-size: 0.9rem;
  opacity: 0.9;
}

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

.shop-hero {
  background: var(--coffee-cream);
  padding: 1rem 1rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.shop-title {
  color: var(--coffee-brown);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.shop-description {
  color: var(--deep-grey);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.shop-products {
  background: #ffffff;
  padding: 3rem 1rem;
}

/* WooCommerce product grid */

.woocommerce ul.products li.product {
  border-radius: 10px;
  overflow: hidden;
  background: var(--coffee-cream);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--coffee-brown);
  font-size: 1.1rem;
  text-align: left;
  padding: 10px;

  /* force exactly 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

  line-height: 1.4em;   /* adjust if needed */
  min-height: calc(1.4em * 2); /* ensures 3 lines space even if text is short */
}


.woocommerce ul.products li.product .price {
  color: var(--coffee-brown);
  text-align: left;
  font-weight: 600;
  padding: 10px;
  font-size: 20px;
}
.woocommerce ul.products li.product .price::after {
  content: " incl. btw";
  font-size: 0.65em;          /* kleiner dan prijs */
  font-weight: 400;
  color: #777;                /* subtieler dan prijs */
  margin-left: 6px;
  white-space: nowrap;
}
.lm-hero-price .price {
  color: var(--coffee-brown);
  font-size: 22px;
  font-weight: 600;
  margin: 10px 0 16px;
}

.lm-hero-price .price::after {
  content: " incl. btw";
  font-size: 0.65em;
  font-weight: 400;
  color: #777;
  margin-left: 6px;
}

.woocommerce ul.products li.product img {
  width: 100%;
  height: auto;
}
.wp-block-woocommerce-cart{
  max-width: 1400px !important;
  margin: auto;
}
/* ============================
   Single Product – Base
   ============================ */

.lorando-product {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.product-gallery img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.product-summary {
  color: var(--coffee-brown);
}

.product-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.product-description {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.woocommerce div.product form.cart .quantity input {
  border: 1px solid rgba(0,0,0,0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

.woocommerce div.product form.cart button.single_add_to_cart_button {
  background: var(--coffee-brown);
  color: var(--coffee-cream);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
  background: var(--accent-gold);
}

/* Upsells / related */

.related.products {
  margin-top: 4rem;
}

.related.products h2 {
  text-align: center;
  color: var(--coffee-brown);
  margin-bottom: 2rem;
}

/* ============================
   Single Product – Enhanced
   ============================ */

.lorando-product {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.product-gallery img {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.product-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--coffee-brown);
}

.product-title {
  font-family: 'Domine', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--coffee-brown);
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-price {
  font-size: 1.5rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.product-short-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: #7b5e3a;
}

.product-cart {
  margin-top: 1rem;
}

.product-cart form.cart {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.product-cart .quantity input {
  width: 70px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 8px;
  text-align: center;
  padding: 0.4rem;
}

.product-cart button.single_add_to_cart_button {
  background: var(--coffee-brown);
  color: var(--coffee-cream);
  border: none;
  border-radius: 30px;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  transition: background 0.3s ease;
  cursor: pointer;
}

.product-cart button.single_add_to_cart_button:hover {
  background: var(--accent-gold);
}

.product-extra-info {
  margin-top: 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5a4325;
}

/* Related products area */

.related-products {
  background: var(--coffee-cream);
  padding: 4rem 1rem;
  margin-top: 4rem;
  text-align: center;
}

.related.products h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--coffee-brown);
}

.back-to-shop {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--accent-gold);
  font-weight: 500;
}

.roast-note {
  font-style: italic;
  color: #856b48;
  margin-top: 1rem;
}

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

.lorando-cart {
  background: var(--coffee-cream);
  padding: 4rem 1rem;
}

.lorando-cart .container {
  max-width: 1100px;
  margin: 0 auto;
}

.cart-title {
  text-align: center;
  color: var(--coffee-brown);
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.woocommerce table.shop_table th {
  background: #faf7f2;
  color: var(--coffee-brown);
  font-weight: 600;
  font-size: 0.9rem;
}

.woocommerce table.shop_table td.product-name a {
  color: var(--coffee-brown);
  text-decoration: none;
  font-weight: 500;
}

.woocommerce table.shop_table td.product-name a:hover {
  color: var(--accent-gold);
}

.woocommerce table.shop_table td.product-thumbnail img {
  max-width: 70px;
  border-radius: 8px;
}

.woocommerce table.shop_table .remove {
  color: #c84a2f;
  font-size: 1.3rem;
  text-decoration: none;
}

.woocommerce table.shop_table .remove:hover {
  color: var(--accent-gold);
}

.update-cart {
  background: var(--coffee-brown);
  color: var(--coffee-cream);
  border: none;
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.update-cart:hover {
  background: var(--accent-gold);
}

/* Totals section */

.cart-totals {
  margin-top: 3rem;
  text-align: right;
}

.cart-totals .cart_totals h2 {
  color: var(--coffee-brown);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.cart_totals table {
  width: 100%;
  border-collapse: collapse;
}

.cart_totals th,
.cart_totals td {
  padding: 0.7rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cart_totals .checkout-button {
  background: var(--accent-gold);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.5rem;
  transition: background 0.3s ease;
}

.cart_totals .checkout-button:hover {
  background: var(--coffee-brown);
}



/* Top Bar */
.lm-topbar {
  background: var(--coffee-brown);
  font-size: 14px;
  padding: 6px 0;
}
.lm-topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.lm-topbar a {
  text-decoration: underline;
  color: white;
}

.lm-logo-area img{
  width: 90px;
  height: auto;
}


/* Header main */
.lm-header {
  background: #FEFCF8;
  border-bottom: 1px solid #eee;
  position: relative; /* ← HIER OM HEM TE “ANCHOREN” */
  z-index: 999;
}
.lm-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Navigation */
.lm-main-navigation .lm-nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}
.lm-main-navigation a {
  text-decoration: none;
  font-family: 'Jost', serif;
  color: #464340;
  font-size: 16px;
  position: relative;
}

/* Hover underline – rustig */
.lm-main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #464340;
  transition: width .2s ease;
}
.lm-main-navigation a:hover::after {
  width: 100%;
}

/* Dropdown menu (onder de header) */
.lm-dropdown-menu {
  position: absolute;
  top: 125px; /* direct onder de header */
  left: 0;
  width: 100%;
  background: #FEFCF8;
  border-top: 1px solid #eee;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 999;
}

/* Active state */
.lm-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lm-dropdown-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.lm-dropdown-col h4 {
  font-family: 'Domine', sans-serif;
  font-size: 20px;
  margin-bottom: 12px;
  color: #464340;
}

.lm-dropdown-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.lm-dropdown-col a {
  text-decoration: none;
  color: #464340;
  font-size: 16px;
  display: block;
  padding: 4px 0;
  transition: opacity .2s ease;
  font-family: 'Jost', sans-serif;
}

.lm-dropdown-col a:hover {
  opacity: .6;
}
.lm-main-navigation .sub-menu {
  display: none !important;
}



/* Search overlay */
.lm-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lm-search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lm-search-box {
  background: #FEFCF8;
  padding: 30px;
  border-radius: 6px;
  width: 90%;
  max-width: 600px;
}

.lm-usp-bar {
  background: #FEFCF8;
  border-top: 1px solid #eee;
}

.lm-usp-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.lm-usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  color: #464340;
}

.lm-usp-item i {
  font-size: 18px;
  color: var(--coffee-brown);
}
.lm-cart-button{
  text-decoration: none !important;
  color: var(--coffee-brown) !important;
}
.lm-cart-button i {
  font-size: 18px;
  color: #464340;
  margin-right: 6px;
}
.lm-cart-button .cart-count {
  font-weight: 600; 
}

.lm-cart-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid rgba(70, 67, 64, 0.15);
  transition: all .25s ease;
}

.lm-cart-button:hover {
  background: rgba(70, 67, 64, 0.06);
  border-color: rgba(70, 67, 64, 0.3);
}

.lm-cart-button i {
  font-size: 26px;
  color: var(--coffee-brown);
}

.lm-cart-button .cart-count {
  background: var(--coffee-brown);
  color: #FEFCF8;
  padding: 1px 7px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.lm-usp-bar {
  background: #FEFCF8;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.lm-usp-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  padding: 10px 20px;
}

.lm-usp-item {
  gap: 8px;
  font-size: 15px;
  opacity: .9;
  transition: opacity .25s ease;
}

.lm-usp-item:hover {
  opacity: .6;
}

.lm-usp-item i {
  font-size: 16px;
  color: var(--coffee-brown);
  margin-top: 1px;
}

/* ============================
   Lorando & Morini – Footer
   ============================ */

.lm-footer {
  background: var(--coffee-brown);
  color: var(--coffee-cream);
  padding: 60px 0 20px;
}

.lm-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.lm-footer-intro h4 {
  font-family: 'Domine', sans-serif;
  font-size: 22px;
  margin: 0 0 8px;
  opacity: .95;
}

.lm-footer-intro p {
  margin: 0;
  opacity: .7;
  font-size: 15px;
}

/* Grid */
.lm-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

/* Column headers */
.lm-footer-col h5 {
  margin-bottom: 12px;
  font-family: 'Domine', sans-serif;
  font-size: 18px;
  opacity: .9;
}

.lm-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lm-footer-col ul li {
  margin-bottom: 8px;
}

.lm-footer-col a {
  color: var(--coffee-cream);
  text-decoration: none;
  opacity: .75;
  transition: opacity .25s ease;
}

.lm-footer-col a:hover {
  opacity: .45;
}

/* Newsletter */
.lm-footer-newsletter {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.lm-footer-newsletter input {
  flex: 1;
  padding: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: white;
}

.lm-footer-newsletter button {
  padding: 10px 18px;
  background: var(--accent-gold);
  border: none;
  border-radius: 6px;
  color: var(--coffee-cream);
  cursor: pointer;
  font-weight: 600;
  transition: background .25s ease;
}

.lm-footer-newsletter button:hover {
  background: var(--coffee-brown);
}

/* Bottom */
.lm-footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  opacity: .8;
}

.lm-footer-bottom p {
  margin: 0;
  font-size: 14px;
  letter-spacing: .3px;
}
/* ================================
   Lorando & Morini — Single Product
================================ */
/* =======================
   Product Hero (bovenste blok)
======================= */

.lm-product-hero {
  background: #f3e9e2; /* zacht beige uit jouw screenshot */
}

.lm-product-hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE */
.lm-hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* RIGHT SIDE SUMMARY */
.lm-hero-summary {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  margin-top: 25px;
  margin-bottom: 25px;
}

/* Title */
.lm-hero-title {
  font-family: 'Domine', sans-serif;
  font-size: 36px;
  margin-bottom: 8px;
}
.lm-hero-title.mobile{
  display: none;
}

/* Rating */
.lm-hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.lm-rating-count {
  font-size: 14px;
  color: #6a5845;
}

/* Price */
.lm-hero-price {
  font-size: 28px;
  color: var(--coffee-brown);
  font-weight: 600;
  margin-bottom: 20px;
}

/* Short description */
.lm-hero-short {
  color: #6a5845;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Add to cart area */
.lm-hero-add-to-cart {
  margin-top: 20px;
}

.lm-gallery-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lm-gallery-main img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.lm-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.lm-gallery-thumbs img {
  width: 75px;
  height: auto;
  border-radius: 8px;
  opacity: .85;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}
.lm-thumb{
  width: 75px;
  height: 75px;
}

.lm-gallery-thumbs img:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.lm-gallery-thumbs img {
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s ease, transform .2s ease;
}

.lm-gallery-thumbs img.active-thumb {
  opacity: 1;
  transform: scale(1.05);
  border: 2px solid var(--coffee-brown);
  border-radius: 6px;
}
.lm-attribute-switcher {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
}

.lm-attribute-switcher h4 {
  font-family: 'Domine', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}

.lm-attribute-btn {
  display: inline-block;
  padding: 0 14px; /* padding top/bottom weg omdat height fixed is */
  border-radius: 10px;
  margin-right: 8px;
  border: 1px solid rgba(81,40,16,.25);
  color: var(--coffee-brown);
  text-decoration: none;
  transition: all .25s ease;
  font-size: 14px;
  width: 40%;
  margin-top: 15px;
  text-align: center;
  height: 40px;
  line-height: 40px; /* ⬅️ verticale alignment */
}
.lm-gallery{
  width: 800px;
  margin-top: 20px;
}

.lm-attribute-btn:hover {
  background: rgba(81,40,16,.08);
}

.lm-attribute-btn.active {
  background: var(--coffee-brown);
  color: var(--coffee-cream);
  border-color: var(--coffee-brown);
}
.lm-hero-summary h4 {
  margin: 0 !important;
  padding-top: 20px !important;
}

/* Wrapper box */
.lm-hero-add-to-cart {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  max-width: 360px;
  border: 1px solid #f1f1f1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Price styling */
.lm-hero-add-to-cart .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--coffee-brown);
  margin: 0;
}

/* Cart form layout */
.lm-hero-add-to-cart form.cart {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Quantity box */
.lm-hero-add-to-cart .quantity {
  margin: 0;
}

.lm-hero-add-to-cart .quantity .input-text {
  height: 46px;
  width: 70px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  text-align: center;
  font-size: 16px;
  transition: all .2s ease;
}

.lm-hero-add-to-cart .quantity .input-text:focus {
  border-color: var(--coffee-brown);
  box-shadow: 0 0 0 2px rgba(100, 60, 30, 0.2);
  outline: none;
}

/* Add-to-cart button */
.lm-hero-add-to-cart .single_add_to_cart_button {
  height: 46px;
  padding: 0 22px;
  background: var(--coffee-brown) !important;
  color: #fff;
  border-radius: 12px !important;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, transform .1s ease;
}

.lm-hero-add-to-cart .single_add_to_cart_button:hover {
  background: #4d2a1d;
}

.lm-hero-add-to-cart .single_add_to_cart_button:active {
  transform: scale(0.97);
}

/* Category metadata */
.lm-hero-add-to-cart .product_meta {
  font-size: 13px;
  color: #777;
}

.lm-hero-add-to-cart .product_meta a {
  color: var(--coffee-brown);
}

.lm-hero-add-to-cart .product_meta a:hover {
  text-decoration: underline;
}
.onsale{
  display: none;
}

.lm-abonnement-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: .75rem;
  padding: .7rem 1.25rem;

  font-family: inherit;
  font-size: .9rem;
  font-weight: 500;

  color: #6b4f3f;                 /* warme koffiebruin */
  background: #f7f3ef;            /* licht crème */
  border: 1px solid #e4d8cf;
  border-radius: 999px;           /* soft pill */

  text-decoration: none;
  transition: all .2s ease;
}

.lm-abonnement-btn:hover {
  background: #6b4f3f;
  color: #ffffff;
  border-color: #6b4f3f;
}
.lm-abonnement-btn::before {
  content: "☕";
  margin-right: .5rem;
  font-size: .9rem;
  opacity: .7;
}


.lm-abonnement-hint {
  display: block;
  margin-top: .3rem;

  font-size: .75rem;
  color: #8b7a6b;
}


.lm-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
}

.lm-hamburger span {
  width: 24px;
  height: 2px;
  background: #000;
}
.lm-mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  padding: 100px 24px 24px;
  display: none;
  overflow-y: auto;
  margin-right: 2px;
}

.lm-mobile-menu.active {
  display: block;
}
@media (max-width: 1024px) {
  .lm-main-navigation {
    display: none;
  }

  .lm-hamburger {
    display: flex;
  }
}
.lm-mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lm-mobile-item {
  border-bottom: 1px solid #eee;
}

.lm-mobile-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.lm-submenu {
  display: none;
  padding-left: 16px;
}

.lm-mobile-item.open .lm-submenu {
  display: block;
}

.lm-toggle {
  font-size: 20px;
  cursor: pointer;
}
.lm-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  background: none;
  border: 0;
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}
.lm-submenu {
  display: none;
  padding-left: 16px;
}

.lm-mobile-item.open > .lm-submenu {
  display: block;
}

.lm-submenu .lm-submenu {
  padding-left: 24px;
}
.lm-mobile-list a{
    text-decoration: none;
    color: black;
}

.lm-usp-bar .lm-usp-item{
  flex-direction: row;
}
.lm-usp-bar .lm-usp-item i{
  font-size: 20px
}


.lm-gallery-main img,
.lm-gallery-main video {
    width: 100%;
    display: block;
}

.lm-gallery-thumbs .swiper-slide {
    opacity: .5;
    cursor: pointer;
}

.lm-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}
.woocommerce-pagination a{
  text-decoration: none;
  color: var(--coffee-brown);
}
