/* Larch Cladding Suppliers — AI redesign (2026)
   Design tokens from PSD mockups. Do not alter cart/price logic in PHP. */

:root {
  --lc-brown: #2B1E16;
  --lc-brown-mid: #3A2A20;
  --lc-cream: #D4C4A8;
  --lc-cream-dim: #B8A88C;
  --lc-red: #C62828;
  --lc-green: #2E7D32;
  --lc-navy: #1A2744;
  --lc-step: #5B8FA8;
  --lc-bg: #F7F5F2;
  --lc-white: #FFFFFF;
  --lc-border: #E2DDD6;
  --lc-text: #1A1A1A;
  --lc-muted: #6B6560;
  --lc-radius: 10px;
  --lc-max: 1180px;
  --lc-font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --lc-display: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lc-body {
  margin: 0;
  padding: 0;
  font-family: var(--lc-font);
  color: var(--lc-text);
  background: var(--lc-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font-family: inherit; }

.lc-container {
  width: 100%;
  max-width: var(--lc-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Center blockUI loader (Add to Cart / size dropdown) — was stuck on the left */
body.lc-body .blockUI.blockMsg,
body.lc-body .blockUI.blockPage,
body.lc-body div.blockMsg {
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-align: center !important;
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}
body.lc-body .blockUI.blockMsg img,
body.lc-body div.blockMsg img {
  display: inline-block !important;
  margin: 0 auto !important;
  max-width: none !important;
  width: auto !important;
  height: auto !important;
}

/* ---- Header ---- */
.lc-header {
  background: var(--lc-brown);
  color: var(--lc-cream);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.lc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.lc-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none !important;
}
.lc-logo img { height: 40px; width: auto; }
.lc-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.lc-nav a {
  color: var(--lc-cream);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color .2s ease;
}
.lc-nav a:hover,
.lc-nav a.is-active { color: #fff; }
.lc-nav a.is-offer { color: #E8C36A; }
.lc-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lc-cream) !important;
  text-decoration: none !important;
  margin-left: 8px;
}
.lc-cart-link svg { width: 22px; height: 22px; stroke: currentColor; fill: none; }
.lc-cart-count {
  font-size: 14px;
  font-weight: 600;
  min-width: 1.2em;
}
.lc-burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--lc-cream);
}
.lc-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

/* ---- Trust bar ---- */
.lc-trust {
  background: var(--lc-white);
  border-bottom: 1px solid var(--lc-border);
}
.lc-trust__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.lc-trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  font-size: 13px;
  color: var(--lc-text);
  border-right: 1px solid var(--lc-border);
  text-align: left;
}
.lc-trust__item:last-child { border-right: 0; }
.lc-trust__item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--lc-brown);
  fill: none;
  stroke-width: 1.6;
}
.lc-trust--footer {
  background: transparent;
  border: 0;
}
.lc-trust--footer .lc-trust__item {
  color: var(--lc-cream);
  border-right-color: rgba(212,196,168,.25);
  font-size: 13px;
}
.lc-trust--footer .lc-trust__item svg { stroke: var(--lc-cream); }

/* ---- Hero ---- */
.lc-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-color: var(--lc-brown);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}
.lc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,10,6,.78) 0%, rgba(18,10,6,.45) 40%, rgba(18,10,6,.18) 100%);
  pointer-events: none;
}
.lc-hero__content {
  position: relative;
  z-index: 1;
  padding: 88px 0 80px;
  max-width: 620px;
}
.lc-badge {
  display: inline-block;
  background: var(--lc-red);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.lc-hero h1 {
  font-family: var(--lc-display);
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #fff;
}
.lc-hero p {
  font-size: 1.05rem;
  margin: 0 0 28px;
  opacity: .95;
  max-width: 520px;
}
.lc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.lc-btn:hover { transform: translateY(-1px); }
.lc-btn--light {
  background: #fff !important;
  color: #111 !important;
  border-color: #fff !important;
}
.lc-btn--ghost {
  background: #fff;
  color: var(--lc-text);
  border-color: #C8C2BA;
}
.lc-btn--navy {
  background: var(--lc-navy);
  color: #fff;
  border-color: var(--lc-navy);
}
.lc-btn--brown {
  background: var(--lc-brown);
  color: var(--lc-cream);
  border-color: var(--lc-brown);
}
.lc-btn--brown:hover {
  background: var(--lc-brown-mid);
  color: #fff;
}
.lc-btn--block { width: 100%; }

/* ---- Sections ---- */
.lc-section {
  padding: 28px 0 40px;
  background: var(--lc-bg);
}
.lc-section--tint { background: var(--lc-bg); }
.lc-panel-block {
  background: #fff;
  border: 1px solid var(--lc-border);
  border-radius: 18px;
  padding: 32px 32px 24px;
  box-shadow: 0 1px 0 rgba(43,30,22,.03);
}
.lc-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.lc-section-foot--left { text-align: left; }
.lc-section__head h2 {
  font-family: var(--lc-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0 0 6px;
  font-weight: 700;
}
.lc-section__head p {
  margin: 0;
  color: var(--lc-muted);
  font-size: 15px;
}
.lc-link-arrow {
  color: var(--lc-text);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none !important;
}
.lc-link-arrow:hover { text-decoration: underline !important; }
.lc-urgency { color: var(--lc-red); font-weight: 600; font-size: 14px; margin-right: 12px; }

/* ---- Product cards ---- */
.lc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lc-card {
  background: #fff;
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease;
}
.lc-card:hover {
  box-shadow: 0 8px 28px rgba(43,30,22,.1);
  transform: translateY(-2px);
}
.lc-card__media {
  position: relative;
  aspect-ratio: 1;
  background: #ebe7e1;
  overflow: hidden;
}
.lc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lc-card__media .lc-clearance-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--lc-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 3px;
  z-index: 2;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.lc-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--lc-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 3px;
  z-index: 1;
}
.lc-card__badge--new { background: var(--lc-green); }
.lc-card__body {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.lc-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  color: var(--lc-text);
}
.lc-card__title a { text-decoration: none !important; }
.lc-card__desc {
  font-size: 13px;
  color: var(--lc-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lc-card__price {
  font-size: 20px;
  font-weight: 700;
  margin-top: auto;
  padding-top: 8px;
}
.lc-card__price .was {
  color: var(--lc-muted);
  font-weight: 500;
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 16px;
}
.lc-card__price .unit {
  font-weight: 500;
  font-size: 13px;
  color: var(--lc-muted);
}
.lc-products-ajax .cat_products_price .was {
  color: var(--lc-muted);
  font-weight: 500;
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 16px !important;
}
.lc-products-ajax .cat_products_price strong {
  font-weight: 700;
  font-size: 20px !important;
}
.lc-card__stock {
  color: var(--lc-red);
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}
.lc-card .lc-btn { margin-top: 8px; width: 100%; padding: 11px 16px; }

.lc-section-foot {
  margin-top: 28px;
  text-align: center;
}

/* ---- Breadcrumb / category ---- */
.lc-breadcrumb {
  padding: 18px 0 8px;
  font-size: 13px;
  color: var(--lc-muted);
}
.lc-breadcrumb a { color: var(--lc-muted); }
.lc-breadcrumb span { color: var(--lc-text); }
.lc-cat-intro { padding: 12px 0 28px; max-width: 720px; }
.lc-cat-intro h1 {
  font-family: var(--lc-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  margin: 0 0 12px;
}
.lc-cat-intro p { color: var(--lc-muted); margin: 0 0 12px; }

.lc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 14px 0 24px;
  border-top: 1px solid var(--lc-border);
  border-bottom: 1px solid var(--lc-border);
  margin-bottom: 28px;
}
.lc-filters label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--lc-muted);
  margin-right: 4px;
}
.lc-filters select,
.lc-filters input {
  border: 1px solid var(--lc-border);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  background: #fff;
  min-width: 120px;
}

/* Category AJAX filter bar (products_table) — horizontal like PSD */
.lc-products-ajax .filter-wrap,
.lc-products-ajax > .pagging:not(table) {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  width: 100%;
  margin: 0 0 20px !important;
  padding: 14px 16px !important;
  background: #F3F1ED;
  border-radius: 8px;
  float: none !important;
}
.lc-products-ajax .filter-wrap {
  background: transparent;
  padding: 0 !important;
  margin: 0 !important;
}
.lc-products-ajax .filter-item {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  float: none !important;
  width: auto !important;
}
.lc-products-ajax .lc-products-found {
  font-weight: 600;
  margin-right: 12px;
  color: var(--lc-text);
}
.lc-products-ajax .lc-sort-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--lc-muted);
  text-transform: uppercase;
}
.lc-products-ajax .selectboxDisplay {
  border: 1px solid var(--lc-border) !important;
  border-radius: 6px !important;
  padding: 8px 12px !important;
  min-height: 40px;
  background: #fff !important;
}

/* Bottom pagination */
.lc-products-ajax table.pagging {
  display: block !important;
  width: 100% !important;
  margin: 32px 0 12px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  float: none !important;
}
.lc-products-ajax table.pagging tr,
.lc-products-ajax table.pagging td {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
}
.lc-products-ajax table.pagging .pagination_last {
  text-align: center !important;
  padding: 8px 0 0 !important;
}
.lc-products-ajax table.pagging .pagination_last > span {
  display: block !important;
  color: inherit !important;
  font-size: inherit !important;
}
.lc-products-ajax table.pagging .pagination,
.lc-products-ajax table.pagging .pagination.lc-pagination {
  display: inline-flex !important;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 14px !important;
  color: var(--lc-text) !important;
  margin: 0 auto;
  padding: 4px 0;
}
/* Legacy wrappers — flatten so only one bordered control per item */
.lc-products-ajax table.pagging .pagination_off,
.lc-products-ajax table.pagging .pagination span.next {
  display: contents !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
  height: auto !important;
  float: none !important;
  box-shadow: none !important;
}
.lc-products-ajax table.pagging .pagination a,
.lc-products-ajax table.pagging .pagination_off > a,
.lc-products-ajax table.pagging .pagination_on {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box !important;
  min-width: 40px;
  min-height: 40px;
  height: 40px;
  padding: 0 14px !important;
  margin: 0 !important;
  border: 1px solid var(--lc-border) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--lc-text) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  float: none !important;
  box-shadow: none !important;
  white-space: nowrap;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.lc-products-ajax table.pagging .pagination a:hover,
.lc-products-ajax table.pagging .pagination_off > a:hover {
  border-color: var(--lc-brown) !important;
  color: var(--lc-text) !important;
  text-decoration: none !important;
}
.lc-products-ajax table.pagging .pagination_on {
  background: var(--lc-brown) !important;
  border-color: var(--lc-brown) !important;
  color: #fff !important;
  font-weight: 700 !important;
  cursor: default;
}
.lc-products-ajax table.pagging .pagination a:has(img) {
  min-width: 40px;
  width: 40px;
  padding: 0 !important;
}
.lc-products-ajax table.pagging .pagination a img {
  display: block;
  width: 7px;
  height: auto;
  margin: 0 auto;
  opacity: .55;
}
.lc-products-ajax table.pagging .pagination a:hover img {
  opacity: 1;
}
.lc-products-ajax table.pagging .pagination .breadcrumb {
  display: inline !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: inherit !important;
}
.lc-products-ajax table.pagging .pagination .clear {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.lc-products-ajax .lc-paging-total {
  display: none !important;
}

/* ---- FAQ ---- */
.lc-faq { padding: 48px 0 64px; }
.lc-faq h2 {
  font-family: var(--lc-display);
  font-size: 1.75rem;
  margin: 0 0 20px;
}
.lc-faq__item {
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
}
.lc-faq__q {
  width: 100%;
  text-align: left;
  background: #F3F1ED;
  border: 0;
  padding: 16px 48px 16px 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}
.lc-faq__q::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--lc-muted);
}
.lc-faq__item.is-open .lc-faq__q::after { content: "−"; }
.lc-faq__a {
  display: none;
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--lc-muted);
  background: #F3F1ED;
}
.lc-faq__item.is-open .lc-faq__a { display: block; }

/* ---- Checkout / cart shell ---- */
.lc-checkout { padding: 40px 0 64px; background: var(--lc-bg); }
.lc-checkout h1 {
  font-family: var(--lc-display);
  font-size: 2rem;
  margin: 0 0 8px;
}
.lc-checkout__sub { color: var(--lc-muted); margin: 0 0 24px; }
.lc-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--lc-border);
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--lc-muted);
}
.lc-steps .is-done,
.lc-steps .is-active { color: var(--lc-step); font-weight: 600; }
.lc-steps .is-active { color: #2F6F9F; }
.lc-panel {
  background: #fff;
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius);
  padding: 28px;
}
.lc-checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}
.lc-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #F0ECE6;
}
.lc-summary-row--total {
  border: 0;
  font-size: 17px;
  font-weight: 700;
  padding-top: 14px;
}
.lc-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--lc-muted);
  margin-top: 12px;
}

/* ---- Footer ---- */
.lc-footer {
  display: block;
  width: 100%;
  max-width: none;
  background: var(--lc-brown);
  color: var(--lc-cream);
  padding: 40px 0 0;
  margin-top: 0;
  box-sizing: border-box;
}
/* If footer is still nested in a PDP table, break out to full viewport */
body.lc-body table .lc-footer,
body.lc-body td .lc-footer {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: auto;
  margin-left: -50vw;
  margin-right: 0;
}
.lc-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid rgba(212,196,168,.2);
  margin-top: 8px;
}
.lc-footer__links h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.lc-footer__links a {
  display: block;
  color: var(--lc-cream);
  font-size: 14px;
  margin-bottom: 8px;
  text-decoration: none !important;
  opacity: .9;
}
.lc-footer__links a:hover { opacity: 1; text-decoration: underline !important; }
.lc-footer__copy {
  border-top: 1px solid rgba(212,196,168,.15);
  padding: 18px 0;
  font-size: 13px;
  color: var(--lc-cream-dim);
}

/* ---- Motion ---- */
@media (prefers-reduced-motion: no-preference) {
  .lc-hero__content {
    animation: lcFadeUp .7s ease both;
  }
  .lc-card {
    animation: lcFadeUp .55s ease both;
  }
  .lc-grid .lc-card:nth-child(1) { animation-delay: .05s; }
  .lc-grid .lc-card:nth-child(2) { animation-delay: .12s; }
  .lc-grid .lc-card:nth-child(3) { animation-delay: .19s; }
  .lc-grid .lc-card:nth-child(4) { animation-delay: .26s; }
}
@keyframes lcFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .lc-grid { grid-template-columns: repeat(3, 1fr); }
  .lc-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .lc-checkout-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .lc-burger { display: block; }
  .lc-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 72px;
    background: var(--lc-brown-mid);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
  }
  .lc-nav.is-open { display: flex; }
  .lc-header { position: relative; }
  .lc-header__inner { position: relative; }
  .lc-trust__list { grid-template-columns: 1fr 1fr; }
  .lc-trust__item { border-bottom: 1px solid var(--lc-border); }
  .lc-grid,
  .lc-grid--3 { grid-template-columns: 1fr 1fr; }
  .lc-footer__links { grid-template-columns: 1fr; gap: 24px; }
  .lc-hero { min-height: 360px; }
}
@media (max-width: 480px) {
  .lc-grid,
  .lc-grid--3 { grid-template-columns: 1fr; }
  .lc-trust__list { grid-template-columns: 1fr; }
}

/* ---- Legacy products_table.php restyle (price PHP untouched) ---- */
.lc-products-ajax .filter_top_box,
.lc-products-ajax .product_filter,
.lc-products-ajax .filter-item {
  font-family: var(--lc-font);
}
.lc-products-ajax .product_results_ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  float: none !important;
}
.lc-products-ajax .product_results_ul > li {
  display: block !important;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0;
}
.lc-products-ajax .product_results_ul > li > a,
.lc-products-ajax .product_results_ul > a,
.lc-products-ajax .product_results_ul a > td,
.lc-products-ajax .cellpaddingtable {
  display: flex !important;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius);
  overflow: hidden;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100%;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  text-decoration: none !important;
  color: inherit;
  transition: box-shadow .25s ease, transform .25s ease;
  min-width: 0;
}
.lc-products-ajax .product_results_ul > li > a .cellpaddingtable {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.lc-products-ajax .product_results_ul > li > a .cellpaddingtable:hover {
  box-shadow: none !important;
  transform: none !important;
}
.lc-products-ajax .product_results_ul a > td {
  border: 0 !important;
}
.lc-products-ajax .cellpaddingtable:hover,
.lc-products-ajax .product_results_ul > li > a:hover,
.lc-products-ajax .product_results_ul > a:hover {
  box-shadow: 0 8px 28px rgba(43,30,22,.1);
  transform: translateY(-2px);
}
.lc-products-ajax .product_tablet_information {
  display: flex !important;
  flex-direction: column;
  flex: 1;
  padding: 0 !important;
}
.lc-products-ajax .product_body_text {
  padding: 0 16px 8px !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  color: var(--lc-muted) !important;
  flex: 1 1 auto;
}
.lc-products-ajax .image {
  float: none !important;
  width: 100% !important;
  aspect-ratio: 1;
  background: #ebe7e1;
  margin: 0 !important;
  overflow: hidden;
  order: -1;
  position: relative !important;
}
.lc-products-ajax .image .lc-clearance-badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  width: auto !important;
  height: auto !important;
  display: inline-block !important;
  background: var(--lc-red) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 5px 10px !important;
  border-radius: 3px !important;
  z-index: 2 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.02em;
  align-items: initial !important;
  justify-content: initial !important;
}
.lc-products-ajax .image .lc-new-product-badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  width: auto !important;
  height: auto !important;
  display: inline-block !important;
  background: var(--lc-green) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 5px 10px !important;
  border-radius: 3px !important;
  z-index: 2 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.02em;
  align-items: initial !important;
  justify-content: initial !important;
}
.lc-products-ajax .image .lc-clearance-badge + .lc-new-product-badge {
  top: 42px !important;
}
.lc-products-ajax .image img.product_images,
.lc-products-ajax .product_images {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
}
/* Hide duplicate mobile title on desktop layout */
.lc-products-ajax .text_products.mob-show,
.lc-body .lc-products-ajax .mob-show {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}
.lc-products-ajax .text_products {
  padding: 14px 16px 0 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--lc-text) !important;
  line-height: 1.35 !important;
  float: none !important;
  width: auto !important;
}
.lc-products-ajax .cat_products_price,
.lc-products-ajax .text_products_price,
.lc-products-ajax .product_desc,
.lc-products-ajax .pr_detail,
.lc-products-ajax .product_desc2 {
  padding: 8px 16px !important;
  font-size: 14px !important;
  float: none !important;
  width: auto !important;
}
.lc-products-ajax .cat_products_price {
  margin-top: auto;
  padding-bottom: 4px !important;
}
.lc-products-ajax .lc-order-online,
.lc-products-ajax .best_seller_order_online,
.lc-products-ajax .order_online,
.lc-products-ajax .btn1111 {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 4px 16px 16px !important;
  padding: 11px 16px !important;
  border: 1.5px solid #C8C2BA !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--lc-text) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  text-shadow: none !important;
  float: none !important;
  text-align: center;
  text-transform: capitalize;
  align-self: center;
  width: calc(100% - 32px);
}
.lc-products-ajax .cat_products_price h2 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: 1.4 !important;
}
.lc-products-ajax table { width: 100%; border-collapse: collapse; }
.lc-products-ajax .pull-right,
.lc-products-ajax .change_view_btn { display: none !important; }
.lc-products-ajax .filter_top_box {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  padding: 14px 0 24px;
  border-top: 1px solid var(--lc-border);
  border-bottom: 1px solid var(--lc-border);
  margin-bottom: 28px;
}
.lc-products-ajax .filter_top_box > div,
.lc-products-ajax .filter-item,
.lc-products-ajax .pull-left {
  float: none !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: auto !important;
}
.lc-products-ajax select {
  border: 1px solid var(--lc-border) !important;
  border-radius: 6px !important;
  padding: 8px 12px !important;
  font-size: 14px !important;
  background: #fff !important;
  width: auto !important;
  min-width: 120px;
  height: auto !important;
}
.lc-products-ajax .clear { display: none; }
@media (max-width: 1024px) {
  .lc-products-ajax .product_results_ul { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .lc-products-ajax .product_results_ul { grid-template-columns: 1fr; }
  .lc-products-ajax .text_products.mob-show { display: block !important; }
  .lc-products-ajax .text_products:not(.mob-show) { display: none !important; }
}

/* ---- PDP: restore responsive show/hide (legacy CSS was missing) ---- */
@media (min-width: 768px) {
  body.lc-body .showPhone,
  body.lc-body tr.showPhone,
  body.lc-body .mobile_product_detail,
  body.lc-body .dtl_img.showPhone,
  body.lc-body #mobileProDetailOptions:empty,
  body.lc-body #mobileProDetailOptions:not(:has(*)) {
    display: none !important;
  }
}
@media (max-width: 767px) {
  body.lc-body .hideResponsive,
  body.lc-body tr.hideResponsive {
    display: none !important;
  }
  body.lc-body #desktopProDetailsOptions {
    position: static !important;
    max-width: 100% !important;
    margin: 16px 0 !important;
  }
  body.lc-body .mobile_product_detail .productKeyFeatures {
    margin-bottom: 12px;
  }
  body.lc-body .mobile_product_detail #mobileProDetailOptions:not(:empty) {
    display: table !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 12px 0 16px !important;
  }
  body.lc-body tr.product-detail-wrapper > td,
  body.lc-body tr.product-detail-wrapper > td[width="42%"] {
    display: block !important;
    width: 100% !important;
    padding-left: 0 !important;
  }
}

/* ---- PDP image slider + thumbs (do NOT clip scroller) ---- */
body.lc-body #responsive-slider {
  max-height: none !important;
  height: auto !important;
  max-width: 740px !important;
  width: 100% !important;
  overflow: visible !important;
  position: relative !important;
}
body.lc-body .advanced-slider .slider-main {
  width: 100% !important;
  height: 555px !important;
  overflow: hidden !important;
  position: relative !important;
}
body.lc-body .advanced-slider .slides {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.lc-body .advanced-slider li.slide {
  position: absolute !important;
}
body.lc-body .advanced-slider li.slide .image {
  width: 100% !important;
  height: 555px !important;
  max-height: 555px !important;
  object-fit: cover !important;
}
body.lc-body .advanced-slider .thumbnail-scroller,
body.lc-body .advanced-slider .thumbnail-scroller.horizontal {
  position: relative !important;
  width: 100% !important;
  margin-top: 14px !important;
  height: 130px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: hidden !important;
  float: none !important;
  left: auto !important;
  top: auto !important;
}
body.lc-body .advanced-slider .thumbnail-scroller .container {
  position: relative !important;
  width: auto !important;
  height: 112px !important;
  display: block !important;
}
body.lc-body .advanced-slider .thumbnail-scroller .thumbnail-wrapper {
  display: block !important;
  list-style: none !important;
}
body.lc-body .advanced-slider .thumbnail-scroller .thumbnail,
body.lc-body .advanced-slider .thumbnail-scroller a.thumbnail {
  display: block !important;
  width: 135px !important;
  height: 112px !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  cursor: pointer !important;
  border: 1px solid var(--lc-border);
  box-sizing: border-box !important;
}
body.lc-body .advanced-slider .thumbnail-scroller .thumbnail-arrows,
body.lc-body .advanced-slider .thumbnail-scroller .thumbnail-buttons {
  display: none !important;
}
body.lc-body .advanced-slider .slide-arrows {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
body.lc-body .advanced-slider .slide-arrows a {
  opacity: 0.85 !important;
  visibility: visible !important;
}
body.lc-body .glossy-square-gray .slide-wrapper {
  height: 555px !important;
  min-width: 100% !important;
  margin: 0 !important;
}
body.lc-body .dtl_img.showPhone {
  display: none !important;
}

/* PSD: remove Read More + left delivery strip under features */
body.lc-body a.more-keyFeatures,
body.lc-body .fast-delivery {
  display: none !important;
}
/* Empty mobile options shell was rendering as a blank white box */
body.lc-body #mobileProDetailOptions:empty,
body.lc-body #desktopProDetailsOptions:empty,
body.lc-body #desktopProDetailsOptions:has(> tbody:empty):not(:has(.addToCartBtn)):not(:has(select)) {
  display: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  height: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
}

/* Purchase card price/stock line cleanup */
body.lc-body #desktopProDetailsOptions .new_price_selected,
body.lc-body #mobileProDetailOptions .new_price_selected {
  display: block !important;
  position: static !important;
  float: none !important;
  clear: both !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--lc-text) !important;
  margin: 10px 0 6px !important;
  line-height: 1.3 !important;
  z-index: auto !important;
}
body.lc-body .product_title .new_price_selected {
  display: inline !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  margin: 0 !important;
  color: inherit !important;
}
body.lc-body #label_stock_available {
  display: block !important;
  font-size: 13px !important;
  color: var(--lc-muted) !important;
  margin: 0 0 10px !important;
}
body.lc-body a.btn_sample_order {
  background: var(--lc-navy) !important;
  border-radius: 8px !important;
  width: 100% !important;
  max-width: 280px;
  text-decoration: none !important;
}
@media (max-width: 767px) {
  body.lc-body .advanced-slider .slider-main,
  body.lc-body .advanced-slider li.slide .image,
  body.lc-body .glossy-square-gray .slide-wrapper {
    height: 320px !important;
    max-height: 320px !important;
  }
  body.lc-body .advanced-slider .thumbnail-scroller,
  body.lc-body .advanced-slider .thumbnail-scroller.horizontal {
    height: 96px !important;
  }
}

/* ---- Product details purchase card (PSD) ---- */
body.lc-body .lc-pdp-wrap {
  max-width: var(--lc-max);
  margin: 0 auto;
  padding: 12px 24px 48px;
}
body.lc-body table[width="1280"],
body.lc-body table[width="1155"] {
  width: 100% !important;
  max-width: var(--lc-max);
}
body.lc-body tr.product-detail-wrapper > td[width="42%"],
body.lc-body tr.product-detail-wrapper > td:last-child {
  vertical-align: top !important;
}
body.lc-body #desktopProDetailsOptions {
  position: sticky;
  top: 88px;
  z-index: 5;
  margin-top: 16px !important;
}
body.lc-body #desktopProDetailsOptions,
body.lc-body #mobileProDetailOptions:not(:empty),
body.lc-body table.productDetailOption#desktopProDetailsOptions,
body.lc-body .lc-purchase-card {
  background: #fff !important;
  border: 1px solid var(--lc-border) !important;
  border-radius: 12px !important;
  padding: 18px 18px 16px !important;
  box-shadow: 0 10px 28px rgba(43,30,22,.08);
  width: 100% !important;
  max-width: 420px;
  margin: 12px 0 0 !important;
  border-collapse: separate !important;
  display: block !important;
}
/* Remove old full-width ::before clearance bar — badge is injected */
body.lc-body #desktopProDetailsOptions::before,
body.lc-body #mobileProDetailOptions:not(:empty)::before {
  content: none !important;
  display: none !important;
}
body.lc-body .lc-purchase-card > tbody,
body.lc-body .lc-purchase-card > tr,
body.lc-body #desktopProDetailsOptions > tbody {
  display: block !important;
  width: 100% !important;
}
body.lc-body #desktopProDetailsOptions tr,
body.lc-body #desktopProDetailsOptions td,
body.lc-body .lc-purchase-card tr,
body.lc-body .lc-purchase-card td {
  display: block !important;
  width: 100% !important;
  float: none !important;
  clear: both !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}
body.lc-body .lc-purchase-head {
  margin-bottom: 14px;
}
body.lc-body .lc-purchase-badge {
  display: inline-block;
  background: var(--lc-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 4px;
  margin: 0 0 12px;
  letter-spacing: .01em;
}
body.lc-body .lc-purchase-title {
  margin: 0 0 10px;
  font-family: var(--lc-font);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--lc-text);
}
body.lc-body .lc-purchase-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  margin: 0 0 6px;
}
body.lc-body .lc-purchase-was {
  font-size: 15px;
  color: var(--lc-muted);
  text-decoration: line-through;
  font-weight: 500;
}
body.lc-body .lc-purchase-now {
  font-size: 28px;
  font-weight: 800;
  color: var(--lc-text);
  line-height: 1;
}
body.lc-body .lc-purchase-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--lc-text);
}
body.lc-body .lc-purchase-vat {
  font-size: 13px;
  color: var(--lc-muted);
  font-weight: 500;
}
body.lc-body .lc-purchase-urgency {
  color: var(--lc-red);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 14px;
}
body.lc-body .lc-purchase-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  margin: 0 0 16px;
  padding: 0 0 4px;
}
body.lc-body .lc-purchase-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--lc-text);
  font-weight: 500;
}
body.lc-body .lc-purchase-trust__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  margin-top: 1px;
}
body.lc-body .lc-purchase-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--lc-border);
  font-size: 13px;
  color: var(--lc-muted);
}
body.lc-body .lc-purchase-foot a {
  color: #2F6F9F !important;
  font-weight: 600;
  text-decoration: underline !important;
}
body.lc-body .lc-price-legacy-hidden,
body.lc-body .lc-title-moved {
  display: none !important;
}
body.lc-body #desktopProDetailsOptions td.choose_options {
  margin-bottom: 12px !important;
}
body.lc-body #desktopProDetailsOptions td.choose_options strong {
  display: none !important; /* PSD: plain dropdown, label optional */
}
body.lc-body #desktopProDetailsOptions td.choose_options span[style*="FF0004"] {
  display: none !important;
}
body.lc-body #desktopProDetailsOptions select.newchoice,
body.lc-body #desktopProDetailsOptions select,
body.lc-body .lc-purchase-card select.newchoice {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  position: static !important;
  min-height: 44px !important;
  border-radius: 8px !important;
}
body.lc-body #desktopProDetailsOptions .delivery_option_product_detail {
  display: none !important;
}
body.lc-body .lc-purchase-card .product_add_options,
body.lc-body #desktopProDetailsOptions .product_add_options {
  display: block !important;
  width: 100% !important;
  border: 0 !important;
}
body.lc-body .lc-purchase-card .product_add_options tr,
body.lc-body #desktopProDetailsOptions .product_add_options tr {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 10px;
  width: 100% !important;
}
body.lc-body .lc-purchase-card .product_add_options td,
body.lc-body #desktopProDetailsOptions .product_add_options td {
  display: block !important;
  width: auto !important;
  clear: none !important;
  float: none !important;
}
body.lc-body .lc-purchase-card .product_add_options td.qty_box_td,
body.lc-body #desktopProDetailsOptions .product_add_options td.qty_box_td {
  flex: 0 0 auto;
  min-width: 64px;
}
body.lc-body .lc-purchase-card .product_add_options td:last-child,
body.lc-body #desktopProDetailsOptions .product_add_options td:last-child {
  flex: 1 1 auto;
}
body.lc-body .lc-purchase-card .product_add_options .add_to_cart_button,
body.lc-body #desktopProDetailsOptions .product_add_options .add_to_cart_button {
  display: block !important;
  width: 100% !important;
}
body.lc-body a.btn111111.addToCartBtn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-width: 0;
  max-width: none;
  background: #fff !important;
  background-image: none !important;
  color: #111 !important;
  border: 1.5px solid #C8C2BA !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-shadow: none !important;
  float: none !important;
}
body.lc-body a.btn111111.addToCartBtn span {
  margin: 0 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: inherit !important;
}
body.lc-body a.btn111111.addToCartBtn:hover {
  background: var(--lc-navy) !important;
  color: #fff !important;
  border-color: var(--lc-navy) !important;
}
body.lc-body select.newchoice,
body.lc-body #quantity {
  border: 1px solid var(--lc-border) !important;
  border-radius: 8px !important;
  min-height: 44px;
  padding: 8px 12px !important;
  width: 100% !important;
  max-width: 100% !important;
  background: #fff !important;
}
body.lc-body #quantity {
  width: 64px !important;
  max-width: 64px !important;
  text-align: center;
}
body.lc-body .choose_options {
  display: block !important;
  width: 100% !important;
  padding-bottom: 4px !important;
  position: relative !important;
  overflow: visible !important;
}
body.lc-body td.add_to_cart_button {
  display: block !important;
  padding-top: 0 !important;
}
/* Right-column key features: keep Sample Order once, drop Read More spacing junk */
body.lc-body td[width="42%"] .productKeyFeatures a.more-keyFeatures {
  display: none !important;
}
body.lc-body td[width="42%"] .productKeyFeatures {
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  body.lc-body .lc-purchase-card,
  body.lc-body #desktopProDetailsOptions,
  body.lc-body #mobileProDetailOptions:not(:empty) {
    max-width: 100% !important;
    position: static !important;
  }
  /* Mobile clone empties this table — leftover padding/border was a blank pill */
  body.lc-body table#desktopProDetailsOptions,
  body.lc-body table.productDetailOption#desktopProDetailsOptions,
  body.lc-body #desktopProDetailsOptions,
  body.lc-body #desktopProDetailsOptions[data-lc-dup-hidden="1"],
  body.lc-body #desktopProDetailsOptions > tbody {
    display: none !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }
  body.lc-body .lc-purchase-title {
    font-size: 1.05rem;
  }
  body.lc-body .lc-purchase-now {
    font-size: 24px;
  }
}

/* ---- Cart / checkout restyle (calculation markup unchanged) ---- */
body.lc-body .cart_wrapper,
body.lc-body .checkout-wrapper,
body.lc-body .page_collection,
body.lc-body form#form_data_cart,
body.lc-body .secured-checkout {
  max-width: var(--lc-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
body.lc-body .lc-steps-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 24px 24px 16px;
  max-width: var(--lc-max);
  margin: 0 auto;
  font-size: 14px;
  color: var(--lc-muted);
}
body.lc-body .lc-steps-bar .is-active { color: #2F6F9F; font-weight: 600; }
body.lc-body .lc-steps-bar .is-done { color: var(--lc-step); font-weight: 600; }

body.lc-body .btn1111,
body.lc-body .green_btn,
body.lc-body .con,
body.lc-body button.green_btn {
  border-radius: 8px !important;
  font-family: var(--lc-font) !important;
}
body.lc-body .green_btn,
body.lc-body #payment_info_countinue,
body.lc-body #payment_info_countinue_sagepay {
  background: var(--lc-navy) !important;
  border: 1.5px solid var(--lc-navy) !important;
  color: #fff !important;
  padding: 12px 22px !important;
}
body.lc-body .accordion {
  background: #F3F1ED !important;
  border: 1px solid var(--lc-border) !important;
  border-radius: 8px !important;
  margin-bottom: 8px !important;
  font-family: var(--lc-font) !important;
}
body.lc-body .checkout-title {
  font-family: var(--lc-display) !important;
  font-size: 1.75rem !important;
  color: var(--lc-text) !important;
}
body.lc-body input[type="text"],
body.lc-body input[type="email"],
body.lc-body input[type="tel"],
body.lc-body input[type="password"],
body.lc-body select,
body.lc-body textarea {
  border: 1px solid var(--lc-border) !important;
  border-radius: 6px !important;
  padding: 10px 12px !important;
  font-family: var(--lc-font) !important;
}

/* ---- Product details restyle (add-to-cart / price PHP untouched) ---- */
body.lc-body .txt_premium_pr {
  color: #C62828;
  font-weight: 600;
}
body.lc-body .product_detail_page,
body.lc-body .product-detail,
body.lc-body .product_con {
  max-width: var(--lc-max);
  margin-left: auto;
  margin-right: auto;
}
body.lc-body a.btn111111.addToCartBtn {
  background-color: #fff !important;
  background-image: none !important;
  color: var(--lc-text) !important;
  border: 1.5px solid #1a1a1a !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  font-family: var(--lc-font) !important;
  font-weight: 700 !important;
}
body.lc-body a.btn111111.addToCartBtn:hover {
  background-color: var(--lc-navy) !important;
  color: #fff !important;
  border-color: var(--lc-navy) !important;
}
body.lc-body .breadcrumb,
body.lc-body .breadcrumb_main {
  font-size: 13px;
  color: var(--lc-muted);
  padding: 18px 24px 8px;
  max-width: var(--lc-max);
  margin: 0 auto;
}

/* Outer PDP table — full viewport so footer/header edges match; content stays in inner 1280 table */
body.lc-body table.lc-pdp-page {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0;
  border-collapse: collapse;
}

/* ---- PDP mini-cart — right column under Add to Cart, brown theme ---- */
body.lc-body .lc-minicart--empty,
body.lc-body .lc-minicart--empty .lc-minicart__inner,
body.lc-body tr.lc-minicart-source-row.is-empty,
body.lc-body tr.lc-minicart-row:has(.lc-minicart--empty) {
  display: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  box-shadow: none !important;
  background: transparent !important;
}
body.lc-body .lc-minicart-row > td {
  padding: 12px 0 0 !important;
  vertical-align: top !important;
}
body.lc-body .lc-minicart {
  display: block !important;
  width: 100% !important;
  max-width: 420px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  float: none !important;
}
body.lc-body .lc-minicart__inner,
body.lc-body .lc-minicart .auto_sc {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  background: #fff !important;
  border: 1px solid var(--lc-border) !important;
  border-radius: 12px !important;
  padding: 20px 22px 16px !important;
  box-shadow: 0 8px 24px rgba(43,30,22,.06) !important;
  box-sizing: border-box;
  float: none !important;
}
body.lc-body .lc-minicart .currntly-cart,
body.lc-body .lc-minicart__inner .currntly-cart {
  display: block !important;
  font-family: var(--lc-font) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--lc-text) !important;
  margin: 0 0 14px !important;
}
body.lc-body .lc-minicart .success_msg {
  width: 100% !important;
  margin: 0 0 14px;
  background: #E8F5E9 !important;
  border-radius: 8px;
  border-collapse: collapse;
}
body.lc-body .lc-minicart .success_msg td {
  display: table-cell !important;
  width: auto !important;
  padding: 10px 8px !important;
  font-size: 14px;
  color: var(--lc-text);
  background: transparent !important;
  float: none !important;
}
body.lc-body .lc-minicart table.cart-products-table,
body.lc-body .lc-minicart table.bbt-cart-products-table,
body.lc-body .lc-minicart table.bbt-discount,
body.lc-body .lc-minicart table.bbt-totals,
body.lc-body .lc-minicart table.bbt-viewcart {
  display: table !important;
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse !important;
  table-layout: auto !important;
  margin: 0 !important;
  float: none !important;
}
body.lc-body .lc-minicart table.bbt-discount {
  margin-top: 0 !important;
}
body.lc-body .lc-minicart .cart-products-table tr,
body.lc-body .lc-minicart .bbt-discount tr,
body.lc-body .lc-minicart .bbt-totals tr,
body.lc-body .lc-minicart .bbt-viewcart tr {
  display: table-row !important;
  width: auto !important;
  float: none !important;
}
body.lc-body .lc-minicart .cart-products-table td,
body.lc-body .lc-minicart .bbt-discount td,
body.lc-body .lc-minicart .bbt-totals td,
body.lc-body .lc-minicart .bbt-viewcart td {
  display: table-cell !important;
  float: none !important;
  clear: none !important;
  height: auto !important;
  padding: 10px 12px !important;
  vertical-align: middle;
  font-family: var(--lc-font) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  color: var(--lc-text) !important;
  border: 0 !important;
  background: transparent;
  word-break: normal !important;
  overflow-wrap: break-word;
}
body.lc-body .lc-minicart .cart-products-table td:nth-child(1) { width: 90px !important; min-width: 90px !important; white-space: nowrap !important; }
body.lc-body .lc-minicart .cart-products-table td:nth-child(2) { width: 90px !important; min-width: 90px !important; white-space: nowrap !important; }
body.lc-body .lc-minicart .cart-products-table td:nth-child(3) { width: auto !important; white-space: normal !important; }
body.lc-body .lc-minicart .cart-products-table td:nth-child(4) { width: 110px !important; min-width: 90px !important; text-align: right !important; white-space: nowrap !important; }
body.lc-body .lc-minicart .cart-products-table td:nth-child(5) { width: 40px !important; min-width: 36px !important; text-align: center !important; white-space: nowrap !important; }
body.lc-body .lc-minicart .cart-products-table tr.lc-minicart__head,
body.lc-body .lc-minicart .cart-products-table tr:first-child {
  background: var(--lc-brown) !important;
}
body.lc-body .lc-minicart .cart-products-table tr.lc-minicart__head td,
body.lc-body .lc-minicart .cart-products-table tr:first-child td,
body.lc-body .lc-minicart .cart-products-table tr.lc-minicart__head span,
body.lc-body .lc-minicart .cart-products-table tr:first-child span,
body.lc-body .lc-minicart .cart-products-table tr.lc-minicart__head td *,
body.lc-body .lc-minicart .cart-products-table tr:first-child td * {
  background: transparent !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .02em;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}
body.lc-body .lc-minicart .cart-products-table tr.lc-minicart__metres td {
  background: #F3F1ED !important;
  color: var(--lc-text) !important;
  font-weight: 700;
}
body.lc-body .lc-minicart .cart-products-table img {
  display: inline-block !important;
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  vertical-align: middle;
}
body.lc-body .lc-minicart a.lc-minicart__remove {
  display: inline-block !important;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  text-decoration: none !important;
}
body.lc-body .lc-minicart .bbt-discount td,
body.lc-body .lc-minicart .cart-products-table tr[class*="offer"] td,
body.lc-body .lc-minicart .cart-products-table tr.offer\&descount td,
body.lc-body .lc-minicart .bbt-discount tr[class*="offer"] td {
  background: #FAFAF8 !important;
  border-top: 1px solid var(--lc-border) !important;
  font-weight: 700 !important;
  color: var(--lc-text) !important;
}
body.lc-body .lc-minicart .bbt-discount td:nth-child(2),
body.lc-body .lc-minicart .bbt-discount td:nth-child(4) {
  display: none !important;
}
body.lc-body .lc-minicart .bbt-discount td:nth-child(1) { width: 70% !important; }
body.lc-body .lc-minicart .bbt-discount td:nth-child(3) { width: 30% !important; text-align: right !important; white-space: nowrap !important; }
body.lc-body .lc-minicart .icon_que {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--lc-brown);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  vertical-align: middle;
}
body.lc-body .lc-minicart .icon_que:before { content: "?"; color: #fff; }
body.lc-body .lc-minicart .bbt-totals {
  margin-top: 12px !important;
}
body.lc-body .lc-minicart .bbt-totals td:nth-child(2),
body.lc-body .lc-minicart .bbt-totals td:nth-child(4) {
  display: none !important;
}
body.lc-body .lc-minicart .bbt-totals td:nth-child(1) { width: 70% !important; }
body.lc-body .lc-minicart .bbt-totals td:nth-child(3) {
  width: 30% !important;
  text-align: right !important;
  white-space: nowrap !important;
}
body.lc-body .lc-minicart .bbt-totals tr.lc-minicart__ex td,
body.lc-body .lc-minicart .bbt-totals tr:first-child td {
  background: var(--lc-brown-mid) !important;
  color: #fff !important;
  font-weight: 700 !important;
}
body.lc-body .lc-minicart .bbt-totals tr.lc-minicart__inc td,
body.lc-body .lc-minicart .bbt-totals tr:nth-child(2) td {
  background: var(--lc-brown) !important;
  color: #fff !important;
  font-weight: 700 !important;
}
body.lc-body .lc-minicart .bbt-totals span,
body.lc-body .lc-minicart .bbt-totals strong {
  color: inherit !important;
}
body.lc-body .lc-minicart .bbt-viewcart {
  margin-top: 8px !important;
}
body.lc-body .lc-minicart .bbt-viewcart td {
  text-align: right !important;
  background: transparent !important;
  padding: 8px 0 4px !important;
}
body.lc-body .lc-minicart a.lc-minicart__btn,
body.lc-body .lc-minicart a.btn111111,
body.lc-body .lc-minicart .bbt-viewcart a.btn111111 {
  display: inline-block !important;
  background: var(--lc-brown) !important;
  background-image: none !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 8px !important;
  padding: 12px 22px !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  text-shadow: none !important;
  text-decoration: none !important;
  letter-spacing: .04em;
  float: none !important;
}
body.lc-body .lc-minicart a.lc-minicart__btn:hover,
body.lc-body .lc-minicart a.btn111111:hover,
body.lc-body .lc-minicart .bbt-viewcart a.btn111111:hover {
  background: var(--lc-brown-mid) !important;
  color: #fff !important;
}
/* If mini-cart is still nested in the purchase card table, beat display:block on those tds */
body.lc-body #desktopProDetailsOptions .lc-minicart table,
body.lc-body .lc-purchase-card .lc-minicart table,
body.lc-body #desktopProDetailsOptions .lc-minicart .cart-products-table,
body.lc-body #desktopProDetailsOptions .lc-minicart .bbt-discount,
body.lc-body #desktopProDetailsOptions .lc-minicart .bbt-totals,
body.lc-body #desktopProDetailsOptions .lc-minicart .bbt-viewcart {
  display: table !important;
  width: 100% !important;
}
body.lc-body #desktopProDetailsOptions .lc-minicart tr,
body.lc-body .lc-purchase-card .lc-minicart tr {
  display: table-row !important;
  width: auto !important;
}
body.lc-body #desktopProDetailsOptions .lc-minicart td,
body.lc-body .lc-purchase-card .lc-minicart td {
  display: table-cell !important;
  float: none !important;
  width: auto !important;
  padding: 10px 12px !important;
}
@media (max-width: 767px) {
  body.lc-body .lc-minicart.hideResponsive {
    display: none !important;
  }
}

/* ---- Shopping bag / cart page (PSD shopping_cart) ---- */
body.lc-body.lc-cart-page {
  background: var(--lc-bg);
}
body.lc-body.lc-cart-page .lc-steps-bar {
  padding-top: 28px;
  padding-bottom: 8px;
}
.lc-cart-shell {
  padding: 8px 0 48px;
}
.lc-cart-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin: 8px 0 22px;
}
.lc-cart-head h1 {
  font-family: var(--lc-display);
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 700;
  margin: 0;
  color: var(--lc-text);
}
.lc-cart-head h1 span,
.lc-cart-head__count {
  font-family: var(--lc-font);
  font-size: 1rem;
  font-weight: 500;
  color: var(--lc-muted);
  margin-left: 8px;
}
.lc-cart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}
.lc-cart-panel {
  background: #fff;
  border: 1px solid var(--lc-border);
  border-radius: 12px;
  padding: 24px 28px 20px;
}
.lc-cart-panel > h2 {
  font-family: var(--lc-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--lc-text);
}
body.lc-cart-page .cart_title,
body.lc-cart-page table.cart-page_table {
  /* leftover original table is hidden after JS moves content */
}
body.lc-cart-page.lc-cart-ready table.cart-page_table {
  display: none !important;
}
body.lc-cart-page.lc-cart-ready .cart_title {
  display: none !important;
}

/* Product rows */
body.lc-cart-page #form_data_cart table.cart-T,
body.lc-cart-page #form_data_cart table.cart-T > tbody {
  display: block;
  width: 100%;
  border: 0 !important;
}
body.lc-cart-page #form_data_cart table.cart-T > tbody > tr.results_table_head,
body.lc-cart-page #form_data_cart .showTablet,
body.lc-cart-page #form_data_cart .product_vat,
body.lc-cart-page #form_data_cart .product_total,
body.lc-cart-page #form_data_cart .mobile_lable {
  display: none !important;
}
body.lc-cart-page #form_data_cart table.cart-T > tbody > tr:not(.results_table_head):not(.cart_footer) {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto 36px;
  grid-template-areas:
    "img name price x"
    "img size .     ."
    "img qty  .     .";
  align-items: start;
  column-gap: 16px;
  row-gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid var(--lc-border);
  background: transparent !important;
}
body.lc-cart-page #form_data_cart .product_img {
  grid-area: img;
  width: 84px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
body.lc-cart-page #form_data_cart .product_img img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
body.lc-cart-page #form_data_cart td.product_body_text:not(.product_size):not(.product_price):not(.product_vat) {
  grid-area: name;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 15px !important;
  font-weight: 600;
  color: var(--lc-text);
}
body.lc-cart-page #form_data_cart td.product_body_text:not(.product_size):not(.product_price) a {
  color: var(--lc-text) !important;
  text-decoration: none !important;
}
body.lc-cart-page #form_data_cart .product_size {
  grid-area: size;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--lc-text) !important;
  line-height: 1.3;
}
body.lc-cart-page #form_data_cart .product_qty {
  grid-area: qty;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  white-space: nowrap;
  display: flex !important;
  align-items: center;
  gap: 8px;
  width: auto !important;
  margin-top: 6px;
  justify-content: flex-start;
}
body.lc-cart-page #form_data_cart .product_qty::before {
  content: "Qty";
  display: inline !important;
  font-size: 13px;
  font-weight: 500;
  color: var(--lc-muted);
  margin: 0;
}
body.lc-cart-page #form_data_cart .product_qty input.inputbox_medium,
body.lc-cart-page #form_data_cart .product_qty input[type="text"] {
  width: 56px !important;
  height: 36px !important;
  text-align: center;
  border: 1px solid var(--lc-border) !important;
  border-radius: 6px !important;
  padding: 6px 8px !important;
}
body.lc-cart-page #form_data_cart .product_qty .update_btn {
  display: none !important;
}
body.lc-cart-page #form_data_cart .product_price {
  grid-area: price;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 15px !important;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
  min-width: 72px;
}
body.lc-cart-page #form_data_cart .product_remove {
  grid-area: x;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  text-align: center;
}
body.lc-cart-page #form_data_cart .product_remove a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #8a847c !important;
  text-decoration: none !important;
}
body.lc-cart-page #form_data_cart .icon_remove {
  background: none !important;
  width: auto !important;
  height: auto !important;
  display: inline-block;
}
body.lc-cart-page #form_data_cart .icon_remove::after {
  content: "\00d7";
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

/* Order-panel footer: Continue shopping as text link */
body.lc-cart-page #form_data_cart tr.cart_footer {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 0 4px;
  border: 0 !important;
  background: transparent !important;
}
body.lc-cart-page #form_data_cart tr.cart_footer td {
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
}
body.lc-cart-page #form_data_cart .ContinueShoppingBtn a,
body.lc-cart-page #form_data_cart .ContinueShoppingBtn a span {
  background: none !important;
  background-image: none !important;
  color: var(--lc-text) !important;
  text-shadow: none !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: underline !important;
  border-radius: 0 !important;
}
body.lc-cart-page #form_data_cart .UpdateCartBtn a.mobile-hide,
body.lc-cart-page #form_data_cart .UpdateCartBtn a[href*="update_all"] {
  display: none !important;
}
body.lc-cart-page #form_data_cart .UpdateCartBtn a.update_qty {
  background: none !important;
  background-image: none !important;
  color: var(--lc-muted) !important;
  text-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  font-size: 13px !important;
  text-decoration: underline !important;
}
body.lc-cart-page #form_data_cart .UpdateCartBtn a.update_qty span {
  color: var(--lc-muted) !important;
  font-size: 13px !important;
}

/* Summary */
body.lc-cart-page .cart_total_table {
  width: 100% !important;
  border: 0 !important;
  background: transparent !important;
}
body.lc-cart-page .cart_total_table td {
  padding: 10px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--lc-border) !important;
  background: transparent !important;
  font-size: 14px !important;
  color: var(--lc-text);
  font-weight: 400 !important;
}
body.lc-cart-page .cart_total_table td strong {
  font-weight: 500;
}
body.lc-cart-page .cart_total_table tr.grand-total-table:last-of-type td,
body.lc-cart-page .cart_total_table tr.lc-cart-total td {
  border-bottom: 0 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding-top: 14px !important;
}
body.lc-cart-page .cart_checkout_btns td {
  border: 0 !important;
  padding-top: 18px !important;
}
body.lc-cart-page .cart_checkout_btns a.btn11,
body.lc-cart-page .cart_checkout_btns a.btn11 span {
  background: #fff !important;
  background-image: none !important;
  color: var(--lc-text) !important;
  text-shadow: none !important;
  border: 1px solid #cfc8bf !important;
  border-radius: 8px !important;
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 18px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  box-sizing: border-box;
  text-decoration: none !important;
}
body.lc-cart-page .cart_checkout_btns a.btn11:hover {
  background: var(--lc-bg) !important;
}
body.lc-cart-page .cart_checkout_btns a.showResponsive {
  display: none !important;
}
body.lc-cart-page .lc-cart-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--lc-muted);
  font-size: 13px;
}
body.lc-cart-page .lc-cart-secure svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

/* Collection-only modal — theme colors (mobile + desktop) */
body.lc-body div.deliPreventCustom_modal .modal-content {
  border-color: var(--lc-brown) !important;
}
body.lc-body div.deliPreventCustom_modal .content a {
  color: var(--lc-brown) !important;
}
body.lc-body div.deliPreventCustom_modal .bTn_Group a.actionBtn,
body.lc-body div.deliPreventCustom_modal .bTn_Group a.actionBtn:hover {
  background-color: var(--lc-brown) !important;
  color: #fff !important;
  border-color: var(--lc-brown) !important;
}
body.lc-body div.deliPreventCustom_modal .bTn_Group a.actionBtn.border_btn,
body.lc-body div.deliPreventCustom_modal .bTn_Group a.actionBtn.border_btn:hover {
  background-color: #fff !important;
  color: var(--lc-brown) !important;
  border-color: var(--lc-brown) !important;
}
body.lc-cart-page .cart_accept_payment {
  display: none !important;
}
body.lc-cart-page #update_discount_code {
  background: var(--lc-brown) !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 6px 12px !important;
  display: inline-block;
}
body.lc-cart-page #discount_code {
  width: 100% !important;
  margin: 8px 0 !important;
}

/* Empty cart */
body.lc-cart-page .lc-cart-empty {
  background: #fff;
  border: 1px solid var(--lc-border);
  border-radius: 12px;
  padding: 36px 28px;
}
body.lc-cart-page .lc-cart-empty p {
  margin: 0 0 16px;
  color: var(--lc-muted);
}
body.lc-cart-page .lc-cart-empty a.btn1111 {
  background: none !important;
  background-image: none !important;
  color: var(--lc-text) !important;
  text-decoration: underline !important;
  padding: 0 !important;
  border: 0 !important;
  text-shadow: none !important;
}

/* FBT */
.lc-cart-fbt {
  padding: 8px 0 56px;
}
.lc-cart-fbt h2 {
  font-family: var(--lc-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  margin: 0 0 22px;
  color: var(--lc-text);
}
.lc-cart-fbt .lc-card__body {
  padding-top: 14px;
}
.lc-cart-fbt .lc-card__price .unit {
  display: inline;
  margin-left: 4px;
}

@media (max-width: 900px) {
  .lc-cart-grid {
    grid-template-columns: 1fr;
  }
  body.lc-cart-page #form_data_cart table.cart-T > tbody > tr:not(.results_table_head):not(.cart_footer) {
    grid-template-columns: 72px minmax(0, 1fr) auto 28px;
    grid-template-areas:
      "img name price x"
      "img size .     ."
      "img qty  .     .";
  }
}
@media (max-width: 767px) {
  .lc-cart-panel { padding: 18px 16px; }
  body.lc-cart-page #form_data_cart .mobile_lable { display: none !important; }
  .lc-cart-fbt .lc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Keep qty/checkout working on mobile — do not use global .hideResponsive hide */
  body.lc-body.lc-cart-page #form_data_cart tr.cart_footer {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 16px;
  }
  body.lc-body.lc-cart-page #form_data_cart .UpdateCartBtn {
    width: 100% !important;
  }
  body.lc-body.lc-cart-page #form_data_cart .UpdateCartBtn a.update_qty,
  body.lc-body.lc-cart-page #form_data_cart .UpdateCartBtn a.update_qty.hideResponsive {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    background: var(--lc-brown) !important;
    background-image: none !important;
    color: #fff !important;
    text-decoration: none !important;
    text-shadow: none !important;
    border: 0 !important;
    border-radius: 8px !important;
    padding: 12px 18px !important;
    min-height: 44px;
    font-size: 15px !important;
    font-weight: 700 !important;
  }
  body.lc-body.lc-cart-page #form_data_cart .UpdateCartBtn a.update_qty span {
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
  }
  body.lc-body.lc-cart-page .cart_checkout_btns a.btn11,
  body.lc-body.lc-cart-page .cart_checkout_btns a.btn11.hideResponsive,
  body.lc-body.lc-cart-page #btn_goto_checkout,
  body.lc-body.lc-cart-page #btn_goto_checkout.hideResponsive {
    display: block !important;
    width: 100%;
    box-sizing: border-box;
    background: var(--lc-navy) !important;
    background-image: none !important;
    color: #fff !important;
    border: 1.5px solid var(--lc-navy) !important;
    border-radius: 8px !important;
    padding: 14px 18px !important;
    min-height: 48px;
    line-height: 1.3;
    text-align: center;
    text-decoration: none !important;
    text-shadow: none !important;
    font-size: 15px !important;
    font-weight: 700 !important;
  }
  body.lc-body.lc-cart-page .cart_checkout_btns a.btn11 span,
  body.lc-body.lc-cart-page .cart_checkout_btns a.btn11.hideResponsive span,
  body.lc-body.lc-cart-page #btn_goto_checkout span,
  body.lc-body.lc-cart-page .cart_checkout_btns p {
    display: inline !important;
    width: auto !important;
    background: transparent !important;
    background-image: none !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-shadow: none !important;
  }
}

/* ---- CMS / Delivery / Gallery pages ---- */
.lc-page-head {
  margin: 0 0 28px;
}
.lc-page-head h1 {
  font-family: var(--lc-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--lc-text);
}
.lc-page-head p {
  margin: 0;
  color: var(--lc-muted);
  font-size: 15px;
  max-width: 640px;
}
.lc-breadcrumb {
  font-size: 13px !important;
  margin: 0 0 10px !important;
  color: var(--lc-muted);
}
.lc-breadcrumb a {
  color: var(--lc-brown);
  font-weight: 600;
  text-decoration: none !important;
}
.lc-breadcrumb a:hover { text-decoration: underline !important; }

.lc-cms-section,
.lc-gallery-section {
  padding: 36px 0 64px;
  min-height: 50vh;
}

.lc-cms-prose {
  color: var(--lc-text);
  font-size: 15px;
  line-height: 1.65;
}
.lc-cms-prose h1,
.lc-cms-prose h2,
.lc-cms-prose h3,
.lc-cms-prose h4,
.lc-cms-prose h5,
.lc-cms-prose .h1 {
  font-family: var(--lc-display);
  color: var(--lc-brown);
  font-weight: 700;
  margin: 28px 0 12px;
  line-height: 1.25;
}
.lc-cms-prose h1:first-child,
.lc-cms-prose h2:first-child,
.lc-cms-prose h3:first-child,
.lc-cms-prose h4:first-child,
.lc-cms-prose .h1:first-child {
  margin-top: 0;
}
.lc-cms-prose p { margin: 0 0 12px; color: var(--lc-muted); }
.lc-cms-prose ul,
.lc-cms-prose ol {
  margin: 0 0 18px;
  padding-left: 1.25em;
  list-style: disc;
}
.lc-cms-prose ol { list-style: decimal; }
.lc-cms-prose li {
  margin: 0 0 8px;
  color: var(--lc-muted);
}
.lc-cms-prose a {
  color: var(--lc-brown);
  text-decoration: underline;
}
.lc-cms-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 12px 0;
}
.lc-cms-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 14px;
}
.lc-cms-prose table td,
.lc-cms-prose table th {
  border: 1px solid var(--lc-border);
  padding: 8px 10px;
  text-align: left;
}
body.lc-delivery-page .lc-cms-prose.lc-panel-block {
  overflow: hidden;
  padding: 28px 32px 32px;
  width: 100%;
  max-width: 100%;
}
body.lc-delivery-page .lc-cms-prose table,
body.lc-delivery-page .lc-cms-prose tbody,
body.lc-delivery-page .lc-cms-prose tr {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}
body.lc-delivery-page .lc-cms-prose td,
body.lc-delivery-page .lc-cms-prose th {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}
body.lc-delivery-page .lc-cms-prose td[width="82"],
body.lc-delivery-page .lc-cms-prose td:empty,
body.lc-delivery-page .lc-cms-prose .h1:empty,
body.lc-delivery-page .lc-cms-prose p.h1 {
  display: none !important;
}
body.lc-delivery-page .lc-cms-prose .cms_page_text,
body.lc-delivery-page .lc-cms-prose .cms_page_text[style] {
  width: 100% !important;
  max-width: 100% !important;
}
.lc-cms-prose input[type="text"],
.lc-cms-prose input[type="email"],
.lc-cms-prose textarea,
.lc-cms-prose select {
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
}

.lc-delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}
.lc-delivery-aside { position: sticky; top: 88px; }
.lc-delivery-calc h2 {
  font-family: var(--lc-display);
  font-size: 1.35rem;
  margin: 0 0 8px;
  color: var(--lc-brown);
}
.lc-delivery-calc > p {
  margin: 0 0 16px;
  color: var(--lc-muted);
  font-size: 14px;
}
.lc-delivery-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--lc-text);
}
.lc-delivery-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.lc-delivery-input {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  padding: 0 14px;
  font-size: 15px;
  background: #fff;
}
.lc-delivery-input:focus {
  outline: 2px solid var(--lc-cream);
  border-color: var(--lc-brown);
}
.lc-delivery-row .lc-btn {
  flex: 0 0 auto;
  padding: 0 22px;
  height: 48px;
}
.lc-delivery-results {
  margin-top: 18px;
}
.lc-delivery-results table {
  width: 100% !important;
  border-collapse: collapse;
}
.lc-delivery-results td {
  display: block;
  width: 100% !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid var(--lc-border);
  font-size: 14px;
  color: var(--lc-text);
  line-height: 1.45;
}
.lc-delivery-results td:empty { display: none; }
.lc-delivery-results strong {
  display: inline-block;
  margin-left: 4px;
  color: var(--lc-brown);
}
.lc-delivery-photo {
  margin-top: 28px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--lc-border);
  background: #ebe7e1;
}
.lc-delivery-photo img,
.lc-delivery-photo .del-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 220px;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lc-gallery-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
.lc-gallery-grid .lc-card,
.lc-gallery-card {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.lc-gallery-card .lc-card__media {
  aspect-ratio: 4 / 3;
}
.lc-gallery-card .lc-card__title {
  font-size: 1.05rem;
  min-height: 2.6em;
}
.lc-gallery-card .lc-btn--brown {
  color: #fff;
}
.lc-gallery-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lc-gallery-photos li {
  margin: 0;
  border-radius: var(--lc-radius);
  overflow: hidden;
  background: #ebe7e1;
  border: 1px solid var(--lc-border);
  aspect-ratio: 1;
}
.lc-gallery-photos a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.lc-gallery-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.lc-gallery-photos a:hover img {
  transform: scale(1.06);
}

/* Lightbox above sticky header */
#overlay, #lightbox, #outerImageContainer, table#outerImageContainer {
  z-index: 2000 !important;
}
table#outerImageContainer td { background: transparent !important; }
table#outerImageContainer td div#imageData div#imageDetails { display: none; }
table#outerImageContainer td div#imageData div#close {
  z-index: 10;
  position: absolute;
  top: -20px;
  right: 0;
}

@media (max-width: 900px) {
  .lc-delivery-layout {
    grid-template-columns: 1fr;
  }
  .lc-delivery-aside { position: static; }
  .lc-gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .lc-gallery-photos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .lc-delivery-row { flex-direction: column; }
  .lc-delivery-row .lc-btn { width: 100%; height: 46px; }
  .lc-gallery-photos { grid-template-columns: repeat(2, 1fr); }
  .lc-cms-section .lc-panel-block,
  .lc-gallery-section .lc-panel-block {
    padding: 22px 18px;
  }
}
@media (max-width: 480px) {
  .lc-gallery-grid { grid-template-columns: 1fr !important; }
}

/* ---- Checkout page (confirm_new) — visual only, no calc/JS flow change ---- */
body.lc-body.lc-checkout-page {
  background: var(--lc-bg) !important;
}
body.lc-body.lc-checkout-page .lc-steps-bar {
  padding-top: 28px;
  padding-bottom: 4px;
}
body.lc-body.lc-checkout-page table.cart-table.Confirmation,
body.lc-body.lc-checkout-page table.cart-table.Confirmation td,
body.lc-body.lc-checkout-page table.cart-table.Confirmation tr {
  background: transparent !important;
  border: 0 !important;
}
body.lc-body.lc-checkout-page table.cart-table.Confirmation {
  width: 100% !important;
  max-width: var(--lc-max);
  margin: 0 auto 48px !important;
}
body.lc-body.lc-checkout-page .parent-div,
body.lc-body.lc-checkout-page .lc-checkout-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.78fr);
  gap: 28px;
  align-items: start;
  max-width: var(--lc-max);
  margin: 0 auto;
  padding: 8px 0 40px;
}
body.lc-body.lc-checkout-page .left-side,
body.lc-body.lc-checkout-page .right-side {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
  box-sizing: border-box;
}
body.lc-body.lc-checkout-page .checkout-title {
  font-family: var(--lc-display) !important;
  font-size: clamp(1.7rem, 3vw, 2.15rem) !important;
  font-weight: 700 !important;
  color: var(--lc-text) !important;
  margin: 4px 0 22px !important;
}
body.lc-body.lc-checkout-page button.accordion {
  background: #fff !important;
  color: var(--lc-text) !important;
  border: 1px solid var(--lc-border) !important;
  border-radius: 10px !important;
  margin: 0 0 10px !important;
  padding: 12px 16px !important;
  font-family: var(--lc-font) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  box-shadow: 0 6px 18px rgba(43,30,22,.04);
}
body.lc-body.lc-checkout-page button.accordion:disabled {
  background: #f3f0eb !important;
  color: #8a837c !important;
  cursor: default !important;
  box-shadow: none;
}
body.lc-body.lc-checkout-page button.accordion.active,
body.lc-body.lc-checkout-page button.accordion.active:hover {
  background: var(--lc-brown) !important;
  color: var(--lc-cream) !important;
  border-color: var(--lc-brown) !important;
  border-radius: 10px 10px 0 0 !important;
  margin-bottom: 0 !important;
}
body.lc-body.lc-checkout-page .head-step-no {
  background: #efe8dc !important;
  color: var(--lc-brown) !important;
  border-radius: 50%;
  width: 28px !important;
  height: 28px !important;
  line-height: 28px !important;
  margin-right: 12px !important;
  font-size: 13px !important;
}
body.lc-body.lc-checkout-page button.accordion.active .head-step-no {
  background: #fff !important;
  color: var(--lc-brown) !important;
}
body.lc-body.lc-checkout-page .step_edit {
  border: 1px solid currentColor !important;
  color: inherit !important;
  border-radius: 6px;
  width: auto !important;
  padding: 2px 10px;
  font-size: 12px !important;
  font-weight: 600;
  line-height: 20px;
}
body.lc-body.lc-checkout-page button.accordion.active + .panel {
  border: 1px solid var(--lc-border);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: #fff !important;
  margin-bottom: 12px;
  padding: 22px 22px 18px !important;
  box-shadow: 0 10px 24px rgba(43,30,22,.05);
}
body.lc-body.lc-checkout-page div.panel {
  background: #fff;
}
body.lc-body.lc-checkout-page .welcome-txt,
body.lc-body.lc-checkout-page .sub-head {
  font-family: var(--lc-font) !important;
  color: var(--lc-text);
}
body.lc-body.lc-checkout-page .sub-head {
  font-size: 18px !important;
  font-weight: 700;
  margin: 0 0 10px;
}
body.lc-body.lc-checkout-page .tbl_addr {
  width: 100% !important;
  border-collapse: separate;
  border-spacing: 0 10px;
}
body.lc-body.lc-checkout-page .tbl_addr .tr_input td {
  width: 50%;
  padding: 0 12px 0 0 !important;
  vertical-align: top;
}
body.lc-body.lc-checkout-page .tbl_addr .tr_input td[colspan="2"] {
  width: 100%;
  padding-right: 0 !important;
}
body.lc-body.lc-checkout-page .tbl_addr label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--lc-text);
  margin: 0 0 6px;
  padding-top: 0 !important;
}
body.lc-body.lc-checkout-page .txt_input,
body.lc-body.lc-checkout-page input.txt_input,
body.lc-body.lc-checkout-page textarea.txt_input,
body.lc-body.lc-checkout-page select.txt_input,
body.lc-body.lc-checkout-page #calculate_postcode,
body.lc-body.lc-checkout-page .inputbox_medium {
  width: 100% !important;
  max-width: 100% !important;
  height: 44px !important;
  box-sizing: border-box !important;
  border: 1px solid var(--lc-border) !important;
  border-radius: 8px !important;
  padding: 10px 12px !important;
  font-size: 14px !important;
  background: #fff !important;
  text-align: left !important;
  display: block;
}
body.lc-body.lc-checkout-page textarea.txt_input {
  height: 72px !important;
  resize: vertical !important;
}
body.lc-body.lc-checkout-page #txtExtra {
  width: 100% !important;
  min-height: 110px;
  border: 1px solid var(--lc-border) !important;
  border-radius: 8px !important;
  padding: 12px !important;
  box-sizing: border-box;
}
body.lc-body.lc-checkout-page .red_divider {
  color: var(--lc-red) !important;
}
body.lc-body.lc-checkout-page .checkbox_style label {
  display: inline !important;
  font-weight: 600;
}
body.lc-body.lc-checkout-page .green_btn,
body.lc-body.lc-checkout-page button.green_btn {
  background: var(--lc-brown) !important;
  border: 1.5px solid var(--lc-brown) !important;
  color: #fff !important;
  border-radius: 8px !important;
  height: auto !important;
  min-height: 44px;
  width: auto !important;
  padding: 11px 22px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  font-family: var(--lc-font) !important;
}
body.lc-body.lc-checkout-page .blue_btn,
body.lc-body.lc-checkout-page .blue_btn2 {
  background: #fff !important;
  border: 1.5px solid #1a1a1a !important;
  color: var(--lc-text) !important;
  border-radius: 8px !important;
  height: auto !important;
  min-height: 44px;
  width: auto !important;
  padding: 11px 22px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  font-family: var(--lc-font) !important;
}
body.lc-body.lc-checkout-page .black_btn {
  background: var(--lc-brown) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 8px !important;
  height: 44px !important;
  width: auto !important;
  min-width: 140px;
  margin-top: 0 !important;
  padding: 0 16px !important;
  font-weight: 700;
}
body.lc-body.lc-checkout-page .orange_btn,
body.lc-body.lc-checkout-page .orange_btn_disabled {
  border-radius: 8px !important;
  height: auto !important;
  min-height: 44px;
  padding: 11px 18px !important;
  font-weight: 700 !important;
}
body.lc-body.lc-checkout-page .checkout_calculate_postcode {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100% !important;
  max-width: 420px;
  margin: 10px 0 16px;
}
body.lc-body.lc-checkout-page .checkout_calculate_postcode #calculate_postcode {
  flex: 1;
}
body.lc-body.lc-checkout-page .need_help,
body.lc-body.lc-checkout-page .your_progress,
body.lc-body.lc-checkout-page .box-div {
  background: #fff;
  border: 1px solid var(--lc-border) !important;
  border-radius: 12px;
  overflow: hidden;
  float: none !important;
  width: 100% !important;
  margin: 0 0 14px !important;
  box-shadow: 0 8px 20px rgba(43,30,22,.05);
}
body.lc-body.lc-checkout-page .need_help {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 0 !important;
}
body.lc-body.lc-checkout-page .need_help_phone {
  float: none !important;
  width: auto !important;
}
body.lc-body.lc-checkout-page .need_help_phone img {
  width: 42px !important;
}
body.lc-body.lc-checkout-page .need_help_title {
  margin: 0 !important;
  font-size: 14px !important;
  color: var(--lc-muted);
}
body.lc-body.lc-checkout-page .contact_no {
  margin: 4px 0 0 !important;
  font-size: 22px !important;
  color: var(--lc-brown) !important;
}
body.lc-body.lc-checkout-page .your_progress {
  padding: 14px 18px;
  border-bottom: 0 !important;
}
body.lc-body.lc-checkout-page .your_progress > p {
  margin: 0 !important;
  font-size: 16px !important;
  color: var(--lc-text);
}
body.lc-body.lc-checkout-page .box-head {
  background: var(--lc-brown) !important;
  color: var(--lc-cream) !important;
  float: none !important;
  width: 100% !important;
  padding: 10px 14px !important;
  box-sizing: border-box;
}
body.lc-body.lc-checkout-page .box-head > h4 {
  color: var(--lc-cream) !important;
  float: none !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  font-size: 14px;
  display: inline-block;
}
body.lc-body.lc-checkout-page .rightbar_change {
  float: right !important;
  color: var(--lc-cream) !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline !important;
}
body.lc-body.lc-checkout-page .box-body {
  float: none !important;
  width: auto !important;
  padding: 12px 14px 14px !important;
  font-style: normal !important;
  font-size: 14px !important;
  color: var(--lc-text);
}
body.lc-body.lc-checkout-page #orderReview table.cart-T.Confirmation-page,
body.lc-body.lc-checkout-page .container-step5 table.cart-T {
  width: 100% !important;
  border-collapse: collapse;
  background: #fff;
}
body.lc-body.lc-checkout-page #orderReview table.cart-T .results_table_head td,
body.lc-body.lc-checkout-page #orderReview table.cart-T tr.results_table_head td {
  background: #efe8dc !important;
  color: var(--lc-text) !important;
  font-size: 12px !important;
  font-weight: 700;
  padding: 12px 10px !important;
  border-bottom: 1px solid var(--lc-border);
}
body.lc-body.lc-checkout-page #orderReview table.cart-T tr:not(.results_table_head) td {
  padding: 14px 10px !important;
  border-bottom: 1px solid #f0ece6;
  vertical-align: middle;
  font-size: 14px;
}
body.lc-body.lc-checkout-page #orderReview .product_img img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}
body.lc-body.lc-checkout-page #orderReview .cart_total_table {
  width: 100% !important;
  max-width: 360px;
  margin: 12px 0 8px auto !important;
  border: 1px solid var(--lc-border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
body.lc-body.lc-checkout-page #orderReview .cart_total_table td {
  padding: 10px 14px !important;
  font-size: 14px;
  border-bottom: 1px solid #f0ece6;
}
body.lc-body.lc-checkout-page #orderReview .cart_total_table tr:last-child td {
  font-weight: 800;
  font-size: 16px;
  border-bottom: 0;
  background: #faf7f2;
}
body.lc-body.lc-checkout-page #lastRow-btns {
  width: 100% !important;
  margin-top: 16px !important;
}
body.lc-body.lc-checkout-page #chk_colle_warehouse {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
}
body.lc-body.lc-checkout-page .viewDeliveryOptions label {
  color: var(--lc-text) !important;
}
@media (max-width: 900px) {
  body.lc-body.lc-checkout-page .parent-div,
  body.lc-body.lc-checkout-page .lc-checkout-wrap {
    grid-template-columns: 1fr;
  }
  body.lc-body.lc-checkout-page .tbl_addr .tr_input td {
    width: 100%;
    display: block;
    padding-right: 0 !important;
    margin-bottom: 10px;
  }
}

/* ---- PSD checkout structure (delivery1 / billing1 / review1) ---- */
body.lc-body.lc-checkout-psd {
  background: var(--lc-bg) !important;
  overflow-x: hidden;
}
body.lc-body.lc-checkout-psd > table,
body.lc-body.lc-checkout-psd table.cart-table.Confirmation {
  background: transparent !important;
}
body.lc-body.lc-checkout-psd .lc-co-pagehead {
  max-width: var(--lc-max);
  margin: 8px auto 0;
  padding: 0 24px;
}
body.lc-body.lc-checkout-psd .lc-co-pagehead h1 {
  font-family: var(--lc-display) !important;
  font-size: clamp(2rem, 3.2vw, 2.5rem) !important;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--lc-text);
}
body.lc-body.lc-checkout-psd .lc-steps-bar {
  display: none !important;
}
body.lc-body.lc-checkout-psd .lc-co-card {
  max-width: var(--lc-max);
  margin: 0 auto 56px;
  padding: 0 24px;
}
body.lc-body.lc-checkout-psd .lc-co-card__inner {
  background: #fff;
  border: 1px solid var(--lc-border);
  border-radius: 16px;
  overflow: visible;
}
body.lc-body.lc-checkout-psd .lc-co-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--lc-border);
  background: #faf8f5;
  font-size: 14px;
  color: var(--lc-step);
  font-weight: 600;
}
body.lc-body.lc-checkout-psd .lc-co-steps span.is-active {
  color: #2F6F9F;
  cursor: pointer;
}
body.lc-body.lc-checkout-psd .lc-co-steps span.is-done {
  cursor: pointer;
}
body.lc-body.lc-checkout-psd .lc-co-steps span.is-done:hover,
body.lc-body.lc-checkout-psd .lc-co-steps span.is-active:hover {
  text-decoration: underline;
}
body.lc-body.lc-checkout-psd .lc-co-steps span.is-todo {
  color: var(--lc-step);
  font-weight: 500;
  opacity: .85;
  cursor: default;
  pointer-events: none;
}
body.lc-body.lc-checkout-psd .parent-div.lc-checkout-wrap {
  display: grid !important;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  gap: 0;
  max-width: none;
  margin: 0;
  padding: 0;
}
body.lc-body.lc-checkout-psd .left-side {
  padding: 28px 32px 32px !important;
  border-right: 1px solid var(--lc-border);
}
body.lc-body.lc-checkout-psd .right-side {
  padding: 28px 28px 32px !important;
  background: #fff;
  position: sticky;
  top: 88px;
}
body.lc-body.lc-checkout-psd .checkout-title,
body.lc-body.lc-checkout-psd button.accordion {
  display: none !important;
}
body.lc-body.lc-checkout-psd div.panel {
  display: none !important;
  max-height: none !important;
  overflow: visible !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1,
body.lc-body.lc-checkout-psd.lc-co-delivery .container-step2,
body.lc-body.lc-checkout-psd.lc-co-address .container-step3,
body.lc-body.lc-checkout-psd.lc-co-billing .container-step4,
body.lc-body.lc-checkout-psd.lc-co-review .container-step5,
body.lc-body.lc-checkout-psd.lc-co-payment .container-step6 {
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Guest / login / register — this checkout step only */
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table {
  display: block !important;
  width: 100% !important;
  border: 0 !important;
  border-collapse: separate !important;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table > tbody {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px 48px;
  align-items: start;
  width: 100%;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table > tbody > tr:first-child {
  display: contents !important;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table > tbody > tr:first-child > td.checkoutType,
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table > tbody > tr:first-child > td.checkoutLogin,
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table > tbody > tr:first-child > td.checkoutForgotPass {
  display: block !important;
  width: auto !important;
  max-width: 100%;
  float: none !important;
  padding: 0 !important;
  vertical-align: top;
  box-sizing: border-box;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table > tbody > tr:first-child > td.checkoutLogin,
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table > tbody > tr:first-child > td.checkoutForgotPass {
  border-left: 1px solid var(--lc-border);
  padding-left: 40px !important;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table > tbody > tr:first-child > td.checkoutLogin.checkoutLogin_hide,
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table > tbody > tr:first-child > td.checkoutForgotPass.checkoutForgotPass_hide {
  display: none !important;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table > tbody > tr:last-child {
  grid-column: 1 / -1;
  display: block !important;
  width: 100% !important;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--lc-border);
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table > tbody > tr:last-child > td {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .sub-head {
  font-size: 1.05rem !important;
  font-weight: 700;
  margin: 0 0 8px !important;
  line-height: 1.3;
  color: var(--lc-text);
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutType > div > p:not(.sub-head):not(.hr-line),
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutLogin p:not(.sub-head),
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutForgotPass p:not(.sub-head) {
  margin: 0 0 10px;
  color: var(--lc-muted);
  font-size: 14px;
  line-height: 1.5;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutType ul {
  list-style: disc;
  margin: 0 0 16px;
  padding: 0 0 0 20px;
  color: var(--lc-muted);
  font-size: 14px;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutType ul li {
  margin: 0 0 6px;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .hr-line {
  border: 0 !important;
  border-top: 1px solid var(--lc-border) !important;
  width: 100% !important;
  height: 0 !important;
  margin: 22px 0 !important;
  padding: 0 !important;
  clear: both;
  float: none !important;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .green_btn,
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .blue_btn {
  float: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  clear: both;
  margin: 4px 10px 8px 0 !important;
  width: auto !important;
  min-width: 180px;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutLogin > table,
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutForgotPass > table,
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutLogin > table tbody,
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutForgotPass > table tbody,
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutLogin > table tr,
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutForgotPass > table tr,
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutLogin > table td,
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutForgotPass > table td {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  float: none !important;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutLogin > table td,
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .checkoutForgotPass > table td {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lc-text);
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .inputbox_medium {
  width: 100% !important;
  max-width: 340px !important;
  height: 44px !important;
  margin: 4px 0 8px;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 #forgot_password_link {
  display: inline-block;
  margin: 2px 0 12px;
  color: var(--lc-navy) !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
}
body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 #btn_backTologin {
  margin-top: 0 !important;
}
body.lc-body.lc-checkout-psd .lc-co-h2 {
  font-family: var(--lc-font) !important;
  font-size: 1.45rem !important;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--lc-text);
}
body.lc-body.lc-checkout-psd .lc-co-sub {
  color: var(--lc-muted);
  font-size: 14px;
  margin: 0 0 22px;
}
body.lc-body.lc-checkout-psd .container-step2 > br,
body.lc-body.lc-checkout-psd .container-step2 > div[style*="float:left"],
body.lc-body.lc-checkout-psd .container-step2 > div[style*="line-height:11px"] {
  display: none !important;
}
body.lc-body.lc-checkout-psd #btn_calculate_cost {
  background: var(--lc-brown) !important;
  color: #fff !important;
  border: 0 !important;
  font-weight: 700 !important;
}
body.lc-body.lc-checkout-psd .checkout_calculate_postcode {
  max-width: none;
  margin: 0 0 18px;
}
body.lc-body.lc-checkout-psd .container-step2 > p[style*="17px"] {
  background: #f3e6d2;
  border-radius: 8px 8px 0 0;
  padding: 12px 16px 4px;
  margin: 0;
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.4;
}
body.lc-body.lc-checkout-psd .viewDeliveryOptions {
  background: #f3e6d2;
  border-radius: 0 0 8px 8px;
  padding: 4px 16px 12px;
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--lc-text);
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}
body.lc-body.lc-checkout-psd .viewDeliveryOptions br {
  display: none !important;
}
body.lc-body.lc-checkout-psd .viewDeliveryOptions table {
  display: table !important;
  width: 100% !important;
  float: none !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  margin: 0 !important;
}
body.lc-body.lc-checkout-psd .viewDeliveryOptions tr {
  display: table-row !important;
  visibility: visible !important;
  height: auto !important;
}
body.lc-body.lc-checkout-psd .viewDeliveryOptions td {
  display: table-cell !important;
  float: none !important;
  visibility: visible !important;
  padding: 4px 0 !important;
  line-height: 1.35 !important;
  vertical-align: middle !important;
}
body.lc-body.lc-checkout-psd .viewDeliveryOptions span.product_body_text {
  display: block;
  margin: 0 0 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  color: var(--lc-text) !important;
}
body.lc-body.lc-checkout-psd .viewDeliveryOptions label {
  display: block !important;
  margin: 0 !important;
  padding: 6px 0 !important;
  color: var(--lc-text) !important;
  visibility: visible !important;
  white-space: normal !important;
  line-height: 1.4 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  cursor: default;
  position: relative !important;
}
body.lc-body.lc-checkout-psd .viewDeliveryOptions label strong {
  font-weight: 700 !important;
}
body.lc-body.lc-checkout-psd .viewDeliveryOptions input[name="selected_delivery_method"] {
  position: absolute !important;
  left: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
body.lc-body.lc-checkout-psd .viewDeliveryOptions input[name="selected_delivery_method"] + label:before,
body.lc-body.lc-checkout-psd .viewDeliveryOptions input[name="selected_delivery_method"] + label:after {
  display: none !important;
  content: none !important;
}
body.lc-body.lc-checkout-psd .viewDeliveryOptions tr.lc-co-hide-collection-opt,
body.lc-body.lc-checkout-psd .viewDeliveryOptions .lc-co-hide-collection-opt,
body.lc-body.lc-checkout-psd .viewDeliveryOptions tr.lc-co-hide-choose-msg,
body.lc-body.lc-checkout-psd .viewDeliveryOptions .lc-co-hide-choose-msg {
  display: none !important;
}
body.lc-body.lc-checkout-psd .viewDeliveryOptions:empty {
  display: none;
}
      body.lc-body.lc-checkout-psd.lc-co-combined .accordion.step3,
      body.lc-body.lc-checkout-psd.lc-co-combined .accordion.step6,
      body.lc-body.lc-checkout-psd.lc-co-combined .container-step3,
      body.lc-body.lc-checkout-psd.lc-co-combined .container-step6 {
        display: none !important;
      }
      body.lc-body.lc-checkout-psd #lc-co-method-addr {
        margin: 8px 0 16px;
      }
      body.lc-body.lc-checkout-psd #lc-co-method-addr .tbl_addr {
        width: 100%;
      }
      body.lc-body.lc-checkout-psd .lc-co-dup-postcode,
      body.lc-body.lc-checkout-psd .lc-co-dup-continue {
        display: none !important;
      }
      body.lc-body.lc-checkout-psd.lc-co-collection #lc-co-method-addr,
      body.lc-body.lc-checkout-psd.lc-co-force-collection #lc-co-method-addr {
        display: none !important;
      }
      body.lc-body.lc-checkout-psd .lc-co-sample-order .checkout_calculate_postcode,
      body.lc-body.lc-checkout-psd .lc-co-sample-order .lc-co-post-hint,
      body.lc-body.lc-checkout-psd .lc-co-sample-order .viewDeliveryOptions,
      body.lc-body.lc-checkout-psd .lc-co-sample-order .lc-co-collect-wrap {
        display: none !important;
      }
      body.lc-body.lc-checkout-psd #btn_calculate_cost {
        white-space: nowrap;
        min-width: 150px;
        text-transform: none;
      }
body.lc-body.lc-checkout-psd .lc-co-hide-orig-btns .blue_btn.hideResponsive,
body.lc-body.lc-checkout-psd .container-step2 > p:last-of-type .blue_btn,
body.lc-body.lc-checkout-psd .container-step2 #delivry_method_countinue,
body.lc-body.lc-checkout-psd .container-step3 .blue_btn.hideResponsive,
body.lc-body.lc-checkout-psd .container-step4 .blue_btn.hideResponsive {
  display: none !important;
}
body.lc-body.lc-checkout-psd .need_help,
body.lc-body.lc-checkout-psd .your_progress,
body.lc-body.lc-checkout-psd .box-div,
body.lc-body.lc-checkout-psd .right-side > br {
  display: none !important;
}
body.lc-body.lc-checkout-psd .lc-order-summary h2 {
  font-family: var(--lc-font);
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 18px;
}
body.lc-body.lc-checkout-psd .lc-os-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 0 0 16px;
  margin: 0 0 16px;
  border-bottom: 1px solid var(--lc-border);
}
body.lc-body.lc-checkout-psd .lc-os-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}
body.lc-body.lc-checkout-psd .lc-os-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}
body.lc-body.lc-checkout-psd .lc-os-item span {
  display: block;
  font-size: 13px;
  color: var(--lc-muted);
  margin-top: 4px;
}
body.lc-body.lc-checkout-psd .lc-os-item em {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
body.lc-body.lc-checkout-psd .lc-os-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #f0ece6;
}
body.lc-body.lc-checkout-psd .lc-os-row--total {
  border: 0;
  font-size: 16px;
  font-weight: 700;
  padding-top: 14px;
}
body.lc-body.lc-checkout-psd #lc-sum-continue {
  display: block;
  width: 100%;
  margin-top: 18px;
  background: #fff !important;
  color: var(--lc-text) !important;
  border: 1.5px solid #cfc8bf !important;
  border-radius: 8px !important;
  padding: 13px 18px !important;
  font-weight: 700 !important;
  cursor: pointer;
}
body.lc-body.lc-checkout-psd .lc-co-post-hint {
  display: none !important;
}
body.lc-body.lc-checkout-psd .checkout_calculate_postcode {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  width: 100% !important;
  max-width: none;
  margin: 0 0 18px;
}
body.lc-body.lc-checkout-psd .checkout_calculate_postcode .lc-co-label {
  grid-column: 1 / -1;
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}
body.lc-body.lc-checkout-psd .lc-co-delivery-foot {
  display: none;
  margin-top: 8px;
  text-align: left;
  overflow: hidden;
}
body.lc-body.lc-checkout-psd.lc-co-delivery .lc-co-delivery-foot {
  display: block;
}
body.lc-body.lc-checkout-psd .lc-co-delivery-foot .blue_btn,
body.lc-body.lc-checkout-psd .lc-co-delivery-foot #delivry_method_countinue {
  display: none !important;
}
body.lc-body.lc-checkout-psd.lc-co-address #delivry_addr_countinue {
  display: inline-flex !important;
  float: left !important;
  margin-top: 8px;
}
body.lc-body.lc-checkout-psd #delivry_find_addess,
body.lc-body.lc-checkout-psd #billing_find_addess,
body.lc-body.lc-checkout-psd .black_btn {
  background: var(--lc-brown) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 8px !important;
  height: 44px !important;
  min-width: 140px;
  padding: 0 16px !important;
  font-weight: 700;
  white-space: nowrap;
  margin-top: 0 !important;
}
body.lc-body.lc-checkout-psd #btn_calculate_cost {
  white-space: nowrap;
  min-width: 150px;
}
body.lc-body.lc-checkout-psd #lc-btn-to-billing {
  display: inline-flex !important;
  float: left !important;
  margin-top: 16px;
  background: var(--lc-navy) !important;
  border: 1.5px solid var(--lc-navy) !important;
  color: #fff !important;
}
body.lc-body.lc-checkout-psd .lc-co-collect-wrap {
  margin: 16px 0 8px;
}
body.lc-body.lc-checkout-psd .lc-co-collect-wrap label {
  font-weight: 600;
  color: var(--lc-text);
  display: inline;
}
body.lc-body.lc-checkout-psd.lc-co-samebill .container-step4 tr.tr_input:has(#txt_business_nm),
body.lc-body.lc-checkout-psd.lc-co-samebill .container-step4 tr.tr_input:has(#billing_postcode),
body.lc-body.lc-checkout-psd.lc-co-samebill .container-step4 tr.tr_input:has(#billing_address1),
body.lc-body.lc-checkout-psd.lc-co-samebill .container-step4 tr.tr_input:has(#billing_city) {
  display: none !important;
}
body.lc-body.lc-checkout-psd .container-step4 .blue_btn.hideResponsive,
body.lc-body.lc-checkout-psd .container-step5 .blue_btn.hideResponsive,
body.lc-body.lc-checkout-psd .container-step6 .blue_btn.hideResponsive {
  display: none !important;
}
body.lc-body.lc-checkout-psd.lc-co-collection .checkout_calculate_postcode,
body.lc-body.lc-checkout-psd.lc-co-collection .viewDeliveryOptions {
  opacity: .4;
  pointer-events: none;
}
body.lc-body.lc-checkout-psd.lc-co-force-collection .checkout_calculate_postcode,
body.lc-body.lc-checkout-psd.lc-co-force-collection .viewDeliveryOptions,
body.lc-body.lc-checkout-psd.lc-co-force-collection .lc-co-post-hint,
body.lc-body.lc-checkout-psd.lc-co-force-collection .container-step3,
body.lc-body.lc-checkout-psd.lc-co-force-collection #lc-co-method-addr {
  display: none !important;
}
body.lc-body.lc-checkout-psd.lc-co-force-collection.lc-co-delivery .lc-co-collect-wrap,
body.lc-body.lc-checkout-psd.lc-co-force-collection.lc-co-delivery .lc-co-delivery-foot {
  display: block !important;
}
body.lc-body.lc-checkout-psd.lc-co-force-collection #chk_colle_warehouse {
  pointer-events: none;
}
body.lc-body.lc-checkout-psd .lc-os-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--lc-muted);
  font-size: 13px;
}
body.lc-body.lc-checkout-psd .green_btn,
body.lc-body.lc-checkout-psd button.green_btn,
body.lc-body.lc-checkout-psd #billing_addr_countinue,
body.lc-body.lc-checkout-psd #conti_step6,
body.lc-body.lc-checkout-psd #payment_info_countinue,
body.lc-body.lc-checkout-psd #payment_info_countinue_sagepay {
  background: var(--lc-navy) !important;
  border-color: var(--lc-navy) !important;
  color: #fff !important;
}
body.lc-body.lc-checkout-psd #lc-btn-to-billing,
body.lc-body.lc-checkout-psd #billing_addr_countinue,
body.lc-body.lc-checkout-psd #conti_step2,
body.lc-body.lc-checkout-psd #conti_step6,
body.lc-body.lc-checkout-psd #delivry_method_countinue,
body.lc-body.lc-checkout-psd #delivry_addr_countinue,
body.lc-body.lc-checkout-psd #payment_info_countinue,
body.lc-body.lc-checkout-psd #payment_info_countinue_sagepay,
body.lc-body.lc-checkout-psd .container-step4 .green_btn.con,
body.lc-body.lc-checkout-psd .container-step5 .green_btn.con {
  float: left !important;
  margin-left: 0 !important;
}
body.lc-body.lc-checkout-psd.lc-co-billing.lc-co-samebill .container-step4 .tr_input:not(:first-child):has(#txt_business_nm),
body.lc-body.lc-checkout-psd.lc-co-samebill .lc-bill-extra {
  display: none !important;
}
body.lc-body.lc-checkout-psd #orderReview .cart_total_table,
body.lc-body.lc-checkout-psd #orderReview > table:not(.cart-T):not(#lastRow-btns) {
  display: none !important;
}
body.lc-body.lc-checkout-psd #orderReview table.cart-T .results_table_head,
body.lc-body.lc-checkout-psd #orderReview .showTablet,
body.lc-body.lc-checkout-psd #orderReview .product_vat,
body.lc-body.lc-checkout-psd #orderReview .product_total,
body.lc-body.lc-checkout-psd #orderReview .mobile_lable,
body.lc-body.lc-checkout-psd #orderReview td:empty {
  display: none !important;
}
body.lc-body.lc-checkout-psd #orderReview table.cart-T,
body.lc-body.lc-checkout-psd #orderReview table.cart-T > tbody {
  display: block;
  width: 100% !important;
  border: 0 !important;
  background: transparent !important;
}
body.lc-body.lc-checkout-psd #orderReview table.cart-T > tbody > tr:not(.results_table_head) {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto auto;
  grid-template-areas:
    "img name qty price"
    "img size qty price";
  align-items: center;
  column-gap: 14px;
  row-gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid var(--lc-border);
  background: transparent !important;
}
body.lc-body.lc-checkout-psd #orderReview .product_img {
  grid-area: img;
  width: 72px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
body.lc-body.lc-checkout-psd #orderReview .product_img img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
body.lc-body.lc-checkout-psd #orderReview table.cart-T td {
  width: auto !important;
  max-width: none !important;
}
body.lc-body.lc-checkout-psd #orderReview td.product_body_text:not(.product_size):not(.product_price):not(.product_vat) {
  grid-area: name;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 15px !important;
  font-weight: 600;
  white-space: normal;
}
body.lc-body.lc-checkout-psd #orderReview td.product_body_text:not(.product_size):not(.product_price) a {
  color: var(--lc-text) !important;
  text-decoration: none !important;
  white-space: normal;
}
body.lc-body.lc-checkout-psd #orderReview td.product_body_text:not(.product_size):not(.product_price) p {
  margin: 0;
}
body.lc-body.lc-checkout-psd #orderReview td.product_body_text:not(.product_size):not(.product_price) p:empty,
body.lc-body.lc-checkout-psd #orderReview td.product_body_text:not(.product_size):not(.product_price) p:not(:has(a)):not(:has(img)) {
  display: none;
}
body.lc-body.lc-checkout-psd #orderReview .product_size {
  grid-area: size;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--lc-muted) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.lc-body.lc-checkout-psd #orderReview .product_qty {
  grid-area: qty;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 14px;
  white-space: nowrap;
  color: var(--lc-muted);
}
body.lc-body.lc-checkout-psd #orderReview .product_qty::before {
  content: "Qty ";
}
body.lc-body.lc-checkout-psd #orderReview .product_price {
  grid-area: price;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 15px !important;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}
body.lc-body.lc-checkout-psd #lastRow-btns,
body.lc-body.lc-checkout-psd #lastRow-btns tbody,
body.lc-body.lc-checkout-psd #lastRow-btns tr,
body.lc-body.lc-checkout-psd #lastRow-btns td {
  display: block;
  width: 100%;
  float: none !important;
  border: 0;
  background: transparent;
  padding: 0;
}
body.lc-body.lc-checkout-psd #lastRow-btns {
  margin: 18px 0 0 !important;
}
body.lc-body.lc-checkout-psd #lastRow-btns .final_checkout {
  display: none !important;
}
body.lc-body.lc-checkout-psd #conti_step6 {
  float: left !important;
  min-width: 200px;
  margin-top: 8px;
}

@media (max-width: 900px) {
  body.lc-body.lc-checkout-psd .parent-div.lc-checkout-wrap {
    grid-template-columns: 1fr !important;
  }
  body.lc-body.lc-checkout-psd .left-side {
    display: block !important;
    border-right: 0;
    border-bottom: 1px solid var(--lc-border);
    padding: 20px 16px 24px !important;
  }
  body.lc-body.lc-checkout-psd .right-side {
    position: static;
    padding: 20px 16px 24px !important;
  }
  body.lc-body.lc-checkout-psd .lc-co-pagehead {
    padding: 0 16px;
  }
  body.lc-body.lc-checkout-psd .lc-co-card {
    padding: 0 12px;
    margin-bottom: 32px;
  }
  body.lc-body.lc-checkout-psd .lc-co-steps {
    padding: 12px 16px;
    gap: 6px 14px;
    font-size: 13px;
  }
  body.lc-body.lc-checkout-psd .tbl_addr,
  body.lc-body.lc-checkout-psd .tbl_addr tbody,
  body.lc-body.lc-checkout-psd .tbl_addr tr,
  body.lc-body.lc-checkout-psd .tbl_addr td {
    display: block !important;
    width: 100% !important;
    padding-right: 0 !important;
  }
  body.lc-body.lc-checkout-psd .tbl_addr .tr_input td {
    margin-bottom: 12px;
  }
  body.lc-body.lc-checkout-psd .checkout_calculate_postcode {
    grid-template-columns: 1fr !important;
  }
  body.lc-body.lc-checkout-psd .checkout_calculate_postcode #btn_calculate_cost,
  body.lc-body.lc-checkout-psd #lc-btn-to-billing,
  body.lc-body.lc-checkout-psd #billing_addr_countinue,
  body.lc-body.lc-checkout-psd #conti_step6,
  body.lc-body.lc-checkout-psd #payment_info_countinue,
  body.lc-body.lc-checkout-psd #payment_info_countinue_sagepay {
    width: 100% !important;
    float: none !important;
  }
  body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table > tbody {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table > tbody > tr:first-child > td.checkoutLogin,
  body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 > table > tbody > tr:first-child > td.checkoutForgotPass {
    border-left: 0 !important;
    padding-left: 0 !important;
    margin-top: 24px;
    padding-top: 24px !important;
    border-top: 1px solid var(--lc-border);
  }
  body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .green_btn,
  body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .blue_btn,
  body.lc-body.lc-checkout-psd.lc-co-guest .container-step1 .inputbox_medium {
    width: 100% !important;
    max-width: 100% !important;
  }
  body.lc-body.lc-checkout-psd #orderReview table.cart-T > tbody > tr:not(.results_table_head) {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    grid-template-areas:
      "img name name"
      "img size size"
      "img qty price";
  }
}
@media (max-width: 600px) {
  body.lc-body.lc-checkout-psd .lc-co-pagehead h1 {
    font-size: 1.65rem !important;
  }
  body.lc-body.lc-checkout-psd .lc-os-item {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 10px;
  }
  body.lc-body.lc-checkout-psd .lc-os-item img {
    width: 52px;
    height: 52px;
  }
}

/* ---- Register / auth page (visual only; form IDs & JS unchanged) ---- */
body.lc-body.lc-register-page {
  background: var(--lc-bg) !important;
}
body.lc-body.lc-register-page > table,
body.lc-body.lc-register-page > table > tbody > tr > td {
  background: transparent !important;
}
body.lc-body.lc-register-page .lc-auth-shell {
  max-width: var(--lc-max);
  margin: 28px auto 56px;
  padding: 0 24px;
  box-sizing: border-box;
}
body.lc-body.lc-register-page .lc-auth-card {
  background: #fff;
  border: 1px solid var(--lc-border);
  border-radius: 16px;
  padding: 28px 32px 36px;
  box-shadow: 0 10px 28px rgba(43, 30, 22, 0.05);
}
body.lc-body.lc-register-page table.register_forms {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-collapse: separate;
  border-spacing: 0 10px;
  background: transparent !important;
}
body.lc-body.lc-register-page table.register_forms > tbody > tr > td:nth-child(5),
body.lc-body.lc-register-page table.register_forms > tr > td:nth-child(5) {
  display: none !important;
}
body.lc-body.lc-register-page table.register_forms h1 {
  font-family: var(--lc-display) !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--lc-brown) !important;
  margin: 0 0 6px !important;
  line-height: 1.2;
}
body.lc-body.lc-register-page .lc-auth-sub {
  margin: 0 0 8px;
  color: var(--lc-muted);
  font-size: 15px;
  font-weight: 400;
}
body.lc-body.lc-register-page table.register_forms td {
  font-family: var(--lc-font) !important;
  font-size: 14px !important;
  color: var(--lc-text) !important;
  vertical-align: middle !important;
  padding: 6px 10px !important;
  background: transparent !important;
}
body.lc-body.lc-register-page table.register_forms td[bgcolor],
body.lc-body.lc-register-page table.register_forms td[bgcolor="#E6E6E6"],
body.lc-body.lc-register-page table.register_forms td[bgcolor="#e6e6e6"] {
  background: transparent !important;
}
body.lc-body.lc-register-page table.register_forms tr.billing_address td {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--lc-brown) !important;
  padding-top: 18px !important;
  padding-bottom: 4px !important;
}
body.lc-body.lc-register-page table.register_forms hr {
  border: 0;
  border-top: 1px solid var(--lc-border);
  margin: 4px 0 8px;
}
body.lc-body.lc-register-page table.register_forms .inputbox_medium,
body.lc-body.lc-register-page table.register_forms select.selectboxGender,
body.lc-body.lc-register-page table.register_forms select {
  width: 100% !important;
  max-width: 280px !important;
  height: 44px !important;
  box-sizing: border-box !important;
  border: 1px solid var(--lc-border) !important;
  border-radius: 8px !important;
  padding: 10px 12px !important;
  font-size: 14px !important;
  font-family: var(--lc-font) !important;
  background: #fff !important;
  color: var(--lc-text) !important;
}
body.lc-body.lc-register-page table.register_forms .red_divider {
  color: var(--lc-red) !important;
  font-weight: 700;
  margin-left: 4px;
}
body.lc-body.lc-register-page table.register_forms a.btn1111,
body.lc-body.lc-register-page table.register_forms a.btn11111 {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px !important;
  border-radius: 8px !important;
  background: var(--lc-brown) !important;
  background-image: none !important;
  color: #fff !important;
  font-family: var(--lc-font) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  text-shadow: none !important;
  border: 1.5px solid var(--lc-brown) !important;
  box-shadow: none !important;
  cursor: pointer;
}
body.lc-body.lc-register-page table.register_forms a.btn1111:hover,
body.lc-body.lc-register-page table.register_forms a.btn11111:hover {
  background: var(--lc-brown-mid) !important;
  text-decoration: none !important;
}
body.lc-body.lc-register-page table.register_forms tr:last-child a.btn1111 {
  min-width: 160px;
  min-height: 46px;
  background: var(--lc-navy) !important;
  border-color: var(--lc-navy) !important;
  font-size: 15px !important;
  margin-top: 8px;
}
body.lc-body.lc-register-page table.register_forms input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
}
body.lc-body.lc-register-page table.register_forms .text_white_small {
  color: var(--lc-text) !important;
  font-size: 14px !important;
}
body.lc-body.lc-register-page #form_result.error {
  background: #fdecea;
  border: 1px solid #f5c2c0;
  color: #8a1f1b;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
}
body.lc-body.lc-register-page > table[width="1000"],
body.lc-body.lc-register-page table[width="1000"],
body.lc-body.lc-register-page table.lc-auth-outer {
  width: 100% !important;
  max-width: var(--lc-max);
  margin: 0 auto !important;
  background: transparent !important;
}
body.lc-body.lc-register-page table.lc-auth-outer > tbody > tr:first-child,
body.lc-body.lc-register-page table.lc-auth-outer > tbody > tr:nth-child(3),
body.lc-body.lc-register-page table.lc-auth-outer > tbody > tr:nth-child(4) {
  display: none !important;
}

@media (max-width: 900px) {
  body.lc-body.lc-register-page .lc-auth-shell {
    padding: 0 12px;
    margin: 16px auto 40px;
  }
  body.lc-body.lc-register-page .lc-auth-card {
    padding: 20px 16px 28px;
  }
  body.lc-body.lc-register-page table.register_forms,
  body.lc-body.lc-register-page table.register_forms tbody,
  body.lc-body.lc-register-page table.register_forms tr,
  body.lc-body.lc-register-page table.register_forms td {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  body.lc-body.lc-register-page table.register_forms td {
    padding: 4px 0 !important;
  }
  body.lc-body.lc-register-page table.register_forms .inputbox_medium,
  body.lc-body.lc-register-page table.register_forms select.selectboxGender,
  body.lc-body.lc-register-page table.register_forms select {
    max-width: 100% !important;
  }
  body.lc-body.lc-register-page table.register_forms td[bgcolor] {
    background: transparent !important;
    padding: 8px 12px !important;
  }
  body.lc-body.lc-register-page table.register_forms a.btn1111 {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Find Address modal — checkout theme */
body.lc-body.lc-checkout-page #simplemodal-overlay,
body.lc-body.lc-checkout-psd #simplemodal-overlay {
  background: #2B1E16 !important;
  opacity: 0.55 !important;
  cursor: pointer !important;
}
body.lc-body.lc-checkout-page #simplemodal-container,
body.lc-body.lc-checkout-psd #simplemodal-container {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
  height: auto !important;
  max-height: 80vh !important;
  width: 540px !important;
  max-width: calc(100% - 32px) !important;
  color: var(--lc-text) !important;
  background: #fff !important;
  background-image: none !important;
  padding: 0 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 50px rgba(43, 30, 22, 0.35) !important;
  font-family: var(--lc-font) !important;
}
body.lc-body.lc-checkout-page #simplemodal-container .simplemodal-wrap,
body.lc-body.lc-checkout-psd #simplemodal-container .simplemodal-wrap {
  overflow: hidden !important;
  height: auto !important;
}
body.lc-body.lc-checkout-page #simplemodal-container a.modalCloseImg,
body.lc-body.lc-checkout-psd #simplemodal-container a.modalCloseImg {
  background: rgba(255,255,255,0.18) !important;
  width: 32px !important;
  height: 32px !important;
  top: 10px !important;
  right: 12px !important;
  border-radius: 50% !important;
  z-index: 3300 !important;
  text-indent: -9999px;
  overflow: hidden;
}
body.lc-body.lc-checkout-page #simplemodal-container a.modalCloseImg:before,
body.lc-body.lc-checkout-page #simplemodal-container a.modalCloseImg:after,
body.lc-body.lc-checkout-psd #simplemodal-container a.modalCloseImg:before,
body.lc-body.lc-checkout-psd #simplemodal-container a.modalCloseImg:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 9px;
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
body.lc-body.lc-checkout-page #simplemodal-container a.modalCloseImg:before,
body.lc-body.lc-checkout-psd #simplemodal-container a.modalCloseImg:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.lc-body.lc-checkout-page #simplemodal-container a.modalCloseImg:after,
body.lc-body.lc-checkout-psd #simplemodal-container a.modalCloseImg:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
body.lc-body.lc-checkout-page .lc-addr-modal,
body.lc-body.lc-checkout-psd .lc-addr-modal,
body.lc-body.lc-checkout-page .lc-addr-modal table,
body.lc-body.lc-checkout-psd .lc-addr-modal table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-family: var(--lc-font) !important;
}
body.lc-body.lc-checkout-page .lc-addr-modal__head,
body.lc-body.lc-checkout-psd .lc-addr-modal__head {
  background: var(--lc-brown) !important;
  padding: 16px 52px 16px 22px !important;
  height: auto !important;
}
body.lc-body.lc-checkout-page .lc-addr-modal__title,
body.lc-body.lc-checkout-page .lc-addr-modal__head span,
body.lc-body.lc-checkout-psd .lc-addr-modal__title,
body.lc-body.lc-checkout-psd .lc-addr-modal__head span {
  display: block !important;
  margin: 0 !important;
  width: auto !important;
  text-align: left !important;
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  font-family: var(--lc-font) !important;
  line-height: 1.3 !important;
}
body.lc-body.lc-checkout-page .lc-addr-modal__list,
body.lc-body.lc-checkout-psd .lc-addr-modal__list,
body.lc-body.lc-checkout-page #postcode_address .lc-addr-modal__list,
body.lc-body.lc-checkout-psd #postcode_address .lc-addr-modal__list,
body.lc-body.lc-checkout-page #simplemodal-container .lc-addr-modal__list,
body.lc-body.lc-checkout-psd #simplemodal-container .lc-addr-modal__list {
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  max-height: 58vh !important;
  overflow-y: auto !important;
  background: #fff;
}
body.lc-body.lc-checkout-page .lc-addr-modal__item,
body.lc-body.lc-checkout-psd .lc-addr-modal__item {
  display: block !important;
  padding: 13px 22px !important;
  text-decoration: none !important;
  border-bottom: 1px solid #eee8e0;
  color: var(--lc-text) !important;
}
body.lc-body.lc-checkout-page .lc-addr-modal__item:hover,
body.lc-body.lc-checkout-psd .lc-addr-modal__item:hover {
  background: #F7F5F2 !important;
}
body.lc-body.lc-checkout-page .lc-addr-modal__item span,
body.lc-body.lc-checkout-psd .lc-addr-modal__item span,
body.lc-body.lc-checkout-page #postcode_address .lc-addr-modal__item span,
body.lc-body.lc-checkout-psd #postcode_address .lc-addr-modal__item span {
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  text-align: left !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  color: var(--lc-text) !important;
  font-weight: 400 !important;
}
body.lc-body.lc-checkout-page .lc-addr-modal__empty,
body.lc-body.lc-checkout-psd .lc-addr-modal__empty {
  padding: 28px 22px !important;
  color: var(--lc-muted) !important;
  font-size: 14px !important;
  text-align: left !important;
}
@media (max-width: 800px) {
  body.lc-body.lc-checkout-page #simplemodal-container,
  body.lc-body.lc-checkout-psd #simplemodal-container {
    width: calc(100% - 24px) !important;
    left: 50% !important;
    top: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
  }
  body.lc-body.lc-checkout-page #simplemodal-container a.modalCloseImg,
  body.lc-body.lc-checkout-psd #simplemodal-container a.modalCloseImg {
    right: 10px !important;
    top: 10px !important;
  }
  body.lc-body.lc-checkout-page #postcode_address div,
  body.lc-body.lc-checkout-psd #postcode_address div {
    margin: 0 !important;
    padding: 0 !important;
  }
  body.lc-body.lc-checkout-page #postcode_address span,
  body.lc-body.lc-checkout-psd #postcode_address span {
    width: auto !important;
    text-align: left !important;
    margin: 0 !important;
  }
}
