:root {
    --lz-bg: #fff8fc;
    --lz-surface: #ffffff;
    --lz-surface-soft: #f5fbff;
    --lz-text: #17325b;
    --lz-muted: #6e7b95;
    --lz-border: #d9e7f3;
    --lz-primary: #1c8fd2;
    --lz-primary-2: #ff4f87;
    --lz-accent: #53c95f;
    --lz-accent-soft: #fff1f7;
    --lz-shadow: 0 14px 34px rgba(28, 143, 210, 0.10), 0 4px 10px rgba(255, 79, 135, 0.06);
    --lz-radius: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.lz-app-body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--lz-bg);
    color: var(--lz-text);
}

a { color: inherit; }

.lz-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    gap: 18px;
    padding: 18px;
}

.lz-sidebar {
    background: var(--lz-surface);
    border: 1px solid var(--lz-border);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--lz-shadow);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: fit-content;
    position: sticky;
    top: 50px;
}

.lz-brand { display: flex; gap: 12px; align-items: center; }
.lz-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lz-primary);
    color: #fff;
    font-size: 15px;
}
.lz-brand-name { font-weight: 800; font-size: 22px; }
.lz-brand-sub { color: var(--lz-muted); font-size: 13px; }

.lz-nav { display: grid; gap: 8px; }
.lz-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 16px;
    color: #334155;
    font-weight: 700;
}
.lz-nav-item:hover { background: #f2fbff; color: var(--lz-primary); }
.lz-nav-item.is-active { background: var(--lz-primary); color: #fff; }
.lz-nav-dot { opacity: .85; }

.lz-logout { text-decoration: none; color: var(--lz-muted); font-weight: 700; margin-top: auto; }

.lz-nav-count {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    background: #edf8ff;
    color: var(--lz-primary);
}
.lz-nav-item.is-active .lz-nav-count {
    background: rgba(255,255,255,.18);
    color: #fff;
}

.lz-badge-success { background: #ecfff0; color: #1d8c3c; }
.lz-badge-danger { background: #fff1f4; color: #d33871; }

.lz-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.lz-product-card {
    background: #fff;
    border: 1px solid var(--lz-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--lz-shadow);
    display: flex;
    flex-direction: column;
}

.lz-product-media {
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--lz-surface-soft);
    overflow: hidden;
}
.lz-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lz-product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--lz-muted);
    font-weight: 700;
}
.lz-product-thumb {
    display: block;
    background: var(--lz-surface-soft);
    aspect-ratio: 1.25 / 1;
}
.lz-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lz-product-body {
    padding: 14px;
    display: grid;
    gap: 10px;
}
.lz-product-top {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
}
.lz-product-top h3 { margin: 0; font-size: 18px; line-height: 1.3; }
.lz-product-top h3 a { text-decoration: none; }
.lz-product-price { font-weight: 900; font-size: 18px; }
.lz-product-desc { color: var(--lz-muted); line-height: 1.6; font-size: 14px; }

.lz-wc-wrap {
    background: var(--lz-surface);
    border: 1px solid var(--lz-border);
    border-radius: 26px;
    padding: 24px;
    box-shadow: var(--lz-shadow);
}
.lz-wc-wrap .woocommerce { margin: 0; }
.lz-wc-wrap .woocommerce-cart-form,
.lz-wc-wrap .cart-collaterals,
.lz-wc-wrap form.checkout { margin-top: 12px; }
.lz-wc-wrap table.shop_table {
    border-radius: 18px;
    overflow: hidden;
    border-color: var(--lz-border);
}
.lz-wc-wrap .shop_table th,
.lz-wc-wrap .shop_table td { padding: 14px 12px; }
.lz-wc-wrap input.input-text,
.lz-wc-wrap textarea,
.lz-wc-wrap select {
    border-radius: 14px;
    border: 1px solid #cfd8e6;
    padding: 12px 14px;
}
.lz-wc-wrap .button,
.lz-wc-wrap button.button,
.lz-wc-wrap input.button,
.lz-wc-wrap a.button {
    border-radius: 16px !important;
    background: var(--lz-primary) !important;
    color: #fff !important;
    padding: 12px 18px !important;
    font-weight: 800 !important;
}
.lz-wc-wrap .button.alt { background: var(--lz-primary) !important; }


.lz-main {
    min-width: 0;
    padding-right: 10px;
    padding-bottom: 180px;
}

.lz-shell,
.lz-dashboard-grid,
.lz-stats-grid,
.lz-section,
.lz-product-grid,
.lz-product-grid-4,
.lz-products-grid { min-width: 0; }
.lz-topbar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.lz-kicker, .lz-hero-kicker {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
    opacity: .92;
}
.lz-page-title { margin: 4px 0 8px; font-size: 54px; line-height: 1; }
.lz-page-desc { margin: 0; color: var(--lz-muted); max-width: 760px; line-height: 1.65; font-size: 16px; }

.lz-account-pill {
    background: var(--lz-surface);
    border: 1px solid var(--lz-border);
    border-radius: 16px;
    padding: 12px 14px;
    min-width: 180px;
    box-shadow: var(--lz-shadow);
}
.lz-account-name { display: block; font-weight: 800; }
.lz-account-role { display: block; color: var(--lz-muted); font-size: 13px; margin-top: 3px; }

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-radius: 18px;
    box-shadow: var(--lz-shadow);
    margin-bottom: 18px;
}

.lz-hero {
    background: #1a93d6;
    color: #fff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--lz-shadow);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
    margin-bottom: 18px;
}
.lz-hero h2 { font-size: 32px; line-height: 1.05; margin: 6px 0 8px; }
.lz-hero p { max-width: 760px; color: rgba(255,255,255,.92); margin: 0; line-height: 1.6; }

.lz-stats-grid { display: grid; gap: 16px; margin-bottom: 18px; }
.lz-stats-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lz-stats-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lz-stats-grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.lz-stat-card {
    background: var(--lz-surface);
    border: 1px solid var(--lz-border);
    border-radius: var(--lz-radius);
    padding: 18px;
    box-shadow: var(--lz-shadow);
}
.lz-stat-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.lz-stat-label { color: var(--lz-muted); font-size: 13px; font-weight: 700; }
.lz-stat-value { font-size: 22px; font-weight: 900; margin-top: 10px; line-height: 1.15; }
.lz-stat-sub { color: var(--lz-muted); font-size: 14px; margin-top: 8px; line-height: 1.5; }
.lz-stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lz-border);
    background: var(--lz-surface-soft);
}

.lz-content-grid { display: grid; gap: 18px; }
.lz-dashboard-grid { grid-template-columns: 1.65fr .95fr; align-items: start; }
.lz-stack { display: grid; gap: 18px; }

.lz-card {
    background: var(--lz-surface);
    border: 1px solid var(--lz-border);
    border-radius: 26px;
    padding: 20px;
    box-shadow: var(--lz-shadow);
}
.lz-card-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.lz-card-head h2 { margin: 0; font-size: 22px; }
.lz-card-head p { margin: 6px 0 0; color: var(--lz-muted); line-height: 1.55; }

.lz-list { display: grid; gap: 12px; }
.lz-list-item {
    border: 1px solid var(--lz-border);
    border-radius: 18px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}
.lz-list-item-main { display: flex; align-items: center; gap: 12px; min-width: 0; }
.lz-list-item-side { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.lz-list-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--lz-surface-soft);
    border: 1px solid var(--lz-border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lz-list-title { font-weight: 800; }
.lz-list-sub { color: var(--lz-muted); font-size: 14px; margin-top: 4px; }

.lz-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}
.lz-badge-warn { background: #fff3d8; color: #ba7a00; }
.lz-badge-soft { background: #eef8ff; color: #547091; }

.lz-muted-box,
.lz-info-box {
    background: var(--lz-surface-soft);
    border: 1px solid var(--lz-border);
    border-radius: 18px;
    padding: 16px;
}
.lz-meta-label { color: var(--lz-muted); font-size: 13px; }
.lz-meta-value { font-weight: 900; font-size: 18px; margin-top: 6px; }
.lz-meta-help { color: var(--lz-muted); margin-top: 8px; line-height: 1.5; font-size: 14px; }

.lz-inline-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.lz-reminder-form {
    display: grid;
    gap: 16px;
}

.lz-inline-field-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.lz-reminder-note {
    color: var(--lz-muted);
    font-size: 14px;
    line-height: 1.55;
}
.lz-reminder-summary {
    color: var(--lz-muted);
    font-size: 14px;
    line-height: 1.55;
    margin-top: 8px;
}

.lz-inline-section-head code,
.lz-csv-instructions code {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 8px;
    background: #eef2f7;
    border: 1px solid var(--lz-border);
    color: #0f172a;
    font-weight: 800;
    font-size: 13px;
}

.lz-inline-section-head strong code,
.lz-csv-instructions strong code {
    font-weight: 900;
}

.lz-chip-row,
.lz-reminder-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.lz-chip,
.lz-chip-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--lz-border);
    background: var(--lz-surface-soft);
    color: #475569;
    font-weight: 800;
    font-size: 13px;
}
.lz-chip.is-active,
.lz-chip-toggle.is-active {
    background: var(--lz-primary);
    color: #fff;
    border-color: var(--lz-primary);
}
.lz-chip-toggle input { display: none; }

.lz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 11px 16px;
    border-radius: 16px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .18s ease;
}
.lz-btn-primary { background: var(--lz-primary); color: #fff; }
.lz-btn-secondary { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); }
.lz-btn-light { background: #fff; color: var(--lz-primary); box-shadow: 0 10px 24px rgba(28,143,210,.14); }
.lz-btn-ghost { background: var(--lz-surface-soft); color: var(--lz-text); border-color: var(--lz-border); }
.lz-btn:hover { transform: translateY(-1px); }

.lz-top-gap { margin-top: 14px; }

.lz-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.lz-field-full { grid-column: 1 / -1; }
.lz-field label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 7px;
    color: #334155;
}
.lz-field input,
.lz-field textarea {
    width: 100%;
    border: 1px solid #cfd8e6;
    border-radius: 16px;
    padding: 13px 14px;
    background: #fff;
    color: var(--lz-text);
}
.lz-field input[readonly] {
    background: #f8fafc;
    color: #475569;
}
.lz-field textarea { min-height: 110px; resize: vertical; }
input.is-disabled, textarea.is-disabled { background: #f8fafc; }

.lz-two-col { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; }
.lz-form-divider { height: 1px; background: var(--lz-border); margin: 22px 0; }
.lz-inline-section-head h3 { margin: 0; font-size: 20px; }
.lz-inline-section-head p { margin: 8px 0 0; color: var(--lz-muted); line-height: 1.65; }
.lz-upload-box {
    border: 2px dashed #d5deea;
    border-radius: 20px;
    background: #fafcff;
    padding: 24px;
}
.lz-upload-box-compact { padding: 20px; }
.lz-upload-box.is-dragover { border-color: var(--lz-primary); background: #eef4ff; }
.lz-upload-box h3 { margin: 0 0 8px; text-align: center; }
.lz-upload-box p { margin: 0; color: var(--lz-muted); text-align: center; }
.lz-upload-box input[type="file"] { margin-top: 16px; width: 100%; }
.lz-info-box { display: grid; gap: 6px; }
.lz-info-box span { color: var(--lz-muted); line-height: 1.5; }
.lz-csv-instructions {
    color: var(--lz-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}
.lz-csv-instructions code {
    background: #eef3fb;
    padding: 2px 6px;
    border-radius: 8px;
}

.lz-table-wrap { overflow: auto; border: 1px solid var(--lz-border); border-radius: 18px; }
.lz-table { width: 100%; border-collapse: collapse; }
.lz-table thead { background: var(--lz-surface-soft); }
.lz-table th,
.lz-table td { padding: 14px 16px; border-bottom: 1px solid var(--lz-border); text-align: left; vertical-align: top; }
.lz-table th { font-size: 13px; color: var(--lz-muted); }
.lz-empty {
    padding: 24px;
    border: 1px dashed var(--lz-border);
    border-radius: 18px;
    background: #fafcff;
    color: var(--lz-muted);
}

.lz-generic-wrap,
.lz-landing-wrap { max-width: 980px; margin: 40px auto; padding: 0 20px; }
.lz-generic-card,
.lz-landing-card {
    background: var(--lz-surface);
    border: 1px solid var(--lz-border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--lz-shadow);
}
.lz-landing-card h1 { margin: 8px 0 12px; font-size: 42px; }
.lz-landing-card p { color: var(--lz-muted); max-width: 680px; }

@media (max-width: 1200px) {
    .lz-dashboard-grid,
    .lz-two-col { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
    .lz-shell { grid-template-columns: 1fr; }
    .lz-sidebar { position: static; }
    .lz-stats-grid-3,
    .lz-stats-grid-4,
    .lz-stats-grid-5,
    .lz-form-grid,
    .lz-product-grid { grid-template-columns: 1fr; }
    .lz-page-title { font-size: 40px; }
    .lz-hero { flex-direction: column; align-items: flex-start; }
    .lz-inline-field-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .lz-topbar { flex-direction: column; }
    .lz-list-item { flex-direction: column; align-items: flex-start; }
    .lz-list-item-side { justify-content: flex-start; }
}


.lz-product-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lz-product-card-compact .lz-product-body { padding: 14px; }
.lz-product-thumb-square { aspect-ratio: 1 / 1; }
.lz-context-box, .lz-context-card {
    background: var(--lz-surface);
    border: 1px solid var(--lz-border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--lz-shadow);
}
.lz-context-box { display:flex; justify-content:space-between; gap:16px; align-items:center; margin-bottom:16px; }
.lz-context-success { background:#f1fff3; }
.lz-context-sub { color: var(--lz-muted); margin-top:6px; font-size:14px; }
.lz-context-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.lz-wrap-form { flex-wrap:wrap; }
.lz-wrap-form select { min-width:260px; border-radius:14px; border:1px solid #cfd8e6; padding:12px 14px; }
.lz-wc-rich-wrap .woocommerce-MyAccount-navigation { display:none; }
.lz-wc-rich-wrap .woocommerce-MyAccount-content { width:100% !important; float:none !important; }
.lz-wc-rich-wrap .woocommerce-order-overview, .lz-wc-rich-wrap .woocommerce-order-details, .lz-wc-rich-wrap .woocommerce-customer-details { margin-top:18px; }
.lz-wc-rich-wrap .product, .lz-wc-rich-wrap .products { margin-top:0; }
.lz-wc-rich-wrap .woocommerce-breadcrumb { margin-bottom:14px; color:var(--lz-muted); }

.lz-wc-wrap ul.products li.product img,
.lz-wc-wrap .wc-block-grid__product-image img,
.lz-wc-wrap .product_list_widget img {
    width: 100% !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}
.lz-wc-wrap ul.products li.product .woocommerce-loop-product__link {
    display: block;
}
.lz-wc-wrap ul.products li.product {
    display: flex;
    flex-direction: column;
}
.lz-wc-wrap ul.products li.product .button {
    align-self: center;
}


/* WooCommerce product grids (empty cart / suggestions / related) */
.lz-wc-wrap ul.products,
.lz-wc-wrap .related.products ul.products,
.lz-wc-wrap .up-sells ul.products,
.lz-wc-wrap .cross-sells ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: 18px 0 0 !important;
}
.lz-wc-wrap ul.products::before,
.lz-wc-wrap ul.products::after {
    display: none !important;
    content: none !important;
}
.lz-wc-wrap ul.products li.product,
.lz-wc-wrap .related.products ul.products li.product,
.lz-wc-wrap .up-sells ul.products li.product,
.lz-wc-wrap .cross-sells ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
}
.lz-wc-wrap ul.products li.product .woocommerce-loop-product__link {
    display: grid !important;
    grid-template-rows: auto auto;
    gap: 10px;
}
.lz-wc-wrap ul.products li.product img,
.lz-wc-wrap .wc-block-grid__product-image img,
.lz-wc-wrap .product_list_widget img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    display: block;
    border-radius: 18px;
}
@media (max-width: 1200px){
  .lz-wc-wrap ul.products,
  .lz-wc-wrap .related.products ul.products,
  .lz-wc-wrap .up-sells ul.products,
  .lz-wc-wrap .cross-sells ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px){
  .lz-wc-wrap ul.products,
  .lz-wc-wrap .related.products ul.products,
  .lz-wc-wrap .up-sells ul.products,
  .lz-wc-wrap .cross-sells ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .lz-wc-wrap ul.products,
  .lz-wc-wrap .related.products ul.products,
  .lz-wc-wrap .up-sells ul.products,
  .lz-wc-wrap .cross-sells ul.products { grid-template-columns: 1fr; }
}

.lz-checkout-extra { margin:20px 0; padding:18px; border:1px solid var(--lz-border); border-radius:18px; background:var(--lz-surface-soft); }
.lz-checkout-extra h3 { margin-top:0; }
@media (max-width: 1200px){ .lz-product-grid-4,.lz-product-grid{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width: 980px){ .lz-context-grid{grid-template-columns:1fr;} .lz-product-grid-4,.lz-product-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 640px){ .lz-product-grid-4,.lz-product-grid{grid-template-columns:1fr;} .lz-context-box{flex-direction:column;align-items:flex-start;} }


.lz-product-order-context { margin: 16px 0 10px; padding: 14px; border:1px solid var(--lz-border); border-radius: 18px; background:#fff; }
.lz-product-order-context h3 { margin:0 0 12px; font-size:20px; }
.lz-product-order-context .form-row { margin-bottom: 12px; }
.lz-product-order-context small { color: var(--lz-muted); }
.lz-order-context-box { margin-top: 22px; }


.lz-products-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
@media (max-width: 1200px){ .lz-products-grid{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width: 980px){ .lz-products-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 640px){ .lz-products-grid{grid-template-columns:1fr;}}


.lz-badge-info { background: #eef8ff; color: #1c8fd2; }
.lz-badge-link { text-decoration: none; }
.lz-badge-link:hover { opacity: .9; }
.lz-cart-item-edit { display: inline-block; margin-top: 6px; font-size: 13px; font-weight: 700; color: var(--lz-primary); text-decoration: none; }
.lz-cart-item-edit:hover { text-decoration: underline; }
.lz-wc-wrap .quantity .qty,
.woocommerce .quantity .qty {
    min-width: 72px !important;
    width: 72px !important;
    padding: 10px 8px !important;
    text-align: center !important;
    color: var(--lz-text) !important;
    background: #fff !important;
    line-height: 1.2 !important;
    height: 48px !important;
    border: 1px solid #cfd8e6 !important;
    border-radius: 14px !important;
}


.lz-product-grid-4 { gap: 14px; }
.lz-product-grid-4 .lz-product-body { padding: 12px; gap: 8px; }
.lz-product-grid-4 h3 { margin: 0; font-size: 16px; line-height: 1.35; }
.lz-product-grid-4 .lz-product-price { font-size: 16px; }
.lz-product-grid-4 p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--lz-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lz-product-grid-4 .lz-inline-actions { margin-top: 2px; }
.lz-cart-edit-link { display:inline-block; margin-top: 6px; color: var(--lz-primary); font-weight: 700; text-decoration: underline; }


.lz-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.lz-brand-logo .custom-logo-link,
.lz-brand-logo img {
    display: block;
    max-width: 180px;
    width: auto;
    height: auto;
}
.lz-brand-name { font-weight: 800; font-size: 22px; }
.lz-brand-sub {
    color: var(--lz-muted);
    font-size: 13px;
    line-height: 1.45;
    max-width: 180px;
}

.lz-marketing-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px 80px;
}
.lz-landing-hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
    padding: 40px 0 56px;
}
.lz-landing-copy h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    margin: 8px 0 20px;
    letter-spacing: -0.03em;
}
.lz-landing-copy p {
    font-size: 24px;
    line-height: 1.55;
    color: var(--lz-muted);
    max-width: 640px;
    margin: 0 0 28px;
}
.lz-landing-shot-card {
    background: var(--lz-surface);
    border: 1px solid var(--lz-border);
    border-radius: 24px;
    padding: 16px;
    box-shadow: var(--lz-shadow);
}
.lz-landing-shot {
    display: block;
    width: 100%;
    border-radius: 18px;
}
.lz-landing-shot-placeholder {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--lz-muted);
    background: var(--lz-surface-soft);
    border-radius: 18px;
    padding: 24px;
}
.lz-landing-band {
    background: #f8fafc;
    margin: 0 -20px;
    padding: 72px 20px;
}
.lz-landing-section {
    padding: 72px 0;
}
.lz-section-intro h2,
.lz-landing-cta h2,
.lz-landing-checklist h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    margin: 0 0 14px;
}
.lz-center { text-align: center; margin-bottom: 28px; }
.lz-feature-grid {
    display: grid;
    gap: 24px;
}
.lz-feature-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lz-feature-card {
    background: var(--lz-surface);
    border: 1px solid var(--lz-border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--lz-shadow);
    text-align: center;
}
.lz-feature-card h3 { margin: 0 0 10px; font-size: 22px; }
.lz-feature-card p { margin: 0; color: var(--lz-muted); line-height: 1.6; font-size: 18px; }
.lz-feature-icon,
.lz-feature-step {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--lz-surface-soft);
    border: 1px solid var(--lz-border);
    font-size: 26px;
    font-weight: 800;
}
.lz-landing-split {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.lz-landing-checklist ul {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.lz-landing-checklist li {
    position: relative;
    padding-left: 28px;
    font-size: 20px;
    line-height: 1.55;
    color: var(--lz-text);
}
.lz-landing-checklist li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #047857;
    font-weight: 900;
}
.lz-landing-cta {
    padding: 80px 0 40px;
    text-align: center;
}
.lz-landing-cta p {
    color: var(--lz-muted);
    font-size: 22px;
    line-height: 1.5;
    margin: 0 0 28px;
}
.lz-center-actions { justify-content: center; }
@media (max-width: 1100px) {
    .lz-landing-hero,
    .lz-landing-split,
    .lz-feature-grid-3 {
        grid-template-columns: 1fr;
    }
    .lz-landing-copy h1 { max-width: 10ch; }
}
@media (max-width: 720px) {
    .lz-marketing-page { padding-top: 18px; }
    .lz-landing-copy p,
    .lz-feature-card p,
    .lz-landing-cta p,
    .lz-landing-checklist li {
        font-size: 18px;
    }
}


.lz-landing-header { padding: 24px 0 4px; }
.lz-landing-header-inner { max-width: 1180px; margin: 0 auto; padding: 0 28px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.lz-landing-logo-text { font-size: 24px; font-weight: 800; color:var(--lz-primary); }
.lz-landing-header-actions { flex-wrap: nowrap; }
.lz-marketing-page .custom-logo-link img { max-height: 48px; width: auto; }
@media (max-width: 768px) { .lz-landing-header-inner { flex-direction: column; align-items: flex-start; } .lz-landing-header-actions { width: 100%; flex-wrap: wrap; } }


.lz-steps-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.lz-guide-step{background:#fff;border:1px solid var(--lz-border);border-radius:20px;padding:22px;box-shadow:0 6px 20px rgba(15,23,42,.05);}
.lz-guide-number{width:42px;height:42px;border-radius:14px;display:inline-flex;align-items:center;justify-content:center;background:var(--lz-primary);color:#fff;font-weight:800;margin-bottom:12px;}
.lz-guide-step h3{margin:0 0 8px;}
.lz-guide-step p{margin:0;color:var(--lz-muted);line-height:1.6;}
@media (max-width: 900px){.lz-steps-grid{grid-template-columns:1fr;}}


.lz-guide-hero-card{background:linear-gradient(180deg,#fff 0%,#fbfcfe 100%);} 
.lz-guide-intro-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:8px;}
.lz-guide-intro-box{background:#f6fcff;border:1px solid var(--lz-border);border-radius:18px;padding:18px;display:flex;flex-direction:column;gap:6px;box-shadow:0 6px 20px rgba(15,23,42,.04);} 
.lz-guide-intro-box strong{font-size:13px;letter-spacing:.04em;text-transform:uppercase;color:var(--lz-primary);} 
.lz-guide-flow{display:grid;gap:18px;} 
.lz-guide-step-card{display:grid;grid-template-columns:minmax(260px,360px) minmax(0,1fr);gap:22px;align-items:stretch;padding:22px;border:1px solid var(--lz-border);border-radius:22px;background:#fff;box-shadow:0 8px 24px rgba(15,23,42,.04);} 
.lz-guide-step-copy{display:flex;flex-direction:column;justify-content:center;} 
.lz-guide-step-number{width:42px;height:42px;border-radius:14px;display:inline-flex;align-items:center;justify-content:center;background:var(--lz-primary);color:#fff;font-weight:800;margin-bottom:12px;} 
.lz-guide-step-copy h3{margin:0 0 10px;font-size:28px;} 
.lz-guide-step-copy p{margin:0;color:var(--lz-muted);line-height:1.7;font-size:15px;} 
.lz-guide-step-media{border:1px solid var(--lz-border);border-radius:20px;background:#f6fcff;min-height:260px;display:flex;align-items:center;justify-content:center;overflow:hidden;} 
.lz-guide-step-media img{display:block;width:100%;height:100%;object-fit:cover;} 
.lz-guide-step-media.is-empty{padding:22px;} 
.lz-guide-step-placeholder{color:var(--lz-muted);font-size:14px;line-height:1.6;text-align:center;} 
@media (max-width: 1100px){.lz-guide-step-card{grid-template-columns:1fr;}.lz-guide-step-media{min-height:220px;}.lz-guide-intro-grid{grid-template-columns:1fr;}}


.lz-account-pill {
    background: linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
}
.lz-stat-card,
.lz-card,
.lz-context-box,
.lz-context-card,
.lz-generic-card,
.lz-landing-card,
.lz-product-card,
.lz-feature-card,
.lz-guide-step,
.lz-guide-intro-box,
.lz-guide-step-card,
.lz-wc-wrap,
.lz-sidebar {
    box-shadow: var(--lz-shadow);
}
.lz-stat-icon,
.lz-list-icon,
.lz-feature-icon,
.lz-feature-step,
.lz-guide-number,
.lz-guide-step-number {
    background: linear-gradient(180deg, #f4fbff 0%, #fff3f8 100%);
    border-color: #d8e8f5;
    color: var(--lz-primary);
}
.lz-wc-wrap .button,
.lz-wc-wrap button.button,
.lz-wc-wrap input.button,
.lz-wc-wrap a.button,
.lz-btn-primary {
    box-shadow: 0 12px 24px rgba(28,143,210,.18);
}
.lz-btn-primary:hover,
.lz-wc-wrap .button:hover,
.lz-wc-wrap button.button:hover,
.lz-wc-wrap input.button:hover,
.lz-wc-wrap a.button:hover {
    filter: brightness(1.03);
}
.lz-upload-box {
    background: linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
}
.lz-checkout-extra,
.lz-muted-box,
.lz-info-box {
    background: linear-gradient(180deg, #fbfeff 0%, #fff8fc 100%);
}
.lz-table thead {
    background: linear-gradient(180deg, #f5fbff 0%, #fff4f9 100%);
}
.lz-nav-count {
    background: #eaf9ec;
    color: #2a9951;
}
.lz-list-item:hover,
.lz-product-card:hover,
.lz-cake-card:hover,
.lz-feature-card:hover,
.lz-guide-step-card:hover {
    border-color: #c7dff1;
}


/* V40 premium polish */
.lz27-hero-shell{background:#1e9ee8 !important;}
.lz27-kicker{color:#dbeafe;}
.lz27-hero-copy p{color:#4f6487;}
.lz27-problem-card p,.lz27-card p,.lz27-checklist li,.lz27-contact-card p,.lz27-section-sub{color:#5e6f8f;}
.lz27-cta p{color:#6a7b98;}
.lz-page-subtitle,.lz-list-sub,.lz-stat-sub,.lz-muted{color:#6d7e99;}
.lz-wc-wrap .woocommerce ul.products, .lz-wc-wrap ul.products{display:grid !important;grid-template-columns:repeat(4,minmax(0,1fr));gap:28px;align-items:start;}
.lz-wc-wrap .woocommerce ul.products::before, .lz-wc-wrap .woocommerce ul.products::after, .lz-wc-wrap ul.products::before, .lz-wc-wrap ul.products::after{display:none !important;}
.lz-wc-wrap .woocommerce ul.products li.product, .lz-wc-wrap ul.products li.product{float:none !important;width:auto !important;margin:0 !important;display:flex;flex-direction:column;align-items:stretch;}
.lz-wc-wrap .woocommerce ul.products li.product a img, .lz-wc-wrap ul.products li.product a img{width:100% !important;max-width:100% !important;aspect-ratio:1/1;height:auto !important;object-fit:cover;border-radius:18px;background:#fff;}
.lz-wc-wrap .woocommerce ul.products li.product .woocommerce-loop-product__link, .lz-wc-wrap ul.products li.product .woocommerce-loop-product__link{display:flex;flex-direction:column;gap:10px;height:100%;}
.lz-wc-wrap .woocommerce ul.products li.product .button, .lz-wc-wrap ul.products li.product .button{align-self:center;margin-top:auto;}
@media (max-width:1200px){.lz-wc-wrap .woocommerce ul.products,.lz-wc-wrap ul.products{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width:900px){.lz-wc-wrap .woocommerce ul.products,.lz-wc-wrap ul.products{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:640px){.lz-wc-wrap .woocommerce ul.products,.lz-wc-wrap ul.products{grid-template-columns:1fr;}}


.lz-check-row{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  color:var(--lz-text, #0f172a);
}
.lz-check-row input[type="checkbox"]{
  width:18px;
  height:18px;
  margin:0;
}
.lz-field small{
  display:block;
  margin-top:6px;
  color:#64748b;
  line-height:1.5;
}

.lz-shell-guest {
    grid-template-columns: 1fr;
    max-width: 1280px;
    margin: 0 auto;
}
.lz-shell-guest .lz-main {
    padding-right: 0;
}
.lz-topbar-guest {
    margin-bottom: 24px;
}
.lz-csv-instructions code {
    display: inline-block;
    background: #eef2f7;
    border: 1px solid #d5deea;
    border-radius: 8px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
}


/* Guest auth pages should never show app navigation or account pill */
body:not(.logged-in) .woocommerce-account .lz-sidebar,
body:not(.logged-in) .woocommerce-account .lz-topbar-right,
body:not(.logged-in).woocommerce-account .lz-sidebar,
body:not(.logged-in).woocommerce-account .lz-topbar-right,
body.lz-user-logged-out .woocommerce-account .lz-sidebar,
body.lz-user-logged-out .woocommerce-account .lz-topbar-right {
    display: none !important;
}
body:not(.logged-in) .woocommerce-account .lz-shell,
body:not(.logged-in).woocommerce-account .lz-shell {
    grid-template-columns: 1fr !important;
    max-width: 1280px;
    margin: 0 auto;
}
body:not(.logged-in) .woocommerce-account .lz-main,
body:not(.logged-in).woocommerce-account .lz-main {
    padding-right: 0 !important;
}


.lz-card-soft{background:var(--lz-surface-soft);}
.lz-check{display:flex;align-items:flex-start;gap:10px;font-weight:700;color:var(--lz-text);}
.lz-check input{margin-top:3px;}
.lz-help{margin-top:8px;color:var(--lz-muted);font-size:14px;line-height:1.55;}
.lz-field select{width:100%;border:1px solid #cfd8e6;border-radius:16px;padding:13px 14px;background:#fff;color:var(--lz-text);}

.lz-cart-delivery-editor{margin-top:10px;padding:12px 14px;border:1px solid #dbe4f0;border-radius:14px;background:#f9fbff;display:flex;gap:10px;align-items:end;flex-wrap:wrap}
.lz-cart-delivery-editor__title{width:100%;font-weight:700;color:var(--lz-text);margin-bottom:2px}
.lz-cart-delivery-editor label{display:flex;flex-direction:column;gap:6px;font-size:13px;color:var(--lz-muted)}
.lz-cart-delivery-editor input,.lz-cart-delivery-editor select{min-width:160px;border:1px solid #cfd8e6;border-radius:12px;padding:10px 12px;background:#fff;color:var(--lz-text)}
.lz-cart-delivery-editor .button{border-radius:999px;padding:10px 14px}
