/* Custom Styles */
[class*="col-"] {
   
    float: none;
}
body{
    background: white;
}
/* Banner Hero Background - Blue */
.banner {
    background-image: url('/images/banner.jpg');
    background-size: cover;
    background-position: center;
}
.bg-blue {
    background-color: #0031AF !important;
}

/* --- WhatsApp Support Section --- */
.whatsapp-card {
   
    padding: 40px;
}
.whatsapp-icon-wrap {
    width: 64px;
    height: 64px;
    background: #e6f7ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.whatsapp-icon {
    width: 32px;
    height: 32px;
    color: #25D366;
}
.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    border-radius: 40px;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn-whatsapp:hover {
    background-color: #20BD5A;
    transform: scale(1.03);
}

/* --- Product Card Footer --- */
.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eeeeee;
}

.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-cart-icon {
    background-color: #0031AF;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-cart-icon:hover {
    background-color: #002280;
    transform: scale(1.08);
}

.btn-cart-icon svg {
    stroke: #ffffff;
}

/* --- Section Headers --- */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 32px;
    }
}

.section-header > div {
    padding-left: 18px;
    border-left: 4px solid #0031AF;
}

.section-header h2 {
    font-size: 26px !important;
    font-weight: 800;
    color: #0031af;
    margin: 0 0 6px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 14px;
    color: #6b7280 !important;
    margin: 0;
    line-height: 1.5;
}

.section-header > a {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: transparent !important;
    color: #0031AF !important;
    border: 1.5px solid #0031AF !important;
    border-radius: 4px;
    padding: 9px 20px !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
    margin: 0 !important;
}

.section-header > a::after {
    content: '→';
    font-size: 14px;
    line-height: 1;
    margin-left: 2px;
}

.section-header > a:hover {
    background: #0031AF !important;
    color: #ffffff !important;
}

.product-card {

    border-bottom: 4px solid lightgray;
    text-align: left;
}

/* === Category Cards === */
.lz-cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .lz-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lz-cat-card {
    background: #0031AF;
    border-radius: 6px;
    padding: 36px 32px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    transition: background 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.lz-cat-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.lz-cat-card:hover {
    background: #0028a0;
    transform: translateY(-3px);
}

.lz-cat-card:hover::before {
    transform: scale(1.3);
}

.lz-cat-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.lz-cat-icon svg {
    width: 26px;
    height: 26px;
    stroke: rgba(255,255,255,0.9);
}

.lz-cat-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.lz-cat-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.62);
    margin: 0 0 24px;
    line-height: 1.6;
    flex: 1;
}

.lz-cat-arrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.lz-cat-card:hover .lz-cat-arrow {
    color: #ffffff;
    letter-spacing: 0.08em;
}

/* === Shop Bar === */
.lz-shop-bar {
    background: #0031AF;
    padding: 36px 0 32px;
    border-bottom: 3px solid rgba(255,255,255,0.15);
}

.lz-shop-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
}

.lz-shop-breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.18s;
}

.lz-shop-breadcrumb a:hover {
    color: #ffffff;
}

.lz-bc-sep {
    color: rgba(255,255,255,0.3);
}

.lz-shop-breadcrumb span:last-child {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.lz-shop-bar-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px;
    line-height: 1.2;
}

.lz-shop-bar-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin: 0;
    max-width: 600px;
    line-height: 1.6;
}

/* === Shop Layout Columns === */
@media (min-width: 768px) {
    .lz-sidebar-col { width: 20%; }
    .lz-main-col    { width: 80%; }
}

/* === Shop Toolbar === */
.lz-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border: 2px solid #e3e3e3;
    border-radius: 6px;
    margin-bottom: 24px;
    /* box-shadow: 0 1px 4px rgba(0,49,175,0.06); */
}

.lz-shop-count {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lz-shop-count strong {
    font-size: 15px;
    font-weight: 700;
    color: #0031AF;
}

.lz-shop-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lz-shop-sort label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    white-space: nowrap;
}

.lz-sort-select {
    appearance: none;
    -webkit-appearance: none;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    border: 1.5px solid #e5e9f2;
    border-radius: 6px;
    padding: 8px 36px 8px 14px;
    background: #f9fafb 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='%230031AF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
    cursor: pointer;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
    margin: 0;
    min-width: 160px;
}

.lz-sort-select:hover {
    border-color: #0031AF;
}

.lz-sort-select:focus {
    border-color: #0031AF;
    box-shadow: 0 0 0 3px rgba(0,49,175,0.1);
}

/* === Sidebar === */
.lz-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lz-sidebar-section {
    margin-bottom: 28px;
}

.lz-sidebar-heading {
    font-size: 15px;
    font-weight: 700;
    /* letter-spacing: 0.13em; */
    text-transform: uppercase;
    color: #050505;
    margin: 0 0 10px;
    padding-bottom: 8px;
    /* border-bottom: 2px solid #0031AF; */
}

.lz-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lz-sidebar-sublist {
    list-style: none;
    padding: 0 0 0 12px;
    margin: 2px 0 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-left: 2px solid #e0e6f8;
}

.lz-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.lz-sidebar-link:hover {
    background: #f0f4ff;
    color: #0031AF;
}

.lz-sidebar-link.active {
    background: #0031AF;
    color: #ffffff;
    font-weight: 600;
}

.lz-sidebar-link.active svg {
    stroke: rgba(255,255,255,0.7);
}

.lz-sidebar-link svg {
    stroke: #9ca3af;
    flex-shrink: 0;
}

.lz-sidebar-sublink {
    font-size: 13px;
    color: #6b7280;
}

/* === Pagination === */
.lz-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.lz-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1.5px solid #dde3f4;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    background: #ffffff;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.lz-page-btn:hover {
    background: #f0f4ff;
    border-color: #0031AF;
    color: #0031AF;
}

.lz-page-btn.active {
    background: #0031AF;
    border-color: #0031AF;
    color: #ffffff;
}

.lz-page-ellipsis {
    font-size: 13px;
    color: #9ca3af;
    padding: 0 4px;
}

/* === Signal Section (below hero) === */
.lz-signal-section {
    background: #ffffff;
   
    position: relative;
}

.lz-signal-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #0031AF18 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.lz-signal-inner {
    display: flex;
    flex-direction: column;
   
    align-items: stretch;
    position: relative;
}

@media (min-width: 768px) {
    .lz-signal-inner {
        flex-direction: row;
       
    }
}

/* Left: About */
.lz-signal-about {
    flex: 1;
    padding: 48px 48px 48px 52px;
    background: #0031AF;
    color: white;
    position: relative;
    overflow: hidden;
   
}

.lz-signal-about::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.lz-signal-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.lz-signal-heading {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin: 0 0 18px;
}

.lz-signal-body {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin: 0 0 32px;
}

.lz-signal-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.lz-signal-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
}

.lz-signal-badge svg {
    flex-shrink: 0;
    color: #7eb3ff;
    stroke: #7eb3ff;
}

/* Right: WhatsApp Card */
.lz-wa-card {
    flex: 0 0 400px;
    background: #071535;

    padding: 44px 36px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0,49,175,0.18);
}

.lz-wa-icon-ring {
    width: 76px;
    height: 76px;
    background: rgba(37,211,102,0.12);
    border: 2px solid rgba(37,211,102,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.lz-wa-icon-ring svg {
    width: 38px;
    height: 38px;
    fill: #25D366;
}

.lz-wa-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #ffffff;
}

.lz-wa-body {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    margin: 0 0 26px;
}

.lz-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.18s ease;
    margin-bottom: 18px;
}

.lz-wa-btn:hover {
    background: #1db954;
    transform: translateY(-2px);
    color: #ffffff;
}

.lz-wa-btn svg {
    fill: #ffffff;
}

.lz-wa-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.38);
}

.lz-wa-dot {
    width: 7px;
    height: 7px;
    background: #25D366;
    border-radius: 50%;
    flex-shrink: 0;
    animation: lz-pulse 2.2s ease-in-out infinite;
}

@keyframes lz-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.75); }
}

/* === Why Choose Section === */
.lz-why-section {
    background: #0031AF;
    padding: 80px 0;
}

.lz-why-header {
    text-align: center;
    margin-bottom: 56px;
}

.lz-why-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 14px;
}

.lz-why-heading {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.lz-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .lz-why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .md\:grid-cols-3 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
}

.lz-why-item {
    background: #0031AF;
    padding: 40px 32px;
    transition: background 0.2s ease;
}

.lz-why-item:hover {
    background: #0028a0;
}

.lz-why-num {
    display: block;
    font-size: 44px;
    font-weight: 900;
    color: rgba(255,255,255,0.12);
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.lz-why-icon {
    width: 36px;
    height: 36px;
    color: rgba(255,255,255,0.85);
    stroke: rgba(255,255,255,0.85);
    margin-bottom: 14px;
    display: block;
}

.lz-why-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
}

.lz-why-item p {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.62);
    margin: 0;
}

/* === Footer === */
.lz-footer {
    background: #0031AF;
    color: rgba(255,255,255,0.75);
    border-top: 3px solid rgba(255,255,255,0.25);
}

.lz-footer-brand-bar {
    padding: 36px 0 30px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.lz-footer-brand {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.lz-footer-logo {
    height: 36px;
    width: auto;
}

.lz-footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 1.5;
}

.lz-footer-main {
    padding: 56px 0 48px;
}

.lz-footer-col-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.lz-footer-text {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255,255,255,0.62);
    margin: 0;
}

.lz-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.lz-footer-links li {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}

.lz-footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.18s ease;
}

.lz-footer-links a:hover {
    color: #ffffff;
}

.lz-footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.lz-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.lz-footer-socials a:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.lz-footer-socials svg {
    width: 15px;
    height: 15px;
}

.lz-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 18px 0;
}

.lz-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* === Cart Modal === */
.lz-cart-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 42, 0.5);
    z-index: 40;
    backdrop-filter: blur(2px);
}

.lz-cart-modal {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 360px;
    max-width: 100vw;
    background: #ffffff;
    z-index: 50;
    box-shadow: -6px 0 40px rgba(0,0,0,0.14);
    transform: translateX(110%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lz-cart-modal.open {
    transform: translateX(0);
}

@media (max-width: 767px) {
    .lz-cart-modal {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        max-height: 68vh;
        border-radius: 18px 18px 0 0;
        transform: translateY(110%);
        box-shadow: 0 -6px 40px rgba(0,0,0,0.14);
    }

    .lz-cart-modal.open {
        transform: translateY(0);
    }
}

.lz-cart-handle-bar {
    display: none;
    width: 36px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin: 12px auto 0;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .lz-cart-handle-bar {
        display: block;
    }
}

.lz-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 16px;
    border-bottom: 1px solid #f0f2f8;
    flex-shrink: 0;
}

.lz-cart-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a0f2a;
    margin: 0;
    letter-spacing: -0.01em;
}

.lz-cart-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    background: #f4f6fb;
    border-radius: 50%;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    transition: background 0.15s ease, color 0.15s ease;
    flex-shrink: 0;
}

.lz-cart-close:hover {
    background: #fee2e2;
    color: #dc2626;
}

.lz-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 4px 20px;
    -webkit-overflow-scrolling: touch;
}

.lz-cart-empty {
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    padding: 48px 0;
    margin: 0;
}

.lz-cart-footer {
    padding: 16px 20px 20px;
    border-top: 1px solid #f0f2f8;
    flex-shrink: 0;
    background: #fafbff;
}

.lz-cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
}

.lz-cart-total-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
}

.lz-cart-total-val {
    font-size: 22px;
    font-weight: 800;
    color: #0031AF;
    letter-spacing: -0.02em;
}

.lz-cart-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lz-cart-btn-primary {
    display: block;
    width: 100%;
    padding: 13px;
    background: #0031AF;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease;
    text-align: center;
    letter-spacing: 0.01em;
}

.lz-cart-btn-primary:hover {
    background: #0028a0;
}

.lz-cart-btn-ghost {
    display: block;
    width: 100%;
    padding: 11px;
    background: transparent;
    color: #9ca3af;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.18s ease, color 0.18s ease;
    text-align: center;
}

.lz-cart-btn-ghost:hover {
    border-color: #9ca3af;
    color: #374151;
}

.lz-footer-bottom-inner span {
    font-size: 11.5px;
    color: rgba(255,255,255,0.48);
}

/* ============================================================
   PRODUCT PAGE — Homepage-Consistent Bold Design
   ============================================================ */

/* Blue header bar — mirrors lz-shop-bar */
.lz-prod-bar {
    background: #0031AF;
    padding: 32px 0 28px;
    border-bottom: 3px solid rgba(255,255,255,0.15);
}
.lz-prod-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
}
.lz-prod-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.18s; }
.lz-prod-breadcrumb a:hover { color: #fff; }
.lz-prod-breadcrumb .sep { color: rgba(255,255,255,0.3); }
.lz-prod-breadcrumb .current { color: rgba(255,255,255,0.9); font-weight: 600; }
.lz-prod-bar-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.2;
}
.lz-prod-bar-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 2px;
    display: inline-block;
}

/* Main wrap */
.lz-prod-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Two-column grid */
.lz-prod-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    padding: 48px 0 0;
}
@media (min-width: 768px) {
    .lz-prod-grid { grid-template-columns: 55% 45%; }
}

/* ---- Gallery (left column) ---- */
.lz-prod-gallery { padding-right: 0; }
@media (min-width: 768px) { .lz-prod-gallery { padding-right: 48px; } }

.lz-prod-glide { width: 100%; }
.lz-prod-main-img {
  
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lz-prod-glide .glide__track,
.lz-prod-glide .glide__slides { height: 100%; }
.lz-prod-glide .glide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 360px;
    background: #f4f6fb;
}
.lz-prod-glide .glide__slide img {
    max-height: 340px;
    width: 100%;
    object-fit: contain;
}
.lz-prod-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.lz-prod-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: opacity 0.2s, border-color 0.2s;
    background: #f4f6fb;
}
.lz-prod-thumb:hover,
.lz-prod-thumb.active { opacity: 1; border-color: #0031AF; }

/* ---- Buy Box (right column) — blue panel like lz-signal-about ---- */
.lz-prod-info {
    background: #0031AF;
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
@media (min-width: 768px) { .lz-prod-info { position: sticky; top: 0; } }

/* Decorative circle — same as lz-signal-about::after */
.lz-prod-info::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.lz-prod-name {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    position: relative;
}
@media (min-width: 768px) { .lz-prod-name { font-size: 28px; } }

.lz-prod-price {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    line-height: 1;
    position: relative;
}

/* Meta chips */
.lz-prod-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; position: relative; }
.lz-prod-chip {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
}
.lz-prod-chip.in-stock  { background: rgba(37,211,102,0.18); color: #7dfcb4; border: 1px solid rgba(37,211,102,0.3); }
.lz-prod-chip.out-stock { background: rgba(239,68,68,0.18); color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }
.lz-prod-chip.condition { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.2); }

/* Divider */
.lz-prod-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 24px 0;
    position: relative;
}

/* Qty label */
.lz-prod-qty-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0 0 10px;
    display: block;
    position: relative;
}

/* Qty + CTA row */
.lz-prod-buy-row { display: flex; gap: 10px; align-items: stretch; position: relative; }

.lz-prod-qty {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.25);
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(0,0,0,0.2);
}
.lz-prod-qty-btn {
    width: 38px;
    height: 48px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}
.lz-prod-qty-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.lz-prod-qty-input {
    width: 44px;
    height: 48px;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: transparent;
    outline: none;
    margin: 0;
    padding: 0;
    -moz-appearance: textfield;
}
.lz-prod-qty-input::-webkit-outer-spin-button,
.lz-prod-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Add to Cart — inverted: white bg, blue text */
.lz-prod-add-btn {
    flex: 1;
    height: 48px;
    background: #ffffff;
    color: #0031AF;
    border: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.15s;
    position: relative;
}
.lz-prod-add-btn:hover { background: #e8f0ff; transform: translateY(-1px); }

/* WhatsApp — green button like lz-wa-btn */
.lz-prod-wa-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding: 13px;
    background: #25D366;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s, transform 0.18s;
    position: relative;
}
.lz-prod-wa-link:hover { background: #1db954; transform: translateY(-2px); color: #fff; }
.lz-prod-wa-link svg { fill: #ffffff; flex-shrink: 0; }

/* View cart quiet link */
.lz-prod-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    margin-top: 14px;
    transition: color 0.15s;
    position: relative;
}
.lz-prod-cart-link:hover { color: rgba(255,255,255,0.85); }

/* Badges list — mirrors lz-signal-badges */
.lz-prod-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 20px;
    position: relative;
}
.lz-prod-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
}
.lz-prod-badge svg { flex-shrink: 0; stroke: #7eb3ff; }

/* ---- Content sections (description, documents) ---- */
.lz-prod-content { padding: 0 0 0; }

.lz-prod-section {
    padding: 48px 24px;
    border-top: 1px solid #f0f2f8;
}
@media (min-width: 768px) { .lz-prod-section { padding: 56px 0; } }

.lz-prod-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 10px;
}
.lz-prod-section-title {
    font-size: 22px;
    font-weight: 900;
    color: #0a0f2a;
    margin: 0 0 28px;
    letter-spacing: -0.02em;
}
.lz-prod-desc-body { font-size: 15px; line-height: 1.85; color: #374151; }

.lz-prod-doc-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    font-size: 13px;
    font-weight: 700;
    color: #0031AF;
    text-decoration: none;
    transition: border-color 0.18s, background 0.18s;
    margin-bottom: 10px;
}
.lz-prod-doc-link:hover { border-color: #0031AF; background: #f0f4ff; color: #0031AF; }
.lz-prod-doc-link svg { flex-shrink: 0; }

/* ---- Trust strip — exact lz-why-grid pattern ---- */
.lz-prod-trust-section {
    background: #0031AF;
    padding: 64px 0;
}
.lz-prod-trust-header {
    text-align: center;
    margin-bottom: 48px;
}
.lz-prod-trust-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 12px;
}
.lz-prod-trust-heading {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}
.lz-prod-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    overflow: hidden;
}
@media (min-width: 768px) {
    .lz-prod-trust-grid { grid-template-columns: repeat(3, 1fr); }
}
.lz-prod-trust-item {
    background: #0031AF;
    padding: 36px 28px;
    transition: background 0.2s;
}
.lz-prod-trust-item:hover { background: #0028a0; }
.lz-prod-trust-num {
    display: block;
    font-size: 44px;
    font-weight: 900;
    color: rgba(255,255,255,0.1);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}
.lz-prod-trust-icon {
    display: block;
    width: 32px;
    height: 32px;
    stroke: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}
.lz-prod-trust-title { font-size: 15px; font-weight: 700; color: #ffffff; margin: 0 0 8px; }
.lz-prod-trust-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6); margin: 0; }

/* ============================================================
   CART PAGE
   ============================================================ */
.lz-cp-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 24px 80px; }

.lz-cp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}
@media (min-width: 900px) {
    .lz-cp-grid { grid-template-columns: 1fr 340px; gap: 40px; }
}

/* Items column */
.lz-cp-col-header {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9ca3af;
    display: grid;
    grid-template-columns: 1fr 120px 100px 36px;
    gap: 16px;
    padding: 0 0 12px;
    border-bottom: 2px solid #0031AF;
    margin-bottom: 4px;
}
@media (max-width: 600px) { .lz-cp-col-header { display: none; } }

.lz-cp-item {
    display: grid;
    grid-template-columns: 1fr 120px 100px 36px;
    gap: 16px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f2f8;
    transition: background 0.15s;
}
@media (max-width: 600px) {
    .lz-cp-item { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 12px; }
}

.lz-cp-item-product { display: flex; align-items: center; gap: 14px; }
.lz-cp-item-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    background: #f4f6fb;
    flex-shrink: 0;
}
.lz-cp-item-name {
    font-size: 14px;
    font-weight: 700;
    color: #0a0f2a;
    margin: 0 0 4px;
    line-height: 1.3;
}
.lz-cp-item-unit {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

/* Qty stepper — same as product page but smaller */
.lz-cp-qty {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    overflow: hidden;
}
.lz-cp-qty-btn {
    width: 30px;
    height: 36px;
    border: none;
    background: #f9fafb;
    color: #374151;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}
.lz-cp-qty-btn:hover { background: #f0f2f8; }
.lz-cp-qty-input {
    width: 38px;
    height: 36px;
    border: none;
    border-left: 1.5px solid #e5e7eb;
    border-right: 1.5px solid #e5e7eb;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #0a0f2a;
    background: #fff;
    outline: none;
    margin: 0;
    padding: 0;
    -moz-appearance: textfield;
}
.lz-cp-qty-input::-webkit-outer-spin-button,
.lz-cp-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.lz-cp-item-total {
    font-size: 15px;
    font-weight: 800;
    color: #0031AF;
    letter-spacing: -0.01em;
}

.lz-cp-item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
}
.lz-cp-remove-btn {
    width: 30px;
    height: 30px;
    border: 1.5px solid #e5e7eb;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    padding: 0;
    flex-shrink: 0;
}
.lz-cp-remove-btn:hover { border-color: #fca5a5; color: #dc2626; background: #fff5f5; }
.lz-cp-remove-btn svg { width: 14px; height: 14px; }

/* Summary — blue panel */
.lz-cp-summary {
    background: #0031AF;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
@media (min-width: 900px) { .lz-cp-summary { position: sticky; top: 20px; } }
.lz-cp-summary::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.lz-cp-summary-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0 0 20px;
}
.lz-cp-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lz-cp-summary-row:last-of-type { border-bottom: none; }
.lz-cp-summary-row span:last-child { font-weight: 700; color: rgba(255,255,255,0.85); }
.lz-cp-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px 0 0;
    margin-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.lz-cp-summary-total-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.lz-cp-summary-total-val {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
}
.lz-cp-checkout-btn {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 14px;
    background: #ffffff;
    color: #0031AF;
    border: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
    position: relative;
}
.lz-cp-checkout-btn:hover { background: #e8f0ff; transform: translateY(-1px); color: #0031AF; }
.lz-cp-clear-btn {
    display: block;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 14px;
    transition: color 0.15s;
    width: 100%;
    padding: 0;
    position: relative;
}
.lz-cp-clear-btn:hover { color: rgba(255,255,255,0.7); }

/* Empty state */
.lz-cp-empty {
    text-align: center;
    padding: 80px 24px;
}
.lz-cp-empty-icon {
    width: 64px;
    height: 64px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.lz-cp-empty-icon svg { stroke: #0031AF; }
.lz-cp-empty h2 { font-size: 22px; font-weight: 800; color: #0a0f2a; margin: 0 0 10px; letter-spacing: -0.01em; }
.lz-cp-empty p { font-size: 14px; color: #9ca3af; margin: 0 0 28px; }
.lz-cp-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0031AF;
    color: #fff;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.18s;
}
.lz-cp-empty-btn:hover { background: #0028a0; color: #fff; }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.lz-co-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 24px 80px; }

.lz-co-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}
@media (min-width: 960px) {
    .lz-co-grid { grid-template-columns: 1fr 360px; gap: 40px; }
}

/* Step cards */
.lz-co-step {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    padding: 32px;
    margin-bottom: 20px;
}
.lz-co-step:last-child { margin-bottom: 0; }

.lz-co-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f2f8;
}
.lz-co-step-num {
    width: 36px;
    height: 36px;
    background: #0031AF;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.lz-co-step-title {
    font-size: 16px;
    font-weight: 800;
    color: #0a0f2a;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Form labels */
.lz-co-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 8px;
}
.lz-co-readonly {
    background: #f4f6fb !important;
    color: #6b7280 !important;
    border-color: #e5e7eb !important;
    cursor: default !important;
}

/* Payment options */
.lz-co-pay-opt {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1.5px solid #e5e7eb;
    cursor: pointer;
    margin-bottom: 10px;
    transition: border-color 0.18s, background 0.18s;
}
.lz-co-pay-opt:hover { border-color: #0031AF; background: #f8faff; }
.lz-co-pay-opt.selected { border-color: #0031AF; background: #f0f4ff; }
.lz-co-pay-opt input[type="radio"] { width: auto; margin: 0; flex-shrink: 0; }
.lz-co-pay-opt-body { flex: 1; }
.lz-co-pay-opt-title { display: block; font-size: 14px; font-weight: 700; color: #0a0f2a; margin-bottom: 3px; }
.lz-co-pay-opt-desc { display: block; font-size: 12px; color: #9ca3af; }

.lz-co-secure-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: #f4f6fb;
    border-left: 3px solid #0031AF;
    margin-top: 16px;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.55;
}
.lz-co-secure-note svg { stroke: #0031AF; flex-shrink: 0; margin-top: 1px; }

/* Right column — blue summary panel */
.lz-co-summary {
    background: #0031AF;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
@media (min-width: 960px) { .lz-co-summary { position: sticky; top: 20px; } }
.lz-co-summary::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.lz-co-summary-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0 0 20px;
    display: block;
}

/* Cart preview items */
.lz-co-preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.lz-co-preview-item:last-child { border-bottom: none; }
.lz-co-preview-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.lz-co-preview-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin: 0 0 3px;
    line-height: 1.3;
    flex: 1;
}
.lz-co-preview-qty {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    margin: 0;
}
.lz-co-preview-price {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

/* Totals */
.lz-co-totals { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.15); }
.lz-co-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}
.lz-co-total-row span:last-child { font-weight: 700; color: rgba(255,255,255,0.85); }
.lz-co-grand-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 14px;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.lz-co-grand-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.lz-co-grand-val {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
}

/* Place order button — inverted */
.lz-co-submit-btn {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 15px;
    background: #ffffff;
    color: #0031AF;
    border: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
    position: relative;
}
.lz-co-submit-btn:hover:not(:disabled) { background: #e8f0ff; transform: translateY(-1px); }
.lz-co-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.lz-co-terms {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
    position: relative;
}
.lz-co-terms a { color: rgba(255,255,255,0.5); text-decoration: underline; }

.loader {
    border: 2px solid rgba(0,49,175,0.2);
    border-top: 2px solid #0031AF;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* ============================================================
   ABOUT PAGE — Single Column
   ============================================================ */

/* Stat row — inline numbers on white */
.lz-about-stat-row {
    display: flex;
    align-items: stretch;
    border: 1.5px solid #e5e7eb;
}
.lz-about-stat {
    flex: 1;
    padding: 36px 24px;
    text-align: center;
    border-right: 1.5px solid #e5e7eb;
}
.lz-about-stat:last-child { border-right: none; }
.lz-about-stat-num {
    display: block;
    font-size: 40px;
    font-weight: 900;
    color: #0031AF;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}
.lz-about-stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
}

/* Section label + heading — reusable within about */
.lz-about-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 12px;
    display: block;
}
.lz-about-section-heading {
    font-size: 26px;
    font-weight: 900;
    color: #0a0f2a;
    margin: 0 0 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.lz-about-section-body {
    font-size: 15px;
    line-height: 1.85;
    color: #4b5563;
    margin: 0 0 16px;
}

/* Trust badges on white */
.lz-about-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.lz-about-badge {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 24px;
    border: 1px solid #f0f2f8;
    border-radius: 4px;
}
.lz-about-badge-icon {
    width: 40px;
    height: 40px;
    background: #e8f0ff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lz-about-badge-icon svg { stroke: #0031AF; width: 18px; height: 18px; }
@media (max-width: 768px) {
    .lz-about-badges { grid-template-columns: 1fr; }
}

/* Values — 3-column cards */
.lz-about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.lz-about-value {
    padding: 32px 28px;
    border: 1px solid #f0f2f8;
    border-radius: 4px;
    border-top: 3px solid #0031AF;
    display: flex;
    flex-direction: column;
}
.lz-about-value-title {
    font-size: 17px;
    font-weight: 800;
    color: #0a0f2a;
    margin: 16px 0 8px;
    letter-spacing: -0.01em;
}
.lz-about-value-body {
    font-size: 14px;
    line-height: 1.75;
    color: #6b7280;
    margin: 0;
}
@media (max-width: 768px) {
    .lz-about-values { grid-template-columns: 1fr; }
}
.lz-about-value-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0031AF;
    padding-top: 4px;
}
/* Principles — numbered rows on light bg */
.lz-about-principles-wrap {
    background: #f8f9fb;
    padding: 80px 0;
}
.lz-about-principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 48px;
    margin-top: 40px;
}
.lz-about-principle-row {
    padding: 32px 0;
    border-bottom: 1px solid #eef0f5;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: start;
}
.lz-about-principle-row:nth-child(-n+2) { border-top: 1px solid #eef0f5; }
@media (max-width: 768px) {
    .lz-about-principles-grid { grid-template-columns: 1fr; }
    .lz-about-principle-row:nth-child(2) { border-top: none; }
}
.lz-about-principle-num {
    font-size: 40px;
    font-weight: 900;
    color: #e5e7eb;
    letter-spacing: -0.04em;
    line-height: 1;
    padding-top: 2px;
}
.lz-about-principle-title {
    font-size: 16px;
    font-weight: 800;
    color: #0a0f2a;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.lz-about-principle-body {
    font-size: 14px;
    line-height: 1.75;
    color: #6b7280;
    margin: 0;
}

/* CTA strip */
.lz-about-cta {
    background: #071535;
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lz-about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,49,175,0.3) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.lz-about-cta-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
    position: relative;
}
.lz-about-cta-heading {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.25;
    position: relative;
}
.lz-about-cta-body {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin: 0 0 32px;
    position: relative;
}
.lz-about-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
.lz-about-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0031AF;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.18s, transform 0.15s;
}
.lz-about-cta-btn-primary:hover { background: #e8f0ff; color: #0031AF; transform: translateY(-1px); }
.lz-about-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(255,255,255,0.25);
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: border-color 0.18s, color 0.18s;
}
.lz-about-cta-btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: #ffffff; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.lz-faq-wrap { max-width: 860px; margin: 0 auto; padding: 56px 24px 80px; }

.lz-faq-group { margin-bottom: 56px; }
.lz-faq-group-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 10px;
}
.lz-faq-group-title {
    font-size: 22px;
    font-weight: 900;
    color: #0a0f2a;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
    padding-bottom: 16px;
    border-bottom: 2px solid #0031AF;
}

.lz-faq-item {
    border-bottom: 1px solid #f0f2f8;
    overflow: hidden;
}
.lz-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: #0a0f2a;
    user-select: none;
    transition: color 0.15s;
    list-style: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: karla;
}
.lz-faq-question:hover { color: #0031AF; }
.lz-faq-icon {
    width: 24px;
    height: 24px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.18s, transform 0.25s;
}
.lz-faq-icon svg { width: 12px; height: 12px; stroke: #0031AF; transition: transform 0.25s; }
.lz-faq-item.open .lz-faq-icon { background: #0031AF; transform: none; }
.lz-faq-item.open .lz-faq-icon svg { stroke: #ffffff; transform: rotate(45deg); }
.lz-faq-item.open .lz-faq-question { color: #0031AF; }

.lz-faq-answer {
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
    padding: 0 0 20px;
    display: none;
    padding-right: 40px;
    font-family: arial;
}
.lz-faq-item.open .lz-faq-answer { display: block; }

/* FAQ CTA */
.lz-faq-cta {
    background: #0031AF;
    padding: 40px;
    text-align: center;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}
.lz-faq-cta::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.lz-faq-cta-text {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    position: relative;
}
.lz-faq-cta-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 24px;
    position: relative;
}
.lz-faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0031AF;
    padding: 12px 26px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.18s;
    position: relative;
}
.lz-faq-cta-btn:hover { background: #e8f0ff; color: #0031AF; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.lz-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .lz-contact-grid { grid-template-columns: 420px 1fr; }
}

/* Info panel — blue */
.lz-contact-info {
    background: #0031AF;
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
}
.lz-contact-info::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.lz-contact-info-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 20px;
}
.lz-contact-info-heading {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.25;
    position: relative;
}
.lz-contact-info-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 36px;
    line-height: 1.6;
    position: relative;
}
.lz-contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
    position: relative;
}
.lz-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.lz-contact-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.lz-contact-item-icon svg { stroke: rgba(255,255,255,0.85); width: 16px; height: 16px; }
.lz-contact-item-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin: 0 0 3px;
}
.lz-contact-item-value {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.15s;
    display: block;
}
a.lz-contact-item-value:hover { color: #ffffff; }

.lz-contact-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    padding: 13px;
    background: #25D366;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.18s;
    position: relative;
}
.lz-contact-wa-btn:hover { background: #1db954; color: #fff; transform: translateY(-2px); }
.lz-contact-wa-btn svg { fill: #ffffff; flex-shrink: 0; }

/* Form card */
.lz-contact-form-wrap {
    background: #ffffff;
    padding: 52px 44px;
    border-left: 1px solid #f0f2f8;
}
@media (max-width: 767px) { .lz-contact-form-wrap { border-left: none; border-top: 1px solid #f0f2f8; } }

.lz-contact-form-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 10px;
}
.lz-contact-form-title {
    font-size: 24px;
    font-weight: 900;
    color: #0a0f2a;
    margin: 0 0 32px;
    letter-spacing: -0.02em;
}
.lz-contact-field-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 8px;
}
.lz-contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0031AF;
    color: #ffffff;
    border: none;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
    margin-top: 8px;
}
.lz-contact-submit:hover { background: #0028a0; transform: translateY(-1px); }

#contact-form-message.success {
    background: #dcfce7;
    color: #166534;
    border-left: 3px solid #22c55e;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
#contact-form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 3px solid #ef4444;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ============================================================
   MOBILE MENU — Minimalistic Bold White Panel Redesign
   ============================================================ */
.mobile-menu {
    background: #ffffff !important;
    width: 300px !important;
    left: -300px !important;
    border-right: 1px solid #e5e7eb;
}
.mobile-menu.open {
    transform: translateX(300px) !important;
}

/* Menu header with logo + close */
.lz-mmenu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f2f8;
    flex-shrink: 0;
}
.lz-mmenu-logo { height: 26px; width: auto; }
.lz-mmenu-close {
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    padding: 0;
}
.lz-mmenu-close:hover { background: #f3f4f6; color: #111827; border-color: #9ca3af; }

/* Tab bar */
.mobile-menu .mobile-menu-tabs {
    background: transparent !important;
    border-bottom: 1px solid #f0f2f8 !important;
    padding: 0 24px;
    gap: 0;
    flex-shrink: 0;
}
.mobile-menu .mobile-menu-tabs .tab-button {
    background: transparent !important;
    color: #9ca3af !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 16px 0 !important;
    border-bottom: 2px solid transparent !important;
    flex: 0 1 auto !important;
    margin-right: 24px !important;
    transition: color 0.15s, border-color 0.15s !important;
}
.mobile-menu .mobile-menu-tabs .tab-button.active {
    color: #0031AF !important;
    border-bottom-color: #0031AF !important;
    background: transparent !important;
}

/* Nav link list */
.mobile-menu #menu-tab ul { padding: 0; margin: 0; list-style: none; }
.mobile-menu #menu-tab ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.15s, background 0.15s;
}
.mobile-menu #menu-tab ul li a:hover { color: #0031AF; background: #f8faff; }
.mobile-menu #menu-tab ul li a::after {
    content: '→';
    font-size: 12px;
    color: #d1d5db;
    transition: color 0.15s, transform 0.2s;
    flex-shrink: 0;
}
.mobile-menu #menu-tab ul li a:hover::after { color: #0031AF; transform: translateX(4px); }
.mobile-menu #menu-tab ul li.lz-mmenu-cart-item a {
    color: #0031AF !important;
    background: #f0f4ff !important;
    font-weight: 700 !important;
}

/* Categories tab inside menu */
.mobile-menu #categories-tab { padding: 20px 24px; }
.mobile-menu .lz-sidebar-heading { color: #9ca3af !important; font-size: 10px !important; }
.mobile-menu .lz-sidebar-link { color: #374151 !important; background: transparent !important; }
.mobile-menu .lz-sidebar-link:hover { color: #0031AF !important; background: #f8faff !important; }
.mobile-menu .lz-sidebar-link.active { background: #0031AF !important; color: #fff !important; }
.mobile-menu .lz-sidebar-sublink { color: #6b7280 !important; }
.mobile-menu .lz-sidebar-sublist { border-left-color: #e0e6f8 !important; }

/* Social Icons in Header */
.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: opacity 0.18s ease;
}

.social-icon-link:hover {
    opacity: 0.8;
}

/* ============================================================
   CART PAGE — Clean Flexbox/Grid Layout
   ============================================================ */

.cart-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 768px) {
    .cart-layout {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .cart-items-section {
        flex: 1;
        min-width: 0;
    }
    
    .cart-summary {
        width: 300px;
        flex-shrink: 0;
    }
}

/* Cart Header - Desktop Only */
.cart-header {
    display: none;
    padding: 12px 0;
    border-bottom: 2px solid #e5e7eb;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .cart-header {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 60px;
        gap: 16px;
    }
}

/* Cart Item Row */
.cart-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f2f8;
}

@media (min-width: 768px) {
    .cart-item {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 60px;
        gap: 16px;
        align-items: center;
    }
}

/* Product Info (image + name + price) */
.cart-item-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    background: #f4f6fb;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 15px;
    font-weight: 600;
    color: #0a0f2a;
    margin: 0 0 4px;
    line-height: 1.4;
}

.cart-item-price {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Quantity Input */
.cart-item-quantity {
    display: flex;
    align-items: center;
}

.cart-item-quantity input {
    width: 70px;
    padding: 10px 12px;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
    margin: 0;
}

.cart-item-quantity input:focus {
    border-color: #0031AF;
    box-shadow: 0 0 0 3px rgba(0,49,175,0.1);
}

/* Total Price */
.cart-item-total {
    font-size: 16px;
    font-weight: 700;
    color: #0a0f2a;
}

.cart-item-total p {
    margin: 0;
}

/* Remove Button */
.cart-item-remove {
    display: flex;
    justify-content: flex-end;
}

.cart-item-remove button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.18s, transform 0.18s;
}

.cart-item-remove button:hover {
    opacity: 1;
    transform: scale(1.1);
}

.cart-item-remove button img {
    width: 20px;
    height: 20px;
}

/* Cart Summary Card */
.cart-summary {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
}

.cart-summary-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a0f2a;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f2f8;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #374151;
}

.cart-summary-total {
    font-weight: 700;
    font-size: 16px;
    color: #0a0f2a;
    padding-top: 16px;
    border-top: 1px solid #f0f2f8;
    margin-top: 16px;
}

.cart-summary .btn {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.cart-summary .btn-text {
    display: block;
    text-align: center;
    margin-top: 12px;
}