@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap");

/*
 Theme Name:   LushNaturals Child
 Theme URI:    https://lushnaturalsuk.com
 Description:  LushNaturals UK child theme for GeneratePress. All design tokens, global styles, and WooCommerce overrides.
 Author:       LushNaturals UK
 Template:     generatepress
 Version:      1.0.0
 Text Domain:  lushnaturals-child
*/

/* ============================================================
   TABLE OF CONTENTS
   1.  Design Tokens
   2.  Base / Reset
   3.  Typography
   4.  Buttons
   5.  Header
   6.  Announcement Bar
   7.  Navigation
   8.  Side Cart
   9.  Breadcrumb
   10. Sections & Containers
   11. Product Cards
   12. WooCommerce — Global
   13. WooCommerce — Shop / Archive
   14. WooCommerce — Single Product
   15. WooCommerce — Cart
   16. WooCommerce — Checkout
   17. Footer
   18. Utilities
   19. Responsive
============================================================ */

/* ============================================================
   1. DESIGN TOKENS
============================================================ */
:root {
  /* Brand colours — matches redesign exactly */
  --ln-gold:             #C8962A;
  --ln-gold-hover:       #E8B84B;
  --ln-gold-pale:        #F5E6C8;
  --ln-espresso:         #1C1410;
  --ln-bark:             #3D2B1F;
  --ln-red:              #3D2B1F;
  --ln-red-hover:        #2A1E15;
  --ln-black:            #1C1410;
  --ln-white:            #ffffff;
  --ln-cream:            #FAF6EF;
  --ln-off-white:        #FAF6EF;
  --ln-stone:            #8C7B6B;
  --ln-light-gray:       #F5E6C8;
  --ln-mid-gray:         #8C7B6B;
  --ln-border:           rgba(200,150,42,0.25);
  --ln-text:             #1C1410;
  --ln-text-muted:       #8C7B6B;

  /* Typography — Jost body + Cormorant display, per redesign */
  --ln-font:             'Jost', 'DM Sans', sans-serif;
  --ln-font-display:     'Cormorant Garamond', serif;
  --ln-size-xs:          12px;
  --ln-size-sm:          13px;
  --ln-size-base:        14px;
  --ln-size-btn:         16px;
  --ln-size-nav:         18px;
  --ln-size-h6:          16px;
  --ln-size-h5:          20px;
  --ln-size-h4:          24px;
  --ln-size-h3:          30px;
  --ln-size-h2:          40px;
  --ln-size-h1:          72px;
  --ln-lh-base:          24px;
  --ln-lh-h1:            80px;
  --ln-lh-h2:            52px;
  --ln-lh-h3:            42px;

  /* Layout */
  --ln-container:        1280px;
  --ln-radius-btn:       10px;
  --ln-radius-card:      0px;
  --ln-transition:       all 0.3s ease;

  /* WooCommerce overrides */
  --wc-primary:          var(--ln-gold);
  --wc-primary-text:     var(--ln-white);
}

/* ============================================================
   2. BASE / RESET
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ln-font);
  font-size: var(--ln-size-base);
  font-weight: 400;
  line-height: var(--ln-lh-base);
  color: var(--ln-text);
  background: var(--ln-off-white);
}

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

a {
  transition: var(--ln-transition);
}

/* ============================================================
   3. TYPOGRAPHY
============================================================ */
h1, .h1 {
  font-family: var(--ln-font);
  font-size: var(--ln-size-h1);
  font-weight: 700;
  line-height: var(--ln-lh-h1);
  color: var(--ln-black);
}

h2, .h2 {
  font-family: var(--ln-font);
  font-size: var(--ln-size-h2);
  font-weight: 600;
  line-height: var(--ln-lh-h2);
  color: var(--ln-black);
}

h3, .h3 {
  font-family: var(--ln-font);
  font-size: var(--ln-size-h3);
  font-weight: 500;
  line-height: var(--ln-lh-h3);
  color: var(--ln-black);
}

h4, .h4 { font-family: var(--ln-font); font-size: var(--ln-size-h4); font-weight: 500; color: var(--ln-black); }
h5, .h5 { font-family: var(--ln-font); font-size: var(--ln-size-h5); font-weight: 500; color: var(--ln-black); }
h6, .h6 { font-family: var(--ln-font); font-size: var(--ln-size-h6); font-weight: 500; color: var(--ln-black); }

p { margin-bottom: 16px; line-height: 1.7; }
p:last-child { margin-bottom: 0; }

a { color: var(--ln-red); }
a:hover { color: var(--ln-red-hover); }

/* ============================================================
   4. BUTTONS
============================================================ */
.button,
.wp-block-button__link,
button[type="submit"],
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  font-family: var(--ln-font) !important;
  font-size: var(--ln-size-btn) !important;
  font-weight: 500 !important;
  background: var(--ln-gold) !important;
  color: var(--ln-black) !important;
  border: 2px solid var(--ln-gold) !important;
  border-radius: var(--ln-radius-btn) !important;
  padding: 14px 32px !important;
  transition: var(--ln-transition) !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
}

.button:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--ln-gold-hover) !important;
  border-color: var(--ln-gold-hover) !important;
  color: var(--ln-black) !important;
}

/* Alt button — dark */
.button.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce #respond input#submit.alt {
  background: var(--ln-black) !important;
  border-color: var(--ln-black) !important;
}

.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background: var(--ln-gold) !important;
  border-color: var(--ln-gold) !important;
}

/* ============================================================
   5. HEADER
============================================================ */
.site-header,
.main-navigation-container,
#site-navigation {
  background: var(--ln-black) !important;
}

/* GeneratePress header overrides */
.site-header {
  border-bottom: 1px solid rgba(200,150,42,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.site-logo img {
  max-height: 44px;
  width: auto;
}

/* Header becomes sticky via GeneratePress settings —
   enable under Customizer > Layout > Sticky Navigation */

/* ============================================================
   6. ANNOUNCEMENT BAR
   Add via GeneratePress Elements (hook: wp_body_open)
   or as a Custom HTML block at top of page template
============================================================ */
.ln-announcement-bar {
  background: var(--ln-black);
  color: var(--ln-white);
  font-size: var(--ln-size-xs);
  font-weight: 500;
  letter-spacing: 0.5px;
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 999;
}

.ln-announcement-track {
  display: flex;
  animation: ln-marquee 22s linear infinite;
  white-space: nowrap;
  gap: 80px;
}

.ln-announcement-track span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ln-announcement-track span::before {
  content: '✦';
  color: var(--ln-gold);
  font-size: 10px;
}

@keyframes ln-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   7. NAVIGATION
============================================================ */
.main-navigation a,
.nav-primary a {
  font-family: var(--ln-font);
  font-size: var(--ln-size-nav);
  font-weight: 500;
  color: rgba(255,255,255,0.85) !important;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--ln-transition);
}

.main-navigation a:hover,
.nav-primary a:hover {
  color: var(--ln-white) !important;
  background: rgba(255,255,255,0.08) !important;
}

.main-navigation .current-menu-item > a,
.nav-primary .current-menu-item > a {
  color: var(--ln-gold) !important;
}

/* Submenu */
.main-navigation .sub-menu {
  background: var(--ln-black) !important;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.main-navigation .sub-menu a {
  font-size: var(--ln-size-base) !important;
  color: rgba(255,255,255,0.75) !important;
  padding: 10px 16px;
}

.main-navigation .sub-menu a:hover {
  color: var(--ln-gold) !important;
  background: rgba(255,255,255,0.05) !important;
}

/* Header icons (cart, wishlist, account) */
.header-widget,
.nav-widget {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* WooCommerce mini cart trigger in header */
.woocommerce-cart-link,
.cart-contents {
  position: relative;
  color: var(--ln-white);
  padding: 8px 10px;
  border-radius: 6px;
  transition: var(--ln-transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.woocommerce-cart-link:hover { background: rgba(255,255,255,0.1); }

.cart-contents-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--ln-gold);
  color: var(--ln-black);
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile header */
.mobile-menu-control-wrapper button,
.menu-toggle {
  color: var(--ln-white) !important;
}

/* ============================================================
   8. SIDE CART (off-canvas)
   Requires GeneratePress WooCommerce side cart setting or
   custom JS in custom.js
============================================================ */
.ln-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ln-cart-overlay.open { opacity: 1; pointer-events: all; }

.ln-side-cart {
  position: fixed;
  top: 0; right: -420px;
  width: 400px; max-width: 90vw;
  height: 100vh;
  background: var(--ln-white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 40px rgba(0,0,0,0.2);
}
.ln-side-cart.open { right: 0; }

.ln-side-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--ln-border);
  background: var(--ln-black);
  color: var(--ln-white);
}
.ln-side-cart__header h3 { font-size: 16px; font-weight: 600; color: var(--ln-white); margin: 0; }

.ln-side-cart__close {
  color: var(--ln-white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  transition: var(--ln-transition);
}
.ln-side-cart__close:hover { color: var(--ln-gold); }

.ln-side-cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.ln-side-cart__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--ln-border);
}

.ln-side-cart__checkout {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--ln-gold);
  color: var(--ln-white);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--ln-radius-btn);
  transition: var(--ln-transition);
  text-decoration: none;
}
.ln-side-cart__checkout:hover { background: var(--ln-gold-hover); color: var(--ln-black); }

/* ============================================================
   9. BREADCRUMB
============================================================ */
.breadcrumb-trail,
.woocommerce-breadcrumb,
.generatepress-breadcrumb {
  font-size: var(--ln-size-sm);
  color: var(--ln-text-muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--ln-border);
  background: var(--ln-white);
}

.woocommerce-breadcrumb a,
.breadcrumb-trail a {
  color: var(--ln-text-muted);
  text-decoration: none;
}

.woocommerce-breadcrumb a:hover,
.breadcrumb-trail a:hover {
  color: var(--ln-red);
}

/* ============================================================
   10. SECTIONS & CONTAINERS
============================================================ */
.grid-container {
  max-width: var(--ln-container);
}

/* Section padding */
.wp-block-group,
.entry-content > section {
  padding: 80px 0;
}

/* Section eyebrow label */
.ln-eyebrow {
  display: inline-block;
  font-size: var(--ln-size-xs);
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ln-gold);
  margin-bottom: 12px;
}

/* Section heading */
.ln-section-title {
  font-size: var(--ln-size-h2);
  font-weight: 600;
  line-height: var(--ln-lh-h2);
  color: var(--ln-black);
  margin-bottom: 12px;
}

.ln-section-sub {
  font-size: 15px;
  color: var(--ln-text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   11. PRODUCT CARDS
============================================================ */
.woocommerce ul.products li.product,
.wc-block-grid__product {
  background: var(--ln-white);  /* keep white for contrast on cream bg */
  border: 1px solid var(--ln-border);
  border-radius: var(--ln-radius-card);
  overflow: hidden;
  transition: var(--ln-transition);
  position: relative;
}

.woocommerce ul.products li.product:hover,
.wc-block-grid__product:hover {
  border-color: #cccccc;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* Product image */
.woocommerce ul.products li.product a img,
.wc-block-grid__product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.woocommerce ul.products li.product:hover a img,
.wc-block-grid__product:hover .wc-block-grid__product-image img {
  transform: scale(1.04);
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product-title {
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 20px !important;
  color: var(--ln-black) !important;
  padding: 12px 14px 0 !important;
  font-family: var(--ln-font) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title:hover {
  color: var(--ln-red) !important;
}

/* Price */
.woocommerce ul.products li.product .price,
.wc-block-grid__product-price {
  color: var(--ln-black) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 4px 14px 0 !important;
  font-family: var(--ln-font) !important;
}

.woocommerce ul.products li.product .price del,
.wc-block-grid__product-price del {
  color: var(--ln-mid-gray) !important;
  font-weight: 400 !important;
  margin-right: 6px;
}

.woocommerce ul.products li.product .price ins,
.wc-block-grid__product-price ins {
  color: var(--ln-gold) !important;
  text-decoration: none !important;
}

/* Sale badge */
.woocommerce ul.products li.product .onsale,
.wc-block-grid__product-onsale {
  background: var(--ln-gold) !important;
  color: var(--ln-black) !important;
  border-radius: 2px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 3px 8px !important;
  min-height: unset !important;
  min-width: unset !important;
  line-height: 1.4 !important;
  top: 10px !important;
  left: 10px !important;
}

/* Add to cart button on card */
.woocommerce ul.products li.product .button {
  margin: 10px 14px 14px !important;
  width: calc(100% - 28px) !important;
  font-size: var(--ln-size-xs) !important;
  padding: 9px 16px !important;
}

/* Star ratings */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
  color: var(--ln-gold) !important;
}

/* ============================================================
   12. WOOCOMMERCE — GLOBAL
============================================================ */
.woocommerce-notices-wrapper .woocommerce-message {
  border-top-color: var(--ln-gold) !important;
  background: #fffdf0;
}

.woocommerce-notices-wrapper .woocommerce-message a.button {
  background: var(--ln-gold) !important;
  border-color: var(--ln-gold) !important;
}

.woocommerce-notices-wrapper .woocommerce-error {
  border-top-color: var(--ln-red) !important;
}

/* Form fields */
.woocommerce .input-text,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce select,
.woocommerce textarea {
  font-family: var(--ln-font) !important;
  font-size: var(--ln-size-sm) !important;
  border: 1px solid var(--ln-border) !important;
  border-radius: 0 !important;
  padding: 11px 14px !important;
  color: var(--ln-text) !important;
  background: var(--ln-white) !important;
  transition: var(--ln-transition) !important;
}

.woocommerce .input-text:focus,
.woocommerce input[type="text"]:focus,
.woocommerce input[type="email"]:focus {
  border-color: var(--ln-black) !important;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.06) !important;
  outline: none !important;
}

/* Labels */
.woocommerce label {
  font-family: var(--ln-font);
  font-size: var(--ln-size-sm);
  font-weight: 600;
  color: var(--ln-black);
}

/* ============================================================
   13. WOOCOMMERCE — SHOP / ARCHIVE
============================================================ */
.woocommerce-products-header__title,
.woocommerce .page-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--ln-black);
  margin-bottom: 24px;
}

/* Shop toolbar */
.woocommerce-ordering select,
.woocommerce-result-count {
  font-family: var(--ln-font);
  font-size: var(--ln-size-sm);
  border: 1px solid var(--ln-border);
  border-radius: 4px;
  padding: 8px 12px;
  color: var(--ln-text);
}

/* Product grid - 4 columns desktop, handled by GeneratePress settings */
.woocommerce ul.products {
  gap: 20px !important;
}

/* Sidebar widgets */
.widget-area .widget_title,
.widget-area .widgettitle {
  font-size: var(--ln-size-base);
  font-weight: 700;
  color: var(--ln-black);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ln-border);
  margin-bottom: 14px;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: var(--ln-light-gray);
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle,
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background: var(--ln-gold);
}

/* ============================================================
   14. WOOCOMMERCE — SINGLE PRODUCT
============================================================ */
.woocommerce div.product .product_title {
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  color: var(--ln-black) !important;
  margin-bottom: 14px !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: var(--ln-black) !important;
  margin-bottom: 20px !important;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  color: var(--ln-gold) !important;
  text-decoration: none !important;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  color: var(--ln-mid-gray) !important;
}

/* Quantity input */
.woocommerce .quantity .qty {
  border: 1px solid var(--ln-border) !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  background: var(--ln-white) !important;
  width: 48px !important;
  height: 44px !important;
  text-align: center !important;
  font-family: var(--ln-font) !important;
  font-weight: 600 !important;
}

/* Add to cart button — single product */
.woocommerce div.product .cart .single_add_to_cart_button {
  font-size: var(--ln-size-btn) !important;
  padding: 14px 32px !important;
  height: 44px !important;
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 0 !important;
  background: transparent !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--ln-font) !important;
  font-size: var(--ln-size-base) !important;
  font-weight: 500 !important;
  color: var(--ln-text-muted) !important;
  padding: 14px 24px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--ln-black) !important;
  font-weight: 600 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom-color: var(--ln-gold) !important;
  border-bottom-width: 2px !important;
}

/* ============================================================
   15. WOOCOMMERCE — CART
============================================================ */
.woocommerce-cart table.cart {
  border: 1px solid var(--ln-border);
  border-radius: 4px;
  overflow: hidden;
}

.woocommerce-cart table.cart th {
  font-family: var(--ln-font);
  font-size: var(--ln-size-xs);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ln-text-muted);
  background: var(--ln-off-white);
  padding: 14px 16px;
}

.woocommerce-cart table.cart td {
  padding: 18px 16px;
  vertical-align: middle;
  border-bottom: 1px solid var(--ln-border);
}

.woocommerce-cart table.cart .product-name a {
  font-weight: 500;
  color: var(--ln-black);
  text-decoration: none;
}

.woocommerce-cart table.cart .product-name a:hover {
  color: var(--ln-red);
}

.woocommerce-cart .cart_totals {
  background: var(--ln-white);
  border: 1px solid var(--ln-border);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
}

.woocommerce-cart .cart_totals h2 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ln-white);
  background: var(--ln-black);
  padding: 16px 20px;
  margin: 0;
}

.woocommerce-cart .cart_totals table {
  padding: 16px 20px;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--ln-border);
  font-family: var(--ln-font);
  font-size: var(--ln-size-sm);
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
  font-size: 16px;
  font-weight: 700;
  border-bottom: none;
}

.woocommerce #coupon_code {
  border-radius: 0 !important;
}

/* ============================================================
   16. WOOCOMMERCE — CHECKOUT
============================================================ */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout h3#order_review_heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--ln-white);
  background: var(--ln-off-white);
  padding: 18px 24px;
  margin: 0 0 0;
  border: 1px solid var(--ln-border);
  border-bottom: none;
  color: var(--ln-black);
}

.woocommerce-checkout #order_review {
  background: var(--ln-white);
  border: 1px solid var(--ln-border);
  border-radius: 4px;
  overflow: hidden;
}

.woocommerce-checkout #order_review .shop_table th {
  background: var(--ln-black);
  color: var(--ln-white);
  font-size: var(--ln-size-sm);
  font-weight: 600;
  padding: 14px 16px;
}

.woocommerce-checkout #payment {
  background: var(--ln-off-white);
  border: 1px solid var(--ln-border);
  border-radius: 4px;
}

.woocommerce-checkout #payment ul.payment_methods li {
  border-bottom: 1px solid var(--ln-border);
  padding: 14px 16px;
}

.woocommerce-checkout #payment .payment_box {
  background: var(--ln-light-gray);
  font-size: var(--ln-size-sm);
}

.woocommerce-checkout #payment div.place-order .button {
  font-size: 16px !important;
  padding: 17px !important;
  width: 100% !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
}

/* ============================================================
   17. FOOTER
============================================================ */
.site-footer {
  background: var(--ln-black) !important;
  color: var(--ln-white) !important;
  padding: 0 !important;
}

.site-footer a {
  color: rgba(200,165,100,0.85);
}

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

.footer-widgets .widget-title,
.footer-widgets .widgettitle {
  font-size: var(--ln-size-base);
  font-weight: 600;
  color: var(--ln-gold);
  margin-bottom: 18px;
}

.footer-widgets p,
.footer-widgets li {
  color: rgba(255,255,255,0.75);
  font-size: var(--ln-size-sm);
}

/* Footer bottom bar */
.site-info {
  background: var(--ln-black) !important;
  border-top: 1px solid rgba(200,150,42,0.2) !important;
  color: rgba(255,255,255,0.7) !important;
  font-size: var(--ln-size-xs) !important;
  padding: 20px 0 !important;
}

.site-info a {
  color: rgba(255,255,255,0.7);
}
.site-info a:hover { color: var(--ln-white); }

/* ============================================================
   18. UTILITIES
============================================================ */
/* Trust badge row */
.ln-trust-bar {
  background: var(--ln-off-white);
  border-top: 1px solid rgba(200,150,42,0.3);
  border-bottom: 1px solid rgba(200,150,42,0.3);
}

.ln-trust-bar .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ln-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(200,150,42,0.25);
  transition: var(--ln-transition);
}
.ln-trust-item:last-child { border-right: none; }
.ln-trust-item:hover { background: var(--ln-light-gray); }

.ln-trust-icon {
  width: 44px; height: 44px;
  background: var(--ln-black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ln-trust-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--ln-black); }
.ln-trust-text span   { font-size: var(--ln-size-xs); color: var(--ln-text-muted); }

/* Product category nav icons */
.ln-cat-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

/* Back to top */
.ln-back-top {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ln-white);
  cursor: pointer;
  transition: var(--ln-transition);
}
.ln-back-top:hover { background: var(--ln-gold); color: var(--ln-black); }

/* ============================================================
   19. RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  :root {
    --ln-size-h1: 48px;
    --ln-lh-h1:  56px;
  }

  .woocommerce ul.products[class*="columns-4"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  :root {
    --ln-size-h1: 36px;
    --ln-lh-h1:  44px;
    --ln-size-h2: 28px;
    --ln-lh-h2:  36px;
    --ln-size-h3: 22px;
  }

  .ln-trust-bar .grid-container {
    grid-template-columns: 1fr;
  }

  .ln-trust-item {
    border-right: none;
    border-bottom: 1px solid var(--ln-border);
  }

  .woocommerce ul.products[class*="columns-4"],
  .woocommerce ul.products[class*="columns-3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products[class*="columns-"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

/* ============================================================
   SHOP PAGE LAYOUT (archive-product.php)
============================================================ */
.ln-breadcrumb-wrap {
  background: var(--ln-white);
  border-bottom: 1px solid var(--ln-border);
  padding: 14px 0;
}

.ln-shop-page-header {
  background: var(--ln-white);
  padding: 32px 0 0;
}

.ln-shop-page-header .page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Category tabs */
.ln-cat-tabs {
  display: flex;
  border-bottom: 2px solid var(--ln-border);
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.ln-cat-tabs::-webkit-scrollbar { display: none; }

.ln-cat-tab {
  font-size: var(--ln-size-base);
  font-weight: 500;
  color: var(--ln-text-muted);
  padding: 12px 20px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--ln-transition);
  text-decoration: none;
}
.ln-cat-tab:hover { color: var(--ln-black); }
.ln-cat-tab.active {
  color: var(--ln-black);
  border-bottom-color: var(--ln-gold);
  font-weight: 600;
}

/* Shop two-column layout */
.ln-shop-layout {
  background: var(--ln-off-white);  /* FAF6EF cream */
  padding: 28px 0 80px;
}

.ln-shop-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

/* Sidebar */
.ln-shop-sidebar {
  background: var(--ln-white);
  border: 1px solid var(--ln-border);
  border-radius: 4px;
  overflow: hidden;
  position: sticky;
  top: 108px;
}

.ln-sidebar-widget {
  padding: 18px 20px;
  border-bottom: 1px solid var(--ln-border);
}
.ln-sidebar-widget:last-child { border-bottom: none; }

.ln-sidebar-widget-title {
  font-size: var(--ln-size-base);
  font-weight: 700;
  color: var(--ln-black);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ln-border);
}

.ln-shop-sidebar .widget { border-bottom: 1px solid var(--ln-border); padding: 18px 20px; }
.ln-shop-sidebar .widget:last-child { border-bottom: none; }
.ln-shop-sidebar .widgettitle { font-size: var(--ln-size-base); font-weight: 700; margin-bottom: 14px; }

/* Toolbar */
.ln-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ln-white);
  border: 1px solid var(--ln-border);
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 4px;
  gap: 12px;
}

.ln-toolbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ln-mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--ln-border);
  border-radius: 4px;
  font-size: var(--ln-size-sm);
  font-weight: 500;
  color: var(--ln-text);
  background: var(--ln-white);
  cursor: pointer;
  transition: var(--ln-transition);
}
.ln-mobile-filter-btn:hover { border-color: var(--ln-gold); }

.woocommerce-result-count {
  font-size: var(--ln-size-sm);
  color: var(--ln-text-muted);
  margin: 0;
}

.woocommerce-ordering select {
  font-family: var(--ln-font);
  font-size: var(--ln-size-sm);
  border: 1px solid var(--ln-border);
  border-radius: 4px;
  padding: 8px 32px 8px 12px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23808080' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  min-width: 180px;
}

/* Product grid */
.ln-shop-main .woocommerce,
.ln-shop-main {
  min-width: 0;
}

/* Pagination */
nav.woocommerce-pagination,
.woocommerce-pagination {
  margin-top: 48px !important;
  padding-top: 24px !important;
  border-top: 1px solid var(--ln-border) !important;
  display: block;
}

.woocommerce-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ln-border);
  border-radius: 4px;
  font-size: var(--ln-size-sm);
  font-weight: 500;
  color: var(--ln-text);
  text-decoration: none;
  transition: var(--ln-transition);
}
.woocommerce-pagination ul li a:hover { border-color: var(--ln-black); }
.woocommerce-pagination ul li span.current {
  background: var(--ln-gold);
  border-color: var(--ln-gold);
  color: var(--ln-white);
}

/* ============================================================
   SINGLE PRODUCT LAYOUT
============================================================ */
.ln-single-product-wrap {
  padding: 40px 0 72px;
}

/* ============================================================
   CART PAGE LAYOUT
============================================================ */
.ln-cart-page { padding: 20px 0 0; }

.ln-cart-steps {
  display: flex;
  background: var(--ln-white);
  border: 1px solid var(--ln-border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 28px;
}

.ln-step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  font-size: var(--ln-size-sm);
  font-weight: 500;
  color: var(--ln-text-muted);
  border-right: 1px solid var(--ln-border);
}
.ln-step:last-child { border-right: none; }

.ln-step--active { color: var(--ln-black); font-weight: 600; }
.ln-step--active .ln-step__num { background: var(--ln-gold); color: var(--ln-white); }
.ln-step--done .ln-step__num { background: var(--ln-black); color: var(--ln-white); }

.ln-step__num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ln-light-gray);
  color: var(--ln-text-muted);
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ln-cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
  padding-bottom: 80px;
}

.ln-cart-table-wrap {
  background: var(--ln-white);
  border: 1px solid var(--ln-border);
  border-radius: 4px;
  overflow: hidden;
}

/* Remove item link */
.ln-remove-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid transparent;
  color: var(--ln-text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: var(--ln-transition);
}
.ln-remove-item:hover {
  background: #fef1f4;
  color: var(--ln-red);
  border-color: #fce8e8;
}

/* Cart actions row */
.ln-cart-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px;
  background: var(--ln-white);
  border: 1px solid var(--ln-border);
  border-radius: 4px;
  margin-top: 16px;
}

.ln-coupon-form {
  display: flex;
  gap: 8px;
  flex: 1;
  max-width: 400px;
}

.ln-coupon-form .input-text {
  flex: 1;
  border: 1px solid var(--ln-border) !important;
  border-radius: 4px !important;
  padding: 10px 14px !important;
  font-size: var(--ln-size-sm) !important;
}

.ln-btn-outline {
  background: transparent !important;
  color: var(--ln-black) !important;
  border-color: var(--ln-border) !important;
}
.ln-btn-outline:hover {
  border-color: var(--ln-black) !important;
  background: var(--ln-black) !important;
  color: var(--ln-white) !important;
}

/* Cart sidebar */
.ln-cart-sidebar { position: sticky; top: 108px; }

.ln-order-summary {
  background: var(--ln-white);
  border: 1px solid var(--ln-border);
  border-radius: 4px;
  overflow: hidden;
}

.ln-summary-header {
  background: var(--ln-black);
  padding: 16px 20px;
}
.ln-summary-header h3 {
  color: var(--ln-white);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* WooCommerce cart totals inside the sidebar */
.ln-order-summary .cart_totals { background: none; border: none; float: none; width: 100%; }
.ln-order-summary .cart_totals h2 { display: none; } /* Hide duplicate heading */

.ln-order-summary .cart_totals table { padding: 8px 20px 0; width: 100%; }
.ln-order-summary .cart_totals table th,
.ln-order-summary .cart_totals table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--ln-border);
  font-size: var(--ln-size-sm);
  font-family: var(--ln-font);
}
.ln-order-summary .cart_totals .order-total th,
.ln-order-summary .cart_totals .order-total td {
  font-size: 18px;
  font-weight: 700;
  border-bottom: none;
  padding-bottom: 20px;
}

.ln-order-summary .wc-proceed-to-checkout {
  padding: 0 20px 20px;
}
.ln-order-summary .wc-proceed-to-checkout .checkout-button {
  width: 100% !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 16px !important;
}

/* ============================================================
   CHECKOUT PAGE LAYOUT
============================================================ */
.ln-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 28px;
  align-items: start;
  padding-bottom: 80px;
}

.ln-form-block {
  background: var(--ln-white);
  border: 1px solid var(--ln-border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.ln-form-block:last-child { margin-bottom: 0; }

.ln-form-block-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--ln-border);
  background: var(--ln-off-white);
}
.ln-form-block-header h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ln-black);
  margin: 0;
}

.ln-form-block-body {
  padding: 24px;
}

.ln-checkout-sidebar { position: sticky; top: 108px; }

/* Checkout order review */
.ln-order-summary .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
}
.ln-order-summary .woocommerce-checkout-review-order-table th,
.ln-order-summary .woocommerce-checkout-review-order-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--ln-border);
  font-size: var(--ln-size-sm);
  font-family: var(--ln-font);
}
.ln-order-summary .woocommerce-checkout-review-order-table thead th {
  background: var(--ln-off-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11px;
  color: var(--ln-text-muted);
}
.ln-order-summary .woocommerce-checkout-review-order-table .order-total th,
.ln-order-summary .woocommerce-checkout-review-order-table .order-total td {
  font-size: 16px;
  font-weight: 700;
  border-bottom: none;
}

/* Payment section inside sidebar */
.ln-order-summary #payment {
  background: var(--ln-off-white);
  border: none;
  border-top: 1px solid var(--ln-border);
}

.ln-order-summary #payment .place-order {
  padding: 20px;
}

/* ============================================================
   RESPONSIVE — SHOP, CART, CHECKOUT
============================================================ */
@media (max-width: 1024px) {
  .ln-shop-inner { grid-template-columns: 220px 1fr; }
  .ln-cart-layout { grid-template-columns: 1fr; }
  .ln-cart-sidebar { position: static; }
  .ln-checkout-layout { grid-template-columns: 1fr; }
  .ln-checkout-sidebar { position: static; }
}

@media (max-width: 768px) {
  .ln-shop-inner { grid-template-columns: 1fr; }

  .ln-shop-sidebar {
    position: fixed;
    top: 0; left: -300px;
    width: 280px; height: 100vh;
    z-index: 900;
    overflow-y: auto;
    border-radius: 0;
    transition: left 0.3s ease;
  }
  .ln-shop-sidebar.open { left: 0; }
  .ln-mobile-filter-btn { display: flex; }
  .ln-cart-steps { display: none; }
  .ln-cart-layout { gap: 20px; }
}

@media (max-width: 640px) {
  .ln-coupon-form { max-width: 100%; }
  .ln-cart-actions { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   TOPBAR (social icons + utility links above header)
============================================================ */
.ln-header-topbar {
  background: var(--ln-black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 38px;
  display: flex;
  align-items: center;
}

.ln-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.ln-topbar-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ln-topbar-social {
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  transition: var(--ln-transition);
  text-decoration: none;
}

.ln-topbar-social:hover { color: var(--ln-gold) !important; }

/* Utility nav (Who We Are · Blog · Contact) */
.ln-topbar-nav { display: flex; align-items: center; }

.ln-topbar-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ln-topbar-menu li a,
.ln-topbar-nav a {
  color: rgba(255,255,255,0.7);
  font-size: var(--ln-size-xs);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: var(--ln-transition);
}

.ln-topbar-menu li a:hover,
.ln-topbar-nav a:hover { color: var(--ln-gold); }

/* ============================================================
   FOOTER MENU COLUMNS
============================================================ */
.ln-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ln-footer-menu li a {
  color: rgba(255,255,255,0.75);
  font-size: var(--ln-size-sm);
  text-decoration: none;
  transition: var(--ln-transition);
}

.ln-footer-menu li a:hover {
  color: var(--ln-white);
  padding-left: 4px;
}

/* Current menu item highlight */
.ln-footer-menu .current-menu-item a,
.ln-topbar-menu .current-menu-item a {
  color: var(--ln-gold);
}

/* ============================================================
   PRODUCT CATEGORY LABEL (above product title in loop)
============================================================ */
.ln-product-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ln-text-muted);
  display: block;
  padding: 10px 14px 0;
}

/* ============================================================
   SCROLLED HEADER STATE
============================================================ */
.site-header.ln-scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

/* ============================================================
   MOBILE — hide topbar on small screens
============================================================ */
@media (max-width: 768px) {
  .ln-header-topbar { display: none; }
}

/* ============================================================
   FOOTER — FULL STYLES
   Matches lushnaturals-redesign.html 1:1
============================================================ */

/* ── Main footer wrapper ── */
.ln-footer {
  background: var(--ln-black) !important;
  color: var(--ln-white) !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ── Shared container ── */
.ln-f-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ═══ FOOTER TOP: brand + 3 link columns ═══ */
.ln-f-top {
  border-bottom: 1px solid rgba(200,150,42,0.15);
}

/* Outer row: brand col left, link cols group right */
.ln-f-top__grid {
  display: flex !important;
  flex-direction: row !important;
  gap: 64px !important;
  padding: 80px 0 64px !important;
  align-items: flex-start !important;
}

/* Brand takes ~40% of the row */
.ln-f-brand {
  flex: 0 0 320px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
}

/* Link columns group fills remaining space */
.ln-f-cols-group {
  flex: 1 1 0;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 40px !important;
  align-items: start !important;
}

/* Logo — italic Cormorant Garamond, matching design */
.ln-f-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
  color: var(--ln-white) !important;
}

.ln-f-logo-text:hover,
.ln-f-logo-text:visited,
.ln-f-logo-text:focus {
  text-decoration: none !important;
  color: var(--ln-white) !important;
}

/* "Lush" — gold, bold, upright */
.ln-f-logo-text .ln-f-logo-first,
.ln-footer .ln-f-logo-first,
a.ln-f-logo-text .ln-f-logo-first {
  color: #C89628 !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: inherit;
  letter-spacing: 0.02em;
}

/* "Naturals" — white, italic, light */
.ln-f-logo-text .ln-f-logo-rest,
.ln-footer .ln-f-logo-rest,
a.ln-f-logo-text .ln-f-logo-rest {
  color: #ffffff !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: inherit;
}

.ln-f-logo-img {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}

/* Tagline */
.ln-f-tagline {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ln-mid-gray);
  font-weight: 300;
  max-width: 280px;
  margin: 0 0 28px;
  letter-spacing: 0.03em;
}

/* Social icons — square bordered, matching design */
.ln-f-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ln-f-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200,150,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ln-mid-gray) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-family: var(--ln-font);
  font-weight: 400;
  transition: border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.ln-f-social:hover {
  border-color: var(--ln-gold) !important;
  color: var(--ln-gold) !important;
}

/* ── Link columns (Shop / Company / Customer Care) ── */
.ln-f-col {
  display: flex;
  flex-direction: column;
}

.ln-f-col-heading {
  font-size: 10px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--ln-gold) !important;
  font-weight: 500 !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  border: none !important;
  font-family: var(--ln-font) !important;
}

.ln-f-col-links {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ln-f-col-links li {
  margin-bottom: 12px !important;
}

.ln-f-col-links li a,
.ln-f-col-links li a:link,
.ln-f-col-links li a:visited {
  color: var(--ln-mid-gray) !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
  transition: color 0.2s ease !important;
  display: inline-block;
}

.ln-f-col-links li a:hover {
  color: var(--ln-white) !important;
}

.ln-f-col-links .current-menu-item > a {
  color: var(--ln-white) !important;
}

/* ═══ FOOTER BOTTOM BAR ═══ */
.ln-f-bottom {
  background: var(--ln-black);
}

.ln-f-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}

.ln-f-copyright {
  font-size: 11px;
  color: var(--ln-mid-gray);
  letter-spacing: 0.08em;
  font-weight: 300;
  margin: 0;
}

/* Payment icons */
.ln-f-payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ln-f-payment-icon {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ln-mid-gray);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 400;
  font-family: var(--ln-font);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ln-f-container { padding: 0 40px; }
  .ln-f-top__grid { gap: 48px !important; }
  .ln-f-brand { flex: 0 0 260px; max-width: 260px; }
  .ln-f-cols-group { grid-template-columns: 1fr 1fr 1fr !important; gap: 28px !important; }
}

@media (max-width: 768px) {
  .ln-f-container { padding: 0 24px; }
  /* Stack brand above the 3-col link grid */
  .ln-f-top__grid {
    flex-direction: column !important;
    gap: 40px !important;
    padding: 52px 0 40px !important;
  }
  .ln-f-brand { flex: none; max-width: 100%; width: 100%; }
  /* 3 link cols remain side by side even on mobile */
  .ln-f-cols-group { grid-template-columns: 1fr 1fr 1fr !important; gap: 20px !important; width: 100%; }
  .ln-f-bottom__inner { flex-direction: column; gap: 16px; text-align: center; padding: 20px 0; }
  .ln-f-payment-icons { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  /* On very small phones, allow 2 cols for links */
  .ln-f-cols-group { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
}

/* ============================================================
   HEADER — COMPLETE OVERRIDE (GeneratePress structure)
   Forces the header to match the artifact design exactly.
============================================================ */

/* Kill GeneratePress default colours everywhere in header */
.site-header,
.site-header .inside-header,
#site-header,
#masthead,
.main-navigation-container,
.site-header .grid-container,
.has-inline-mobile-toggle .navigation-branding {
    background: #000000 !important;
}

/* Full-width black header */
.site-header {
    width: 100% !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    padding: 0 !important;
}

/* Inside header — flex row */
.site-header .inside-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 80px !important;
    padding: 0 24px !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    gap: 24px !important;
    flex-wrap: nowrap !important;
}

/* ── LOGO ── */
.site-header .site-logo,
.site-header .site-branding,
.site-header .header-logo {
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.site-header .site-logo img,
.site-header .custom-logo {
    max-height: 44px !important;
    width: auto !important;
    display: block !important;
}

/* Site title fallback (when no logo image) */
.site-header .site-title,
.site-header .site-title a {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    letter-spacing: -0.5px !important;
    white-space: nowrap !important;
}

.site-header .site-description { display: none !important; }

/* ── PRIMARY NAV ── */
.site-header .main-navigation,
.site-header .nav-primary,
#site-navigation {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Nav list */
.site-header .main-navigation ul,
.site-header .nav-primary ul,
.main-navigation .menu,
.nav-primary .menu {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

/* Nav links */
.site-header .main-navigation ul li a,
.site-header .nav-primary ul li a,
.main-navigation .menu li a,
.nav-primary .menu li a {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.85) !important;
    padding: 8px 14px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    white-space: nowrap !important;
    background: transparent !important;
}

.site-header .main-navigation ul li a:hover,
.site-header .nav-primary ul li a:hover,
.main-navigation .menu li:hover > a,
.nav-primary .menu li:hover > a {
    color: #ffffff !important;
    background: rgba(255,255,255,0.08) !important;
}

/* Current/active nav item */
.main-navigation .menu li.current-menu-item > a,
.nav-primary .menu li.current-menu-item > a,
.main-navigation .menu li.current_page_item > a {
    color: var(--ln-gold) !important;
    background: transparent !important;
}

/* Remove GeneratePress nav border/underline effects */
.main-navigation ul li a:after,
.nav-primary ul li a:after,
.generate-primary-nav-item::after,
.generate-primary-nav-item::before { display: none !important; }

/* Drop-down submenus */
.main-navigation ul ul,
.nav-primary ul ul {
    background: #111111 !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 6px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important;
    padding: 6px 0 !important;
    min-width: 180px !important;
    top: 100% !important;
}

.main-navigation ul ul li a,
.nav-primary ul ul li a {
    font-size: 14px !important;
    color: rgba(255,255,255,0.75) !important;
    padding: 10px 16px !important;
    border-radius: 0 !important;
}

.main-navigation ul ul li a:hover,
.nav-primary ul ul li a:hover {
    color: var(--ln-gold) !important;
    background: rgba(255,255,255,0.05) !important;
}

/* ── HEADER ICONS (cart, account) ── */
.site-header .header-widget,
.site-header .nav-widget,
.site-header .generate-inside-navigation,
.site-header .nav-float-right {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

/* WooCommerce cart in header */
.site-header .cart-contents,
.site-header .woocommerce-cart-link {
    position: relative !important;
    color: #ffffff !important;
    padding: 8px 10px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 13px !important;
    text-decoration: none !important;
    background: transparent !important;
}

.site-header .cart-contents:hover,
.site-header .woocommerce-cart-link:hover {
    background: rgba(255,255,255,0.1) !important;
}

.site-header .cart-contents-count,
.site-header .woo-cart-count {
    position: absolute !important;
    top: 2px !important; right: 2px !important;
    background: var(--ln-gold) !important;
    color: #000000 !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    width: 16px !important; height: 16px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

/* ── MOBILE MENU TOGGLE ── */
.menu-toggle,
.mobile-menu-control-wrapper button,
button.menu-toggle {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 8px 14px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.5) !important;
}

/* Toggle bar icon */
.menu-toggle .mobile-menu-icon,
.menu-toggle span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

/* ── MOBILE NAV DRAWER ── */
@media (max-width: 768px) {
    .site-header .inside-header {
        min-height: 64px !important;
        padding: 0 16px !important;
    }

    /* Hide primary nav, show toggle */
    .main-navigation:not(.toggled),
    .nav-primary:not(.toggled) {
        /* GeneratePress handles show/hide on mobile — just style it */
    }

    /* Mobile nav panel */
    .main-navigation.toggled .menu,
    .nav-primary.toggled .menu {
        background: #111111 !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
        padding: 12px 0 !important;
    }

    .main-navigation.toggled ul li a,
    .nav-primary.toggled ul li a {
        font-size: 15px !important;
        padding: 12px 20px !important;
        border-radius: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    }
}

/* ── REMOVE GENERATEPRESS DOUBLE FOOTER ── */
/* Hide the built-in GP copyright bar */
.site-info,
#site-info,
.generated-by-gp {
    display: none !important;
}

/* Also hide any GP-generated footer if our custom one is present */
.site-footer .site-info { display: none !important; }

/* ── TOPBAR ABOVE HEADER ── */
.ln-header-topbar {
    background: #000000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    height: 38px;
    display: flex;
    align-items: center;
    width: 100%;
}

.ln-topbar-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0 24px !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    .ln-header-topbar { display: none !important; }
}

/* ============================================================
   CUSTOM HEADER — FULL STYLES
   Matches design artifact 1:1 — desktop & mobile
============================================================ */

/* ── Shared container ── */
.lnh-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ── ANNOUNCEMENT BAR ── */
.lnh-announce {
  background: var(--ln-black);
  color: var(--ln-white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lnh-announce__track {
  display: flex;
  animation: lnh-marquee 22s linear infinite;
  white-space: nowrap;
  gap: 80px;
  flex-shrink: 0;
}

.lnh-announce__track span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lnh-announce__track span::before {
  content: '✦';
  color: var(--ln-gold);
  font-size: 10px;
}

@keyframes lnh-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── TOPBAR ── */
.lnh-topbar {
  background: var(--ln-black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 38px;
  display: flex;
  align-items: center;
}

.lnh-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lnh-topbar__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lnh-topbar__social {
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--ln-transition);
}

.lnh-topbar__social:hover { color: var(--ln-gold); }

.lnh-topbar__nav { display: flex; align-items: center; }

.lnh-topbar__menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lnh-topbar__menu li a {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: var(--ln-transition);
}

.lnh-topbar__menu li a:hover { color: var(--ln-gold); }

/* ── MAIN HEADER — redesign: cream bg, gold border ── */
.lnh-header {
  background: var(--ln-cream);
  border-bottom: 1px solid rgba(200,150,42,0.25);
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.lnh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* ── LOGO ── */
.lnh-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.lnh-logo__img {
  max-height: 44px;
  width: auto;
  display: block;
}

/*
 * WHITE LOGO → ESPRESSO FILTER
 * The site logo is white (designed for dark bg).
 * Header is now cream, so we recolour it via CSS filter:
 *   brightness(0)     → all pixels → black
 *   sepia(1)          → black → warm sepia
 *   hue-rotate(340deg)→ shift toward red-brown
 *   saturate(1.6)     → richer brown
 *   brightness(0.38)  → darken to espresso depth
 * Result: white logo reads as dark espresso brown on cream.
 */
.lnh-logo__img--filtered {
  filter: brightness(0) sepia(1) hue-rotate(340deg) saturate(1.6) brightness(0.38);
  transition: filter 0.3s ease;
}
.lnh-logo:hover .lnh-logo__img--filtered {
  filter: brightness(0) sepia(1) hue-rotate(25deg) saturate(3) brightness(0.75);
  /* on hover → shifts to gold tone */
}

/* SVG text logo fallback */
.lnh-logo__svg {
  display: block;
  overflow: visible;
}

.lnh-logo__text {
  font-family: var(--ln-font-display);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: var(--ln-espresso);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ── DESKTOP NAV ── */
.lnh-nav--desktop {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lnh-nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lnh-nav__menu > li > a {
  font-family: var(--ln-font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ln-bark);
  padding: 8px 14px;
  border-radius: 0;
  transition: color 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.lnh-nav__menu > li > a:hover {
  color: var(--ln-gold);
  background: transparent;
}

.lnh-nav__menu > li.current-menu-item > a,
.lnh-nav__menu > li.current_page_item > a {
  color: var(--ln-gold);
}

/* Submenu */
.lnh-nav__menu li {
  position: relative;
}

.lnh-nav__menu li ul {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--ln-cream);
  border: 1px solid rgba(200,150,42,0.2);
  box-shadow: 0 8px 32px rgba(28,20,16,0.1);
  padding: 6px 0;
  min-width: 180px;
  list-style: none;
  z-index: 100;
}

.lnh-nav__menu li:hover > ul { display: block; }

.lnh-nav__menu li ul li a {
  font-family: var(--ln-font);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ln-bark);
  padding: 10px 16px;
  display: block;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lnh-nav__menu li ul li a:hover {
  color: var(--ln-gold);
  background: rgba(200,150,42,0.05);
}

/* ── HEADER ICONS ── */
.lnh-header__icons {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* Sign in button */
.lnh-signin-btn {
  font-family: var(--ln-font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ln-bark);
  padding: 6px 14px;
  border: 1px solid rgba(200,150,42,0.3);
  border-radius: 0;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.lnh-signin-btn:hover {
  background: var(--ln-gold);
  border-color: var(--ln-gold);
  color: var(--ln-white);
}

/* Icon buttons (wishlist, cart) */
.lnh-icon-btn {
  position: relative;
  background: transparent;
  border: none;
  color: var(--ln-bark);
  padding: 8px 10px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: none;
}

.lnh-icon-btn:hover {
  background: transparent;
  color: var(--ln-gold);
}

.lnh-icon-btn__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--ln-gold);
  color: var(--ln-white);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger — hidden on desktop */
.lnh-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(200,150,42,0.35);
  border-radius: 0;
  padding: 9px 11px;
  cursor: pointer;
  transition: border-color 0.2s ease;
  width: 42px;
  height: 38px;
}

.lnh-hamburger:hover { border-color: var(--ln-gold); }

.lnh-hamburger__bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ln-bark);
  border-radius: 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.lnh-hamburger.open .lnh-hamburger__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.lnh-hamburger.open .lnh-hamburger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lnh-hamburger.open .lnh-hamburger__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ── */
.lnh-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lnh-mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── MOBILE NAV DRAWER — redesign: espresso with gold accents ── */
.lnh-mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--ln-espresso);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 40px rgba(28,20,16,0.4);
  overflow-y: auto;
}

.lnh-mobile-nav.open {
  right: 0;
}

.lnh-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(200,150,42,0.2);
  flex-shrink: 0;
}

/* Logo text inside drawer */
.lnh-mobile-nav__head .lnh-logo__text {
  color: var(--ln-white);
  font-size: 20px;
}

.lnh-mobile-nav__close {
  background: transparent;
  border: 1px solid rgba(200,150,42,0.3);
  border-radius: 0;
  color: var(--ln-stone);
  font-size: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  line-height: 1;
}

.lnh-mobile-nav__close:hover {
  color: var(--ln-gold);
  border-color: var(--ln-gold);
}

.lnh-mobile-nav__body {
  flex: 1;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}

/* Mobile menu links */
.lnh-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.lnh-mobile-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--ln-font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ln-stone);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,150,42,0.08);
  transition: color 0.2s ease;
}

.lnh-mobile-menu li a:hover,
.lnh-mobile-menu li.current-menu-item a {
  color: var(--ln-gold);
  background: rgba(200,150,42,0.04);
}

/* Mobile sub-menu */
.lnh-mobile-menu li ul {
  list-style: none;
  padding: 0;
  background: rgba(255,255,255,0.02);
}

.lnh-mobile-menu li ul li a {
  padding-left: 44px;
  font-size: 11px;
  color: rgba(140,123,107,0.8);
}

/* Mobile nav footer */
.lnh-mobile-nav__footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(200,150,42,0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.lnh-mobile-signin {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--ln-gold);
  color: var(--ln-espresso);
  font-family: var(--ln-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s ease;
}

.lnh-mobile-signin:hover { background: var(--ln-gold-hover); color: var(--ln-espresso); }

.lnh-mobile-nav__social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.lnh-mobile-nav__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200,150,42,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ln-stone);
  text-decoration: none;
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s;
}

.lnh-mobile-nav__social a:hover { border-color: var(--ln-gold); color: var(--ln-gold); }

/* ── HIDE GENERATEPRESS DEFAULT HEADER ── */
/* These selectors kill any GP header remnants */
.site-header:not(.lnh-header),
#site-header:not(.lnh-header),
#masthead:not(.lnh-header) {
  display: none !important;
}

/* Kill GP announcement bar duplicate */
.lnh-announce ~ .ln-announcement-bar { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  /* Hide sign in text button on smaller desktop */
  .lnh-signin-btn { display: none; }
}

@media (max-width: 768px) {
  /* Hide desktop nav and topbar on mobile */
  .lnh-topbar     { display: none; }
  .lnh-nav--desktop { display: none; }

  /* Show hamburger */
  .lnh-hamburger { display: flex; }

  /* Tighter header — matches redesign mobile height */
  .lnh-header__inner { height: 60px; gap: 12px; }
  .lnh-logo__img { max-height: 34px; }
  .lnh-logo__text { font-size: 20px; }

  /* Icon buttons tighter on mobile */
  .lnh-icon-btn { padding: 6px 8px; }
}

@media (max-width: 480px) {
  .lnh-container { padding: 0 16px; }
}

/* ── Mobile nav — initial state (off screen, visible in DOM) ── */
.lnh-mobile-nav {
  right: -320px !important;  /* off screen by default */
  visibility: visible !important;
}

/* Open state */
.lnh-mobile-nav.open {
  right: 0 !important;
}

/* Body lock when nav or cart open */
body.lnh-nav-open,
body.lnh-cart-open {
  overflow: hidden !important;
}

/* Scrolled header */
.lnh-header--scrolled {
  box-shadow: 0 2px 20px rgba(28,20,16,0.1) !important;
}

/* Hide functions.php announcement bar if header.php runs */
body .ln-announcement-bar:not(.lnh-announce) {
  display: none !important;
}

/* Hide functions.php topbar if header.php runs */
body .ln-header-topbar {
  display: none !important;
}

/* ============================================================
   POLISH PASS — ALL FIXES
   Mobile-first, hero/header untouched.
============================================================ */

/* ── 1. GLOBAL PAGE PADDING ──────────────────────────────
   Every page content area gets breathing room on mobile.    */

/* WooCommerce pages */
.woocommerce,
.woocommerce-page .woocommerce,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
    padding-left: 0;
    padding-right: 0;
}

/* Grid container already has 24px padding on desktop.
   Ensure it applies on all breakpoints. */
.grid-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* GeneratePress inner content */
.inside-article,
.entry-content,
.singular .entry-content {
    padding-left: 0;
    padding-right: 0;
}

/* WooCommerce shop/archive — ensure wrapper has padding */
.ln-shop-layout .grid-container,
.ln-single-product-wrap .grid-container,
.ln-cart-page .grid-container,
.woocommerce-checkout .grid-container,
.ln-contact-section .grid-container,
.ln-about-story .grid-container,
.ln-about-mission .grid-container,
.ln-faq-section .grid-container,
.ln-featured-products .grid-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Footer inner padding */
.ln-footer .grid-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

@media (max-width: 768px) {
    .grid-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* ── 2. TRUST BADGES — MOBILE MARQUEE ───────────────────
   Desktop: 3-column grid (unchanged).
   Mobile: horizontal scrolling marquee strip.             */

/* Desktop trust bar stays as-is — only mobile changes */
@media (max-width: 768px) {

    .ln-trust-bar {
        overflow: hidden;
        border-bottom: 1px solid var(--ln-border);
    }

    /* Hide the grid on mobile */
    .ln-trust-bar__inner {
        display: block !important;
        padding: 0 !important;
    }

    /* Build a marquee from the trust items */
    .ln-trust-bar__inner {
        overflow: hidden;
        white-space: nowrap;
    }

    /* Wrap items in a scrolling track via CSS animation */
    .ln-trust-bar .ln-trust-item {
        display: inline-flex !important;
        border-right: 1px solid var(--ln-border) !important;
        border-bottom: none !important;
        padding: 14px 24px !important;
        white-space: nowrap;
        vertical-align: middle;
        flex-shrink: 0;
    }

    /* Smaller icon on mobile */
    .ln-trust-bar .ln-trust-icon {
        width: 34px !important;
        height: 34px !important;
    }

    .ln-trust-bar .ln-trust-icon svg {
        width: 17px !important;
        height: 17px !important;
    }

    /* Smaller text on mobile */
    .ln-trust-bar .ln-trust-text strong {
        font-size: 13px !important;
    }

    .ln-trust-bar .ln-trust-text span {
        font-size: 11px !important;
    }

    /* Animate the inner container */
    .ln-trust-bar__inner {
        animation: trust-scroll 14s linear infinite;
        width: max-content;
    }

    @keyframes trust-scroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Pause on hover/touch */
    .ln-trust-bar:hover .ln-trust-bar__inner,
    .ln-trust-bar:active .ln-trust-bar__inner {
        animation-play-state: paused;
    }
}

/* Desktop — slightly smaller trust items too */
@media (min-width: 769px) {
    .ln-trust-item { padding: 18px 20px !important; }
    .ln-trust-icon { width: 40px !important; height: 40px !important; }
    .ln-trust-icon svg { width: 20px !important; height: 20px !important; }
    .ln-trust-text strong { font-size: 13px !important; }
    .ln-trust-text span   { font-size: 11px !important; }
}

/* ── 3. FOOTER — TWO COLUMN ON MOBILE ───────────────────  */
@media (max-width: 768px) {

    /* Brand column: full width */
    .ln-footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
    }

    /* Brand column spans both columns */
    .ln-footer-col--brand {
        grid-column: 1 / -1 !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    /* Link columns sit side by side */
    .ln-footer-col:not(.ln-footer-col--brand) {
        min-width: 0;
    }

    /* Tighter heading */
    .ln-footer-col-heading,
    .ln-footer-widget-title {
        font-size: 13px !important;
        margin-bottom: 12px !important;
    }

    /* Tighter link spacing */
    .ln-footer-col .widget_nav_menu ul,
    .ln-footer-col .ln-footer-menu {
        gap: 8px !important;
    }

    .ln-footer-col .widget_nav_menu ul li a,
    .ln-footer-col .ln-footer-menu li a {
        font-size: 12px !important;
    }

    /* Newsletter form stacks nicely */
    .ln-newsletter-form__wrap {
        flex-direction: column !important;
        border-radius: 6px !important;
    }

    .ln-newsletter-input {
        border-radius: 6px 6px 0 0 !important;
        padding: 12px 14px !important;
    }

    .ln-newsletter-btn {
        border-radius: 0 0 6px 6px !important;
        padding: 11px !important;
    }

    /* Contact details in footer */
    .ln-footer-contact-details {
        margin-top: 14px !important;
        padding-top: 12px !important;
    }

    /* Bottom bar */
    .ln-footer-bottom__inner {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
        padding: 16px 0 !important;
    }
}

@media (max-width: 400px) {
    /* Very small screens — single column footer */
    .ln-footer-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── 4. SHOP PAGE — REMOVE DUPLICATE TOOLBAR ────────────  */

/* WooCommerce outputs its own toolbar AND our custom one
   from archive-product.php — hide the WC default one.     */
.ln-shop-main .woocommerce-products-header,
.woocommerce-products-header { display: none !important; }

/* Hide WC default sorting/count if our custom toolbar exists */
.ln-shop-main > .woocommerce-ordering,
.ln-shop-main > .woocommerce-result-count,
.ln-shop-main > form.woocommerce-ordering {
    display: none !important;
}

/* Shop toolbar mobile tidy */
@media (max-width: 600px) {
    .ln-shop-toolbar {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        padding: 12px !important;
    }

    .ln-toolbar-left,
    .toolbar-controls {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .woocommerce-ordering select {
        min-width: unset !important;
        width: 100% !important;
        font-size: 13px !important;
    }
}

/* ── 5. SINGLE PRODUCT — MOBILE PADDING ─────────────────  */
@media (max-width: 768px) {

    .woocommerce div.product {
        padding: 0 !important;
    }

    .woocommerce div.product .product_title {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .woocommerce div.product p.price,
    .woocommerce div.product span.price {
        font-size: 22px !important;
    }

    /* Gallery takes full width */
    .woocommerce div.product div.images {
        width: 100% !important;
        float: none !important;
        margin-bottom: 24px !important;
    }

    /* Details below gallery */
    .woocommerce div.product div.summary {
        width: 100% !important;
        float: none !important;
        clear: both !important;
        padding: 0 !important;
    }

    /* Tabs full width */
    .woocommerce div.product .woocommerce-tabs {
        padding: 0 !important;
    }

    /* Related products 2-col on mobile */
    .woocommerce ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ── 6. CART PAGE — MOBILE PADDING ──────────────────────  */
@media (max-width: 768px) {

    .ln-cart-page {
        padding: 0 !important;
    }

    .ln-cart-layout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding-bottom: 40px !important;
    }

    /* Cart table responsive */
    .shop_table.cart {
        border: none !important;
    }

    .shop_table.cart thead {
        display: none !important;
    }

    .shop_table.cart tr.cart_item {
        display: grid !important;
        grid-template-columns: 72px 1fr auto !important;
        align-items: start !important;
        gap: 12px !important;
        padding: 16px 0 !important;
        border-bottom: 1px solid var(--ln-border) !important;
    }

    .shop_table.cart td {
        padding: 0 !important;
        border: none !important;
    }

    .shop_table.cart td.product-remove {
        grid-row: 1 !important;
        grid-column: 3 !important;
        text-align: right !important;
    }

    .shop_table.cart td.product-thumbnail {
        grid-row: 1 / 3 !important;
        grid-column: 1 !important;
    }

    .shop_table.cart td.product-thumbnail img {
        width: 72px !important;
        height: 72px !important;
        object-fit: cover !important;
    }

    .shop_table.cart td.product-name {
        grid-row: 1 !important;
        grid-column: 2 !important;
    }

    .shop_table.cart td.product-price {
        display: none !important;
    }

    .shop_table.cart td.product-quantity {
        grid-row: 2 !important;
        grid-column: 2 !important;
    }

    .shop_table.cart td.product-subtotal {
        grid-row: 2 !important;
        grid-column: 3 !important;
        font-weight: 700 !important;
        font-size: 14px !important;
    }

    /* Actions row */
    .shop_table.cart tr.actions td {
        grid-column: 1 / -1 !important;
        display: block !important;
    }

    .ln-cart-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .ln-coupon-form {
        max-width: 100% !important;
    }

    /* Totals */
    .ln-order-summary {
        margin-top: 0 !important;
    }
}

/* ── 7. CHECKOUT — MOBILE ────────────────────────────────  */
@media (max-width: 768px) {

    .ln-checkout-layout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding-bottom: 40px !important;
    }

    .ln-form-block-body {
        padding: 16px !important;
    }

    .woocommerce-checkout .col2-set,
    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2 {
        width: 100% !important;
        float: none !important;
    }
}

/* ── 8. SHOP ARCHIVE — MOBILE LAYOUT ────────────────────  */
@media (max-width: 768px) {

    .ln-shop-page-header {
        padding: 20px 0 0 !important;
    }

    .ln-shop-page-header .page-title {
        font-size: 24px !important;
        margin-bottom: 16px !important;
    }

    .ln-cat-tabs { padding-bottom: 0; }

    .ln-cat-tab {
        font-size: 13px !important;
        padding: 10px 14px !important;
    }

    .ln-shop-layout { padding: 16px 0 48px !important; }

    .ln-shop-inner {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* Product card text tighter on mobile */
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 12px !important;
        padding: 6px 10px 0 !important;
    }

    .woocommerce ul.products li.product .price {
        padding: 4px 10px 0 !important;
        font-size: 13px !important;
    }

    .woocommerce ul.products li.product a.button {
        margin: 8px 10px 10px !important;
        width: calc(100% - 20px) !important;
        font-size: 11px !important;
        padding: 8px 10px !important;
    }
}

/* ── 9. BREADCRUMB PADDING ───────────────────────────────  */
.ln-breadcrumb-wrap {
    padding: 0 !important;
}

.ln-breadcrumb-wrap .grid-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

@media (max-width: 768px) {
    .ln-breadcrumb-wrap .grid-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .woocommerce-breadcrumb {
        padding: 12px 16px !important;
    }
}

/* ── 10. ABOUT / CONTACT PAGES — MOBILE ─────────────────  */
@media (max-width: 768px) {

    .ln-about-hero    { padding: 56px 16px !important; }
    .ln-contact-hero  { padding: 56px 16px !important; }
    .ln-about-story   { padding: 48px 0 !important; }
    .ln-about-mission { padding: 48px 0 !important; }
    .ln-about-cta     { padding: 48px 16px !important; }
    .ln-contact-section { padding: 40px 0 48px !important; }
    .ln-faq-section   { padding: 40px 0 !important; }

    .ln-contact-layout {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .ln-info-card {
        padding: 14px !important;
    }

    .ln-fallback-form .ln-field-row-2 {
        grid-template-columns: 1fr !important;
    }
}

/* ── 11. GENERAL MOBILE POLISH ───────────────────────────  */
@media (max-width: 768px) {

    /* Buttons don't overflow on small screens */
    .ln-btn {
        font-size: 14px !important;
        padding: 12px 24px !important;
    }

    /* Section headings scale down */
    .ln-section-title { font-size: 26px !important; }
    .ln-eyebrow       { font-size: 11px !important; }
    .ln-section-sub   { font-size: 13px !important; }

    /* Featured products section on homepage */
    .ln-featured-products { padding: 48px 0 !important; }
    .ln-section-heading   { margin-bottom: 32px !important; }
    .ln-view-all          { margin-top: 32px !important; }

    /* Homepage product grid 2-col */
    .ln-featured-products .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
}

/* ── TRUST BAR — DUAL STRUCTURE ─────────────────────────
   Desktop: 3-col grid  |  Mobile: horizontal marquee      */

/* Desktop */
.ln-trust-bar__desktop {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    padding: 0 !important;
}

.ln-trust-bar__mobile { display: none !important; }

/* Mobile */
@media (max-width: 768px) {

    .ln-trust-bar__desktop { display: none !important; }

    .ln-trust-bar__mobile {
        display: block !important;
        overflow: hidden !important;
        border-bottom: 1px solid var(--ln-border) !important;
    }

    .ln-trust-bar__track {
        display: flex !important;
        align-items: center !important;
        width: max-content !important;
        animation: ln-trust-scroll 16s linear infinite !important;
    }

    .ln-trust-bar__mobile:hover .ln-trust-bar__track {
        animation-play-state: paused !important;
    }

    @keyframes ln-trust-scroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .ln-trust-bar__mobile .ln-trust-item {
        display: inline-flex !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 12px 20px !important;
        border-right: 1px solid var(--ln-border) !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .ln-trust-bar__mobile .ln-trust-icon {
        width: 32px !important;
        height: 32px !important;
        flex-shrink: 0 !important;
    }

    .ln-trust-bar__mobile .ln-trust-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    .ln-trust-bar__mobile .ln-trust-text strong {
        font-size: 13px !important;
        display: block !important;
        white-space: nowrap !important;
    }

    .ln-trust-bar__mobile .ln-trust-text span {
        font-size: 11px !important;
        white-space: nowrap !important;
        color: var(--ln-text-muted) !important;
    }
}

/* ============================================================
   TYPOGRAPHY OVERHAUL
   Cormorant Garamond (serif) for headings — premium, elegant
   DM Sans (sans-serif) for body, buttons, nav — clean, modern
   Matches reference theme typography system exactly.
============================================================ */

/* ── 1. UPDATE FONT TOKENS ── */
:root {
    --ln-font:         'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ln-font-serif:   'Cormorant Garamond', Georgia, serif;
    --ln-font-sans:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── 2. BODY ── */
body {
    font-family: var(--ln-font-sans) !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1.65 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* ── 3. ALL HEADINGS — Cormorant Garamond ── */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--ln-font-serif) !important;
    font-weight: 400 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.01em !important;
    color: var(--ln-black) !important;
}

/* Fluid heading sizes */
h1, .h1 { font-size: clamp(36px, 5vw, 72px) !important; }
h2, .h2 { font-size: clamp(28px, 3.5vw, 48px) !important; }
h3, .h3 { font-size: clamp(22px, 2.5vw, 34px) !important; }
h4, .h4 { font-size: clamp(18px, 2vw, 26px) !important; }
h5, .h5 { font-size: 20px !important; }
h6, .h6 { font-size: 16px !important; }

/* ── 4. BODY COPY ── */
p, li, td, th, label, input, textarea, select, blockquote {
    font-family: var(--ln-font-sans) !important;
    font-weight: 300 !important;
    line-height: 1.7 !important;
}

strong, b { font-weight: 500 !important; }

/* ── 5. EYEBROW / LABEL TAGS ── */
.ln-eyebrow,
.section-eyebrow,
.ln-about-hero__eyebrow,
.ln-contact-hero__eyebrow,
.ln-hero__eyebrow,
.product-category,
.ln-product-cat,
.ln-cat-pill__name {
    font-family: var(--ln-font-sans) !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
}

/* ── 6. NAVIGATION ── */
.lnh-nav__menu > li > a,
.lnh-mobile-menu li a,
.lnh-topbar__menu li a,
.lnh-signin-btn,
.lnh-topbar__social {
    font-family: var(--ln-font-sans) !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
}

.lnh-nav__menu > li > a {
    font-size: 14px !important;
}

/* ── 7. BUTTONS ── */
.button,
.btn,
.ln-btn,
.wp-block-button__link,
button[type="submit"],
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.ln-newsletter-btn,
.ln-submit-btn,
.ln-mobile-signin,
.ln-side-cart__checkout,
.checkout-btn,
.place-order-btn,
.ln-cat-pill__name {
    font-family: var(--ln-font-sans) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

/* Keep btn sizes reasonable despite uppercase */
.ln-btn,
.button,
.woocommerce a.button,
.woocommerce button.button {
    padding: 14px 32px !important;
    font-size: 11px !important;
}

/* ── 8. PRODUCT CARD TYPOGRAPHY ── */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.ln-featured-products .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--ln-font-serif) !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.25 !important;
}

.woocommerce ul.products li.product .price,
.ln-featured-products .woocommerce ul.products li.product .price {
    font-family: var(--ln-font-sans) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.ln-product-cat {
    font-family: var(--ln-font-sans) !important;
    font-size: 9px !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em !important;
}

/* ── 9. SINGLE PRODUCT ── */
.woocommerce div.product .product_title {
    font-family: var(--ln-font-serif) !important;
    font-size: clamp(26px, 3vw, 42px) !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.1 !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-family: var(--ln-font-sans) !important;
    font-size: 24px !important;
    font-weight: 400 !important;
}

/* ── 10. HERO HEADINGS ── */
.ln-hero__title {
    font-family: var(--ln-font-serif) !important;
    font-size: clamp(36px, 5.5vw, 80px) !important;
    font-weight: 400 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
}

.ln-hero__eyebrow {
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.2em !important;
}

.ln-hero__desc {
    font-family: var(--ln-font-sans) !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1.75 !important;
}

/* ── 11. SECTION HEADINGS ── */
.ln-section-title,
.ln-about-hero__heading,
.ln-contact-hero h1,
.ln-about-story__text h2,
.ln-about-mission h2,
.ln-about-cta h2,
.ln-contact-form-head h2 {
    font-family: var(--ln-font-serif) !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
}

.ln-section-sub,
.ln-about-story__text p,
.ln-about-mission__lead,
.ln-about-cta p,
.ln-contact-intro p {
    font-family: var(--ln-font-sans) !important;
    font-weight: 300 !important;
    line-height: 1.75 !important;
}

/* ── 12. FOOTER TYPOGRAPHY ── */
.ln-footer-logo--text {
    font-family: var(--ln-font-serif) !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
}

.ln-footer-col-heading,
.ln-footer-widget-title {
    font-family: var(--ln-font-sans) !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
}

.ln-footer-tagline,
.ln-footer-col .widget_nav_menu ul li a,
.ln-footer-col .ln-footer-menu li a,
.ln-footer-copyright {
    font-family: var(--ln-font-sans) !important;
    font-weight: 300 !important;
}

.ln-newsletter-input {
    font-family: var(--ln-font-sans) !important;
    font-weight: 300 !important;
    font-size: 13px !important;
}

/* ── 13. FORMS & INPUTS ── */
.woocommerce .input-text,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce select,
.woocommerce textarea,
.ln-fallback-form input,
.ln-fallback-form textarea,
.field-input,
.field-textarea,
.field-select {
    font-family: var(--ln-font-sans) !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    letter-spacing: 0 !important;
}

/* Form labels */
.woocommerce label,
.field-label,
.ln-field-group label {
    font-family: var(--ln-font-sans) !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

/* ── 14. CART / CHECKOUT TYPOGRAPHY ── */
.ln-step {
    font-family: var(--ln-font-sans) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em !important;
}

.ln-step--active {
    font-weight: 500 !important;
}

.shop_table th {
    font-family: var(--ln-font-sans) !important;
    font-size: 9px !important;
    font-weight: 500 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

/* ── 15. CATEGORY PILL NAME ── */
.ln-cat-pill__name {
    font-family: var(--ln-font-sans) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: var(--ln-black) !important;
}

/* ── 16. ANNOUNCEMENT BAR ── */
.lnh-announce__track span,
.lnh-announce {
    font-family: var(--ln-font-sans) !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    letter-spacing: 0.06em !important;
}

/* ── 17. TRUST BAR ── */
.ln-trust-text strong {
    font-family: var(--ln-font-sans) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em !important;
}

.ln-trust-text span {
    font-family: var(--ln-font-sans) !important;
    font-size: 11px !important;
    font-weight: 300 !important;
}

/* ── 18. FAQ ── */
.ln-faq-question {
    font-family: var(--ln-font-serif) !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
}

.ln-faq-answer {
    font-family: var(--ln-font-sans) !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
}

/* ── 19. SHOP TOOLBAR ── */
.woocommerce-result-count,
.woocommerce-ordering select,
.ln-cat-tab {
    font-family: var(--ln-font-sans) !important;
    font-weight: 400 !important;
}

.ln-cat-tab {
    font-size: 13px !important;
    letter-spacing: 0.02em !important;
}

/* ── 20. PERFORMANCE: font-display swap already handled by Google's URL ── */

/* ============================================================
   PRODUCT CARD — UNIFIED DESIGN + ALL FIXES
   Applied to both homepage and archive pages.
============================================================ */

/* ── 1. UNIFORM CARD GRID ── */
.woocommerce ul.products,
.ln-featured-products .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: stretch !important;
}

/* ── 2. UNIFORM CARD STRUCTURE ── */
/* Each card is a flex column so footer (button) always sticks to bottom */
.woocommerce ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
    background: var(--ln-white) !important;
    border: 1px solid var(--ln-border) !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    margin: 0 !important;
    width: auto !important;
    float: none !important;
    clear: none !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product:hover {
    border-color: #ccc !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
    transform: translateY(-2px) !important;
}

/* ── 3. PRODUCT IMAGE — fixed square ratio ── */
.woocommerce ul.products li.product a:first-child,
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block !important;
    position: relative !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

/* Force 1:1 square image container */
.woocommerce ul.products li.product a:first-child::before,
.woocommerce ul.products li.product .woocommerce-loop-product__link::before {
    content: '' !important;
    display: block !important;
    padding-top: 100% !important;
}

.woocommerce ul.products li.product img {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
    display: block !important;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.04) !important;
}

/* ── 4. CATEGORY LABEL ── */
.woocommerce ul.products li.product .ln-product-cat {
    font-family: var(--ln-font-sans) !important;
    font-size: 9px !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--ln-text-muted) !important;
    display: block !important;
    padding: 12px 14px 0 !important;
    flex-shrink: 0 !important;
}

/* ── 5. PRODUCT TITLE — fixed 2-line height ── */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--ln-font-serif) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    color: var(--ln-black) !important;
    padding: 8px 14px 6px !important;
    margin: 0 !important;
    /* Lock to exactly 2 lines so all cards stay same height */
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: calc(16px * 1.3 * 2) !important; /* 2 line-heights */
    flex-shrink: 0 !important;
}

/* ── 6. PRICE ── */
.woocommerce ul.products li.product .price {
    font-family: var(--ln-font-sans) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--ln-black) !important;
    padding: 4px 14px 0 !important;
    margin: 0 !important;
    display: block !important;
    flex-shrink: 0 !important;
}

.woocommerce ul.products li.product .price del {
    color: var(--ln-mid-gray) !important;
    font-weight: 300 !important;
    margin-right: 5px !important;
    font-size: 12px !important;
}

.woocommerce ul.products li.product .price ins {
    color: var(--ln-red) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

/* Spacer — pushes button to bottom regardless of content height */
.woocommerce ul.products li.product .woocommerce-loop-product__title + *,
.woocommerce ul.products li.product .price {
    flex-grow: 0 !important;
}

/* Invisible spacer flex element */
.woocommerce ul.products li.product::after {
    content: '' !important;
    flex: 1 !important;
    display: block !important;
    min-height: 10px !important;
}

/* ── 7. ADD TO CART BUTTON — always at bottom ── */
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .button {
    margin: 10px 14px 14px !important;
    width: calc(100% - 28px) !important;
    display: block !important;
    background: var(--ln-black) !important;
    color: var(--ln-white) !important;
    border: 1px solid var(--ln-black) !important;
    border-radius: var(--ln-radius-btn) !important;
    padding: 10px 16px !important;
    font-family: var(--ln-font-sans) !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    order: 99 !important; /* always last */
}

.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product .button:hover {
    background: var(--ln-gold) !important;
    border-color: var(--ln-gold) !important;
    color: var(--ln-white) !important;
}

/* ── 8. SALE BADGE — small pill, not full-width bar ── */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
    /* Remove any inherited styles that make it full-width */
    display: inline-block !important;
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
    width: auto !important;
    max-width: 38% !important;
    min-width: unset !important;
    min-height: unset !important;
    /* Pill styling */
    background: var(--ln-gold) !important;
    color: var(--ln-black) !important;
    font-family: var(--ln-font-sans) !important;
    font-size: 9px !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 4px 10px !important;
    border-radius: 2px !important;
    line-height: 1.4 !important;
    z-index: 2 !important;
    /* Remove circle/round shape WC sometimes uses */
    border-radius: 2px !important;
    transform: none !important;
    text-align: center !important;
}

/* ── 9. HOVER OVERLAY BUTTONS — fix invisible icons ── */
.ln-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0,0,0,0.18) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    pointer-events: none !important;
    z-index: 3 !important;
}

.woocommerce ul.products li.product:hover .ln-overlay {
    opacity: 1 !important;
    pointer-events: all !important;
}

/* The three circle buttons — dark bg, white icon */
.ln-ov-btn {
    width: 36px !important;
    height: 36px !important;
    background: rgba(0,0,0,0.75) !important;       /* dark, not white */
    color: var(--ln-white) !important;              /* white icon */
    border: 1px solid rgba(255,255,255,0.25) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    transform: translateY(10px) !important;
    opacity: 0 !important;
    backdrop-filter: blur(4px) !important;
}

.ln-ov-btn svg {
    stroke: var(--ln-white) !important;
    fill: none !important;
}

.woocommerce ul.products li.product:hover .ln-ov-btn {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

.woocommerce ul.products li.product:hover .ln-ov-btn:nth-child(1) { transition-delay: 0s !important; }
.woocommerce ul.products li.product:hover .ln-ov-btn:nth-child(2) { transition-delay: 0.05s !important; }
.woocommerce ul.products li.product:hover .ln-ov-btn:nth-child(3) { transition-delay: 0.1s !important; }

.ln-ov-btn:hover {
    background: var(--ln-gold) !important;
    border-color: var(--ln-gold) !important;
    color: var(--ln-black) !important;
}

.ln-ov-btn:hover svg { stroke: var(--ln-black) !important; }

/* ── 10. HOMEPAGE CARD OVERRIDES (matching archive style) ── */
.ln-featured-products .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
}

.ln-featured-products .woocommerce ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
}

/* ── 11. HIDE DOUBLE PAGINATION ── */
/* WooCommerce outputs its own pagination AND our custom one.
   Hide the WC default; keep ours from archive-product.php  */
.woocommerce-pagination + .woocommerce-pagination,
.woocommerce nav.woocommerce-pagination + nav.woocommerce-pagination {
    display: none !important;
}

/* Also hide the GP/widget-generated pagination duplicates */
.ln-shop-main .woocommerce-pagination:not(:first-of-type) {
    display: none !important;
}

/* ── 12. HIDE STRAY MENU UNDER SHOP PAGES ── */
/* The "Category" menu/widget appearing below product grid */
.ln-shop-main .widget,
.ln-shop-main .widget_nav_menu,
.ln-shop-main .widget_product_categories,
.woocommerce-page .site-content > .widget,
.woocommerce-page .site-content > nav:not(.woocommerce-pagination):not(.ln-shop-toolbar),
/* GP sometimes outputs a secondary nav in content */
.site-content .widget_nav_menu { display: none !important; }

/* ── 13. HIDE RESULTS COUNT, KEEP SORT + FILTER ── */
.woocommerce-result-count { display: none !important; }

/* Tidy up the toolbar so sort + filter sit cleanly side by side */
.ln-toolbar-left .woocommerce-result-count { display: none !important; }

/* The WooCommerce default ordering form — style to match design */
.woocommerce-ordering {
    margin: 0 !important;
    float: none !important;
}

.woocommerce-ordering select {
    font-family: var(--ln-font-sans) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    border: 1px solid var(--ln-border) !important;
    border-radius: 2px !important;
    padding: 9px 32px 9px 12px !important;
    color: var(--ln-text) !important;
    background-color: var(--ln-white) !important;
    min-width: 160px !important;
    height: auto !important;
}

/* ── 14. RESPONSIVE CARD GRID ── */
@media (max-width: 1024px) {
    ul.products.ln-products-grid,
    .woocommerce ul.products:not(.ln-products-grid),
    .ln-featured-products .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    ul.products.ln-products-grid,
    .woocommerce ul.products:not(.ln-products-grid),
    .ln-featured-products .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    ul.products.ln-products-grid li.product .woocommerce-loop-product__title,
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 14px !important;
        padding: 6px 10px 4px !important;
    }

    ul.products.ln-products-grid li.product .price,
    .woocommerce ul.products li.product .price {
        font-size: 13px !important;
        padding: 2px 10px 0 !important;
    }

    ul.products.ln-products-grid li.product a.button,
    .woocommerce ul.products li.product a.button {
        margin: 8px 10px 10px !important;
        width: calc(100% - 20px) !important;
        font-size: 9px !important;
        padding: 9px 10px !important;
    }

    ul.products.ln-products-grid li.product .ln-product-cat,
    .woocommerce ul.products li.product .ln-product-cat {
        font-size: 8px !important;
        padding: 8px 10px 0 !important;
    }
}

/* Hard floor — phones always get exactly 2 columns */
@media (max-width: 480px) {
    ul.products.ln-products-grid,
    .woocommerce ul.products:not(.ln-products-grid),
    .woocommerce .related ul.products,
    .woocommerce .upsells ul.products,
    .ln-featured-products .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
}

/* ============================================================
   PRODUCT CARD — GRID LAYOUT FIX
   Root cause: WooCommerce's loop-start.php outputs a columns-N
   class which activates WC's own float/flex layout, producing a
   phantom blank <li> spacer when the last row isn't full.

   Fix strategy:
   · loop-start.php overridden → outputs <ul class="products ln-products-grid">
     with NO columns-N class, so WC's grid never activates.
   · loop-end.php overridden → outputs only </ul>, no clearing <li>.
   · CSS grid applied here via .ln-products-grid.
   · Backward-compat rule covers any ul.products not yet overridden.
============================================================ */

/* ── 1. Primary grid on overridden ul ── */
ul.products.ln-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: both !important;
}

/* ── 2. Kill every pseudo-element ghost on the ul ── */
ul.products.ln-products-grid::before,
ul.products.ln-products-grid::after {
    display: none !important;
    content: none !important;
}

/* ── 3. Each card: clean flex column ── */
ul.products.ln-products-grid li.product {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    clear: none !important;
    padding: 0 !important;
}

/* ── 4. Kill pseudo-elements on each li ── */
ul.products.ln-products-grid li.product::before,
ul.products.ln-products-grid li.product::after {
    display: none !important;
    content: none !important;
    flex: none !important;
    width: 0 !important;
    padding: 0 !important;
}

/* ── 5. Kill WC's padding-top image-ratio trick on links ── */
ul.products.ln-products-grid li.product a:first-child::before,
ul.products.ln-products-grid li.product .woocommerce-loop-product__link::before {
    display: none !important;
    content: none !important;
    padding-top: 0 !important;
}

/* ── 6. Add to Cart pinned to card bottom ── */
ul.products.ln-products-grid li.product a.button,
ul.products.ln-products-grid li.product .button {
    margin-top: auto !important;
}

/* ── 7. Hover overlay inside image wrapper ── */
ul.products.ln-products-grid li.product .ln-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 3 !important;
}

/* ── 8. Backward-compat: any ul.products without our class ── */
.woocommerce ul.products:not(.ln-products-grid),
.woocommerce-page ul.products:not(.ln-products-grid) {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

.woocommerce ul.products:not(.ln-products-grid)::after,
.woocommerce ul.products:not(.ln-products-grid) li.product::after,
.woocommerce ul.products:not(.ln-products-grid) li.product::before {
    display: none !important;
    content: none !important;
}

.woocommerce ul.products:not(.ln-products-grid) li.product {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

/* ══════════════════════════════════════════════════════════════════
   LN CUSTOM CARD OVERRIDES — self-contained card template
   Applied to both page-home.php featured grid and shop archive
   ══════════════════════════════════════════════════════════════════ */

/* Image wrapper link — block, no clipping of text below */
.woocommerce ul.products li.product .ln-card__img-wrap,
.ln-featured-products .woocommerce ul.products li.product .ln-card__img-wrap {
    display: block !important;
    width: 100% !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    position: relative !important;
    aspect-ratio: 1 / 1 !important;
}

.woocommerce ul.products li.product .ln-card__img-wrap img,
.ln-featured-products .woocommerce ul.products li.product .ln-card__img-wrap img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.5s ease !important;
}

.woocommerce ul.products li.product:hover .ln-card__img-wrap img,
.ln-featured-products .woocommerce ul.products li.product:hover .ln-card__img-wrap img {
    transform: scale(1.04) !important;
}

/* Title link wrapper — remove all link decoration, display as block */
.woocommerce ul.products li.product .ln-card__title-link,
.ln-featured-products .woocommerce ul.products li.product .ln-card__title-link {
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
    flex-shrink: 0 !important;
}

/* Title */
.woocommerce ul.products li.product .ln-card__title-link .woocommerce-loop-product__title,
.ln-featured-products .woocommerce ul.products li.product .ln-card__title-link .woocommerce-loop-product__title {
    font-family: var(--ln-font) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 20px !important;
    color: var(--ln-black) !important;
    padding: 10px 14px 4px !important;
    margin: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.woocommerce ul.products li.product .ln-card__title-link:hover .woocommerce-loop-product__title,
.ln-featured-products .woocommerce ul.products li.product .ln-card__title-link:hover .woocommerce-loop-product__title {
    color: var(--ln-gold) !important;
}

/* Price */
.woocommerce ul.products li.product > .price,
.ln-featured-products .woocommerce ul.products li.product > .price {
    display: block !important;
    font-family: var(--ln-font-sans) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--ln-black) !important;
    padding: 2px 14px 8px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}

/* Push Add to Cart to the bottom */
.woocommerce ul.products li.product > a.button,
.woocommerce ul.products li.product > .button,
.ln-featured-products .woocommerce ul.products li.product > a.button {
    margin-top: auto !important;
}

/* ============================================================
   MOBILE PRODUCT GRID — DEFINITIVE OVERRIDE
   These rules come LAST in the file so they always win the
   cascade over every earlier repeat(4,1fr) !important rule,
   including the "GRID LAYOUT FIX" block above.

   Targets:
     · ul.products.ln-products-grid   (our loop-start.php output)
     · .woocommerce ul.products        (any WC-native grid)
     · .woocommerce ul.products:not(.ln-products-grid) (compat)
     · .woocommerce .related ul.products  (related products section)
     · .woocommerce .upsells ul.products  (upsells section)
     · .ln-featured-products …          (homepage featured grid)

   Breakpoints:
     > 1024px  → 4 columns  (desktop/laptop — unchanged)
     769–1024px → 3 columns (tablet landscape)
     ≤ 768px   → 2 columns  (tablet portrait + ALL phones)
============================================================ */

/* ── TABLET LANDSCAPE: 3 columns ── */
@media (max-width: 1024px) {
    ul.products.ln-products-grid,
    .woocommerce ul.products,
    .woocommerce ul.products:not(.ln-products-grid),
    .woocommerce .related ul.products,
    .woocommerce .upsells ul.products,
    .ln-featured-products .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* ── MOBILE (all phones + portrait tablets): 2 columns ── */
@media (max-width: 768px) {
    ul.products.ln-products-grid,
    .woocommerce ul.products,
    .woocommerce ul.products:not(.ln-products-grid),
    .woocommerce .related ul.products,
    .woocommerce .upsells ul.products,
    .ln-featured-products .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
}

/* ============================================================
   SIDE CART DRAWER — MINI CART ITEM STYLES
   Targets the WooCommerce fragment HTML dumped into #ln-cart-body
   when items are in the cart. Without these, everything is unstyled.
============================================================ */

/* ── Reset the WC ul ── */
#ln-cart-body .woocommerce-mini-cart {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

/* ── Each cart item row ── */
#ln-cart-body .woocommerce-mini-cart-item {
    display: grid !important;
    grid-template-columns: 72px 1fr auto !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--ln-border) !important;
    position: relative !important;
}

/* ── Product thumbnail ── */
#ln-cart-body .woocommerce-mini-cart-item img {
    width: 72px !important;
    height: 72px !important;
    object-fit: cover !important;
    border-radius: 4px !important;
    display: block !important;
    border: 1px solid var(--ln-border) !important;
}

/* ── The link wrapping the image — keep it block ── */
#ln-cart-body .woocommerce-mini-cart-item > a:first-of-type {
    display: block !important;
    flex-shrink: 0 !important;
    line-height: 0 !important;
}

/* ── Product name / quantity / price text area ── */
#ln-cart-body .woocommerce-mini-cart-item__name,
#ln-cart-body .woocommerce-mini-cart-item .woocommerce-mini-cart-item__name {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--ln-black) !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    display: block !important;
    margin-bottom: 4px !important;
}

/* WC outputs: ProductName x Price as text nodes / spans — target the quantity span */
#ln-cart-body .woocommerce-mini-cart-item .quantity {
    font-size: 12px !important;
    color: var(--ln-text-muted) !important;
    display: block !important;
    margin-top: 4px !important;
}

#ln-cart-body .woocommerce-mini-cart-item .woocommerce-Price-amount {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--ln-black) !important;
}

/* ── Remove (×) button ── */
#ln-cart-body .woocommerce-mini-cart-item .remove_from_cart_button,
#ln-cart-body .woocommerce-mini-cart-item .remove {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    background: var(--ln-light-gray) !important;
    color: var(--ln-text-muted) !important;
    font-size: 14px !important;
    line-height: 1 !important;
    text-decoration: none !important;
    transition: var(--ln-transition) !important;
    flex-shrink: 0 !important;
    align-self: start !important;
    margin-top: 2px !important;
}
#ln-cart-body .woocommerce-mini-cart-item .remove_from_cart_button:hover,
#ln-cart-body .woocommerce-mini-cart-item .remove:hover {
    background: #fee2e2 !important;
    color: #dc2626 !important;
}

/* ── Subtotal row ── */
#ln-cart-body .woocommerce-mini-cart__total {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 0 4px !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--ln-black) !important;
    border-top: 2px solid var(--ln-border) !important;
}
#ln-cart-body .woocommerce-mini-cart__total .woocommerce-Price-amount {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--ln-black) !important;
}

/* ── WC buttons inside the fragment (View cart / Checkout) ── */
/* We hide these because we have our own footer with the Checkout button */
#ln-cart-body .woocommerce-mini-cart__buttons {
    display: none !important;
}

/* ── widget_shopping_cart_content wrapper — remove any WC defaults ── */
#ln-cart-body .widget_shopping_cart_content {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}


/* ── Side cart footer — subtotal + dual buttons ── */
#ln-cart-footer {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 16px 24px 20px !important;
    border-top: 1px solid var(--ln-border) !important;
}

.ln-cart-subtotal {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--ln-black) !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid var(--ln-border) !important;
}
.ln-cart-subtotal .woocommerce-Price-amount {
    font-size: 16px !important;
    font-weight: 700 !important;
}

/* View cart — outlined button */
.ln-side-cart__view-cart {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 12px !important;
    background: transparent !important;
    color: var(--ln-black) !important;
    border: 1.5px solid var(--ln-black) !important;
    border-radius: var(--ln-radius-btn) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: var(--ln-transition) !important;
}
.ln-side-cart__view-cart:hover {
    background: var(--ln-black) !important;
    color: var(--ln-white) !important;
}

/* Checkout — gold filled button (already defined, just reinforce) */
.ln-side-cart__checkout {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 13px !important;
    background: var(--ln-gold) !important;
    color: var(--ln-white) !important;
    border: none !important;
    border-radius: var(--ln-radius-btn) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: var(--ln-transition) !important;
}
.ln-side-cart__checkout:hover {
    background: var(--ln-gold-hover) !important;
    color: var(--ln-black) !important;
}

/* Mobile nav drawer logo stays WHITE (espresso dark background) */
.lnh-mobile-nav .lnh-logo__img {
  filter: none !important;
}
.lnh-mobile-nav .lnh-logo__text {
  color: var(--ln-white) !important;
}
