@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@1,700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");


/* ----------------------------------------------
   TOKENS
   ---------------------------------------------- */

:root {
  --radius-xs: 4px;    /* inputs, badges */
  --radius-sm: 8px;    /* inputs, badges */
  --radius-md: 12px;   /* cards, list items */
  --radius-lg: 16px;   /* hero blocks, major sections */
  --brand-600: #dc2626;
  --brand-700: #b91c1c;
  --barik-600: #dc2626;
  --barik-700: #b91c1c;

  /* Brand */
  --bg:             #F6F4F1;
  --bg-alt:         #efefef;
  --surface:        #ffffff;
  --surface-2:      #fafafa;

  /* Maroon accent */
  --accent:         #8b1a1a;
  --accent-mid:     #dc2626;
  --accent-light:   #ef4444;
  --accent-ghost:   rgba(185, 28, 28, 0.07);
  --accent-border:  rgba(185, 28, 28, 0.18);

  /* Text */
  --text-1:         #0F0F0F;
  --text-2:         #3a3a3a;
  --text-3:         #888888;

  /* Structure */
  --border:         rgba(15, 15, 15, 0.08);
  --shadow-sm:      0 2px 12px rgba(15, 15, 15, 0.06);
  --shadow-md:      0 8px 32px rgba(15, 15, 15, 0.10);
  --shadow-lg:      0 24px 64px rgba(15, 15, 15, 0.13);

  /* Motion (Clearwave silk easing) */
  --silk:           cubic-bezier(0.16, 1, 0.3, 1);
  --silk-dur:       0.8s;
  --titles-font-family: 'DM Sans', sans-serif;

  --accent-soft:   #a82020;
  --text:          #111111;
  --text-mid:      #444444;
  --text-muted:    #777777;
  --border:        #e5e5e5;
  --border-hover:  #8b1a1a;
  --bg:            #f5f5f5;
  --surface:       #fafafa;
  --white:         #ffffff;
  --green:         #2e7d4f;
  --radius-sm:     4px;
  --radius:        6px;
  --transition:    all 0.15s ease;
  --sidebar-w:     250px;
  --border-color:  #eee;

  /* Footer-specific tokens */
  --footer-bg:         #2a2a2a;
  --footer-surface:    #1a1a1a;
  --footer-border:     rgba(255, 255, 255, 0.08);
  --footer-text:       rgba(255, 255, 255, 0.85);
  --footer-muted:      rgba(255, 255, 255, 0.61);
  --footer-accent:     #c94040;
  --footer-accent-dim: rgba(201, 64, 64, 0.12);
  --main-font-size: 15px;
  --container: 1270px;

  --font-body: 'DM+Sans',system-ui, -apple-system, 'Segoe UI', sans-serif;

}

body {
    font-family: var(--font-body);
    font-optical-sizing: auto;
    font-weight: 400;
    color: var(--text-color);
    font-size: var(--main-font-size);
    line-height: 20px;
    width: 100%;
    background-color: var(--bg);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
}
.fa {
    font-size: var(--main-font-size);
}
button:hover .fa-times-circle,
button:hover .fa-times {
    background-color: var(--danger-color);
}


/* ============================================================
   La Cucina — Button System
   Author : Bariklabs <https://bariklabs.com>
   Theme  : Velocart / Barik Trade
   ============================================================ */

/* ── BASE ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  outline: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
  padding: 10px 15px;
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.22);
}

/* ── SIZES ── */
.btn-sm  { padding: 7px 14px; font-size: 13px; border-radius: 4px; }
.btn-md  { padding: 9px 18px; }
.btn-lg  { padding: 12px 24px; font-size: 15px; }

/* ── ICON-ONLY ── */
.btn-icon     { padding: 9px; }
.btn-icon.btn-sm { padding: 6px; }
.btn-icon.btn-lg { padding: 12px; }

/* ── DISABLED ── */
.btn:disabled,
.btn.disabled {
  opacity: 0.44;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── LOADING ── */
.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lc-btn-spin 0.65s linear infinite;
}

.btn-outline.loading::after,
.btn-ghost.loading::after {
  border-color: rgba(139, 26, 26, 0.2);
  border-top-color: #8b1a1a;
}

@keyframes lc-btn-spin {
  to { transform: rotate(360deg); }
}


/* ============================================================
   btn-primary  (#8b1a1a — La Cucina accent)
   ============================================================ */
.btn-primary {
  background: #8b1a1a;
  border-color: #8b1a1a;
  color: #fff;
}
.btn-primary:hover  { background: #6e1515; border-color: #6e1515; }
.btn-primary:active { background: #5c1010; border-color: #5c1010; }

.btn-primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.22);
}

/* outline */
.btn-primary.btn-outline {
  background: transparent;
  border-color: #8b1a1a;
  color: #8b1a1a;
}
.btn-primary.btn-outline:hover { background: #f9f0f0; }

/* ghost */
.btn-primary.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: #8b1a1a;
}
.btn-primary.btn-ghost:hover { background: #f9f0f0; border-color: #f9f0f0; }


/* ============================================================
   btn-danger  (#c0392b)
   ============================================================ */
.btn-danger {
  background: #c0392b;
  border-color: #c0392b;
  color: #fff;
}
.btn-danger:hover  { background: #962d22; border-color: #962d22; }
.btn-danger:active { background: #7a2420; border-color: #7a2420; }

.btn-danger:focus-visible {
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.22);
}

/* outline */
.btn-danger.btn-outline {
  background: transparent;
  border-color: #c0392b;
  color: #c0392b;
}
.btn-danger.btn-outline:hover { background: #fdf3f2; }

/* ghost */
.btn-danger.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: #c0392b;
}
.btn-danger.btn-ghost:hover { background: #fdf3f2; border-color: #fdf3f2; }

/* loading override */
.btn-danger.loading::after  { border-color: rgba(255,255,255,0.35); border-top-color: #fff; }


/* ============================================================
   btn-warning  (#b7791f)
   ============================================================ */
.btn-warning {
  background: #b7791f;
  border-color: #b7791f;
  color: #fff;
}
.btn-warning:hover  { background: #92611a; border-color: #92611a; }
.btn-warning:active { background: #6e4912; border-color: #6e4912; }

.btn-warning:focus-visible {
  box-shadow: 0 0 0 3px rgba(183, 121, 31, 0.22);
}

/* outline */
.btn-warning.btn-outline {
  background: transparent;
  border-color: #b7791f;
  color: #b7791f;
}
.btn-warning.btn-outline:hover { background: #fffbeb; }

/* ghost */
.btn-warning.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: #b7791f;
}
.btn-warning.btn-ghost:hover { background: #fffbeb; border-color: #fffbeb; }

/* loading override */
.btn-warning.loading::after { border-color: rgba(255,255,255,0.35); border-top-color: #fff; }

/* outline/ghost warning loading */
.btn-warning.btn-outline.loading::after,
.btn-warning.btn-ghost.loading::after {
  border-color: rgba(183, 121, 31, 0.2);
  border-top-color: #b7791f;
}


/* ============================================================
   btn-link
   ============================================================ */
.btn-link {
  background: transparent;
  border-color: transparent;
  color: #8b1a1a;
  padding-left: 0;
  padding-right: 0;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.btn-link:hover {
  color: #6e1515;
  text-decoration-color: #6e1515;
}
.btn-link:focus-visible {
  box-shadow: none;
  text-decoration-color: #8b1a1a;
}

/* variant: danger */
.btn-link.danger { color: #c0392b; }
.btn-link.danger:hover { color: #962d22; text-decoration-color: #962d22; }

/* variant: muted */
.btn-link.muted { color: #666; }
.btn-link.muted:hover { color: #1a1a1a; text-decoration-color: #1a1a1a; }

h1 {
    font-size: 28px;
    margin: 0 0 30px;
}
h2 {
    font-size: 36px;
    margin: 20px 0;
}
h3 {
    font-size: 28px;
    margin: 20px 0;
    line-height: 1.4;
}
h4 {
    font-size: 22px;
    line-height: 1.3;
}
h5 {
    font-size: 18px;
    line-height: 1.2;
}
h6 {
    font-size: 14px;
}
.container p {
/*    font-size: var(--main-font-size);*/
    line-height: 1.6;
/*    margin: 0 0 15px;*/
}
ul {
    list-style: inside;
}
ul li {
    line-height: 1.8;
}
a {
    color: var(--main-color);
}
a:focus,
a:hover {
    color: var(--link-hover-color);
    text-decoration: none;
}
a,
button {
    transition: all ease-in 0.2s;
    border-radius: 0.5rem
}
p a {
    font-weight: 500;
}
hr {
    border-top: solid 1px var(--border-color);
}

section > .container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}

.alert { font-size: 15px; }

/*Reset*/

@media (min-width: 1200px) {
    .container {
        width: 100%;
        max-width: var(--container);
    }
}

/* ----------------------------------------------
   BREADCRUMB
   ---------------------------------------------- */
.lc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 18px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.lc-breadcrumb li { display: flex; align-items: center; gap: 6px; }

.lc-breadcrumb li + li::before {
  content: '/';
  color: var(--border);
}

.lc-breadcrumb a { color: var(--text-muted); transition: color 0.15s ease; }
.lc-breadcrumb a:hover { color: var(--accent); }

.lc-breadcrumb__home {
  width: 13px; height: 13px;
  display: block; flex-shrink: 0;
}



.card,
.acc-requirements,
.acc-steps {
  border-radius: var(--radius-lg);
}

.acc-step {
  border-radius: var(--radius-md);
}

input,
.badge,
.tag {
  border-radius: var(--radius-sm);
}

.section-header {
  text-align: start;
  margin-bottom: clamp(20px, 3vw, 40px);
}

.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--brand-600);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--ink-900);
  margin: 0 0 8px;
}

.section-subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--ink-700);
  margin: 0;
  max-width: 720px;
}

#top-links > ul > li:nth-child(5) > a:before {
    background-image: var(--store-icon);
}

div#bslideFeTrigger {
    display: none;
}

ul.nav.navbar-nav a .fa-home:before {
    display: none;
}

div#product-category .category-description {
    background: transparent !important;
}

@media (max-width: 767px) {
  .product-layout.product-grid {
    width: 50% !important;
    float: left !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .product-layout .product-thumb {
    padding-bottom: 0;
    }
}


/* Hide comment on payment addres */
#collapse-payment-method .panel-body > p:nth-of-type(2),
#collapse-payment-method .panel-body > p:nth-of-type(3) {
    display: none;
}


/*Product Page*/

/* Cart action row — qty + button inline */
#cart-section .cart-action-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: 4px;
}

#cart-section .qty-wrapper {
  flex: 0 0 72px; /* fixed width for qty */
}

#cart-section .qty-wrapper .form-control {
  width: 100%;
  height: 46px; /* match btn-lg height */
  text-align: center;
  font-size: 16px;
  padding: 6px 8px;
}

#cart-section .btn-wrapper {
  flex: 1 1 auto;
}

#cart-section .btn-wrapper .btn-lg {
  width: 100%;
  height: 46px;
  line-height: 1;
}

.agentlogged {
display: none;
}

/* Wishlist & Compare buttons — Cucina style */
#product-info .wishlist-compare {
  margin-bottom: 12px;
}

#product-info .wishlist-compare .btn {
  background-color: transparent;
  color: #000;
  width: 46px;
  height: 46px;
  border-radius: 4px;
  padding: 0;
  line-height: 34px;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#product-info .wishlist-compare .btn:active {
  background-color: #2e2e2e;
  border-color: #2e2e2e;
  color: #fff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Remove Bootstrap btn-group border overlap quirk */
#product-info .wishlist-compare.btn-group .btn + .btn {
  margin-left: 6px;
  border-radius: 2px; /* override btn-group yang flatten border-radius */
}


.act-compare { display: none; }


/* =============================================
   In-Cart indicator — Category page
   Cucina style: green accent, clean badge
   ============================================= */

/* Frame / border highlight */
.lc-gallery__main.in-cart {
  position: relative;
  border: 2px solid #2e7d4f;
  border-radius: 3px;
}

a.in-cart {
  position: relative;
  border: 4px solid #2e7d4f;
  border-radius: 3px;
}

ul.thumbnails > li {
  position: relative;
}

.product-thumb .in-cart-badge, li .in-cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  background-color: #2e7d4f;
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 0 4px;
  pointer-events: none;
}

/* Badge — checkmark only */
.product-thumb .in-cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  background-color: #2e7d4f;
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 0 4px;
  pointer-events: none;
}


/* In-cart sub-label — product detail page */
.btn-wrapper {
  position: relative;
}

.in-cart-sub-button {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  right: 0;
  background-color: transparent;
  border: 1px solid #2e7d4f;
  border-radius: 3px;
  color: #2e7d4f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 6px 12px;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Subtle triangle pointer ke button */
.in-cart-sub-button::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #2e7d4f;
}

.in-cart-sub-button span.product-count {
    background: #2e7d4f;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    align-items: center;
    display: inline-block;
}

#button-cart[data-in-cart="1"] { border-color: #2e7d4f; background-color: #2e7d4f; }


.product-thumb .in-cart-badge .fa {
  font-size: 16px;
}

/* Add to cart button — green when in-cart */
.lc-gallery__main.in-cart .button-group button:first-child {
  background-color: #2e7d4f;
  border-color: #2e7d4f;
  color: #fff;
}

.lc-gallery__main.in-cart .button-group button:first-child:hover {
  background-color: #256040;
  border-color: #256040;
}


/*Overrides*/
.tab-content:empty, #tab-description:empty {
  display: none;
}


div#product p { padding: 10px !important; }


/* Minimum order info notice — bcart style */
/*
#product-info .info-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}

#product-info .info-stock .fa {
  font-size: 12px;
  color: #b2b2b2;
  flex-shrink: 0;
}
*/


#product-info .info-stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  width: 100%;
  margin-top: 8px;
  line-height: 1.4;
}

#product-info .info-stock .fa {
  font-size: 13px;
  color: #aaa;
  flex-shrink: 0;
}


/* ----------------------------------------------
   PRODUCT GRID
   ---------------------------------------------- */
/* Grid: 3 col when sidebar present (default) */
.lc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Grid: 4 col when no sidebar (.lc-main--full) */
.lc-main--full .lc-grid {
  grid-template-columns: repeat(4, 1fr);
}

.lc-grid.list-view {
  grid-template-columns: 1fr;
  gap: 8px;
}

.lc-main--full .lc-grid.list-view {
  grid-template-columns: 1fr;
}


/* ----------------------------------------------
   RELATE PRODUCT GRID
   ---------------------------------------------- */
#lc-related-carousel {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}


/* ----------------------------------------------
   PRODUCT CARD — exact match with latest-section
   ---------------------------------------------- */
.b-card {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.b-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.b-card.in-cart { border-color: var(--green); }

.b-card__media {
  position: relative;
  background: #fff;
  aspect-ratio: 1;
  overflow: hidden;
}

.b-card__link { display: block; width: 100%; height: 100%; }

.b-card__img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
  display: block;
  transition: transform 0.2s ease;
}

.b-card:hover .b-card__img { transform: scale(1.03); }

.b-card.in-cart .b-card__media::after {
  content: '';
}

/* ----------------------------------------------
   IN-CART RIBBON
   ---------------------------------------------- */
.b-card.in-cart .b-card__media {
  position: relative;
  overflow: hidden;
}

.b-card.in-cart .b-card__media::after, .lc-gallery__main.in-cart::after {
  content: 'IN WINKELWAGEN';
  position: absolute;
    top: 30px;
    left: -55px;
    width: 200px;
  padding: 4px 0;
  background: var(--green);
  color: #fff;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
  transform-origin: center;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}


.in-cart-badge {
  position: absolute;
  top: 8px; left: 8px;
  width: 22px; height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  display: none;
}

.in-cart-badge svg {
  width: 11px; height: 11px;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: block;
}

.b-card__overlay-top {
  position: absolute;
  top: 8px; right: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.wish-mini,
.compare-mini {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  flex-shrink: 0;
  font-size: 15px;
}

.wish-mini:hover,
.compare-mini:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-addtocart {
  height: 34px;
  width: auto;
  padding: 0 13px;
  gap: 7px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
}

.btn-addtocart svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

.btn-addtocart:hover { background: var(--accent); color: var(--white); }

.b-card.in-cart .btn-addtocart { border-color: var(--green); color: var(--green); }
.b-card.in-cart .btn-addtocart:hover { background: var(--green); color: var(--white); }

.b-card__body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.b-card__name {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.b-card__name:hover { color: var(--accent); }

.b-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: auto;
}

.b-card__price { font-size: 16px; color: var(--text); line-height: 1; }
.b-card__price strong { font-weight: 600; }

.b-card__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* ----------------------------------------------
   LIST VIEW overrides
   ---------------------------------------------- */
.lc-grid.list-view .b-card {
  flex-direction: row;
  height: 100px;
}

.lc-grid.list-view .b-card:hover { transform: none; }

.lc-grid.list-view .b-card__media {
  width: 100px; height: 100px;
  aspect-ratio: unset;
  flex-shrink: 0;
}

.lc-grid.list-view .b-card__overlay-top { display: none; }

.lc-grid.list-view .b-card__body {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  flex: 1;
}

.lc-grid.list-view .b-card__name {
  flex: 1;
  -webkit-line-clamp: 1;
  font-size: 14px;
}

.lc-grid.list-view .b-card__footer { margin-top: 0; gap: 12px; flex-shrink: 0; }

/* ----------------------------------------------
   PAGINATION
   ---------------------------------------------- */
.lc-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
  flex-wrap: wrap;
}

.lc-pagination__info { font-size: 12px; color: var(--text-muted); }

.lc-pagination__list {
  display: flex;
  gap: 4px;
  list-style: none;
}

.lc-pagination__list a,
.lc-pagination__list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px; height: 32px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-mid);
  background: var(--white);
  transition: var(--transition);
}

.lc-pagination__list a:hover { border-color: var(--accent); color: var(--accent); }

.lc-pagination__list .active span {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  font-weight: 600;
}

/* ----------------------------------------------
   RESPONSIVE
   ---------------------------------------------- */
@media (max-width: 1100px) {
  /* 4-col → 3-col on medium screens (no sidebar) */
  .lc-main--full .lc-grid, #lc-related-carousel { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .lc-sidebar { display: none; }
  .lc-cat-hero__img { width: 140px; }
  /* sidebar hidden → treat as full width */
  .lc-grid, #lc-related-carousel{ grid-template-columns: repeat(3, 1fr); }
  /* 4-col → 3-col on medium screens (no sidebar) */
}

@media (max-width: 767px) {
  .lc-main--full .lc-grid, #lc-related-carousel { grid-template-columns: repeat(2, 1fr); }
  .lc-page { padding: 0 16px; }
  .lc-layout { padding-bottom: 48px; }
  .lc-grid, #lc-related-carousel { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lc-cat-hero { flex-direction: column; }
  .lc-cat-hero__img { width: 100%; height: 140px; }
  .lc-cat-hero__body { padding: 16px; }
  .lc-cat-hero__title { font-size: 18px; }
  .lc-toolbar { flex-wrap: wrap; }
  .lc-toolbar__right { width: 100%; justify-content: flex-end; }
  .lc-toolbar__left { order: 2; width: 100%; }
  .lc-pagination { flex-direction: column-reverse; align-items: center; }
  .lc-view-toggle { display: none; }
  .lc-subcats { gap: 6px; }
  .lc-select { background-position: right 20px center; }
  .in-cart-sub-button {
    right: 0;
    left: unset;
    max-width: 280px;
    bottom: calc(100% + 11px);
  }
}

/* ----------------------------------------------
   ADDITIONAL STATES
   ---------------------------------------------- */

/* Sale price */
.b-card__price--old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 4px;
}

/* Main full-width (no column_left) */
.lc-main--full {
  padding-top: 20px;
}

/* Empty state */
.lc-empty {
  padding: 48px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius);
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  line-height: 1;
  text-decoration: none;
}

.lc-btn--outline {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--border);
}

.lc-btn--outline:hover {
  border-color: var(--text-mid);
  color: var(--text);
}

/* OC-rendered pagination — override default Bootstrap ul/li */
.lc-pagination__list ul.pagination {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lc-pagination__list ul.pagination > li > a,
.lc-pagination__list ul.pagination > li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-mid);
  background: var(--white);
  transition: var(--transition);
  line-height: 1;
}

.lc-pagination__list ul.pagination > li.active > span {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  font-weight: 600;
}

.lc-pagination__list ul.pagination > li > a:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* ----------------------------------------------
   CUSTOMER PRICE — login prompt state
   Shown when config_customer_price = true
   and visitor is not logged in.
   ---------------------------------------------- */
.b-card__footer--login {
  margin-top: auto;
}

.b-card__login-prompt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.b-card__login-prompt:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.b-card__login-prompt svg {
  flex-shrink: 0;
}

/*PATCHES*/
a#compare-total, .lc-result-count, .compare-mini {
    display: none;
}

/* ----------------------------------------------
   SEARCH PANEL — lc-search-panel
   search.twig enhanced form section
   ---------------------------------------------- */

.lc-search-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 20px;
  margin-bottom: 28px;
}

.lc-search-panel__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
  padding: 0;
  border: none;
  line-height: 1.2;
}

/* Row: keyword + category + button */
.lc-search-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 14px;
}

.lc-search-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.lc-search-field--keyword  { -webkit-box-flex: 2; -ms-flex: 2 1 220px; flex: 2 1 220px; }
.lc-search-field--category { -webkit-box-flex: 1; -ms-flex: 1 1 160px; flex: 1 1 160px; }
.lc-search-field--btn      { -webkit-box-flex: 0; -ms-flex: 0 0 auto;  flex: 0 0 auto;  }

.lc-search-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.lc-search-label--hidden { visibility: hidden; }

/* Keyword input */
.lc-search-input-wrap { position: relative; }

.lc-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--text-muted);
  pointer-events: none;
}

.lc-search-input {
  width: 100%;
  height: 40px;
  padding: 0 12px 0 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  background: var(--surface);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  -webkit-transition: var(--transition);
          transition: var(--transition);
  font-family: var(--titles-font-family);
}

.lc-search-input:focus {
  border-color: var(--accent);
  background: var(--white);
}

/* Category select */
.lc-search-select-wrap { position: relative; }

.lc-search-select {
  width: 100%;
  height: 40px;
  padding: 0 32px 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  background: var(--surface);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  cursor: pointer;
  -webkit-transition: var(--transition);
          transition: var(--transition);
  font-family: var(--titles-font-family);
}

.lc-search-select:focus { border-color: var(--accent); }

.lc-search-chevron {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

/* Search button */
.lc-search-btn {
  height: 40px;
  padding: 0 22px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: var(--transition);
          transition: var(--transition);
  font-family: var(--titles-font-family);
}

.lc-search-btn:hover,
.lc-search-btn:focus {
  background: var(--accent-soft);
  outline: none;
}

/* Checkbox filters row */
.lc-search-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 4px;
}

.lc-check {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
}

/* Hide native checkbox — keep it accessible */
.lc-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.lc-check__box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--white);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: var(--transition);
          transition: var(--transition);
}

.lc-check input[type="checkbox"]:checked + .lc-check__box {
  background: var(--accent);
  border-color: var(--accent);
}

.lc-check input[type="checkbox"]:checked + .lc-check__box::after {
  content: '';
  display: block;
  width: 4px;
  height: 7px;
  border: 1.5px solid var(--white);
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(45deg) translateY(-1px);
          transform: rotate(45deg) translateY(-1px);
}

.lc-check__label {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.3;
}

/* Results heading */
.lc-search-results-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px;
  padding: 0;
  border: none;
}

/* Responsive */
@media (max-width: 480px) {
  .lc-search-panel { padding: 18px 16px 16px; }

  .lc-search-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .lc-search-field--keyword,
  .lc-search-field--category {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
            width: 100%;
  }

  .lc-search-btn { width: 100%; }
  .lc-search-label--hidden { display: none; }
}




/* ==============================================
   FOOTER ROOT
   ============================================== */
.lc-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

/* Subtle texture overlay */
.lc-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(139, 26, 26, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(139, 26, 26, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.lc-footer > * { position: relative; z-index: 1; }

/* ==============================================
   TOP ACCENT BAR
   ============================================== */
.lc-footer__accent-bar {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 25%,
    var(--footer-accent) 50%,
    var(--accent) 75%,
    transparent 100%
  );
}

/* ==============================================
   MAIN CONTENT WRAPPER
   ============================================== */
.lc-footer__inner {
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================================
   BRAND SECTION
   Top section: logo + tagline + contact strip
   ============================================== */
.lc-footer__brand-section {
  padding: 44px 0 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  border-bottom: 1px solid var(--footer-border);
}

.lc-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lc-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.lc-footer__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lc-footer__logo-mark svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.lc-footer__logo-text {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
}

.lc-footer__logo-text span {
  color: var(--footer-accent);
}

.lc-footer__tagline {
  font-size: 15px;
  color: var(--footer-muted);
  letter-spacing: 0.04em;
  max-width: 360px;
  font-weight: 300;
}

/* Contact strip — right side */
.lc-footer__contact-strip {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.lc-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--footer-muted);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.lc-footer__contact-item:hover {
  color: var(--footer-text);
}

.lc-footer__contact-icon {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  flex-shrink: 0;
}

.lc-footer__contact-item:hover .lc-footer__contact-icon {
  opacity: 0.8;
}

/* ==============================================
   LINKS GRID
   4-column nav links
   ============================================== */
.lc-footer__links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px 0 32px;
  border-bottom: 1px solid var(--footer-border);
}

.lc-footer__col {
  padding: 0 20px 0 0;
}

.lc-footer__col:first-child {
  padding-left: 0;
}

/* Column heading */
.lc-footer__col-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--footer-muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--footer-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lc-footer__col-heading::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--footer-accent);
  border-radius: 1px;
  flex-shrink: 0;
}

/* Nav list */
.lc-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lc-footer__nav li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--footer-muted);
  text-decoration: none;
  font-size: 15px;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, padding-left 0.15s ease;
  font-weight: 300;
}

.lc-footer__nav li a:hover {
  color: var(--footer-text);
  padding-left: 4px;
}

.lc-footer__nav li a::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--footer-accent);
  transition: width 0.2s ease;
  flex-shrink: 0;
}

.lc-footer__nav li a:hover::before {
  width: 10px;
}

/* ==============================================
   TRUST BADGES STRIP
   ============================================== */
.lc-footer__trust {
  padding: 24px 0;
  border-bottom: 1px solid var(--footer-border);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.lc-footer__trust-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--footer-muted);
  white-space: nowrap;
}

.lc-footer__trust-items {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lc-footer__trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 400;
}

.lc-footer__trust-badge svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.lc-footer__brand img {
    height: 50px;
    width: auto;
}


/* ==============================================
   BOTTOM BAR
   Copyright + legal links
   ============================================== */
.lc-footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lc-footer__copy {
  font-size: 14px;
  color: var(--footer-muted);
  padding: 0;
}

.lc-footer__copy a {
  color: var(--footer-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.lc-footer__copy a:hover {
  color: var(--footer-text);
  border-color: var(--footer-border);
}

.lc-footer__legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lc-footer__legal a {
  font-size: 14px;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.lc-footer__legal a:hover {
  color: var(--footer-text);
}

.lc-footer__legal-divider {
  width: 1px;
  height: 10px;
  background: var(--footer-border);
}

/* ==============================================
   KVK / VAT TAG
   ============================================== */
.lc-footer__reg {
  font-size: 14px;
  color: var(--footer-muted);
  text-align: right;
}

/* ==============================================
   RESPONSIVE
   ============================================== */

/* Tablet */
@media (max-width: 900px) {
  .lc-footer__links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .lc-footer__col {
    padding-right: 16px;
  }

  .lc-footer__brand-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lc-footer__contact-strip {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .lc-footer__inner {
    padding: 0 16px;
  }

  .lc-footer__brand-section {
    padding: 32px 0 24px;
  }

  .lc-footer__links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    padding: 28px 0 24px;
  }

  .lc-footer__col-heading {
    font-size: 13px;
  }

  .lc-footer__nav li a {
    font-size: 14px;
  }

  .lc-footer__trust {
    gap: 16px;
  }

  .lc-footer__trust-items {
    gap: 16px;
  }

  .lc-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .lc-footer__reg {
    text-align: left;
  }

  .lc-footer__legal {
    gap: 14px;
  }
}


/* ----------------------------------------------
   SIDEBAR
   ---------------------------------------------- */
.lc-sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.lc-sidebar::-webkit-scrollbar { width: 3px; }
.lc-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.lc-sidebar__block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.lc-sidebar__head {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: var(--bg);
}

/* Category nav */
.lc-cat-nav { list-style: none; padding: 6px 0; }

.lc-cat-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--text-mid);
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
  border-left: 2px solid transparent;
  border-radius: 0;
}

.lc-cat-nav__link:hover {
  color: var(--accent);
  background: #fdf5f5;
  border-left-color: var(--accent);
}

.lc-cat-nav__link.active {
  color: var(--accent);
  font-weight: 600;
  background: #fdf5f5;
  border-left-color: var(--accent);
}

.lc-cat-nav__count {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1px 7px;
  font-weight: 400;
  flex-shrink: 0;
}

.lc-cat-nav__link.active .lc-cat-nav__count {
  background: #fce8e8;
  border-color: #f0c0c0;
  color: var(--accent);
}

/* Sub-items */
.lc-cat-nav__sub {
  list-style: none;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}

.lc-cat-nav__sub .lc-cat-nav__link {
  padding-left: 28px;
  font-size: 12px;
  color: var(--text-muted);
}

.lc-cat-nav__sub .lc-cat-nav__link.active {
  color: var(--accent);
  font-weight: 500;
}

.lc-cat-nav__divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

/* Medium devices (tablets, 768px - 991px) */
@media (max-width: 991px) {
  .hidden-md {
    display: none !important;
  }
}

/* Small devices (phones, 576px - 767px) */
@media (max-width: 767px) {
  .hidden-sm {
    display: none !important;
  }
}

/* Extra small devices (phones, 0 - 575px) */
@media (max-width: 575px) {
  .hidden-xs {
    display: none !important;
  }
}

div#related-products .b-card__qty-stepper {
    display: none;
}


.lc-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  background: #2e7d4f;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lc-toast--show {
  opacity: 1;
  transform: translateY(0);
}
