/**
 * Lesuto Chameleon Commerce — WordPress Styles
 *
 * Clean, modern product display + auth + account + checkout
 * that inherits the site's typography and adapts to any WordPress theme.
 *
 * ISOLATION: All rules are wrapped in @layer lesuto-commerce so they
 * never override the host WordPress theme's un-layered styles.
 * All class names use the `lcc-` namespace.
 */

@layer lesuto-commerce {

/* Theme CSS Variables — defaults that get overridden by deployment config */
:root {
    --lcc-primary: #059669;
    --lcc-primary-hover: #047857;
    --lcc-primary-light: #f0fdf4;
    --lcc-primary-ring: rgba(5,150,105,0.1);
    --lcc-accent: #6366f1;
    --lcc-font: inherit;
    --lcc-radius: 0.75rem;
    --lcc-text: #111827;
    --lcc-bg: #ffffff;
    --lcc-border: #e5e7eb;
    --lcc-muted: #6b7280;
    --lcc-danger: #dc2626;
    --lcc-surface: #f9fafb;
}

/* Scoped reset for LCC containers — never touches host elements */
[data-lcc] *, [data-lcc] *::before, [data-lcc] *::after,
#lcc-ui-root *, #lcc-ui-root *::before, #lcc-ui-root *::after { box-sizing: border-box; }

/* ═══════════════════════════════════════════
   GRID SYSTEM
   ═══════════════════════════════════════════ */
.lcc-grid { display: grid; gap: 1.5rem; }
.lcc-grid-2 { grid-template-columns: repeat(2, 1fr); }
.lcc-grid-3 { grid-template-columns: repeat(3, 1fr); }
.lcc-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) { .lcc-grid-3, .lcc-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lcc-grid-2, .lcc-grid-3, .lcc-grid-4 { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════ */
.lcc-product-card { display: block; text-decoration: none; color: inherit; border: 1px solid #e5e7eb; border-radius: 0.75rem; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; background: #fff; }
.lcc-product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.lcc-card-image { width: 100%; height: 240px; object-fit: cover; display: block; }
.lcc-card-info { padding: 1rem; }
.lcc-card-name { font-size: 0.95rem; font-weight: 600; margin: 0 0 0.5rem; line-height: 1.3; }
.lcc-card-price { font-size: 1rem; font-weight: 700; color: var(--lcc-primary); }

/* ═══════════════════════════════════════════
   PRODUCT DETAIL
   ═══════════════════════════════════════════ */
.lcc-product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; max-width: 1200px; margin: 0 auto; }
@media (max-width: 860px) { .lcc-product-detail { grid-template-columns: 1fr; gap: 1.5rem; } }

/* Gallery */
.lcc-product-gallery { position: sticky; top: 1rem; }
.lcc-gallery-main { position: relative; border-radius: 0.75rem; overflow: hidden; background: #f9fafb; aspect-ratio: 1/1; }
.lcc-product-image { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 0; transition: opacity 0.2s; }
.lcc-gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(255,255,255,0.9); color: #374151; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: background 0.15s, transform 0.15s; z-index: 2; opacity: 0; }
.lcc-product-gallery:hover .lcc-gallery-arrow { opacity: 1; }
.lcc-gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.lcc-gallery-prev { left: 0.75rem; }
.lcc-gallery-next { right: 0.75rem; }
.lcc-gallery-counter { position: absolute; bottom: 0.75rem; right: 0.75rem; background: rgba(0,0,0,0.6); color: #fff; font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 1rem; z-index: 2; }
.lcc-product-thumbnails { display: flex; gap: 0.5rem; margin-top: 0.75rem; overflow-x: auto; scrollbar-width: none; padding-bottom: 0.25rem; }
.lcc-product-thumbnails::-webkit-scrollbar { display: none; }
.lcc-thumbnail { width: 64px; height: 64px; border-radius: 0.5rem; object-fit: cover; cursor: pointer; border: 2px solid transparent; transition: border-color 0.15s, opacity 0.15s; flex-shrink: 0; opacity: 0.6; }
.lcc-thumbnail:hover { opacity: 0.85; }
.lcc-thumbnail-active { border-color: var(--lcc-primary); opacity: 1; }

/* Product Info */
.lcc-product-info { padding-top: 0.25rem; }
.lcc-product-name { font-size: 1.75rem; font-weight: 800; margin: 0 0 0.75rem; line-height: 1.2; color: var(--lcc-text, #111827); letter-spacing: -0.02em; }
.lcc-product-price { font-size: 1.5rem; font-weight: 700; color: var(--lcc-primary); margin-bottom: 0.25rem; }
.lcc-product-sku { font-size: 0.75rem; color: #9ca3af; margin: 0 0 1.25rem; letter-spacing: 0.03em; }
.lcc-product-stock { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.25rem; }
.lcc-stock-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.lcc-stock-in .lcc-stock-dot { background: #10b981; }
.lcc-stock-in { color: #059669; }
.lcc-stock-low .lcc-stock-dot { background: #f59e0b; }
.lcc-stock-low { color: #d97706; }
.lcc-stock-out .lcc-stock-dot { background: #ef4444; }
.lcc-stock-out { color: #dc2626; }
.lcc-stock-backorder .lcc-stock-dot { background: #3b82f6; }
.lcc-stock-backorder { color: #2563eb; }
.lcc-stock-coming .lcc-stock-dot { background: #f59e0b; }
.lcc-stock-coming { color: #d97706; }

/* Description */
.lcc-product-description { margin-top: 1.25rem; border-top: 1px solid #f3f4f6; padding-top: 1.25rem; font-size: 0.9rem; line-height: 1.7; color: #4b5563; }
.lcc-product-description p { margin: 0 0 0.75rem; }
.lcc-product-description ul, .lcc-product-description ol { margin: 0 0 0.75rem; padding-left: 1.25rem; }
.lcc-product-description li { margin-bottom: 0.35rem; }
.lcc-product-description h2, .lcc-product-description h3 { font-size: 1rem; font-weight: 700; margin: 1rem 0 0.5rem; color: var(--lcc-text, #111827); }
.lcc-product-description img { max-width: 100%; height: auto; border-radius: 0.5rem; margin: 0.75rem 0; }

/* Facet Specs */
.lcc-product-specs { border-top: 1px solid #f3f4f6; margin-top: 1.25rem; padding-top: 1rem; }
.lcc-product-specs-title { font-size: 0.9rem; font-weight: 700; margin: 0 0 0.75rem; color: var(--lcc-text, #111827); }
.lcc-specs-table { width: 100%; border-collapse: collapse; }
.lcc-specs-table tr { border-bottom: 1px solid #f3f4f6; }
.lcc-specs-table tr:last-child { border-bottom: none; }
.lcc-specs-table td { padding: 0.625rem 0; font-size: 0.85rem; vertical-align: top; }
.lcc-specs-table td:first-child { color: #6b7280; font-weight: 500; width: 40%; padding-right: 1rem; }
.lcc-specs-table td:last-child { color: var(--lcc-text, #111827); }

/* Collections tags */
.lcc-product-collections { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid #f3f4f6; }

/* Related Products */
.lcc-related-products { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #f3f4f6; max-width: 1200px; margin-left: auto; margin-right: auto; }
.lcc-related-title { font-size: 1.25rem; font-weight: 800; margin: 0 0 1.25rem; color: var(--lcc-text, #111827); letter-spacing: -0.01em; }
.lcc-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .lcc-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lcc-related-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   VARIANTS, CART, COLLECTIONS, PAGINATION
   ═══════════════════════════════════════════ */
.lcc-variants { margin-bottom: 1.5rem; }
.lcc-variant-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; color: #374151; }
.lcc-variant-select { width: 100%; padding: 0.625rem 0.75rem; border: 1px solid #d1d5db; border-radius: 0.5rem; font-size: 0.9rem; background: #fff; cursor: pointer; }
.lcc-add-to-cart { display: flex; gap: 0.75rem; align-items: stretch; margin-bottom: 1.5rem; }
.lcc-quantity { display: flex; border: 1px solid #d1d5db; border-radius: 0.5rem; overflow: hidden; }
.lcc-qty-btn { width: 40px; border: none; background: #f9fafb; cursor: pointer; font-size: 1.1rem; color: #374151; transition: background 0.15s; }
.lcc-qty-btn:hover { background: #f3f4f6; }
.lcc-qty-input { width: 48px; text-align: center; border: none; border-left: 1px solid #d1d5db; border-right: 1px solid #d1d5db; font-size: 0.9rem; -moz-appearance: textfield; }
.lcc-qty-input::-webkit-inner-spin-button, .lcc-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.lcc-add-btn { flex: 1; padding: 0.75rem 1.5rem; background: var(--lcc-primary); color: #fff; border: none; border-radius: 0.5rem; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: background 0.15s; }
.lcc-add-btn:hover { background: var(--lcc-primary-hover); }
.lcc-collection-card { display: block; text-decoration: none; color: inherit; border: 1px solid #e5e7eb; border-radius: 0.75rem; overflow: hidden; transition: box-shadow 0.2s; }
.lcc-collection-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.lcc-collection-image { width: 100%; height: 180px; object-fit: cover; }
.lcc-collection-info { padding: 1rem; }
.lcc-collection-name { font-size: 1rem; font-weight: 600; margin: 0 0 0.25rem; }
.lcc-collection-count { font-size: 0.8rem; color: #6b7280; }
.lcc-collection-tag { display: inline-block; padding: 0.25rem 0.75rem; margin: 0.25rem 0.25rem 0.25rem 0; border-radius: 2rem; font-size: 0.75rem; background: #f3f4f6; color: #374151; text-decoration: none; transition: background 0.15s; }
.lcc-collection-tag:hover { background: #e5e7eb; }
/* ═══════════════════════════════════════════
   FILTER BAR (horizontal + vertical)
   ═══════════════════════════════════════════ */
.lcc-filter-bar { margin-bottom: 1.25rem; }
.lcc-filter-horizontal .lcc-filter-form { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding-bottom: 1rem; border-bottom: 1px solid var(--lcc-border); }
.lcc-filter-input { padding: 0.5rem 0.75rem; border: 1px solid var(--lcc-border); border-radius: 0.5rem; font-size: 0.85rem; background: var(--lcc-bg); color: var(--lcc-text); transition: border-color 0.15s, box-shadow 0.15s; }
.lcc-filter-input:focus { outline: none; border-color: var(--lcc-primary); box-shadow: 0 0 0 3px var(--lcc-primary-ring); }
.lcc-filter-inline { flex: 1; min-width: 160px; max-width: 260px; }
.lcc-filter-select { padding: 0.5rem 2rem 0.5rem 0.75rem; border: 1px solid var(--lcc-border); border-radius: 0.5rem; font-size: 0.85rem; background: var(--lcc-bg); color: var(--lcc-text); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; }
.lcc-filter-count-badge { font-size: 0.75rem; color: var(--lcc-muted); font-weight: 600; margin-left: auto; white-space: nowrap; }

/* Vertical sidebar layout */
.lcc-filter-vertical .lcc-filter-form { display: flex; flex-direction: column; gap: 0; }
.lcc-filter-section { margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--lcc-border); }
.lcc-filter-section:last-child { border-bottom: none; }
.lcc-filter-heading { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--lcc-muted); margin-bottom: 0.5rem; display: block; }
.lcc-filter-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.375rem 0.5rem; border-radius: 0.375rem; cursor: pointer; font-size: 0.85rem; color: var(--lcc-text); transition: background 0.12s; }
.lcc-filter-item:hover { background: var(--lcc-surface); }
.lcc-filter-item.lcc-active { background: var(--lcc-primary-light); color: var(--lcc-primary); font-weight: 600; }
.lcc-filter-radio { display: none; }
.lcc-filter-name { flex: 1; }
.lcc-filter-count { font-size: 0.7rem; color: var(--lcc-muted); font-weight: 600; background: var(--lcc-surface); padding: 0.1rem 0.4rem; border-radius: 1rem; min-width: 22px; text-align: center; }
.lcc-filter-apply { width: 100%; margin-top: 0.5rem; }
.lcc-filter-clear { width: 100%; margin-top: 0.375rem; text-align: center; }

/* Theme Demo Widget */
.lcc-theme-demo-fab { position: fixed; bottom: 1.25rem; left: 1.25rem; z-index: 10050; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--lcc-primary), var(--lcc-accent, #6366f1)); border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,.2); display: flex; align-items: center; justify-content: center; transition: transform 0.2s, box-shadow 0.2s; color: #fff; }
.lcc-theme-demo-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,0,0,.3); }
.lcc-theme-demo-fab svg { width: 24px; height: 24px; }
.lcc-theme-demo-panel { position: fixed; bottom: 5rem; left: 1.25rem; z-index: 10060; width: 320px; max-height: calc(100vh - 8rem); background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,.15); overflow: hidden; transform: scale(.9) translateY(10px); opacity: 0; pointer-events: none; transition: all .25s ease; }
.lcc-theme-demo-panel.lcc-open { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.lcc-theme-demo-header { display: flex; align-items: center; justify-content: space-between; padding: 0.875rem 1rem; border-bottom: 1px solid #e5e7eb; }
.lcc-theme-demo-title { font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.lcc-theme-demo-badge { font-size: 0.65rem; padding: 0.125rem 0.375rem; background: linear-gradient(135deg, var(--lcc-primary), var(--lcc-accent, #6366f1)); color: #fff; border-radius: 1rem; font-weight: 600; }
.lcc-theme-demo-close { background: none; border: none; cursor: pointer; color: #9ca3af; font-size: 1.1rem; padding: 0.25rem; }
.lcc-theme-demo-body { padding: 1rem; overflow-y: auto; max-height: calc(100vh - 12rem); }
.lcc-theme-demo-section { margin-bottom: 1rem; }
.lcc-theme-demo-section-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #9ca3af; margin-bottom: 0.5rem; }
.lcc-theme-demo-color-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.lcc-theme-demo-color-label { flex: 1; font-size: 0.8rem; font-weight: 500; }
.lcc-theme-demo-color-input { width: 32px; height: 32px; border: 2px solid #e5e7eb; border-radius: 0.5rem; cursor: pointer; padding: 0; }
.lcc-theme-demo-presets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.375rem; margin-bottom: 0.75rem; }
.lcc-theme-demo-preset { width: 100%; aspect-ratio: 1; border: 2px solid #e5e7eb; border-radius: 0.5rem; cursor: pointer; overflow: hidden; transition: border-color 0.12s; display: flex; }
.lcc-theme-demo-preset:hover { border-color: var(--lcc-primary); }
.lcc-theme-demo-preset span { flex: 1; }
.lcc-theme-demo-select { width: 100%; padding: 0.5rem 0.625rem; border: 1px solid #d1d5db; border-radius: 0.5rem; font-size: 0.8rem; margin-bottom: 0.5rem; }
.lcc-theme-demo-footer { padding: 0.75rem 1rem; border-top: 1px solid #e5e7eb; text-align: center; font-size: 0.7rem; color: #9ca3af; }

.lcc-pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 2rem; }
.lcc-page-link { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 0.5rem; text-decoration: none; font-size: 0.85rem; font-weight: 500; color: #374151; border: 1px solid #e5e7eb; transition: all 0.15s; }
.lcc-page-link:hover { background: #f3f4f6; }
.lcc-page-link.lcc-active { background: var(--lcc-primary); color: #fff; border-color: var(--lcc-primary); }
.lcc-empty { text-align: center; padding: 3rem 1rem; color: #6b7280; }
#lcc-cart { min-height: 200px; }
.lcc-powered-by { text-align: center; margin-top: 2rem; font-size: 0.7rem; color: #9ca3af; }
.lcc-powered-by a { color: #6b7280; text-decoration: none; }
.lcc-powered-by a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   SHARED: BUTTONS
   ═══════════════════════════════════════════ */
.lcc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.625rem 1.25rem; border: none; border-radius: 0.5rem; font-size: 0.9rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.15s; line-height: 1.4; }
.lcc-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.lcc-btn-primary { background: var(--lcc-primary); color: #fff; }
.lcc-btn-primary:hover:not(:disabled) { background: var(--lcc-primary-hover); }
.lcc-btn-secondary { background: #f3f4f6; color: #374151; }
.lcc-btn-secondary:hover:not(:disabled) { background: #e5e7eb; }
.lcc-btn-outline { background: transparent; border: 1px solid #d1d5db; color: #374151; }
.lcc-btn-outline:hover:not(:disabled) { background: #f9fafb; }
.lcc-btn-danger { color: var(--lcc-danger); border-color: #fecaca; }
.lcc-btn-danger:hover:not(:disabled) { background: #fef2f2; }
.lcc-btn-small { padding: 0.375rem 0.75rem; font-size: 0.8rem; }
.lcc-btn-full { width: 100%; }
.lcc-btn-lg { padding: 0.875rem 1.5rem; font-size: 1rem; }
.lcc-btn-row { display: flex; gap: 0.75rem; justify-content: space-between; }

/* ═══════════════════════════════════════════
   SHARED: FORM ELEMENTS
   ═══════════════════════════════════════════ */
.lcc-form { display: flex; flex-direction: column; gap: 1rem; }
.lcc-field { display: flex; flex-direction: column; gap: 0.375rem; }
.lcc-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 480px) { .lcc-field-row { grid-template-columns: 1fr; } }
.lcc-label { font-size: 0.85rem; font-weight: 600; color: #374151; }
.lcc-required { color: var(--lcc-danger); margin-left: 2px; }
.lcc-optional { font-weight: 400; color: #9ca3af; font-size: 0.8rem; }
.lcc-input { width: 100%; padding: 0.625rem 0.75rem; border: 1px solid #d1d5db; border-radius: 0.5rem; font-size: 0.9rem; background: #fff; transition: border-color 0.15s, box-shadow 0.15s; box-sizing: border-box; }
.lcc-input:focus { outline: none; border-color: var(--lcc-primary); box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1); }
.lcc-input-error { border-color: var(--lcc-danger) !important; }
.lcc-input-error:focus { box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important; }
.lcc-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2rem; }
.lcc-field-error { font-size: 0.8rem; color: var(--lcc-danger); min-height: 1rem; }
.lcc-field-hint { font-size: 0.8rem; color: #6b7280; margin: 0; }
.lcc-password-wrapper { position: relative; display: flex; align-items: center; }
.lcc-password-wrapper .lcc-input { padding-right: 2.5rem; }
.lcc-toggle-password { position: absolute; right: 0.5rem; background: none; border: none; cursor: pointer; color: #6b7280; padding: 0.25rem; display: flex; }
.lcc-toggle-password:hover { color: #374151; }
.lcc-checkbox-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.lcc-checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: #374151; cursor: pointer; }
.lcc-checkbox-label input[type="checkbox"] { accent-color: var(--lcc-primary); }

/* ═══════════════════════════════════════════
   SHARED: ALERTS
   ═══════════════════════════════════════════ */
.lcc-form-alert { padding: 0.75rem 1rem; border-radius: 0.5rem; font-size: 0.85rem; display: none; }
.lcc-alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.lcc-alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

/* ═══════════════════════════════════════════
   SHARED: BADGES
   ═══════════════════════════════════════════ */
.lcc-badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 2rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.025em; }
.lcc-badge-green { background: #dcfce7; color: #166534; }
.lcc-badge-blue { background: #dbeafe; color: #1e40af; }
.lcc-badge-red { background: #fee2e2; color: #991b1b; }
.lcc-badge-gray { background: #f3f4f6; color: #374151; }

/* ═══════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════ */
.lcc-toast { position: fixed; bottom: 2rem; right: 2rem; z-index: 10001; padding: 0.75rem 1.5rem; border-radius: 0.5rem; font-size: 0.9rem; font-weight: 600; box-shadow: 0 4px 20px rgba(0,0,0,0.15); animation: lcc-fade-in 0.2s ease; }
.lcc-toast-success { background: var(--lcc-primary); color: white; }
.lcc-toast-error { background: var(--lcc-danger); color: white; }

/* ═══════════════════════════════════════════
   AUTH CONTAINER
   ═══════════════════════════════════════════ */
.lcc-auth-container { max-width: 480px; margin: 0 auto; }
.lcc-auth-header { text-align: center; margin-bottom: 1.5rem; }
.lcc-auth-title { font-size: 1.5rem; font-weight: 700; margin: 0 0 0.5rem; color: #111827; }
.lcc-auth-subtitle { font-size: 0.9rem; color: #6b7280; margin: 0; }
.lcc-auth-footer { text-align: center; margin-top: 0.5rem; font-size: 0.85rem; color: #6b7280; }
.lcc-auth-link { color: var(--lcc-primary); font-weight: 600; text-decoration: none; }
.lcc-auth-link:hover { text-decoration: underline; }
.lcc-auth-actions { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1rem; }
.lcc-auth-logged-in { text-align: center; }

/* ── Avatar ── */
.lcc-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--lcc-primary), #0d9488); color: white; display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; margin: 0 auto 1rem; }

/* ═══════════════════════════════════════════
   STEP INDICATORS
   ═══════════════════════════════════════════ */
.lcc-steps { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.lcc-step { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: #9ca3af; }
.lcc-step-num { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #d1d5db; display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; transition: all 0.2s; }
.lcc-step-label { font-weight: 500; }
.lcc-step-active .lcc-step-num { background: var(--lcc-primary); color: white; border-color: var(--lcc-primary); }
.lcc-step-active { color: var(--lcc-primary); }
.lcc-step-completed .lcc-step-num { background: var(--lcc-primary); color: white; border-color: var(--lcc-primary); }
.lcc-step-completed { color: var(--lcc-primary); }
.lcc-step-divider { width: 32px; height: 2px; background: #e5e7eb; }
.lcc-step-completed + .lcc-step-divider { background: var(--lcc-primary); }

/* ═══════════════════════════════════════════
   PASSWORD STRENGTH
   ═══════════════════════════════════════════ */
.lcc-password-strength { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.25rem; }
.lcc-strength-bar { flex: 1; height: 4px; background: #e5e7eb; border-radius: 2px; overflow: hidden; }
.lcc-strength-fill { height: 100%; width: 0; transition: width 0.3s, background 0.3s; border-radius: 2px; }
.lcc-strength-label { font-size: 0.75rem; font-weight: 600; min-width: 60px; }
.lcc-password-rules { list-style: none; padding: 0; margin: 0.5rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem; }
.lcc-password-rules li { font-size: 0.78rem; color: #9ca3af; padding-left: 1.25rem; position: relative; transition: color 0.2s; }
.lcc-password-rules li::before { content: '○'; position: absolute; left: 0; font-size: 0.7rem; }
.lcc-password-rules li.lcc-rule-pass { color: var(--lcc-primary); }
.lcc-password-rules li.lcc-rule-pass::before { content: '✓'; }
.lcc-password-rules li.lcc-rule-fail { color: #9ca3af; }

/* ═══════════════════════════════════════════
   REVIEW CARD
   ═══════════════════════════════════════════ */
.lcc-review-card { border: 1px solid #e5e7eb; border-radius: 0.75rem; padding: 1.25rem; margin-bottom: 1.25rem; background: #fafafa; }
.lcc-review-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid #f3f4f6; }
.lcc-review-row:last-child { border-bottom: none; }
.lcc-review-label { font-size: 0.85rem; color: #6b7280; }
.lcc-review-value { font-size: 0.9rem; font-weight: 600; color: #111827; }

/* ═══════════════════════════════════════════
   SECURITY NOTE
   ═══════════════════════════════════════════ */
.lcc-security-note { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 0.5rem; font-size: 0.8rem; color: #166534; margin: 1rem 0; }

/* ═══════════════════════════════════════════
   SUCCESS STEP
   ═══════════════════════════════════════════ */
.lcc-success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--lcc-primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.5rem; }
.lcc-success-step { text-align: center; }

/* ═══════════════════════════════════════════
   ACCOUNT DASHBOARD
   ═══════════════════════════════════════════ */
.lcc-account-container { max-width: 800px; margin: 0 auto; }
.lcc-account-loading { text-align: center; padding: 3rem; color: #6b7280; }
.lcc-spinner { width: 32px; height: 32px; border: 3px solid #e5e7eb; border-top-color: var(--lcc-primary); border-radius: 50%; animation: lcc-spin 0.6s linear infinite; margin: 0 auto 1rem; }

/* ── Tabs ── */
.lcc-account-tabs { display: flex; gap: 0; border-bottom: 2px solid #e5e7eb; margin-bottom: 1.5rem; overflow-x: auto; }
.lcc-tab { padding: 0.75rem 1.25rem; border: none; background: none; font-size: 0.9rem; font-weight: 500; color: #6b7280; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.15s; white-space: nowrap; }
.lcc-tab:hover { color: #374151; }
.lcc-tab-active { color: var(--lcc-primary); border-bottom-color: var(--lcc-primary); font-weight: 600; }

/* ── Section ── */
.lcc-section-title { font-size: 1.1rem; font-weight: 700; margin: 0 0 1rem; color: #111827; }
.lcc-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.lcc-section-header .lcc-section-title { margin: 0; }
.lcc-divider { border: none; border-top: 1px solid #e5e7eb; margin: 2rem 0; }
.lcc-text-muted { color: #6b7280; font-size: 0.85rem; }

/* ═══════════════════════════════════════════
   ADDRESS CARDS
   ═══════════════════════════════════════════ */
.lcc-address-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.lcc-address-card { border: 1px solid #e5e7eb; border-radius: 0.75rem; padding: 1.25rem; background: #fff; position: relative; transition: box-shadow 0.15s; }
.lcc-address-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.lcc-address-badges { display: flex; gap: 0.375rem; margin-bottom: 0.75rem; }
.lcc-addr-name { font-weight: 700; margin: 0 0 0.25rem; color: #111827; font-size: 0.95rem; }
.lcc-addr-company { color: #6b7280; font-size: 0.85rem; margin: 0 0 0.25rem; }
.lcc-address-card p { margin: 0 0 0.125rem; font-size: 0.85rem; color: #4b5563; line-height: 1.5; }
.lcc-addr-phone { color: #6b7280; margin-top: 0.375rem !important; }
.lcc-addr-actions { display: flex; gap: 0.5rem; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid #f3f4f6; }

/* ── Selectable Address Cards (Checkout) ── */
.lcc-address-selector { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.lcc-address-radio-card { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; border: 2px solid #e5e7eb; border-radius: 0.75rem; cursor: pointer; transition: all 0.15s; background: #fff; }
.lcc-address-radio-card:hover { border-color: #a7f3d0; }
.lcc-address-radio-card.lcc-address-selected { border-color: var(--lcc-primary); background: #f0fdf4; }
.lcc-radio-indicator { width: 20px; height: 20px; border-radius: 50%; border: 2px solid #d1d5db; flex-shrink: 0; margin-top: 2px; transition: all 0.15s; position: relative; }
.lcc-address-selected .lcc-radio-indicator { border-color: var(--lcc-primary); }
.lcc-address-selected .lcc-radio-indicator::after { content: ''; position: absolute; top: 3px; left: 3px; width: 10px; height: 10px; background: var(--lcc-primary); border-radius: 50%; }
.lcc-address-card-content p { margin: 0 0 0.125rem; font-size: 0.85rem; color: #4b5563; }
.lcc-address-card-content .lcc-addr-name { font-weight: 700; color: #111827; }

/* ═══════════════════════════════════════════
   ORDER CARDS
   ═══════════════════════════════════════════ */
.lcc-order-card { border: 1px solid #e5e7eb; border-radius: 0.75rem; padding: 1.25rem; margin-bottom: 0.75rem; background: #fff; transition: box-shadow 0.15s; }
.lcc-order-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.lcc-order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.lcc-order-code { font-weight: 700; color: #111827; }
.lcc-order-body { display: flex; flex-direction: column; gap: 0.5rem; }
.lcc-order-lines { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.lcc-order-line { font-size: 0.8rem; color: #4b5563; background: #f9fafb; padding: 0.2rem 0.5rem; border-radius: 0.25rem; }
.lcc-order-meta { display: flex; justify-content: space-between; font-size: 0.85rem; color: #6b7280; padding-top: 0.5rem; border-top: 1px solid #f3f4f6; }
.lcc-order-total { font-weight: 700; color: var(--lcc-primary); }

/* ═══════════════════════════════════════════
   SHIPPING METHOD CARDS
   ═══════════════════════════════════════════ */
.lcc-shipping-card { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; border: 2px solid #e5e7eb; border-radius: 0.75rem; cursor: pointer; transition: all 0.15s; margin-bottom: 0.5rem; }
.lcc-shipping-card:hover { border-color: #a7f3d0; }
.lcc-shipping-card.lcc-address-selected { border-color: var(--lcc-primary); background: #f0fdf4; }
.lcc-shipping-info { flex: 1; }
.lcc-shipping-name { font-weight: 600; display: block; color: #111827; }
.lcc-shipping-desc { font-size: 0.8rem; color: #6b7280; }
.lcc-shipping-price { font-weight: 700; color: var(--lcc-primary); }

/* ═══════════════════════════════════════════
   CHECKOUT REVIEW
   ═══════════════════════════════════════════ */
.lcc-review-section { border: 1px solid #e5e7eb; border-radius: 0.75rem; padding: 1.25rem; margin-bottom: 1rem; background: #fff; }
.lcc-review-section h4 { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; font-weight: 700; color: #374151; margin: 0 0 0.75rem; }
.lcc-review-address p { margin: 0 0 0.125rem; font-size: 0.85rem; color: #4b5563; }
.lcc-edit-link { background: none; border: none; color: var(--lcc-primary); font-size: 0.8rem; font-weight: 600; cursor: pointer; padding: 0; }
.lcc-edit-link:hover { text-decoration: underline; }
.lcc-review-line { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; border-bottom: 1px solid #f9fafb; }
.lcc-review-line:last-child { border-bottom: none; }
.lcc-review-thumb { width: 40px; height: 40px; border-radius: 0.375rem; object-fit: cover; }
.lcc-review-line-name { flex: 1; font-size: 0.85rem; color: #374151; }
.lcc-review-line-price { font-weight: 600; color: #111827; font-size: 0.85rem; }
.lcc-review-totals { border-top: 1px solid #e5e7eb; margin-top: 0.75rem; padding-top: 0.75rem; }
.lcc-total-row { display: flex; justify-content: space-between; padding: 0.25rem 0; font-size: 0.85rem; color: #4b5563; }
.lcc-total-grand { font-size: 1rem; font-weight: 700; color: #111827; padding-top: 0.5rem; border-top: 1px solid #e5e7eb; margin-top: 0.25rem; }
.lcc-legal-text { text-align: center; font-size: 0.75rem; color: #9ca3af; margin-top: 1rem; }

/* ═══════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════ */
.lcc-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 10002; display: flex; align-items: center; justify-content: center; }
.lcc-modal-backdrop { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); }
.lcc-modal-content { position: relative; background: #fff; border-radius: 0.75rem; padding: 1.5rem; max-width: 560px; width: calc(100% - 2rem); max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.15); animation: lcc-fade-in 0.2s ease; }
.lcc-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.lcc-modal-header h3 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.lcc-modal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #6b7280; line-height: 1; padding: 0; }
.lcc-modal-close:hover { color: #111827; }

/* ═══════════════════════════════════════════
   FOLLOW BUTTON
   ═══════════════════════════════════════════ */
.lcc-follow-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border: 1.5px solid #e5e7eb; border-radius: 2rem; background: #fff; color: #6b7280; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.lcc-follow-btn:hover { border-color: #f87171; color: #ef4444; background: #fef2f2; }
.lcc-follow-btn.lcc-follow-active { border-color: #ef4444; color: #ef4444; background: #fef2f2; }
.lcc-follow-btn svg { flex-shrink: 0; transition: fill 0.2s; }
.lcc-follow-btn.lcc-follow-active svg { fill: #ef4444; }
.lcc-follow-btn-inline { padding: 0.375rem 0.75rem; font-size: 0.8rem; }

/* ═══════════════════════════════════════════
   HUB PROMO BANNER
   ═══════════════════════════════════════════ */
.lcc-hub-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000; transform: translateY(100%); transition: transform 0.3s ease; }
.lcc-hub-banner.lcc-hub-banner-visible { transform: translateY(0); }
.lcc-hub-banner-inner { display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1.25rem; background: linear-gradient(135deg, var(--lcc-primary) 0%, #0d9488 100%); color: #fff; max-width: 720px; margin: 0 auto 1rem; border-radius: 0.75rem; box-shadow: 0 8px 30px rgba(0,0,0,0.15); font-size: 0.85rem; line-height: 1.5; }
.lcc-hub-banner-icon { flex-shrink: 0; opacity: 0.9; }
.lcc-hub-banner-text { flex: 1; }
.lcc-hub-banner-link { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.lcc-hub-banner-link:hover { opacity: 0.9; }
.lcc-hub-banner-close { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.25rem; cursor: pointer; padding: 0 0.25rem; line-height: 1; flex-shrink: 0; }
.lcc-hub-banner-close:hover { color: #fff; }
@media (max-width: 768px) {
    .lcc-hub-banner-inner { margin: 0 0.5rem 0.5rem; border-radius: 0.5rem; font-size: 0.8rem; padding: 0.75rem 1rem; }
}

/* ═══════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════ */
.lcc-breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem; font-size: 0.85rem; margin-bottom: 1.5rem; color: #6b7280; }
.lcc-breadcrumb-link { color: var(--lcc-primary); text-decoration: none; }
.lcc-breadcrumb-link:hover { text-decoration: underline; }
.lcc-breadcrumb-sep { color: #d1d5db; margin: 0 0.25rem; }
.lcc-breadcrumb-current { color: #374151; font-weight: 500; }

/* ═══════════════════════════════════════════
   PRODUCT IMAGE GALLERY
   ═══════════════════════════════════════════ */
.lcc-gallery-main { position: relative; overflow: hidden; border-radius: 0.75rem; }
.lcc-gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.9); border: 1px solid #e5e7eb; cursor: pointer; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; color: #374151; transition: all 0.15s; z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.lcc-gallery-arrow:hover { background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.lcc-gallery-prev { left: 0.75rem; }
.lcc-gallery-next { right: 0.75rem; }
.lcc-gallery-counter { position: absolute; bottom: 0.75rem; right: 0.75rem; background: rgba(0,0,0,0.6); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.625rem; border-radius: 2rem; z-index: 2; }
.lcc-thumbnail-active { border-color: var(--lcc-primary) !important; }

/* ═══════════════════════════════════════════
   WISHLIST / FAVORITES
   ═══════════════════════════════════════════ */
.lcc-product-card-wrapper { position: relative; }
.lcc-wishlist-card-btn { position: absolute; top: 0.75rem; right: 0.75rem; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.9); border: 1px solid #e5e7eb; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #9ca3af; transition: all 0.2s; z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.lcc-wishlist-card-btn:hover { color: #ef4444; border-color: #fecaca; background: #fef2f2; }
.lcc-wishlist-card-btn.lcc-wishlist-active { color: #ef4444; border-color: #ef4444; background: #fef2f2; }
.lcc-wishlist-card-btn.lcc-wishlist-active svg { fill: #ef4444; }
.lcc-wishlist-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border: 1.5px solid #e5e7eb; border-radius: 2rem; background: #fff; color: #6b7280; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; margin-bottom: 1rem; }
.lcc-wishlist-btn:hover { border-color: #fecaca; color: #ef4444; background: #fef2f2; }
.lcc-wishlist-btn.lcc-wishlist-active { border-color: #ef4444; color: #ef4444; background: #fef2f2; }
.lcc-wishlist-btn.lcc-wishlist-active svg { fill: #ef4444; }

/* ═══════════════════════════════════════════
   RELATED PRODUCTS
   ═══════════════════════════════════════════ */
.lcc-related-products { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #e5e7eb; }
.lcc-related-products .lcc-section-title { margin-bottom: 1.5rem; }
.lcc-related-scroll { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 0.5rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.lcc-related-scroll .lcc-product-card-wrapper { min-width: 220px; max-width: 260px; flex-shrink: 0; scroll-snap-align: start; }
.lcc-related-scroll .lcc-card-image { height: 180px; }
.lcc-related-scroll::-webkit-scrollbar { height: 6px; }
.lcc-related-scroll::-webkit-scrollbar-track { background: #f3f4f6; border-radius: 3px; }
.lcc-related-scroll::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }

/* ═══════════════════════════════════════════
   PROMO CODES
   ═══════════════════════════════════════════ */
.lcc-promo-section { margin-top: 1rem; }
.lcc-promo-input-row { display: flex; gap: 0.5rem; align-items: stretch; }
.lcc-promo-input-row .lcc-input { flex: 1; }
.lcc-promo-applied { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.lcc-promo-tag { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.75rem; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 2rem; font-size: 0.8rem; font-weight: 600; color: #166534; }
.lcc-promo-code { text-transform: uppercase; }
.lcc-promo-remove { background: none; border: none; color: var(--lcc-primary); cursor: pointer; font-size: 1rem; padding: 0 0.25rem; line-height: 1; }
.lcc-promo-remove:hover { color: var(--lcc-danger); }
.lcc-discount-row { color: var(--lcc-primary); }

/* ═══════════════════════════════════════════
   SEARCH PAGE
   ═══════════════════════════════════════════ */
.lcc-search-container { max-width: 1200px; margin: 0 auto; }
.lcc-search-form { margin-bottom: 1.5rem; }
.lcc-search-bar { display: flex; gap: 0.5rem; }
.lcc-search-bar .lcc-input { flex: 1; }
.lcc-search-btn { white-space: nowrap; }
.lcc-search-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; }
@media (max-width: 768px) { .lcc-search-layout { grid-template-columns: 1fr; } }
.lcc-search-sidebar { position: sticky; top: 1rem; align-self: start; }
.lcc-sidebar-title { font-size: 1rem; font-weight: 700; margin: 0 0 1rem; color: #111827; }
.lcc-facet-group { margin-bottom: 1.25rem; }
.lcc-facet-name { font-size: 0.85rem; font-weight: 700; color: #374151; margin: 0 0 0.5rem; text-transform: uppercase; letter-spacing: 0.025em; }
.lcc-facet-option { display: flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0; font-size: 0.85rem; color: #4b5563; cursor: pointer; }
.lcc-facet-option:hover { color: #111827; }
.lcc-facet-checkbox { accent-color: var(--lcc-primary); }
.lcc-facet-count { color: #9ca3af; font-size: 0.8rem; }
.lcc-search-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; gap: 1rem; }
.lcc-search-count { font-size: 0.85rem; color: #6b7280; }
.lcc-sort-select { width: auto; max-width: 200px; }

/* ═══════════════════════════════════════════
   CMS HOMEPAGE SECTIONS
   ═══════════════════════════════════════════ */
.lcc-homepage { max-width: 1200px; margin: 0 auto; }

/* Hero */
.lcc-cms-hero { position: relative; background-size: cover; background-position: center; min-height: 400px; display: flex; align-items: center; justify-content: center; border-radius: 1rem; overflow: hidden; margin-bottom: 3rem; text-align: center; background-color: #111827; }
.lcc-cms-hero-overlay { padding: 3rem 2rem; color: #fff; position: relative; z-index: 1; max-width: 700px; }
.lcc-cms-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.45); z-index: 0; }
.lcc-cms-hero-headline { font-size: 2.5rem; font-weight: 800; margin: 0 0 1rem; line-height: 1.15; }
.lcc-cms-hero-sub { font-size: 1.1rem; margin: 0 0 1.5rem; opacity: 0.9; }
@media (max-width: 768px) { .lcc-cms-hero-headline { font-size: 1.75rem; } .lcc-cms-hero { min-height: 280px; } }

/* About */
.lcc-cms-about { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; margin-bottom: 3rem; }
.lcc-cms-about-image { width: 100%; border-radius: 0.75rem; object-fit: cover; }
.lcc-cms-about-text h2 { font-size: 1.75rem; font-weight: 700; margin: 0 0 1rem; }
.lcc-cms-about-text p { color: #4b5563; line-height: 1.7; }
@media (max-width: 768px) { .lcc-cms-about { grid-template-columns: 1fr; } }

/* Value Props */
.lcc-cms-values { margin-bottom: 3rem; }
.lcc-cms-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.lcc-cms-value-card { text-align: center; padding: 2rem 1.5rem; border: 1px solid #e5e7eb; border-radius: 0.75rem; }
.lcc-cms-value-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.lcc-cms-value-card h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 0.5rem; }
.lcc-cms-value-card p { font-size: 0.9rem; color: #6b7280; margin: 0; }
@media (max-width: 768px) { .lcc-cms-values-grid { grid-template-columns: 1fr; } }

/* How It Works */
.lcc-cms-hiw { margin-bottom: 3rem; text-align: center; }
.lcc-cms-section-title { font-size: 1.75rem; font-weight: 700; margin: 0 0 2rem; text-align: center; }
.lcc-cms-hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.lcc-cms-hiw-step { text-align: center; }
.lcc-cms-hiw-num { width: 48px; height: 48px; border-radius: 50%; background: var(--lcc-primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.lcc-cms-hiw-step h3 { font-size: 1rem; font-weight: 700; margin: 0 0 0.5rem; }
.lcc-cms-hiw-step p { font-size: 0.9rem; color: #6b7280; margin: 0; }
@media (max-width: 768px) { .lcc-cms-hiw-grid { grid-template-columns: 1fr; } }

/* Testimonials */
.lcc-cms-testimonials { margin-bottom: 3rem; }
.lcc-cms-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.lcc-cms-testimonial-card { border: 1px solid #e5e7eb; border-radius: 0.75rem; padding: 1.5rem; background: #fff; }
.lcc-cms-testimonial-quote { font-style: italic; color: #374151; line-height: 1.7; margin: 0 0 1rem; }
.lcc-cms-testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.lcc-cms-testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.lcc-cms-testimonial-author strong { display: block; font-size: 0.9rem; color: #111827; }
.lcc-cms-testimonial-author span { font-size: 0.8rem; }
@media (max-width: 768px) { .lcc-cms-testimonials-grid { grid-template-columns: 1fr; } }

/* CTA Banner */
.lcc-cms-cta { text-align: center; padding: 3rem 2rem; background: linear-gradient(135deg, var(--lcc-primary), #0d9488); color: #fff; border-radius: 1rem; margin-bottom: 3rem; background-size: cover; background-position: center; position: relative; }
.lcc-cms-cta h2 { font-size: 1.75rem; font-weight: 700; margin: 0 0 0.75rem; }
.lcc-cms-cta p { margin: 0 0 1.5rem; opacity: 0.9; }
.lcc-cms-cta .lcc-btn { background: #fff; color: var(--lcc-primary); }
.lcc-cms-cta .lcc-btn:hover { background: #f0fdf4; }

/* FAQ */
.lcc-cms-faq { margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.lcc-faq-item { border: 1px solid #e5e7eb; border-radius: 0.75rem; margin-bottom: 0.5rem; overflow: hidden; }
.lcc-faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1rem 1.25rem; background: #fff; border: none; cursor: pointer; font-size: 0.95rem; font-weight: 600; color: #111827; text-align: left; transition: background 0.15s; }
.lcc-faq-question:hover { background: #f9fafb; }
.lcc-faq-chevron { transition: transform 0.2s; flex-shrink: 0; }
.lcc-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 1.25rem; font-size: 0.9rem; color: #4b5563; line-height: 1.7; }
.lcc-faq-open .lcc-faq-answer { max-height: 500px; padding: 0 1.25rem 1rem; }
.lcc-faq-open .lcc-faq-chevron { transform: rotate(180deg); }

/* Newsletter */
.lcc-cms-newsletter { text-align: center; padding: 3rem 2rem; background: #f9fafb; border-radius: 1rem; margin-bottom: 3rem; }
.lcc-cms-newsletter h2 { font-size: 1.5rem; font-weight: 700; margin: 0 0 0.5rem; }
.lcc-cms-newsletter p { color: #6b7280; margin: 0 0 1.5rem; }
.lcc-newsletter-form { display: flex; gap: 0.5rem; max-width: 400px; margin: 0 auto; }
.lcc-newsletter-form .lcc-input { flex: 1; }
@media (max-width: 480px) { .lcc-newsletter-form { flex-direction: column; } }

/* Contact */
.lcc-cms-contact { margin-bottom: 3rem; text-align: center; }
.lcc-cms-contact-info { display: inline-block; text-align: left; }
.lcc-cms-contact-info p { margin: 0 0 0.5rem; font-size: 0.9rem; color: #4b5563; }
.lcc-cms-contact-info a { color: var(--lcc-primary); }

/* ═══════════════════════════════════════════
   ORDER CONFIRMATION
   ═══════════════════════════════════════════ */
.lcc-order-confirmation { max-width: 700px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   SUPPORT TICKETS
   ═══════════════════════════════════════════ */
.lcc-ticket-card { cursor: pointer; }
.lcc-ticket-message { padding: 0.75rem 1rem; border-radius: 0.75rem; margin-bottom: 0.5rem; }
.lcc-ticket-customer { background: #f0fdf4; border: 1px solid #bbf7d0; }
.lcc-ticket-staff { background: #f3f4f6; border: 1px solid #e5e7eb; }
.lcc-ticket-msg-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.375rem; font-size: 0.8rem; }
.lcc-ticket-message p { margin: 0; font-size: 0.9rem; line-height: 1.6; }

/* ═══════════════════════════════════════════
   SHIPPING WARNING BANNER
   ═══════════════════════════════════════════ */
.lcc-shipping-warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}
.lcc-shipping-warning strong { font-weight: 600; }

/* ═══════════════════════════════════════════
   COUNTRY SELECTOR
   ═══════════════════════════════════════════ */
.lcc-country-selector { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.lcc-country-selector label { color: #6b7280; white-space: nowrap; }
.lcc-country-selector select {
    padding: 0.375rem 0.625rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background: #fff;
    cursor: pointer;
}
.lcc-country-selector select:focus { outline: none; border-color: var(--lcc-primary); box-shadow: 0 0 0 2px rgba(5,150,105,0.15); }

/* ═══════════════════════════════════════════
   GIFT WALLET
   ═══════════════════════════════════════════ */
.lcc-wallet-balance-card {
    background: linear-gradient(135deg, #f0f9ff, #ffffff, #faf5ff);
    border: 1px solid #e0e7ff;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}
.lcc-wallet-balance-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: #6b7280; font-weight: 600; }
.lcc-wallet-balance-amount { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.02em; margin: 0.25rem 0; color: #111827; }
.lcc-wallet-stats { display: flex; gap: 1.5rem; font-size: 0.8rem; color: #6b7280; }
.lcc-wallet-topup-section { background: #fff; border: 1px solid #e5e7eb; border-radius: 0.75rem; padding: 1.25rem; margin-bottom: 1.25rem; }
.lcc-wallet-topup-title { font-weight: 600; font-size: 0.9rem; margin: 0 0 0.75rem; }
.lcc-wallet-topup-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
@media (max-width: 480px) { .lcc-wallet-topup-grid { grid-template-columns: repeat(2, 1fr); } }
.lcc-wallet-topup-note { font-size: 0.75rem; color: #9ca3af; margin-top: 0.75rem; }
.lcc-wallet-info { background: #eff6ff; border: 1px solid #dbeafe; border-radius: 0.75rem; padding: 1rem 1.25rem; margin-bottom: 1.25rem; font-size: 0.85rem; color: #374151; }
.lcc-wallet-info p { margin: 0.25rem 0; }
.lcc-wallet-history { border: 1px solid #e5e7eb; border-radius: 0.75rem; overflow: hidden; }
.lcc-wallet-history-tabs { display: flex; border-bottom: 1px solid #e5e7eb; }
.lcc-wallet-htab {
    flex: 1; padding: 0.75rem; background: none; border: none;
    font-size: 0.85rem; font-weight: 500; color: #6b7280; cursor: pointer;
    border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.lcc-wallet-htab-active { color: var(--lcc-primary); border-bottom-color: var(--lcc-primary); }
.lcc-wallet-history-panel { display: none; }
.lcc-wallet-panel-active { display: block; }
.lcc-wallet-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.75rem 1rem; border-bottom: 1px solid #f3f4f6;
}
.lcc-wallet-row:last-child { border-bottom: none; }
.lcc-wallet-row-label { font-weight: 500; font-size: 0.85rem; text-transform: capitalize; }
.lcc-wallet-row-date { font-size: 0.75rem; color: #9ca3af; }
.lcc-wallet-row-amount { font-weight: 700; font-size: 0.85rem; }
.lcc-wallet-plus { color: var(--lcc-primary); }
.lcc-wallet-minus { color: #ea580c; }

/* ── Lead Inquiry Form ── */
.lcc-lead-form { margin-top: 1rem; }
.lcc-lead-form-title { font-size: 1rem; font-weight: 700; margin: 0 0 0.75rem; }
.lcc-lead-form .lcc-input {
    width: 100%; padding: 0.5rem 0.75rem; border: 1px solid #e5e7eb;
    border-radius: 0.5rem; margin-bottom: 0.5rem; font-size: 0.9rem;
    font-family: inherit; outline: none; transition: border-color 0.2s;
}
.lcc-lead-form .lcc-input:focus { border-color: var(--lcc-primary); }
.lcc-lead-form textarea.lcc-input { resize: vertical; margin-bottom: 0.75rem; }
.lcc-lead-submit-btn {
    width: 100%; padding: 0.625rem 1.25rem; background: var(--lcc-primary); color: #fff;
    border: none; border-radius: 0.5rem; font-size: 0.9rem; font-weight: 600;
    cursor: pointer; transition: background 0.15s;
}
.lcc-lead-submit-btn:hover:not(:disabled) { background: var(--lcc-primary-hover); }
.lcc-lead-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.lcc-lead-status { margin-top: 0.5rem; text-align: center; }
.lcc-badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 0.375rem; font-size: 0.75rem; font-weight: 700; margin-bottom: 0.5rem; }
.lcc-badge-featured { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }

/* ═══════════════════════════════════════════
   UNIFIED PROFILE BANNER
   ═══════════════════════════════════════════ */
.lcc-unified-banner {
    background: linear-gradient(135deg, #eff6ff, #faf5ff);
    border: 1px solid #ddd6fe;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.lcc-unified-banner svg { flex-shrink: 0; color: #7c3aed; margin-top: 2px; }
.lcc-unified-banner p { margin: 0; font-size: 0.85rem; color: #374151; line-height: 1.5; }
.lcc-unified-banner strong { color: #5b21b6; }

/* ═══════════════════════════════════════════
   ENHANCED ORDER HISTORY
   ═══════════════════════════════════════════ */
.lcc-order-expandable { cursor: pointer; transition: box-shadow 0.15s; }
.lcc-order-expandable:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.lcc-order-store { font-size: 0.8rem; color: #6b7280; font-weight: 500; }
.lcc-order-thumbs { display: flex; gap: 0.375rem; margin: 0.5rem 0; }
.lcc-order-thumb { width: 36px; height: 36px; border-radius: 0.375rem; object-fit: cover; border: 1px solid #e5e7eb; }
.lcc-order-detail-panel { border-top: 1px solid #f3f4f6; margin-top: 0.75rem; padding-top: 0.75rem; }
.lcc-order-detail-line { display: flex; gap: 0.75rem; padding: 0.5rem 0; border-bottom: 1px solid #f9fafb; align-items: center; font-size: 0.85rem; }
.lcc-order-detail-img { width: 40px; height: 40px; border-radius: 0.375rem; object-fit: cover; }
.lcc-order-detail-info { flex: 1; }
.lcc-order-detail-name { font-weight: 600; }
.lcc-order-detail-sku { font-size: 0.75rem; color: #9ca3af; }
.lcc-order-detail-qty { color: #6b7280; min-width: 40px; }
.lcc-order-detail-price { font-weight: 600; min-width: 70px; text-align: right; }
.lcc-order-tracking {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 0.75rem; background: #f0fdf4; border: 1px solid #bbf7d0;
    border-radius: 0.5rem; font-size: 0.8rem; color: #166534; margin-top: 0.5rem;
}
.lcc-order-tracking a { color: var(--lcc-primary); font-weight: 600; text-decoration: underline; }
.lcc-order-section { margin-top: 0.75rem; }
.lcc-order-section-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: #9ca3af; letter-spacing: 0.04em; margin-bottom: 0.375rem; }
.lcc-text-sm { font-size: 0.85rem; color: #4b5563; margin: 0; }

/* ═══════════════════════════════════════════
   SAVED PAYMENT METHODS
   ═══════════════════════════════════════════ */
.lcc-pm-card {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.875rem 1rem; border: 1px solid #e5e7eb;
    border-radius: 0.75rem; margin-bottom: 0.5rem;
    transition: box-shadow 0.15s;
}
.lcc-pm-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.lcc-pm-icon {
    width: 40px; height: 28px;
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    border-radius: 0.25rem; display: flex; align-items: center; justify-content: center;
}
.lcc-pm-icon svg { width: 20px; height: 20px; color: #fff; }
.lcc-pm-info { flex: 1; }
.lcc-pm-brand { font-weight: 600; font-size: 0.9rem; text-transform: capitalize; display: block; }
.lcc-pm-exp { font-size: 0.75rem; color: #9ca3af; display: block; }
.lcc-pm-actions { display: flex; gap: 0.5rem; align-items: center; }
.lcc-pm-default-badge { font-size: 0.7rem; font-weight: 600; color: var(--lcc-primary); background: #f0fdf4; padding: 0.125rem 0.5rem; border-radius: 1rem; }
.lcc-pm-delete-btn {
    background: none; border: none; color: var(--lcc-danger); cursor: pointer;
    padding: 0.25rem; opacity: 0.6; transition: opacity 0.15s;
}
.lcc-pm-delete-btn:hover { opacity: 1; }

/* ═══════════════════════════════════════════
   BOOKING / SCHEDULING
   ═══════════════════════════════════════════ */
.lcc-booking-container {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    margin: 1.25rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.lcc-booking-container iframe {
    width: 100%;
    border: none;
    display: block;
}

/* ═══════════════════════════════════════════
   CARD ATTRIBUTE STRIP
   ═══════════════════════════════════════════ */
.lcc-card-attr-strip {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem 0.5rem;
    margin-top: 0.375rem; font-size: 0.75rem; color: #6b7280; line-height: 1.4;
}
.lcc-card-attr-item { white-space: nowrap; }
.lcc-card-attr-label { font-weight: 600; color: #374151; }
.lcc-card-attr-sep { color: #d1d5db; }

/* ═══════════════════════════════════════════
   VARIANT SYSTEM — Product Grid
   ═══════════════════════════════════════════ */
.lcc-products-container.lcc-variant-compact .lcc-product-card { padding: 0.5rem; }
.lcc-products-container.lcc-variant-compact .lcc-product-card img { border-radius: 6px; }
.lcc-products-container.lcc-variant-compact .lcc-product-name { font-size: 0.8rem; }
.lcc-products-container.lcc-variant-compact .lcc-product-price { font-size: 0.75rem; }

.lcc-products-container.lcc-variant-editorial .lcc-product-card { padding: 0; border: none; background: transparent; }
.lcc-products-container.lcc-variant-editorial .lcc-product-card img { border-radius: 2px; aspect-ratio: 3/4; object-fit: cover; }
.lcc-products-container.lcc-variant-editorial .lcc-product-name { font-size: 1rem; font-weight: 300; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 0.75rem; }

.lcc-products-container.lcc-variant-minimal .lcc-product-card { border: none; box-shadow: none; background: transparent; padding: 0; }
.lcc-products-container.lcc-variant-minimal .lcc-product-card img { border-radius: 0; }
.lcc-products-container.lcc-variant-minimal .lcc-product-name { font-weight: 400; }

.lcc-products-container.lcc-variant-luxury .lcc-product-card { background: #fafaf8; border: 1px solid #e8e5de; border-radius: 2px; padding: 1rem; }
.lcc-products-container.lcc-variant-luxury .lcc-product-card img { border-radius: 0; }
.lcc-products-container.lcc-variant-luxury .lcc-product-name { font-family: Georgia, serif; font-size: 0.95rem; letter-spacing: 0.02em; }
.lcc-products-container.lcc-variant-luxury .lcc-product-price { font-family: Georgia, serif; }

/* ═══════════════════════════════════════════
   VARIANT SYSTEM — Product Page
   ═══════════════════════════════════════════ */
.lcc-product-detail.lcc-variant-showcase { max-width: 1200px; margin: 0 auto; }
.lcc-product-detail.lcc-variant-showcase .lcc-detail-gallery { flex: 1.5; }
.lcc-product-detail.lcc-variant-showcase .lcc-detail-info { padding: 2rem; }

.lcc-product-detail.lcc-variant-catalog .lcc-detail-gallery { max-width: 50%; }
.lcc-product-detail.lcc-variant-catalog .lcc-detail-info { font-size: 0.9rem; }

.lcc-product-detail.lcc-variant-gallery { flex-direction: column; }
.lcc-product-detail.lcc-variant-gallery .lcc-detail-gallery { max-width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

.lcc-product-detail.lcc-variant-editorial { flex-direction: column; max-width: 800px; margin: 0 auto; text-align: center; }
.lcc-product-detail.lcc-variant-editorial .lcc-detail-gallery { max-width: 100%; }

.lcc-product-detail.lcc-variant-immersive { position: relative; }
.lcc-product-detail.lcc-variant-immersive .lcc-detail-gallery { position: sticky; top: 2rem; }

/* ═══════════════════════════════════════════
   VARIANT SYSTEM — Product Slider
   ═══════════════════════════════════════════ */
.lcc-product-slider.lcc-variant-filmstrip { gap: 0.25rem; }
.lcc-product-slider.lcc-variant-filmstrip .lcc-product-card { border-radius: 0; border: none; }
.lcc-product-slider.lcc-variant-filmstrip .lcc-product-card img { border-radius: 0; }

.lcc-product-slider.lcc-variant-magazine { gap: 1.5rem; }
.lcc-product-slider.lcc-variant-magazine .lcc-product-card { background: transparent; border: none; padding: 0; }
.lcc-product-slider.lcc-variant-magazine .lcc-product-name { font-size: 1rem; font-weight: 300; text-transform: uppercase; letter-spacing: 0.03em; }

/* ═══════════════════════════════════════════
   VARIANT SYSTEM — Search
   ═══════════════════════════════════════════ */
.lcc-search-container.lcc-variant-compact .lcc-search-results { gap: 0.5rem; }
.lcc-search-container.lcc-variant-compact .lcc-product-card { padding: 0.5rem; }

.lcc-search-container.lcc-variant-command { max-width: 640px; margin: 0 auto; }
.lcc-search-container.lcc-variant-command .lcc-search-input-wrap { border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }

/* ═══════════════════════════════════════════
   VARIANT SYSTEM — Hero Banner
   ═══════════════════════════════════════════ */
.lcc-hero-banner.lcc-variant-center { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lcc-hero-banner.lcc-variant-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 2rem; }
.lcc-hero-banner.lcc-variant-editorial { text-align: left; max-width: 600px; }
.lcc-hero-banner.lcc-variant-video { overflow: hidden; }
.lcc-hero-banner.lcc-variant-slideshow { position: relative; }

/* ═══════════════════════════════════════════
   VARIANT SYSTEM — Newsletter
   ═══════════════════════════════════════════ */
.lcc-newsletter.lcc-variant-inline { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.lcc-newsletter.lcc-variant-inline .lcc-newsletter-title { margin: 0; flex-shrink: 0; }
.lcc-newsletter.lcc-variant-card { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px; padding: 2rem; text-align: center; max-width: 480px; margin: 0 auto; }
.lcc-newsletter.lcc-variant-banner { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; padding: 2rem; border-radius: 12px; text-align: center; }
.lcc-newsletter.lcc-variant-banner .lcc-newsletter-title { color: #fff; }
.lcc-newsletter.lcc-variant-minimal { border: none; padding: 0; }
.lcc-newsletter.lcc-variant-minimal .lcc-newsletter-title { font-size: 1rem; font-weight: 400; }

/* ═══════════════════════════════════════════
   VARIANT SYSTEM — Blog Feed
   ═══════════════════════════════════════════ */
.lcc-blog-feed.lcc-variant-list .lcc-blog-grid { display: flex; flex-direction: column; gap: 1rem; }
.lcc-blog-feed.lcc-variant-list .lcc-blog-card { display: grid; grid-template-columns: 200px 1fr; gap: 1rem; }
.lcc-blog-feed.lcc-variant-featured .lcc-blog-card:first-child { grid-column: 1 / -1; }
.lcc-blog-feed.lcc-variant-featured .lcc-blog-card:first-child img { aspect-ratio: 21/9; }

/* ═══════════════════════════════════════════
   VARIANT SYSTEM — Lookbook
   ═══════════════════════════════════════════ */
.lcc-lookbook.lcc-variant-masonry { column-count: 3; column-gap: 0.75rem; }
.lcc-lookbook.lcc-variant-masonry .lcc-lookbook-item { break-inside: avoid; margin-bottom: 0.75rem; }
.lcc-lookbook.lcc-variant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.lcc-lookbook.lcc-variant-fullbleed { display: flex; flex-direction: column; gap: 0; }
.lcc-lookbook.lcc-variant-fullbleed .lcc-lookbook-item img { width: 100%; border-radius: 0; }

/* ═══════════════════════════════════════════
   VARIANT SYSTEM — Trust Badges
   ═══════════════════════════════════════════ */
.lcc-trust-badges.lcc-variant-row { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.lcc-trust-badges.lcc-variant-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.lcc-trust-badges.lcc-variant-vertical { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }

/* ═══════════════════════════════════════════
   CARD STYLE MODIFIERS
   ═══════════════════════════════════════════ */
.lcc-card-shadow .lcc-product-card { box-shadow: 0 4px 12px rgba(0,0,0,0.08); border: none; }
.lcc-card-border .lcc-product-card { box-shadow: none; border: 1px solid #e5e7eb; }
.lcc-card-flat .lcc-product-card { box-shadow: none; border: none; background: transparent; }
.lcc-card-glass .lcc-product-card { background: rgba(255,255,255,0.6); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.3); }

} /* end @layer lesuto-commerce */

/* Nav chrome must sit outside the layer so it can override Divi header rules. */
body:has([data-lcc-nav-cluster]) [data-chameleon="account-menu"][data-auto-placed],
body:has([data-lcc-nav-cluster]) [data-chameleon="cart-trigger"][data-auto-placed] {
    display: none !important;
}
body > .lcc-nav-cluster,
body > .lcc-lesuto-mark,
body > .lcc-lesuto-wordmark,
body > .lcc-chameleon-end {
    position: fixed;
    top: 10px;
    right: 14px;
    z-index: 100050;
    float: none;
    visibility: hidden;
}
body > .lcc-sso-hook,
body > .hs-footer-newsletter,
body > .lcc-footer-strip,
body > li.lcc-nav-hub-app {
    display: none !important;
}
#page ~ .lcc-sso-hook,
#page ~ .hs-footer-newsletter,
#page ~ .lcc-footer-strip,
#page ~ li.lcc-nav-hub-app,
#page ~ form.lcc-header-search,
#page ~ ul.lcc-nav-cluster,
#page ~ a.lcc-lesuto-mark,
#main-footer ~ .lcc-sso-hook,
#main-footer ~ .hs-footer-newsletter,
#main-footer ~ .lcc-footer-strip,
#main-footer ~ li.lcc-nav-hub-app {
    display: none !important;
}
#et-top-navigation .lcc-nav-cluster,
#main-header .lcc-nav-cluster,
#main-header .lcc-lesuto-mark,
#main-header .lcc-lesuto-wordmark,
#main-header .lcc-chameleon-end,
.lcc-nav-cluster .lcc-chameleon-end {
    visibility: visible;
}
.lcc-lesuto-wordmark {
    display: inline-flex;
    align-items: center;
    height: 28px;
    flex: 0 0 auto;
    margin: 0 8px 0 0;
    line-height: 0;
}
.lcc-lesuto-wordmark img {
    display: block;
    height: 22px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
}
.lcc-chameleon-end,
button.lcc-chameleon-end {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 4px;
    line-height: 0;
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}
.lcc-lesuto-mark,
button.lcc-lesuto-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 26px;
    flex: 0 0 auto;
    line-height: 0;
    margin: 0 0 0 8px;
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}
.lcc-chameleon-mark {
    display: inline-block;
    width: 39px;
    height: 26px;
    background: linear-gradient(90deg, #ff3399, #ffaa33, #ffdd33, #33ffdd, #33ccff, #aa66ff, #ff3399);
    background-size: 300% 100%;
    animation: lcc-pill-shine 9s linear infinite;
    -webkit-mask-image: url("../chameleon-ai-animal-mask.png");
    mask-image: url("../chameleon-ai-animal-mask.png");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
.lcc-lesuto-mark svg {
    display: block;
    width: 26px;
    height: 26px;
}
@media (min-width: 981px) {
    body.et_header_style_left #main-header,
    body.et_header_style_left #main-header.et-fixed-header {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: visible !important;
    }
    body.et_header_style_left #main-header .container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 16px;
        height: 60px !important;
        min-height: 60px !important;
        max-height: 60px !important;
        width: 100% !important;
        max-width: 1500px !important;
        margin: 0 auto !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    body.et_header_style_left #main-header .logo_container,
    body.et_header_style_left #main-header .logo_container.lcc-brand-lockup {
        position: static !important;
        width: auto !important;
        max-width: 220px !important;
        height: 60px !important;
        flex: 0 0 auto;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px;
    }
    body.et_header_style_left #main-header .logo_container.lcc-bhd-lockup {
        max-width: 340px !important;
    }
    body.et_header_style_left #main-header .logo_helper {
        display: none !important;
    }
    body.et_header_style_left #main-header #logo,
    body.et_header_style_left #main-header .logo_container img#logo,
    body.et_header_style_left #main-header .logo_container a img {
        max-height: 28px !important;
        height: 28px !important;
        width: auto !important;
        max-width: 180px !important;
        object-fit: contain !important;
        display: block !important;
    }
    body.et_header_style_left #et-top-navigation,
    body.et_header_style_left .et-fixed-header #et-top-navigation {
        float: none !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-end;
        flex: 1 1 auto;
        padding: 0 !important;
        margin: 0 !important;
        min-width: 0;
        height: 60px !important;
        gap: 10px;
    }
    body.et_header_style_left #et-top-navigation #et_mobile_nav_menu {
        display: none !important;
    }
    body.et_header_style_left #et_top_search,
    body.et_header_style_left .et_search_outer {
        display: none !important;
    }
    body.et_header_style_left .lcc-nav-cluster {
        float: none !important;
        margin: 0 !important;
        flex: 0 0 auto;
        position: relative !important;
        top: auto !important;
        right: auto !important;
        height: 60px !important;
    }
    body.et_header_style_left .lcc-sso-hook {
        display: none !important;
    }
}
.lcc-header-search {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    min-width: 180px;
    max-width: 760px;
    height: 40px;
    margin: 0 8px 0 0;
    background: #fff;
    border: 1px solid #cdcdcd;
    border-radius: 8px;
    overflow: hidden;
}
.lcc-header-search input[type="search"] {
    flex: 1 1 auto;
    min-width: 0;
    height: 40px;
    border: 0;
    margin: 0;
    padding: 0 12px;
    font-family: inherit;
    font-size: 14px;
    line-height: 40px;
    color: #111;
    background: #fff;
    box-shadow: none;
    border-radius: 0;
}
.lcc-header-search input[type="search"]::placeholder {
    font-family: inherit;
    color: #6b7280;
}
.lcc-header-search button {
    flex: 0 0 auto;
    height: 40px;
    padding: 0 16px;
    border: 0;
    margin: 0;
    background: #febd69;
    color: #111;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}
.lcc-header-search button:hover { background: #f3a847; }
body > .lcc-header-search { display: none; }
#et-top-navigation .lcc-header-search { display: flex; }
.lcc-dept-bar {
    display: none;
}
@media (min-width: 981px) {
    .lcc-dept-bar {
        display: flex;
        align-items: center;
        width: 100%;
        height: 40px;
        background: #232f3e;
        overflow: visible;
    }
    .lcc-dept-bar #top-menu-nav,
    .lcc-dept-bar #top-menu {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        float: none !important;
        width: 100%;
        max-width: 1500px;
        margin: 0 auto !important;
        padding: 0 8px !important;
        height: 40px !important;
        line-height: 40px !important;
        overflow: visible;
    }
    .lcc-dept-bar #top-menu > li {
        display: flex !important;
        align-items: center !important;
        float: none !important;
        height: 40px !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 40px !important;
        white-space: nowrap;
        position: relative;
    }
    .lcc-dept-bar #top-menu > li > a {
        display: inline-flex !important;
        align-items: center !important;
        height: 40px !important;
        line-height: 40px !important;
        padding: 0 14px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        color: #fff !important;
        opacity: 1 !important;
        text-transform: capitalize !important;
    }
    .lcc-dept-bar #top-menu > li > a:hover {
        opacity: 1 !important;
        background: rgba(255,255,255,0.08);
    }
    .lcc-dept-bar #top-menu .menu-item-has-children > a:first-child {
        padding-right: 22px !important;
    }
    .lcc-dept-bar #top-menu .menu-item-has-children > a:first-child:after,
    .lcc-dept-bar #top-menu .menu-item-has-children > a:first-child:after {
        content: '' !important;
        font-size: 0 !important;
        width: 0 !important;
        height: 0 !important;
        border-left: 4px solid transparent !important;
        border-right: 4px solid transparent !important;
        border-top: 5px solid #fff !important;
        border-bottom: 0 !important;
        position: absolute !important;
        right: 8px !important;
        top: 50% !important;
        margin-top: 0 !important;
        transform: translateY(-50%);
        font-family: inherit !important;
        font-weight: 400 !important;
    }
    .lcc-dept-bar #top-menu > li > .sub-menu {
        top: 40px !important;
        z-index: 100060 !important;
    }
}
@media (max-width: 980px) {
    .lcc-header-search { display: none !important; }
    .lcc-dept-bar { display: none !important; }
}
.lcc-nav-cluster {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 8px;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 60px !important;
    float: none !important;
}
[data-hs-header-actions] .lcc-nav-cluster,
.cs-header-actions .lcc-nav-cluster {
    height: 44px !important;
}
body > li.lcc-nav-hub-app,
footer li.lcc-nav-hub-app {
    display: none !important;
}
.lcc-nav-mobile-app {
    display: none !important;
}
ul li.lcc-nav-hub-app {
    display: inline-flex !important;
}
.hs-subnav ul.lcc-nav-with-hub-cta,
.hs-header-subnav ul.lcc-nav-with-hub-cta,
[data-hs-subnav] ul.lcc-nav-with-hub-cta,
ul.lcc-nav-with-hub-cta {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}
li.lcc-nav-hub-app {
    margin-left: auto !important;
    list-style: none !important;
    display: inline-flex !important;
    align-items: center;
}
.lcc-hub-app-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.95rem !important;
    border-radius: 999px !important;
    background: var(--chameleon-primary, var(--lcc-primary, #10b981)) !important;
    color: #fff !important;
    font-family: inherit !important;
    font-size: 0.8125rem !important;
    font-weight: 650 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.lcc-hub-app-pair {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.lcc-hub-app-android {
    background: #111 !important;
}
.lcc-hub-app-cta:hover,
.lcc-hub-app-cta:focus {
    filter: brightness(1.08);
    color: #fff !important;
    text-decoration: none !important;
}
.lcc-nav-cluster #et_top_search {
    float: none !important;
    margin: 0 4px !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    top: auto !important;
}
.lcc-nav-cluster > li {
    display: inline-flex !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    list-style: none !important;
}
#top-menu > li.lcc-nav-chrome,
#et-top-navigation #top-menu > li.lcc-nav-chrome,
#et-secondary-nav > li.lcc-nav-chrome,
.lcc-nav-cluster > li.lcc-nav-chrome {
    display: inline-block !important;
    float: none !important;
    vertical-align: middle !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0 12px !important;
    margin: 0 !important;
    line-height: inherit !important;
    overflow: visible !important;
    white-space: nowrap !important;
    position: relative !important;
}
#top-menu > li.lcc-nav-chrome > div,
#top-menu > li.lcc-nav-chrome [data-chameleon],
#top-menu > li.lcc-nav-chrome [data-chameleon-module],
.lcc-nav-cluster > li.lcc-nav-chrome > div,
.lcc-nav-cluster > li.lcc-nav-chrome [data-chameleon],
.lcc-nav-cluster > li.lcc-nav-chrome [data-chameleon-module] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    flex-direction: row !important;
}
#top-menu .lcc-nav-chrome a,
#top-menu .lcc-nav-chrome button {
    font-family: inherit !important;
}
#top-menu .lcc-nav-account [role="menu"] {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    z-index: 1000000 !important;
    width: 180px !important;
    white-space: normal !important;
}
.lcc-cart-drawer-host,
.lcc-cart-drawer-host [data-chameleon="cart"],
[data-chameleon="cart"][data-display-mode="drawer"] {
    position: fixed !important;
    left: 0;
    top: 0;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    z-index: 100001;
    flex: 0 0 auto !important;
}

/* Hub Login pill. Never inherit the 36px cart circle. */
#top-menu > li.lcc-nav-account,
.lcc-nav-cluster > li.lcc-nav-account {
    overflow: visible !important;
    width: auto !important;
    max-width: none !important;
}
#top-menu > li.lcc-nav-account .chm-so-accountTrigger,
#top-menu > li.lcc-nav-account button,
#top-menu > li.lcc-nav-account a,
.lcc-nav-cluster > li.lcc-nav-account .chm-so-accountTrigger,
.lcc-nav-cluster > li.lcc-nav-account button,
.lcc-nav-cluster > li.lcc-nav-account a,
.lcc-nav-cluster > li.lcc-nav-account [data-chameleon="account-menu"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    background: #111 !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
    line-height: 36px !important;
    height: 36px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    border: 0 !important;
    box-shadow: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    font-family: inherit !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    float: none !important;
    transform: none !important;
}

/* Currency sits beside Hub Login. Outline pill, not the black login button. */
#top-menu > li.lcc-nav-currency,
.lcc-nav-cluster > li.lcc-nav-currency {
    overflow: visible !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
}
#top-menu > li.lcc-nav-currency [data-chameleon-module="currency-selector"],
.lcc-nav-cluster > li.lcc-nav-currency [data-chameleon-module="currency-selector"] {
    max-width: none;
    overflow: visible;
}
#top-menu > li.lcc-nav-currency .chm-so-currencyTrigger,
.lcc-nav-cluster > li.lcc-nav-currency .chm-so-currencyTrigger,
.lcc-nav-cluster > li.lcc-nav-currency button.chm-so-currencyTrigger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.25rem !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #111 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
    line-height: 36px !important;
    height: 36px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
    border: 1px solid #111 !important;
    box-shadow: none !important;
    cursor: pointer !important;
    font-family: inherit !important;
}
.lcc-nav-cluster > li.lcc-nav-currency .chm-so-currencyPanel,
#top-menu > li.lcc-nav-currency .chm-so-currencyPanel {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    z-index: 1000000 !important;
}

/* Help opens the shopping assistant. Outline pill, not the black Hub Login. */
#top-menu > li.lcc-nav-help,
.lcc-nav-cluster > li.lcc-nav-help {
    overflow: visible !important;
    width: auto !important;
    max-width: none !important;
}
#top-menu > li.lcc-nav-help .lcc-help-assistant,
.lcc-nav-cluster > li.lcc-nav-help .lcc-help-assistant {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #111 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
    line-height: 36px !important;
    height: 36px !important;
    width: auto !important;
    min-width: 0 !important;
    border: 1px solid rgba(17, 17, 17, 0.14) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08) !important;
    cursor: pointer !important;
    font-family: inherit !important;
}
#top-menu > li.lcc-nav-cart [data-chameleon="cart-trigger"],
#top-menu > li.lcc-nav-cart [data-chameleon-module="cart-trigger"],
#top-menu > li.lcc-nav-cart button,
.lcc-nav-cluster > li.lcc-nav-cart [data-chameleon="cart-trigger"],
.lcc-nav-cluster > li.lcc-nav-cart [data-chameleon-module="cart-trigger"],
.lcc-nav-cluster > li.lcc-nav-cart button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    background: #fff !important;
    border: 1px solid rgba(17, 17, 17, 0.14) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08) !important;
    color: #111 !important;
}
#top-menu > li.lcc-nav-cart .chm-cart-trigger-badge {
    background: var(--lcc-primary, #059669) !important;
    color: #fff !important;
}

/* Product page: grow with the document, do not trap copy in a box */
[data-chameleon="product-page"],
[data-chameleon-module="product-page"] {
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
    background: transparent !important;
}
[data-chameleon-module="product-page"] [role="tablist"] {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.35rem 0.75rem !important;
}
[data-chameleon-module="product-page"] [role="tab"] {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    padding: 0.85rem 1.1rem !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 2px solid transparent !important;
    cursor: pointer !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: var(--chameleon-muted, #6b7280) !important;
}
[data-chameleon-module="product-page"] [role="tab"][aria-selected="true"] {
    color: var(--chameleon-primary, #059669) !important;
    border-bottom-color: var(--chameleon-primary, #059669) !important;
}
[data-chameleon-module="product-page"] img {
    object-fit: contain !important;
    object-position: center center !important;
    vertical-align: middle !important;
}

/* Lightbox must cover the viewport even when Divi creates a containing block */
[data-chameleon-overlay="media"] {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    overflow: hidden !important;
}
[data-chameleon-overlay="media"] .chm-media-overlay-backdrop {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.92) !important;
}
[data-chameleon-overlay="media"] .chm-media-overlay-stage {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 92vw !important;
    max-height: 88vh !important;
    padding: 3.5rem 4.25rem 3rem !important;
    overflow: visible !important;
    background: transparent !important;
}
[data-chameleon-overlay="media"] .chm-media-overlay-media {
    max-width: min(85vw, 100%) !important;
    max-height: 85vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    vertical-align: middle !important;
}
[data-chameleon-overlay="media"] .chm-overlay-chrome {
    left: auto;
    right: auto;
}

/* SSO hook under the header */
.lcc-sso-hook {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    padding: 0.65rem 1.25rem;
    background: #0f172a;
    color: #f8fafc;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
}
.lcc-sso-hook-copy {
    margin: 0;
    font-family: inherit;
    color: inherit;
}
.lcc-sso-hook-cta {
    font-family: inherit;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 7px 14px;
    font-weight: 700;
    font-size: 13px;
    background: #fff;
    color: #0f172a;
}
.lcc-sso-hook[hidden] { display: none !important; }

/* Powered by Lesuto Chameleon pill */
.lcc-powered-wrap {
    display: flex;
    justify-content: center;
    padding: 0.5rem 1rem 0.75rem;
    background: transparent;
}
.chameleon-pill-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px 7px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-size: 12.5px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
}
.chameleon-pill-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.12) 45%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.12) 55%, transparent 70%);
    background-size: 250% 100%;
    animation: lcc-pill-glint 7s ease-in-out infinite;
    pointer-events: none;
}
@keyframes lcc-pill-glint {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -50% 0; }
}
.chameleon-pill-link:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(15, 23, 42, 0.98);
}
.chameleon-pill-link .cpl-label {
    color: #e4e4e7;
    font-weight: 600;
    font-family: inherit;
}
.chameleon-pill-link .cpl-mark {
    width: 22px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 0;
    background: linear-gradient(90deg, #ff3399, #ffaa33, #ffdd33, #33ffdd, #33ccff, #aa66ff, #ff3399);
    background-size: 300% 100%;
    animation: lcc-pill-shine 9s linear infinite;
    -webkit-mask-image: url("../lesuto-logo.svg");
    mask-image: url("../lesuto-logo.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
.chameleon-pill-link .cpl-shine {
    background: linear-gradient(90deg, #ff3399, #ffaa33, #ffdd33, #33ffdd, #33ccff, #aa66ff, #ff3399);
    background-size: 300% 100%;
    animation: lcc-pill-shine 9s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-family: inherit;
}
@keyframes lcc-pill-shine {
    0% { background-position: 0% 0; }
    100% { background-position: 300% 0; }
}
button, input, select, textarea { font-family: inherit; }
input::placeholder, textarea::placeholder { font-family: inherit; }

/* Price histogram chips duplicate the sidebar price filter and leak i18n keys on older SDK builds. */
[data-chameleon-histograms],
[data-chameleon] .chm-histograms,
.chm-histograms {
    display: none !important;
}

/* Studio wraps nav cart/login: keep them inline inside Divi #top-menu. */
#top-menu > li.lcc-nav-chrome .chm-w,
#et-top-navigation #top-menu > li.lcc-nav-chrome .chm-w {
    display: inline-flex !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    vertical-align: middle !important;
}

/* Hide Divi's baked-in empty blog copy when the Chameleon feed is on the page. */
body:has([data-chameleon="blog-feed"]) .not-found-title,
body:has([data-chameleon="blog-feed"]) .et_pb_ajax_pagination_container > .entry {
    display: none !important;
}
.et_pb_posts .et_pb_no_results,
.et_pb_blog_grid .et_pb_no_results {
    display: none !important;
}

/* Shown only when the CDN SDK empty-hides a blog feed with no posts. */
.lcc-blog-fallback {
    display: none;
    margin: 1.5rem 0;
    text-align: center;
    color: var(--lcc-muted, #6b7280);
    font-family: inherit;
}
[data-chameleon="blog-feed"].chm-is-empty + .lcc-blog-fallback {
    display: block;
}

/* Amazon-style department header: title, breadcrumb, aisle chips. Not a cinematic hero. */
.lcc-dept-head {
    padding: 0.35rem 0 1rem;
    margin: 0 0 1rem;
    border-bottom: 1px solid #e3e6e6;
    font-family: inherit;
}
.lcc-dept-head h1 {
    margin: 0.15rem 0 0.35rem;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 700;
    color: #0f1111;
    font-family: inherit;
}
.lcc-dept-lead {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #565959;
    font-family: inherit;
    max-width: 42rem;
}
.lcc-breadcrumb {
    font-size: 12px;
    line-height: 1.4;
    color: #565959;
    font-family: inherit;
    margin: 0 0 0.35rem;
}
.lcc-breadcrumb a {
    color: var(--lcc-primary, #2162a1);
    text-decoration: none;
    font-family: inherit;
}
.lcc-breadcrumb a:hover { text-decoration: underline; }
.lcc-aisle-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0 2px;
    margin: 0;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}
.lcc-aisle-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 6px 14px;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    background: #fff;
    color: #0f1111;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
}
.lcc-aisle-chip:hover {
    background: #f7fafa;
    border-color: #bbc;
    color: #0f1111;
}
.lcc-aisle-chip.is-current {
    border-color: var(--lcc-primary, #669999);
    box-shadow: inset 0 0 0 1px var(--lcc-primary, #669999);
    font-weight: 700;
}
.lcc-home-dept {
    padding: 0.5rem 0 1.5rem;
    font-family: inherit;
}
.lcc-home-dept-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 0.65rem;
}
.lcc-home-dept-head h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f1111;
    font-family: inherit;
}
.lcc-home-dept-head a {
    color: var(--lcc-primary, #2162a1);
    font-size: 14px;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
}
.lcc-home-dept-head a:hover { text-decoration: underline; }
.lcc-home-dept .lcc-aisle-nav { margin-bottom: 0.85rem; }
.lcc-faq-list { margin: 0; padding: 0; }
.lcc-faq-list dt {
    font-weight: 650;
    margin: 1rem 0 0.35rem;
    color: inherit;
}
.lcc-faq-list dd {
    margin: 0 0 0.75rem;
    opacity: 0.88;
    line-height: 1.55;
}
.lcc-home-faq { padding-bottom: 1.5rem; }

.lcc-collection-hero {
    display: grid;
    gap: 1.25rem;
    margin: 0 0 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e3e6e6;
    font-family: inherit;
}
@media (min-width: 720px) {
    .lcc-collection-hero {
        grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
        align-items: center;
    }
}
.lcc-collection-hero-media {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f1ea;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lcc-collection-hero.has-photo {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 280px;
    overflow: hidden;
    border-radius: 12px;
    border-bottom: none;
    padding: 0;
    grid-template-columns: none;
}
.lcc-collection-hero.has-photo .lcc-collection-hero-media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    border-radius: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.lcc-collection-hero.has-photo .lcc-collection-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,12,20,0.16) 0%, rgba(8,12,20,0.58) 100%);
}
.lcc-collection-hero.has-photo .lcc-collection-hero-copy {
    position: relative;
    z-index: 1;
    padding: 2rem 1.75rem 1.5rem;
    max-width: 42rem;
}
.lcc-collection-hero.has-photo h1,
.lcc-collection-hero.has-photo .lcc-dept-lead,
.lcc-collection-hero.has-photo .lcc-collection-count,
.lcc-collection-hero.has-photo .lcc-breadcrumb,
.lcc-collection-hero.has-photo .lcc-breadcrumb a,
.lcc-collection-hero.has-photo .lcc-breadcrumb span {
    color: #fff;
}
@media (min-width: 720px) {
    .lcc-collection-hero.has-photo {
        grid-template-columns: none;
        min-height: 320px;
    }
}
.lcc-collection-hero-copy h1 {
    margin: 0.15rem 0 0.4rem;
    font-size: 1.85rem;
    line-height: 1.2;
    font-family: inherit;
}
.lcc-collection-count {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
    color: #565959;
}
.lcc-product-specs {
    max-width: 720px;
    margin: 1.5rem auto 2.5rem;
    padding: 0 1rem;
    font-family: inherit;
}
.lcc-product-specs h2 {
    font-size: 1.2rem;
    margin: 0 0 0.75rem;
}
.lcc-product-specs table {
    width: 100%;
    border-collapse: collapse;
}
.lcc-product-specs th,
.lcc-product-specs td {
    text-align: left;
    padding: 0.55rem 0.75rem 0.55rem 0;
    border-bottom: 1px solid #e3e6e6;
    vertical-align: top;
    font-family: inherit;
}
.lcc-product-specs th {
    width: 40%;
    font-weight: 650;
}
[data-chameleon-module="product-page"] .chm-pdp-spec-table {
    display: table !important;
    width: 100% !important;
    max-width: 600px !important;
}
[data-chameleon-module="product-slider"] .chm-slider-card-img,
[data-chameleon-module="product-slider"] .chm-card-media,
[data-chameleon-module="trending"] .chm-card-media,
[data-chameleon-module="for-you"] .chm-card-media,
[data-chameleon-module="recently-viewed"] .chm-card-media,
[data-chameleon-module="search"] .chm-card-media,
[data-chameleon="search"] .chm-card-media {
    display: block !important;
    position: relative !important;
    overflow: hidden !important;
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    min-height: 200px !important;
    max-height: none !important;
    height: auto !important;
}
[data-chameleon] .chm-img-blur-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: blur(60px) brightness(1.05);
    transform: scale(1.3);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
    margin: 0 !important;
}
[data-chameleon-module="product-slider"] .chm-img-contain,
[data-chameleon-module="trending"] .chm-img-contain,
[data-chameleon-module="for-you"] .chm-img-contain,
[data-chameleon-module="recently-viewed"] .chm-img-contain,
[data-chameleon-module="search"] .chm-img-contain {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    margin: 0 !important;
    z-index: 1;
}

.lcc-page-prose {
    max-width: 720px;
    margin: 0 auto 3rem;
    padding: 0 1.25rem;
    font-family: inherit;
}
.lcc-page-prose h1 { font-size: 1.85rem; margin: 0 0 0.75rem; }
.lcc-page-prose h2 { font-size: 1.25rem; margin: 1.75rem 0 0.5rem; }
.lcc-collection-search {
    display: flex;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    max-width: 520px;
    font-family: inherit;
}
.lcc-collection-search input,
.lcc-collection-search button {
    font-family: inherit;
}
.lcc-collection-search input {
    flex: 1;
    min-height: 44px;
    padding: 0.55rem 0.85rem;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
}
.lcc-collection-search input::placeholder { font-family: inherit; }
.lcc-collection-search button {
    min-height: 44px;
    padding: 0 1rem;
    border: 0;
    border-radius: 8px;
    background: var(--lcc-primary, #2162a1);
    color: #fff;
    font-weight: 650;
    cursor: pointer;
}
.lcc-collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin: 0 0 1.5rem;
}
.lcc-collection-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    font-family: inherit;
}
.lcc-collection-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    background: #f3f1ea;
    border-radius: 10px;
    overflow: hidden;
}
.lcc-collection-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}
.lcc-collection-card-name {
    padding: 0.55rem 0.15rem 0;
    font-size: 0.9rem;
    line-height: 1.35;
}
.lcc-collection-card-price {
    padding: 0.15rem 0.15rem 0;
    font-size: 0.85rem;
    font-weight: 650;
    color: var(--lcc-text, #3d3d3d);
}
.lcc-collection-pager {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0 0 2rem;
}
.lcc-collection-pager a {
    min-width: 36px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    font-family: inherit;
}
.lcc-collection-pager a.is-current {
    font-weight: 700;
    border-color: var(--lcc-primary, #2162a1);
}
.lcc-contact-assist-row { margin: 0.75rem 0 0; }

body.lcc-catalog-page .lcc-listing-intro:not(.lcc-page-hero-inner) {
    max-width: none;
    margin: 0 0 1rem;
    padding: 0.5rem 0 0.75rem;
    border-radius: 0;
    background: none;
    color: inherit;
}
body.lcc-catalog-page .lcc-listing-intro:not(.lcc-page-hero-inner) .lcc-listing-kicker {
    color: #565959;
}
body.lcc-catalog-page .lcc-listing-intro:not(.lcc-page-hero-inner) h1 {
    color: #0f1111;
}
body.lcc-catalog-page .lcc-listing-intro:not(.lcc-page-hero-inner) p {
    color: #565959;
}

/* Listing page intros: Divi often collapses these to a faint line above a grid. */
.lcc-listing-intro {
    color: inherit;
    padding: 1.75rem 0 1.25rem;
    max-width: 46rem;
    font-family: inherit;
}
.lcc-listing-intro .lcc-listing-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #059669;
}
.lcc-listing-intro h1 {
    margin: 0 0 0.6rem;
    font-size: 2.15rem;
    line-height: 1.15;
    color: #111;
    font-family: inherit;
}
.lcc-listing-intro p {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #374151;
    font-family: inherit;
}
.lcc-listing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}
.lcc-listing-cta-link,
.lcc-listing-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 0;
}
.lcc-listing-cta-link {
    background: #fff;
    color: #111;
}
.lcc-listing-cta-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.28);
}
.lcc-listing-cta-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
}
.et_pb_text_inner h1 {
    color: inherit;
}

.lcc-page-hero,
.lcc-room-panel {
    position: relative;
    width: 100%;
    max-width: none;
    overflow: hidden;
    border-radius: 0;
    min-height: 320px;
    margin: 0;
    color: #fff;
    display: flex;
    align-items: stretch;
}
body.lcc-bhd.lcc-catalog-page .lcc-page-hero,
body.lcc-bhd.lcc-catalog-page .lcc-room-panel,
body.lcc-bhd.lcc-commerce-page .lcc-page-hero,
body.lcc-bhd.lcc-commerce-page .lcc-room-panel {
    max-width: 1120px;
    margin: 0.75rem auto 1.5rem;
    border-radius: 16px;
    min-height: 220px;
}
.lcc-page-hero:not(.has-photo),
.lcc-room-panel:not(.has-photo) {
    background: #1c1917;
    min-height: 0;
}
.lcc-page-hero-inner,
.lcc-room-panel-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    width: 100%;
    max-width: none;
    padding: 1.75rem 1.25rem 1.35rem;
}
.lcc-shop-by-room,
.lcc-furniture-aisle,
.lcc-hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    margin: 0;
}
.lcc-page-hero .lcc-aisle-nav,
.lcc-page-hero .lcc-hero-chips,
.lcc-room-panel .lcc-shop-by-room {
    margin: 0;
    justify-content: center;
}
.lcc-page-hero .lcc-aisle-chip,
.lcc-page-hero .lcc-hero-chips a,
.lcc-page-hero .lcc-room-chip,
.lcc-room-panel .lcc-shop-by-room a,
.lcc-room-panel .lcc-furniture-aisle a,
.lcc-room-panel .lcc-room-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: none;
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    text-transform: capitalize;
    backdrop-filter: blur(6px);
    cursor: pointer;
}
.lcc-page-hero .lcc-aisle-chip:hover,
.lcc-page-hero .lcc-hero-chips a:hover,
.lcc-page-hero .lcc-room-chip:hover,
.lcc-room-panel .lcc-shop-by-room a:hover,
.lcc-room-panel .lcc-furniture-aisle a:hover,
.lcc-room-panel .lcc-room-chip:hover {
    background: rgba(255,255,255,0.28);
    color: #fff;
}
.lcc-page-hero .lcc-aisle-chip.is-current,
.lcc-page-hero .lcc-room-chip.is-current,
.lcc-room-panel .lcc-room-chip.is-current {
    background: #fff;
    color: #111;
    box-shadow: none;
}
.lcc-page-hero-media,
.lcc-page-hero-overlay,
.lcc-room-panel-bg {
    position: absolute;
    inset: 0;
}
.lcc-page-hero.has-photo .lcc-page-hero-media {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.lcc-page-hero .lcc-page-hero-media,
.lcc-room-panel-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.lcc-page-hero-overlay { display: none; }
.lcc-page-hero .lcc-page-hero-media::after,
.lcc-room-panel-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,12,20,0.28) 0%, rgba(8,12,20,0.72) 100%);
}
.lcc-catalog-shop {
    position: relative;
    z-index: 1;
}
.lcc-page-story {
    margin-top: 2.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(28, 25, 23, 0.12);
}
.lcc-page-hero .lcc-listing-kicker,
.lcc-room-panel-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.9;
}
.lcc-page-hero h1,
.lcc-page-hero h2,
.lcc-room-panel h1,
.lcc-room-panel h2 {
    margin: 0 0 0.4rem;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    font-family: inherit;
}
.lcc-page-hero p,
.lcc-room-panel-lead {
    margin: 0 0 1rem;
    max-width: 34rem;
    font-size: 0.95rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.92);
}
.lcc-product-seo:has(+ [data-chameleon-module="product-page"]) {
    display: none;
}
.lcc-product-seo h1 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
}
.lcc-product-seo img {
    max-width: 100%;
    height: auto;
}

/* Subtle paper texture instead of sterile white, every connected store. */
body.lcc-store #top-menu > li > a,
body.lcc-store .hs-header-main nav a,
body.lcc-store .hs-subnav a {
    text-transform: capitalize;
}
body.lcc-store {
    background-color: #f3efe7 !important;
    background-image:
        radial-gradient(rgba(28, 25, 23, 0.035) 0.6px, transparent 0.7px),
        linear-gradient(180deg, rgba(255,255,255,0.35), rgba(243,239,231,0.9));
    background-size: 3px 3px, 100% 100%;
    background-repeat: repeat, no-repeat;
}
body.lcc-store #main-content,
body.lcc-store #left-area,
body.lcc-store #content-area {
    background-color: transparent !important;
}
/* Keep Divi hero photos as one cover image. Never tile, never wipe background-image. */
body.lcc-store .et_pb_section.et_pb_with_background,
body.lcc-store .et_pb_fullwidth_section,
body.lcc-store .et_pb_slide,
body.lcc-store .et_pb_fullwidth_header {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}
body.lcc-catalog-page #sidebar,
body.lcc-catalog-page #sidebar-right,
body.lcc-catalog-page .et_pb_widget,
body.lcc-commerce-page #sidebar,
body.lcc-commerce-page #sidebar-right,
body.lcc-commerce-page .et_pb_widget {
    display: none !important;
}
body.lcc-bhd.lcc-catalog-page #left-area,
body.lcc-bhd.lcc-catalog-page #content-area,
body.lcc-bhd.lcc-catalog-page .container,
body.lcc-bhd.lcc-catalog-page .et_pb_row,
body.lcc-bhd.lcc-commerce-page #left-area,
body.lcc-bhd.lcc-commerce-page #content-area,
body.lcc-bhd.lcc-commerce-page .container,
body.lcc-bhd.lcc-commerce-page .et_pb_row {
    width: 100% !important;
    max-width: 1120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}
body.lcc-catalog-page .lcc-page-hero,
body.lcc-catalog-page .lcc-room-panel,
body.lcc-commerce-page .lcc-page-hero,
body.lcc-commerce-page .lcc-room-panel {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}
body.lcc-catalog-page {
    background: #fff !important;
    background-image: none !important;
}
body.lcc-catalog-page #left-area,
body.lcc-commerce-page #left-area {
    padding: 12px clamp(1.25rem, 4vw, 2.5rem) 2.5rem !important;
}
.lcc-header-search .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
@media (min-width: 1200px) {
    body.lcc-catalog-page [data-chameleon="search"] .chm-grid,
    body.lcc-catalog-page [data-chameleon="search"] .chm-cols-3,
    body.lcc-catalog-page [data-chameleon="search"] .chm-cols-4,
    body.lcc-commerce-page [data-chameleon="search"] .chm-grid,
    body.lcc-commerce-page [data-chameleon="search"] .chm-cols-3,
    body.lcc-commerce-page [data-chameleon="search"] .chm-cols-4 {
        grid-template-columns: repeat(5, minmax(140px, 1fr)) !important;
        gap: 0.65rem !important;
    }
}
@media (min-width: 1480px) {
    body.lcc-catalog-page [data-chameleon="search"] .chm-grid,
    body.lcc-catalog-page [data-chameleon="search"] .chm-cols-3,
    body.lcc-catalog-page [data-chameleon="search"] .chm-cols-4,
    body.lcc-catalog-page [data-chameleon="search"] .chm-cols-5,
    body.lcc-catalog-page [data-chameleon="search"] .chm-cols-6,
    body.lcc-commerce-page [data-chameleon="search"] .chm-grid,
    body.lcc-commerce-page [data-chameleon="search"] .chm-cols-3,
    body.lcc-commerce-page [data-chameleon="search"] .chm-cols-4,
    body.lcc-commerce-page [data-chameleon="search"] .chm-cols-5,
    body.lcc-commerce-page [data-chameleon="search"] .chm-cols-6 {
        grid-template-columns: repeat(6, minmax(140px, 1fr)) !important;
    }
}
body.lcc-catalog-page [data-chameleon="search"] .chm-card-media,
body.lcc-catalog-page [data-chameleon="search"] .chm-card img:not(.chm-img-blur-bg),
body.lcc-commerce-page [data-chameleon="search"] .chm-card-media,
body.lcc-commerce-page [data-chameleon="search"] .chm-card img:not(.chm-img-blur-bg) {
    max-height: none;
    object-fit: contain;
}
/* Netflix-style horizontal rails for picks and sliders, including older CDN grid fallback. */
body.lcc-store [data-chameleon="for-you"],
body.lcc-store [data-chameleon="product-slider"],
body.lcc-store [data-chameleon="recently-viewed"],
body.lcc-store [data-chameleon="also-bought"] {
    --chameleon-slider-card-width: min(82vw, 280px);
}
body.lcc-store [data-chameleon="for-you"] .chm-grid,
body.lcc-store [data-chameleon="product-slider"] .chm-grid,
body.lcc-store [data-chameleon="recently-viewed"] .chm-grid,
body.lcc-store [data-chameleon="also-bought"] .chm-slider-track,
body.lcc-store [data-chameleon="for-you"] .chm-slider-track,
body.lcc-store [data-chameleon="product-slider"] .chm-slider-track,
body.lcc-store [data-chameleon="recently-viewed"] .chm-slider-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    grid-template-columns: none !important;
    gap: 0.75rem !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
body.lcc-store [data-chameleon="for-you"] .chm-card,
body.lcc-store [data-chameleon="product-slider"] .chm-card,
body.lcc-store [data-chameleon="recently-viewed"] .chm-card,
body.lcc-store [data-chameleon="also-bought"] .chm-card,
body.lcc-store [data-chameleon="for-you"] .chm-slider-card,
body.lcc-store [data-chameleon="product-slider"] .chm-slider-card,
body.lcc-store [data-chameleon="recently-viewed"] .chm-slider-card,
body.lcc-store [data-chameleon="also-bought"] .chm-slider-card {
    flex: 0 0 min(82vw, 280px) !important;
    width: min(82vw, 280px) !important;
    max-width: 82vw !important;
    min-width: 0 !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Product page reco rails: half-size cards, distinct from catalog Netflix rails. */
body.lcc-store .lcc-pdp-reco [data-chameleon="for-you"],
body.lcc-store .lcc-pdp-reco [data-chameleon="also-bought"] {
    --chameleon-slider-card-width: min(42vw, 140px);
    padding: 0.5rem 0 1rem;
}
body.lcc-store .lcc-pdp-reco [data-chameleon="for-you"] .chm-card,
body.lcc-store .lcc-pdp-reco [data-chameleon="also-bought"] .chm-card,
body.lcc-store .lcc-pdp-reco [data-chameleon="for-you"] .chm-slider-card,
body.lcc-store .lcc-pdp-reco [data-chameleon="also-bought"] .chm-slider-card {
    flex: 0 0 min(42vw, 140px) !important;
    width: min(42vw, 140px) !important;
    max-width: 42vw !important;
}
body.lcc-store .lcc-pdp-reco .chm-card-media,
body.lcc-store .lcc-pdp-reco .chm-slider-card-img,
body.lcc-store .lcc-pdp-reco .chm-card img:not(.chm-img-blur-bg) {
    max-height: 90px;
    aspect-ratio: 1 / 1;
}

button.chm-assistant-fab,
.chm-so-chatBubbleFab.chm-assistant-fab,
[data-chameleon-module="shopping-assistant"] button.chm-so-chatBubbleFab {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    line-height: 0 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.28) !important;
}

/* Studio wraps nav cart/login inside the relocated cluster too. */
.lcc-nav-cluster .chm-w {
    display: inline-flex !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
}

.lcc-contact {
    max-width: 820px;
    margin: 0 auto 3rem;
    padding: 0 1.25rem;
}
.lcc-contact h2 {
    font-size: 1.35rem;
    margin: 0 0 0.5rem;
    color: var(--lcc-text, #3d3d3d);
}
.lcc-contact p {
    margin: 0 0 0.75rem;
    color: var(--lcc-muted, #6b6b6b);
    line-height: 1.55;
}
.lcc-contact-grid {
    display: grid;
    gap: 1.5rem;
    margin: 0 0 2.5rem;
}
@media (min-width: 720px) {
    .lcc-contact-grid { grid-template-columns: 1fr 1fr; }
}
.lcc-contact-card {
    background: var(--lcc-surface, #f7f5f0);
    border: 1px solid var(--lcc-border, #e6e1d6);
    border-radius: 12px;
    padding: 1.25rem 1.35rem;
}
.lcc-contact-card a {
    color: var(--lcc-primary, #b8963e);
    font-weight: 600;
}
.lcc-contact-assist {
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--lcc-primary, #b8963e);
    background: #fff;
    color: var(--lcc-text, #3d3d3d);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.lcc-contact-section { margin: 0 0 2.5rem; }
.lcc-contact-section [data-chameleon] { margin-top: 0.75rem; }

.lcc-desk { font-family: inherit; }
.lcc-desk-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0 0 1.25rem;
    padding: 0 0 0.75rem;
    border-bottom: 1px solid #e3e6e6;
}
.lcc-desk-tab {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #d5d8d8;
    color: var(--lcc-text, #3d3d3d);
    text-decoration: none;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    background: #fff;
}
.lcc-desk-tab:hover { border-color: var(--lcc-primary, #b8963e); }
.lcc-desk-tab.is-current {
    background: var(--lcc-primary, #b8963e);
    border-color: var(--lcc-primary, #b8963e);
    color: #fff;
}
.lcc-desk-rails { margin-top: 2.5rem; }
.lcc-desk-rails h2 {
    margin: 1.5rem 0 0.65rem;
    font-size: 1.15rem;
    font-family: inherit;
}

.lcc-brand-grid {
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.85rem;
}
.lcc-brand-tile {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 168px;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #1c1917 0%, #44403c 42%, #0f766e 100%);
}
.lcc-brand-tile-bg[data-lcc-brand-gradient="1"] {
    background-image:
        radial-gradient(120% 80% at 12% 20%, rgba(16,185,129,0.35), transparent 55%),
        radial-gradient(90% 70% at 88% 10%, rgba(184,150,62,0.28), transparent 50%),
        linear-gradient(135deg, #1c1917 0%, #334155 55%, #0f766e 100%);
}
.lcc-brand-tile-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.lcc-brand-tile-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
    width: 100%;
    padding: 1rem 0.75rem 0.85rem;
    background: linear-gradient(180deg, transparent 20%, rgba(8,12,20,0.72) 100%);
    text-align: center;
}
.lcc-brand-tile img {
    max-width: 78%;
    max-height: 56px;
    object-fit: contain;
    filter: none;
    background: #fff;
    padding: 0.4rem 0.55rem;
    border-radius: 8px;
}
.lcc-brand-tile-name {
    display: block;
    font-weight: 750;
    font-size: 0.95rem;
    line-height: 1.2;
    color: #fff;
}
.lcc-brand-tile-desc {
    font-size: 0.75rem;
    line-height: 1.35;
    color: rgba(255,255,255,0.88);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lcc-brand-landing { margin: 0 0 1.75rem; font-family: inherit; }
body.lcc-brand-landing .entry-title,
body.lcc-brand-landing h1.entry-title,
body.lcc-brand-landing .et_pb_title_container,
body.lcc-brand-landing .et_main_title {
    display: none !important;
}
body.lcc-catalog-page .entry-title,
body.lcc-catalog-page h1.entry-title,
body.lcc-catalog-page h1.main_title,
body.lcc-catalog-page .et_main_title,
body.lcc-catalog-page .et_pb_title_container,
body.lcc-furniture-shop:not(.home) .entry-title,
body.lcc-furniture-shop:not(.home) h1.entry-title,
body.lcc-furniture-shop:not(.home) .et_main_title,
body.lcc-furniture-shop:not(.home) .et_pb_title_container,
body.lcc-home-stack .entry-title,
body.lcc-home-stack h1.entry-title,
body.lcc-home-stack .et_main_title,
body.lcc-home-stack .et_pb_title_container {
    display: none !important;
}
body.lcc-store .lcc-page-intro h1,
body.lcc-store .lcc-about-page h1,
body.lcc-store .lcc-policy-page h1 {
    display: block !important;
}
body.lcc-store #footer-widgets,
body.lcc-store .footer-widget {
    display: none !important;
}
.lcc-seo-intro {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}
.lcc-seo-lead {
    color: #78716c;
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
}
.lcc-brand-landing-banner {
    min-height: 180px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-color: #3d3d3d;
}
.lcc-brand-landing-copy { padding: 1rem 0 0; }
.lcc-brand-landing-logo {
    max-height: 72px;
    max-width: 220px;
    object-fit: contain;
    margin: 0 0 0.75rem;
    background: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}
.lcc-brand-site { font-weight: 700; color: var(--lcc-primary, #b8963e); }

body.lcc-store [data-chameleon="brand-slider"] .chm-brand-card,
body.lcc-store [data-chameleon="brand-slider"] .chm-brand-card img[data-chm-brand-img] {
    filter: none !important;
}
body.lcc-store [data-chameleon="brand-slider"] .chm-brand-card {
    background: linear-gradient(135deg, #3d3d3d 0%, #b8963e 100%);
}
@keyframes lcc-brand-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
body.lcc-store [data-chameleon="stories"].chm-is-empty,
body.lcc-store [data-chameleon="stories"][style*="display: none"] {
    margin: 0 !important;
    min-height: 0 !important;
}

body.lcc-store button,
body.lcc-store input,
body.lcc-store select,
body.lcc-store textarea {
    font-family: inherit;
}
body.lcc-store input::placeholder,
body.lcc-store textarea::placeholder {
    font-family: inherit;
}

[data-chameleon-module="faq"] input.chm-so-faqSearchInput,
[data-chameleon-module="faq"] input[type="search"] {
    padding-left: 2.75rem !important;
    background-image: none !important;
    font-family: inherit !important;
}

@media (max-width: 860px) {
    [data-chameleon-module="faq"] .chm-faq-layout {
        grid-template-columns: 1fr !important;
    }
}

body.lcc-store .lcc-store-footer {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, 1fr);
    gap: 1.25rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.75rem 1.25rem 0.5rem;
    align-items: start;
}
body.lcc-store .lcc-store-footer .lcc-footer-strip {
    grid-column: 1 / -1;
}
body.lcc-store #footer-bottom .et-social-icons,
body.lcc-store #footer-info {
    display: none !important;
}
body.lcc-store .hs-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.75fr)) minmax(200px, 1fr);
    gap: 0.85rem 1.25rem;
    align-items: start;
}
body.lcc-store .lcc-store-footer.hs-footer-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, 1fr);
}
body.lcc-store .lcc-store-footer.hs-footer-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, 1fr);
}
body.lcc-store .hs-footer-inner h2,
body.lcc-store .hs-footer-inner h3,
body.lcc-store .hs-footer-inner h4 {
    font-size: 0.8rem !important;
    margin: 0 0 0.4rem !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
body.lcc-store .hs-footer-inner p,
body.lcc-store .hs-footer-inner li,
body.lcc-store .hs-footer-inner a {
    font-size: 0.8rem;
    line-height: 1.4;
}
body.lcc-store .hs-footer-newsletter,
body.lcc-store [data-lcc-footer-newsletter] {
    min-width: 0;
}
body.lcc-store .hs-footer-newsletter [data-chameleon="newsletter"],
body.lcc-store [data-lcc-footer-newsletter] [data-chameleon="newsletter"] {
    margin: 0;
}
body.lcc-store .hs-footer-newsletter input,
body.lcc-store [data-lcc-footer-newsletter] input,
body.lcc-store .lcc-cookie-banner button,
body.lcc-store .lcc-cookie-banner input {
    font-family: inherit;
}
.lcc-footer-strip {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    padding: 0.65rem 0 0;
    border-top: 1px solid var(--lcc-border, #e6e1d6);
    margin-top: 0.25rem;
}
.lcc-nav-currency .chm-mod-title,
.lcc-nav-currency h2,
.lcc-nav-currency h3,
.lcc-nav-currency [data-chameleon-label] {
    display: none !important;
}
.lcc-footer-blurb {
    flex: 1 1 16rem;
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--lcc-muted, #6b6b6b);
    max-width: 36rem;
}
.lcc-footer-apps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}
.lcc-footer-hub {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--lcc-primary, #b8963e);
    color: var(--lcc-primary, #b8963e);
    font-size: 0.78rem;
    font-weight: 650;
    text-decoration: none;
    font-family: inherit;
}
.lcc-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    width: 100%;
    font-size: 0.72rem;
}
.lcc-footer-legal a {
    color: var(--lcc-muted, #6b6b6b);
    text-decoration: none;
}
.lcc-footer-legal a:hover {
    color: var(--lcc-text, #3d3d3d);
}
.lcc-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 0.85rem 1.1rem;
    background: #111;
    color: #fff;
    font-family: inherit;
    font-size: 0.8125rem;
    line-height: 1.4;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.lcc-cookie-banner[hidden] { display: none !important; }
.lcc-cookie-banner p { margin: 0; flex: 1 1 18rem; }
.lcc-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
}
.lcc-cookie-actions button,
.lcc-cookie-actions a {
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 650;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    cursor: pointer;
}
.lcc-cookie-accept {
    background: #fff;
    color: #111;
    border: 0;
}
.lcc-cookie-necessary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}
.lcc-cookie-actions a { color: #fff; }
@media (max-width: 1100px) {
    body.lcc-store .hs-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    body.lcc-store .hs-footer-inner {
        grid-template-columns: 1fr;
    }
}

body.lcc-store [data-chameleon="promo-banner"][data-cta-link*="outdoor"] .chm-promo-title,
body.lcc-store [data-chameleon="promo-banner"][data-text*="Outdoor"] .chm-promo-title,
body.lcc-store [data-chameleon="promo-banner"][data-text*="Patio"] .chm-promo-title,
body.lcc-store [data-chameleon="promo-banner"][data-cta-link*="patio"] .chm-promo-title {
    color: #fff !important;
    font-size: clamp(1.85rem, 4.2vw, 2.85rem) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}
body.lcc-store [data-chameleon="promo-banner"][data-cta-link*="outdoor"] .chm-promo-subtitle,
body.lcc-store [data-chameleon="promo-banner"][data-text*="Outdoor"] .chm-promo-subtitle,
body.lcc-store [data-chameleon="promo-banner"][data-text*="Patio"] .chm-promo-subtitle,
body.lcc-store [data-chameleon="promo-banner"][data-cta-link*="patio"] .chm-promo-subtitle {
    color: #fff !important;
    text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
body.lcc-store [data-chameleon="promo-banner"][data-cta-link*="outdoor"] a.chm-btn,
body.lcc-store [data-chameleon="promo-banner"][data-cta-link*="patio"] a.chm-btn,
body.lcc-store [data-chameleon="promo-banner"][data-text*="Outdoor"] a.chm-btn,
body.lcc-store [data-chameleon="promo-banner"][data-text*="Patio"] a.chm-btn,
body.lcc-store [data-chameleon="promo-banner"][data-cta*="outdoor"] a.chm-btn,
body.lcc-store [data-chameleon="promo-banner"][data-cta*="Outdoor"] a.chm-btn {
    background: #fff !important;
    color: #111 !important;
}
body.lcc-store [data-chameleon="promo-banner"][data-cta-link*="outdoor"] a.chm-btn:hover,
body.lcc-store [data-chameleon="promo-banner"][data-cta-link*="patio"] a.chm-btn:hover,
body.lcc-store [data-chameleon="promo-banner"][data-text*="Outdoor"] a.chm-btn:hover,
body.lcc-store [data-chameleon="promo-banner"][data-text*="Patio"] a.chm-btn:hover,
body.lcc-store [data-chameleon="promo-banner"][data-cta*="outdoor"] a.chm-btn:hover,
body.lcc-store [data-chameleon="promo-banner"][data-cta*="Outdoor"] a.chm-btn:hover {
    background: #f3f3f3 !important;
    color: #111 !important;
}

body.lcc-store [data-chameleon="brand-slider"] .chm-brand-card {
    min-height: 52px !important;
    cursor: pointer;
}

body.lcc-store [data-chameleon="brand-header"] {
    margin-bottom: 1.25rem;
}

.lcc-nav-scrim,
.lcc-mobile-drawer-head,
.lcc-mobile-drawer-foot,
.lcc-nav-caret {
    display: none;
}

@media (max-width: 860px) {
    body.lcc-store .hs-header-main {
        flex-wrap: wrap;
        gap: 10px 12px;
        padding: 8px 12px;
    }
    body.lcc-store .hs-menu-toggle {
        order: 0;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        border: 1px solid var(--lcc-border, #e6e1d6);
        border-radius: 10px;
        background: #fff;
        color: #1f1f1f;
        font-size: 0;
        line-height: 0;
        cursor: pointer;
    }
    body.lcc-store .hs-menu-toggle::before {
        content: "";
        display: block;
        width: 18px;
        height: 2px;
        background: currentColor;
        box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
        border-radius: 1px;
    }
    body.lcc-store .hs-logo {
        order: 1;
        flex: 1 1 auto;
        min-width: 0;
    }
    body.lcc-store .hs-logo img {
        height: 36px;
        max-width: 160px;
        object-fit: contain;
    }
    body.lcc-store .hs-header-actions {
        order: 2;
        margin-left: 0;
    }
    body.lcc-store .hs-search {
        order: 3;
        flex: 1 1 100%;
        max-width: none;
        margin: 0;
    }
    body.lcc-store .lcc-nav-cluster {
        height: 44px !important;
        gap: 6px;
    }
    body.lcc-store .lcc-nav-cluster > li.lcc-nav-help {
        display: none !important;
    }
    body.lcc-store .lcc-nav-cluster > li.lcc-nav-mobile-app {
        display: inline-flex !important;
    }
    body.lcc-store .lcc-hub-app-mobile-chip {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-height: 36px !important;
        padding: 0 10px !important;
        font-size: 11px !important;
        font-weight: 650 !important;
        white-space: nowrap;
    }
    body.lcc-store .lcc-nav-cluster > li.lcc-nav-account .chm-so-accountTrigger,
    body.lcc-store .lcc-nav-cluster > li.lcc-nav-account button,
    body.lcc-store .lcc-nav-cluster > li.lcc-nav-account a {
        min-width: 0 !important;
        width: auto !important;
        padding: 0 12px !important;
        height: 36px !important;
        line-height: 36px !important;
        font-size: 12px !important;
    }
    body.lcc-store .lcc-nav-cluster > li.lcc-nav-currency {
        max-width: none !important;
    }
    body.lcc-store .lcc-nav-cluster > li.lcc-nav-currency .chm-so-currencyTrigger {
        min-width: 0 !important;
        max-width: none !important;
        padding: 0 8px !important;
        height: 36px !important;
        line-height: 36px !important;
        font-size: 12px !important;
        overflow: visible !important;
    }

    .lcc-nav-scrim {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 100050;
        background: rgba(17, 17, 17, 0.46);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }
    body.lcc-store.hs-nav-open .lcc-nav-scrim:not([hidden]) {
        opacity: 1;
        pointer-events: auto;
    }
    .lcc-nav-scrim[hidden] { display: none !important; }

    body.lcc-store .hs-subnav,
    body.lcc-store .hs-subnav[data-lcc-drawer-mounted="1"] {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(22.5rem, 88vw);
        max-width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        z-index: 100060;
        background: #fff;
        color: #1f1f1f;
        box-shadow: -18px 0 40px rgba(0, 0, 0, 0.18);
        transform: translateX(110%);
        transition: transform 0.24s ease;
        overflow: hidden;
        pointer-events: auto;
    }
    body.lcc-store.hs-nav-open .hs-subnav {
        transform: translateX(0);
    }
    body.lcc-store.hs-nav-open {
        overflow: hidden !important;
    }
    body.lcc-store .hs-subnav-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
        max-height: 100dvh;
        padding: 0;
        overflow: hidden;
        max-width: none;
    }
    .lcc-mobile-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex: 0 0 auto;
        padding: 14px 16px;
        border-bottom: 1px solid var(--lcc-border, #e6e1d6);
        background: #fff;
    }
    .lcc-mobile-drawer-title {
        margin: 0;
        font-size: 1.05rem;
        font-weight: 700;
        color: #1f1f1f;
        font-family: inherit;
    }
    .lcc-mobile-drawer-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 10px;
        background: transparent;
        color: #1f1f1f;
        cursor: pointer;
        font-family: inherit;
        position: relative;
    }
    .lcc-mobile-drawer-close::before,
    .lcc-mobile-drawer-close::after {
        content: "";
        position: absolute;
        width: 16px;
        height: 2px;
        background: currentColor;
        border-radius: 1px;
    }
    .lcc-mobile-drawer-close::before { transform: rotate(45deg); }
    .lcc-mobile-drawer-close::after { transform: rotate(-45deg); }

    body.lcc-store .hs-subnav ul.menu,
    body.lcc-store .hs-subnav ul.lcc-nav-with-hub-cta {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        flex: 1 1 auto;
        min-height: 0;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        gap: 0;
        padding: 8px 0 16px;
        width: 100%;
    }
    body.lcc-store .hs-subnav .menu > li {
        display: block;
        width: 100%;
        margin: 0;
        border-bottom: 1px solid var(--lcc-border, #e6e1d6);
    }
    body.lcc-store .hs-subnav .menu > li.lcc-nav-parent {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }
    body.lcc-store .hs-subnav .menu > li > a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 48px;
        padding: 12px 16px;
        color: #1f1f1f !important;
        background: transparent !important;
        font-size: 1rem;
        font-weight: 600;
        white-space: normal;
        line-height: 1.3;
    }
    body.lcc-store .hs-subnav .lcc-nav-parent > a {
        flex: 1 1 auto;
        width: auto;
        padding-right: 8px;
    }
    .lcc-nav-caret {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        margin: 0;
        padding: 0;
        border: 0;
        background: transparent;
        color: #1f1f1f;
        cursor: pointer;
        font-family: inherit;
    }
    .lcc-nav-caret::before {
        content: "";
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        margin-top: -4px;
    }
    body.lcc-store .hs-subnav .menu-item-has-children.is-open > .lcc-nav-caret::before {
        transform: rotate(-135deg);
        margin-top: 2px;
    }
    body.lcc-store .hs-subnav .sub-menu {
        display: none !important;
        position: static !important;
        flex: 1 1 100%;
        width: 100%;
        background: #f7f5f0;
        box-shadow: none !important;
        padding: 0 0 8px;
    }
    body.lcc-store .hs-subnav .menu-item-has-children.is-open > .sub-menu {
        display: block !important;
    }
    body.lcc-store .hs-subnav .sub-menu a {
        display: flex;
        min-height: 44px;
        padding: 10px 16px 10px 28px;
        color: #3d3d3d !important;
        background: transparent !important;
        font-size: 0.95rem;
        font-weight: 500;
        white-space: normal;
    }
    .lcc-mobile-drawer-foot {
        display: block;
        flex: 0 0 auto;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid var(--lcc-border, #e6e1d6);
        background: #fff;
    }
    body.lcc-store .lcc-mobile-drawer-foot li.lcc-nav-hub-app,
    body.lcc-store .lcc-mobile-drawer-foot .lcc-hub-app-pair {
        display: flex !important;
        margin: 0 !important;
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
    }
    body.lcc-store .lcc-mobile-drawer-foot .lcc-hub-app-cta {
        flex: 1 1 auto;
        justify-content: center;
    }
}

body.home.lcc-home-stack .et_pb_fullwidth_slider,
body.home.lcc-home-stack .et_pb_slider,
body.home.lcc-home-stack .et_pb_fullwidth_header {
    display: none !important;
}
.lcc-storefront-home {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1120px;
    margin: 0 auto;
}
.lcc-home-dept {
    margin: 0 0 2.5rem;
}
.lcc-home-dept:last-child {
    margin-bottom: 1.5rem;
}
.lcc-contact-desk {
    max-width: 42rem;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}
.lcc-contact-desk p {
    margin: 0 0 0.5rem;
    color: var(--lcc-muted, #4b4b4b);
    font-size: 1rem;
    line-height: 1.5;
}
.lcc-contact-desk a {
    color: inherit;
}
.lcc-help-open-assistant {
    display: inline-flex;
    align-items: center;
    margin: 0.75rem 0 0;
    padding: 0.55rem 1rem;
    border: 1px solid var(--lcc-border, #d9d3c6);
    background: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
}

body.lcc-furniture-shop #main-footer,
body.lcc-bhd #main-footer {
    display: none !important;
}
.lcc-site-footer button,
.lcc-site-footer input,
.lcc-site-footer select,
.lcc-site-footer textarea {
    font-family: inherit;
}
.lcc-site-footer input::placeholder,
.lcc-site-footer textarea::placeholder {
    font-family: inherit;
}
.gh-room-rail {
    background: #faf6f1;
    border-bottom: 1px solid #e8dfd3;
}
.gh-room-rail-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 1.15rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.82rem;
}
.gh-room-rail-label {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b45309;
    font-size: 0.68rem;
}
.gh-room-rail a {
    color: #1c1917;
    text-decoration: none;
    font-weight: 500;
}
.gh-room-rail a:hover { color: #b45309; }
.gh-room-rail-all { margin-left: auto; font-weight: 650 !important; }
.lcc-site-footer {
    background: #1c1917;
    color: #e7e5e4;
    margin-top: 3rem;
    font-family: inherit;
}
.lcc-site-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.85fr)) minmax(220px, 1fr);
    gap: 2rem 1.5rem;
    padding: 2.75rem 1.25rem 1.75rem;
}
.lcc-footer-logo {
    font-family: Georgia, 'Playfair Display', serif;
    font-size: 1.55rem;
    margin: 0 0 0.15rem;
    color: #faf6f1;
}
.lcc-footer-tag {
    margin: 0 0 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.68rem;
    color: #d97706;
    font-weight: 650;
}
.lcc-site-footer .lcc-footer-blurb {
    color: #a8a29e;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 0 1rem;
    max-width: 22rem;
}
.lcc-footer-cta {
    display: inline-block;
    background: #b45309;
    color: #fff !important;
    text-decoration: none !important;
    padding: 0.7rem 1.1rem;
    font-weight: 650;
    font-size: 0.85rem;
}
.lcc-site-footer h2 {
    font-size: 0.72rem !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #faf6f1 !important;
    margin: 0 0 0.85rem !important;
}
.lcc-site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.lcc-site-footer li { margin: 0 0 0.45rem; }
.lcc-site-footer a {
    color: #d6d3d1;
    text-decoration: none;
    font-size: 0.9rem;
}
.lcc-site-footer a:hover { color: #fff; }
.lcc-footer-signup p {
    color: #a8a29e;
    font-size: 0.88rem;
    margin: 0 0 0.75rem;
    line-height: 1.45;
}
.lcc-site-footer-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.25rem 1.35rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.lcc-site-footer .lcc-footer-legal a { color: #a8a29e; margin-right: 0.85rem; font-size: 0.78rem; }
@media (max-width: 900px) {
    .lcc-site-footer-inner { grid-template-columns: 1fr 1fr; }
    .lcc-footer-brand, .lcc-footer-signup { grid-column: 1 / -1; }
    .gh-room-rail-all { margin-left: 0; }
}






