﻿/* Custom Shop Styles â€” Phase 3 Enhancement */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   GLOBAL BASE
   ============================================ */
body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #2c3e50;
}

/* ============================================
   STICKY HEADER
   ============================================ */
body > section#wrapper > header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ============================================
   SECONDARY TOP BAR (Utility)
   ============================================ */
.top-utility-bar {
    background: #1a73e8;
    border-bottom: none;
    padding: 8px 0;
}

/* Become Seller CTA Button */
.btn-become-seller {
    background: #fff;
    color: #1a73e8;
    font-weight: 700;
    border: 2px solid #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    line-height: 1.5;
}

.btn-become-seller:hover,
.btn-become-seller:focus {
    background: #1557b0;
    color: #fff;
    border-color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Premium Button Styling */
.btn-premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 700;
    border: none;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    line-height: 1.5;
}

.btn-premium:hover,
.btn-premium:focus {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    color: #000;
    text-decoration: none;
}

/* ============================================
   MAIN HEADER / SEARCH
   ============================================ */
section.main-header {
    background: #fff;
    padding: 10px 0;
}

#product-search {
    border-radius: 25px 0 0 25px !important;
    border: 2px solid #1a73e8 !important;
    border-right: none !important;
    padding-left: 18px;
    height: 42px;
}

#product-search:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.btn-search {
    border-radius: 0 25px 25px 0 !important;
    background: #1a73e8 !important;
    color: #fff !important;
    border: 2px solid #1a73e8 !important;
    height: 42px;
    padding: 0 18px;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: #1557b0 !important;
    border-color: #1557b0 !important;
}

/* Search autocomplete */
.search-form-wrapper {
    position: relative;
}

.search-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 1050;
    max-height: 340px;
    overflow-y: auto;
    display: none;
}

.search-autocomplete-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
    text-decoration: none;
    color: #2c3e50;
}

.search-autocomplete-item:hover {
    background: #f0f7ff;
    color: #1a73e8;
    text-decoration: none;
}

.search-autocomplete-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-autocomplete-item .item-name {
    font-weight: 600;
    font-size: 13px;
    display: block;
}

.search-autocomplete-item .item-price {
    font-size: 12px;
    color: #1a73e8;
    font-weight: 600;
    display: block;
}

/* ============================================
   HERO CAROUSEL ENHANCEMENTS
   ============================================ */
.hero-carousel .carousel-control {
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
}

.hero-carousel .carousel-control:hover {
    background: rgba(0, 0, 0, 0.5);
}

.hero-carousel .carousel-indicators li {
    border-color: rgba(255,255,255,0.7);
}

.hero-carousel .carousel-indicators .active {
    background: #fff;
}

/* ============================================
   MEMBERSHIP GATEWAY BLOCK
   ============================================ */
.membership-gateway {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    padding: 35px 0;
    margin: 0;
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
    background: #1a73e8;
    padding: 22px 0;
    color: #fff;
}

.stats-strip .stat-item {
    text-align: center;
    padding: 10px 5px;
}

.stats-strip .stat-number {
    font-size: 34px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.stats-strip .stat-label {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 5px;
    display: block;
}

.stats-strip .stat-divider {
    border-left: 1px solid rgba(255,255,255,0.3);
    height: 50px;
    margin: auto;
}

/* ============================================
   PRODUCT CARDS â€” KEY ENHANCEMENT
   ============================================ */
.product {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    background: #fff;
}

.product:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.product .details {
    position: relative;
    overflow: hidden;
}

/* Image zoom on hover */
.product .details img {
    width: 100%;
    transition: transform 0.4s ease;
    display: block;
}

.product .details:hover img {
    transform: scale(1.07);
}

.product .add-to-wishlist {
    transition: all 0.3s ease;
}

.product .add-to-wishlist:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.1);
    border-color: #e74c3c;
}

.product .add-to-cart {
    transition: all 0.25s ease;
}

.product .stats-container {
    padding: 12px;
}

.product_name {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    display: block;
    margin-bottom: 4px;
}

.product_price {
    font-size: 18px;
    font-weight: 700;
    color: #1a73e8;
    display: block;
    margin-bottom: 4px;
}

/* Add-to-cart cart icon bounce */
@keyframes cartBounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.25); }
    60%  { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.cart-bounce {
    animation: cartBounce 0.4s ease;
}

/* ============================================
   PREMIUM PRICE LOCK
   ============================================ */
.premium-lock {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    border: 1px solid #FFD700;
}

/* Location Badge */
.location-badge {
    display: inline-block;
    padding: 2px 6px;
    background: #f8f9fa;
    border-radius: 3px;
    font-size: 11px;
}

/* ============================================
   SELLER ONBOARDING SECTION
   ============================================ */
.seller-onboarding {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
    padding: 70px 0;
    margin-top: 40px;
}

.seller-onboarding .step-card {
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-top: 4px solid #1a73e8;
    text-align: center;
}

.seller-onboarding .step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ============================================
   NAVBAR ENHANCEMENTS
   ============================================ */
.navbar-default {
    border-radius: 0;
    border: none;
    background: #1557b0;
    margin-bottom: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.navbar-default .navbar-nav > li > a {
    color: rgba(255,255,255,0.92) !important;
    font-weight: 500;
    padding: 15px 14px;
    transition: all 0.2s ease;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li.active > a {
    color: #fff !important;
    background: rgba(255,255,255,0.15) !important;
}

.navbar-default .navbar-nav > li > a[style*="color: #FFD700"] {
    color: #FFD700 !important;
    font-weight: 700;
}

.navbar-default .navbar-toggle {
    border-color: rgba(255,255,255,0.5);
    margin: 8px 0;
}

.navbar-default .navbar-toggle .icon-bar {
    background: #fff;
}

.navbar-default .navbar-nav > li > .dropdown-menu {
    border-top: 3px solid #1a73e8;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ============================================
   PRICING CARDS (Premium Membership Page)
   ============================================ */
.pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #dee2e6;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-top: 4px solid #1a73e8;
    box-shadow: 0 12px 35px rgba(26,115,232,0.2);
    transform: scale(1.04);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pricing-card.executive {
    border-top: 4px solid #FFD700;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a73e8;
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.pricing-card.executive .pricing-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.pricing-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2c3e50;
}

.pricing-card-subtitle {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 20px;
}

.pricing-card-price {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    margin: 15px 0 4px;
    color: #2c3e50;
}

.pricing-card.featured .pricing-card-price {
    color: #1a73e8;
}

.pricing-card.executive .pricing-card-price {
    color: #d97706;
}

.pricing-card-period {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 28px;
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
    flex: 1;
}

.pricing-card-features li {
    padding: 9px 0;
    border-bottom: 1px solid #f4f4f4;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}

.pricing-card-features li:last-child {
    border-bottom: none;
}

.pricing-card-features li i {
    width: 22px;
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-plan-selected {
    outline: 3px solid #1a73e8;
    outline-offset: 2px;
}

.pricing-plan-selected.executive {
    outline-color: #FFD700;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
#toast-container {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    max-width: 320px;
}

.ls-toast {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 14px 16px;
    margin-top: 10px;
    border-left: 4px solid #1a73e8;
    animation: toastIn 0.3s ease;
}

.ls-toast.toast-success { border-left-color: #28a745; }
.ls-toast.toast-warning { border-left-color: #ffc107; }
.ls-toast.toast-error   { border-left-color: #dc3545; }

.ls-toast-icon {
    font-size: 18px;
    margin-right: 11px;
    margin-top: 1px;
    flex-shrink: 0;
}

.ls-toast-icon .fa { line-height: 1; }
.ls-toast.toast-success .ls-toast-icon { color: #28a745; }
.ls-toast.toast-warning .ls-toast-icon { color: #e0a800; }
.ls-toast.toast-error   .ls-toast-icon { color: #dc3545; }
.ls-toast-body {
    flex: 1;
    font-size: 13px;
    line-height: 1.45;
}

.ls-toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    font-size: 17px;
    line-height: 1;
    padding: 0 0 0 8px;
    flex-shrink: 0;
}

.ls-toast-close:hover {
    color: #555;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a73e8;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26,115,232,0.4);
    text-decoration: none !important;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: #1557b0;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(26,115,232,0.45);
}

/* ============================================
   FOOTER ENHANCEMENTS
   ============================================ */
.footer .title-footer {
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer .list-unstyled li {
    margin-bottom: 10px;
}

.footer .list-unstyled a {
    color: inherit;
    transition: color 0.3s ease;
}

.footer .list-unstyled a:hover {
    color: #FFD700;
    text-decoration: none;
}

/* ============================================
   LOWEST PRICE FILTER BUTTON
   ============================================ */
#lowest-price-filter {
    border-left: 1px solid #ccc;
}

#lowest-price-filter:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#lowest-price-filter:not(:disabled):hover {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
}

/* ============================================
   PANEL ENHANCEMENTS
   ============================================ */
.panel-default {
    border-radius: 10px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
    border: none !important;
}

.panel-default > .panel-heading {
    border-radius: 10px 10px 0 0 !important;
    background: #f8f9fa !important;
    border-bottom: 1px solid #e9ecef !important;
    font-weight: 600;
}

/* ============================================
   HELP MODAL
   ============================================ */
.modal .modal-header {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    border-radius: 6px 6px 0 0;
}

.modal .modal-header .close {
    color: #fff;
    opacity: 0.8;
}

.modal .modal-header .close:hover {
    opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .pricing-card.featured {
        transform: scale(1);
        margin-top: 15px;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    body > section#wrapper > header {
        position: relative;
    }

    .hero-carousel .carousel-content h1 {
        font-size: 28px !important;
    }

    .hero-carousel .carousel-content p {
        font-size: 15px !important;
    }

    .stats-strip .stat-number {
        font-size: 26px;
    }

    .seller-onboarding h2 {
        font-size: 26px !important;
    }

    .back-to-top {
        bottom: 70px;
        right: 15px;
    }

    #toast-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .navbar-default .navbar-nav > li > a {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        margin-bottom: 20px;
    }

    .pricing-card-price {
        font-size: 36px;
    }

    .stats-strip .stat-number {
        font-size: 22px;
    }
}

/* ======================================================
   LANDING PAGE â€” WORLD CLASS REDESIGN (ls-* components)
   ====================================================== */

/* Page background */
body { background: #f5f5f5; }

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ls-hero {
    background: linear-gradient(135deg, #0b1d3a 0%, #1a3a7a 60%, #1a73e8 100%);
    position: relative;
    overflow: hidden;
}
.ls-hero-inner { padding: 80px 0 50px; }
.ls-hero-eyebrow {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}
.ls-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 16px;
}
.ls-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.6;
}
/* Search box */
.ls-hero-searchbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 680px;
    margin: 0 auto 24px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,0.28);
}
.ls-hero-searchinput {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 18px 22px;
    font-size: 16px;
    border: none;
    outline: none;
    font-family: inherit;
    color: #111;
}
.ls-hero-searchbtn {
    background: #f0a500;
    color: #fff;
    border: none;
    padding: 0 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: background .2s;
    transition: background .2s;
    font-family: inherit;
}
.ls-hero-searchbtn:hover { background: #d48f00; }
/* Quick pills */
.ls-hero-quickcats { text-align: center; margin-bottom: 4px; }
.ls-hero-quicklab {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    margin-right: 6px;
    vertical-align: middle;
}
.ls-quick-pill {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 20px;
    font-size: 12px;
    margin: 3px 2px;
    -webkit-transition: all .2s;
    transition: all .2s;
    text-decoration: none;
    vertical-align: middle;
}
.ls-quick-pill:hover,
.ls-quick-pill:focus {
    background: rgba(255,255,255,0.22);
    color: #fff;
    text-decoration: none;
}
.ls-quick-pill-all {
    background: rgba(240,165,0,0.2);
    border-color: rgba(240,165,0,0.5);
    color: #FFD700;
    font-weight: 700;
}
/* Stats bar */
.ls-hero-statsbar {
    background: rgba(0,0,0,0.22);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 14px 0;
    margin-top: 36px;
}
.ls-hero-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.ls-hstat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    padding: 6px 24px;
}
.ls-hstat i { color: #f0a500; font-size: 16px; }
.ls-hstat strong { font-size: 17px; font-weight: 800; }
.ls-hstat span { opacity: .72; }
.ls-hstat-sep {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.18);
    display: inline-block;
    vertical-align: middle;
}

/* â”€â”€ SECTION SHELL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ls-section { padding: 52px 0; }
.ls-section-hd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 28px;
}
.ls-section-title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.ls-title-bar {
    display: inline-block;
    width: 4px;
    height: 24px;
    background: #1a73e8;
    border-radius: 2px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.ls-viewall-link {
    font-size: 13px;
    font-weight: 600;
    color: #1a73e8;
    text-decoration: none;
    white-space: nowrap;
}
.ls-viewall-link:hover { color: #0d47a1; text-decoration: underline; }

/* â”€â”€ PROMO BANNER CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ls-promo-section { background: #fff; padding: 40px 0; }
.ls-promo-col { margin-bottom: 20px; }
.ls-promo-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px 20px;
    border-left: 4px solid #dee2e6;
    -webkit-transition: all .3s;
    transition: all .3s;
    height: 100%;
}
.ls-promo-card:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ls-promo-blue  { border-left-color: #1a73e8; }
.ls-promo-gold  { border-left-color: #f0a500; }
.ls-promo-orange{ border-left-color: #e53935; }
.ls-promo-blue  .ls-promo-icon { color: #1a73e8; }
.ls-promo-gold  .ls-promo-icon { color: #f0a500; }
.ls-promo-orange .ls-promo-icon { color: #e53935; }
.ls-promo-icon { font-size: 32px; -ms-flex-negative: 0; flex-shrink: 0; margin-top: 2px; }
.ls-promo-body h4 { font-size: 15px; font-weight: 700; margin: 0 0 6px; color: #111; }
.ls-promo-body p  { font-size: 13px; color: #555; margin: 0 0 12px; line-height: 1.55; }
.ls-promo-link { font-size: 13px; font-weight: 600; color: #1a73e8; text-decoration: none; }
.ls-promo-link:hover { text-decoration: underline; }

/* â”€â”€ CATEGORY GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ls-cats-section { background: #f5f5f5; }
.ls-cat-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 14px;
}
.ls-cat-grid > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(20% - 14px);
    flex: 1 1 calc(20% - 14px);
    min-width: 120px;
    max-width: calc(20% - 11px);
}
.ls-cat-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 22px 12px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ebebeb;
    -webkit-transition: all .25s;
    transition: all .25s;
    text-align: center;
}
.ls-cat-card:hover,
.ls-cat-card:focus {
    border-color: #1a73e8;
    box-shadow: 0 4px 16px rgba(26,115,232,0.13);
    color: #1a73e8;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    text-decoration: none;
}
.ls-cat-icon {
    width: 48px;
    height: 48px;
    background: #f0f7ff;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    color: #1a73e8;
    margin-bottom: 10px;
    -webkit-transition: all .25s;
    transition: all .25s;
}
.ls-cat-card:hover .ls-cat-icon {
    background: #1a73e8;
    color: #fff;
}
.ls-cat-label { font-size: 12px; font-weight: 600; line-height: 1.3; }

/* â”€â”€ PRODUCT GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ls-featured-section { background: #fff; }
.ls-product-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 36px;
}
.ls-product-grid > .ls-product-card {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(25% - 18px);
    flex: 1 1 calc(25% - 18px);
    min-width: 200px;
    max-width: calc(25% - 14px);
}
.ls-product-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ebebeb;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.ls-product-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    border-color: #d0d0d0;
}
/* Badge */
.ls-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.ls-badge-promo { background: #e53935; color: #fff; }
/* Wishlist button */
.ls-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 1px 6px rgba(0,0,0,0.15);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
    -webkit-transition: all .2s;
    transition: all .2s;
    outline: none;
}
.ls-wishlist-btn:hover { background: #ffeaea; color: #e53935; }
/* Image */
.ls-card-img-wrap {
    display: block;
    overflow: hidden;
    position: relative;
    background: #f7f7f7;
    padding-top: 100%; /* 1:1 ratio */
}
.ls-card-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
}
.ls-product-card:hover .ls-card-img { -webkit-transform: scale(1.06); transform: scale(1.06); }
/* Overlay add-to-cart */
.ls-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(26,115,232,0.92);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12px;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
}
.ls-product-card:hover .ls-card-overlay { -webkit-transform: translateY(0); transform: translateY(0); }
.ls-quick-add {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s;
    white-space: nowrap;
    font-family: inherit;
}
.ls-quick-add:hover { background: #fff; color: #1a73e8; }
/* Card body */
.ls-card-body {
    padding: 14px 14px 16px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.ls-card-cat {
    font-size: 11px;
    color: #888;
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ls-card-cat:hover { color: #1a73e8; }
.ls-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.ls-card-name:hover { color: #1a73e8; }
.ls-card-price-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 6px;
}
.ls-price-now  { font-size: 17px; font-weight: 800; color: #0F1111; }
.ls-price-was  { font-size: 12px; color: #999; text-decoration: line-through; }
.ls-price-promo{ color: #e53935; }
.ls-premium-hint {
    font-size: 11px;
    color: #f0a500;
    text-decoration: none;
    margin-left: auto;
}
.ls-premium-hint:hover { text-decoration: underline; }
.ls-card-location { font-size: 11px; color: #888; }
.ls-card-location i { margin-right: 3px; }
.ls-loc-blur { color: #1a73e8; font-size: 11px; text-decoration: none; }
.ls-loc-blur:hover { text-decoration: underline; }
/* View-all CTA */
.ls-viewall-cta { text-align: center; }
.ls-btn-outline-blue {
    display: inline-block;
    padding: 12px 36px;
    border: 2px solid #1a73e8;
    color: #1a73e8;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: all .25s;
    transition: all .25s;
}
.ls-btn-outline-blue:hover {
    background: #1a73e8;
    color: #fff;
    text-decoration: none;
}

/* â”€â”€ MEMBERSHIP STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ls-membership-strip {
    background: -webkit-linear-gradient(135deg, #0d47a1 0%, #1a73e8 100%);
    background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 100%);
    padding: 28px 0;
}
.ls-ms-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}
.ls-ms-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}
.ls-ms-icon { font-size: 32px; color: #FFD700; -ms-flex-negative: 0; flex-shrink: 0; }
.ls-ms-text { color: #fff; }
.ls-ms-text strong { display: block; font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.ls-ms-text span  { font-size: 13px; opacity: .85; }
.ls-ms-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background: #FFD700;
    color: #000;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    -webkit-transition: all .25s;
    transition: all .25s;
}
.ls-ms-btn:hover {
    background: #e0a800;
    color: #000;
    text-decoration: none;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}
.ls-ms-price { font-size: 12px; font-weight: 500; opacity: .8; }

/* BUSINESS PRICING SECTION */
.ls-biz-pricing-section {
    background: #f8fbff;
    border-top: 1px solid #e7eef8;
    border-bottom: 1px solid #e7eef8;
}
.ls-biz-pricing-head { margin-bottom: 26px; }
.ls-biz-pricing-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 18px;
    background: #e7f1ff;
    color: #135ebc;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.ls-biz-pricing-title {
    justify-content: center;
    margin-bottom: 8px;
    color: #0b1d3a;
}
.ls-biz-pricing-sub {
    color: #5d6b80;
    font-size: 15px;
    margin: 0;
}
.ls-biz-pricing-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
}
.ls-biz-pricing-grid > .ls-biz-plan-card {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(33.333% - 18px);
    flex: 1 1 calc(33.333% - 18px);
    min-width: 230px;
}
.ls-biz-plan-card {
    background: #fff;
    border: 1px solid #dde6f2;
    border-radius: 12px;
    padding: 26px 22px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
.ls-biz-plan-card:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(11, 29, 58, 0.1);
    border-color: #c8d6ea;
}
.ls-biz-plan-popular {
    border-color: #1a73e8;
    box-shadow: 0 8px 22px rgba(26, 115, 232, 0.14);
}
.ls-biz-plan-premium { border-color: #f0a500; }
.ls-biz-popular-badge {
    position: absolute;
    top: -10px;
    right: 14px;
    background: #1a73e8;
    color: #fff;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
}
.ls-biz-plan-head h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #11243d;
}
.ls-biz-plan-head p {
    margin: 5px 0 16px;
    color: #6e7d93;
    font-size: 13px;
}
.ls-biz-plan-price {
    margin-bottom: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2px;
}
.ls-biz-plan-price strong {
    font-size: 34px;
    line-height: 1;
    color: #0b1d3a;
    font-weight: 800;
}
.ls-biz-plan-price span {
    color: #5d6b80;
    font-size: 13px;
}
.ls-biz-plan-features {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}
.ls-biz-plan-features li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    color: #31455f;
    font-size: 13px;
    line-height: 1.5;
}
.ls-biz-plan-features li:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1a73e8;
    position: absolute;
    left: 0;
    top: 7px;
}
.ls-biz-plan-premium .ls-biz-plan-features li:before { background: #f0a500; }
.ls-biz-plan-btn {
    margin-top: auto;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #1a73e8;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 700;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.ls-biz-plan-btn:hover {
    background: #0d5fc9;
    color: #fff;
    text-decoration: none;
}
.ls-biz-plan-premium .ls-biz-plan-btn {
    background: #f0a500;
    color: #000;
}
.ls-biz-plan-premium .ls-biz-plan-btn:hover {
    background: #d48f00;
    color: #000;
}
.ls-biz-pricing-note {
    margin-top: 18px;
    margin-bottom: 0;
    color: #4d6078;
    font-size: 13px;
}

/* â”€â”€ TRUST BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ls-trust-bar {
    background: #fff;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 28px 0;
}
.ls-trust-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}
.ls-trust-grid > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(25% - 20px);
    flex: 1 1 calc(25% - 20px);
    min-width: 180px;
}
.ls-trust-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
}
.ls-trust-ico {
    width: 44px;
    height: 44px;
    background: #f0f7ff;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 18px;
    color: #1a73e8;
}
.ls-trust-text { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
.ls-trust-text strong { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 2px; }
.ls-trust-text span  { font-size: 12px; color: #666; }

/* â”€â”€ SELLER CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ls-seller-cta {
    background: -webkit-linear-gradient(135deg, #0b1d3a 0%, #1a2f5e 100%);
    background: linear-gradient(135deg, #0b1d3a 0%, #1a2f5e 100%);
    padding: 72px 0;
}
.ls-sc-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 48px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.ls-sc-left { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; min-width: 280px; }
.ls-sc-right { -ms-flex-negative: 0; flex-shrink: 0; }
.ls-sc-eyebrow {
    display: inline-block;
    background: rgba(240,165,0,0.18);
    color: #f0a500;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.ls-sc-title { font-size: 38px; font-weight: 800; color: #fff; margin: 0 0 14px; line-height: 1.2; }
.ls-sc-desc  { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 28px; line-height: 1.7; }
.ls-sc-steps { margin-bottom: 32px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 12px; }
.ls-sc-step  { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-size: 14px; }
.ls-sc-stepnum {
    width: 28px; height: 28px;
    background: #f0a500;
    color: #000;
    border-radius: 50%;
    font-weight: 800;
    font-size: 13px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.ls-sc-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.ls-sc-btn-primary {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background: #f0a500;
    color: #000;
    font-weight: 800;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    -webkit-transition: all .25s;
    transition: all .25s;
}
.ls-sc-btn-primary:hover {
    background: #d48f00;
    color: #000;
    text-decoration: none;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240,165,0,0.35);
}
.ls-sc-btn-ghost {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.38);
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    -webkit-transition: all .25s;
    transition: all .25s;
}
.ls-sc-btn-ghost:hover { border-color: #fff; color: #fff; text-decoration: none; }
/* Stat card */
.ls-sc-stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 32px 28px;
    min-width: 260px;
    text-align: center;
}
.ls-sc-big-icon { font-size: 48px; color: rgba(240,165,0,0.6); margin-bottom: 24px; display: block; }
.ls-sc-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.ls-sc-stat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 90px;
}
.ls-sc-stat strong { font-size: 26px; font-weight: 800; color: #fff; display: block; }
.ls-sc-stat span   { font-size: 12px; color: rgba(255,255,255,0.58); }

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991px) {
    .ls-hero-title  { font-size: 36px; }
    .ls-hero-inner  { padding: 56px 0 36px; }
    .ls-product-grid > .ls-product-card { -ms-flex: 1 1 calc(33.333% - 18px); flex: 1 1 calc(33.333% - 18px); max-width: calc(33.333% - 12px); }
    .ls-cat-grid > * { -ms-flex: 1 1 calc(25% - 14px); flex: 1 1 calc(25% - 14px); max-width: calc(25% - 11px); }
    .ls-trust-grid > * { -ms-flex: 1 1 calc(50% - 20px); flex: 1 1 calc(50% - 20px); }
    .ls-sc-inner { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
    .ls-sc-right { width: 100%; }
    .ls-sc-stat-card { min-width: auto; width: 100%; max-width: 400px; margin: 0 auto; }
    .ls-sc-title { font-size: 30px; }
    .ls-biz-pricing-grid > .ls-biz-plan-card { -ms-flex: 1 1 calc(50% - 18px); flex: 1 1 calc(50% - 18px); }
}
@media (max-width: 767px) {
    .ls-hero-inner  { padding: 44px 0 26px; }
    .ls-hero-title  { font-size: 26px; }
    .ls-hero-sub    { font-size: 15px; }
    .ls-hero-searchbox  { margin-bottom: 16px; }
    .ls-hero-searchinput{ padding: 14px 16px; font-size: 14px; }
    .ls-hero-searchbtn  { padding: 0 18px; font-size: 14px; }
    .ls-hstat           { padding: 4px 10px; font-size: 12px; }
    .ls-hstat-sep       { display: none; }
    .ls-product-grid > .ls-product-card { -ms-flex: 1 1 calc(50% - 18px); flex: 1 1 calc(50% - 18px); max-width: calc(50% - 9px); }
    .ls-cat-grid > * { -ms-flex: 1 1 calc(33.333% - 14px); flex: 1 1 calc(33.333% - 14px); max-width: calc(33.333% - 10px); }
    .ls-trust-grid > * { -ms-flex: 1 1 calc(50% - 20px); flex: 1 1 calc(50% - 20px); min-width: 140px; }
    .ls-ms-inner    { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; text-align: center; }
    .ls-ms-left     { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; text-align: center; }
    .ls-section-hd  { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; gap: 8px; }
    .ls-promo-card  { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
    .ls-sc-title    { font-size: 24px; }
    .ls-biz-pricing-grid > .ls-biz-plan-card { -ms-flex: 1 1 100%; flex: 1 1 100%; }
}
@media (max-width: 480px) {
    .ls-product-grid > .ls-product-card { -ms-flex: 1 1 calc(50% - 8px); flex: 1 1 calc(50% - 8px); max-width: calc(50% - 4px); }
    .ls-cat-grid > * { -ms-flex: 1 1 calc(50% - 14px); flex: 1 1 calc(50% - 14px); max-width: calc(50% - 7px); }
    .ls-hero-title  { font-size: 22px; }
    .ls-hero-searchbox { border-radius: 6px; }
    .ls-sc-stats    { gap: 14px; }
    .ls-product-grid { gap: 10px; }
}

/* ======================================================
   PRODUCT LISTING PAGE â€” WORLD CLASS REDESIGN
   ls-pl-* = product listing   |   ls-pf-* = product filters
   ====================================================== */


/* -- PAGE SHELL ---------------------------------------------- */
.ls-pl-page {
    padding-top: 24px;
    padding-bottom: 60px;
    min-height: 70vh;
}
.ls-pf-col { padding-right: 8px; }
.ls-pl-main-col { padding-left: 10px; }

/* -- FILTER SIDEBAR ------------------------------------------ */
.ls-pf-sidebar { }

/* ─── FILTER SIDEBAR PANEL ─────────────────────────────────────────────────── */
.ls-pf-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 76px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.ls-pf-header {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    gap: 8px;
    background: #1a73e8;
    color: #fff;
    font-size: 14px; font-weight: 700;
    padding: 13px 16px;
    letter-spacing: .3px;
}
.ls-pf-header i { font-size: 15px; }

/* Active filter chips */
.ls-pf-chips-wrap {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -ms-flex-wrap: wrap; flex-wrap: wrap;
    gap: 6px; padding: 10px 14px 0;
}
.ls-pf-chip {
    display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    gap: 5px; background: #e8f0fe; color: #1a73e8;
    border: 1px solid #c5d8fc; border-radius: 20px;
    font-size: 11px; font-weight: 600; padding: 3px 8px 3px 10px;
}
.ls-pf-chip-x {
    background: none; border: none; color: #1a73e8;
    cursor: pointer; font-size: 14px; line-height: 1;
    padding: 0 2px; margin-left: 2px; opacity: .7;
}
.ls-pf-chip-x:hover { opacity: 1; }

/* Filter groups */
.ls-pf-group { padding: 12px 16px; border-top: 1px solid #f0f0f0; }
.ls-pf-group-hd {
    font-size: 11px; font-weight: 700; color: #555;
    text-transform: uppercase; letter-spacing: .8px;
    margin: 0 0 10px;
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    gap: 6px;
}
.ls-pf-group-hd i { color: #1a73e8; font-size: 13px; }

/* Custom checkbox */
.ls-pf-check-label {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    gap: 9px; cursor: pointer; color: #333; font-size: 13px;
    margin-bottom: 0; font-weight: 400; padding: 3px 0;
}
.ls-pf-cb { display: none; }
.ls-pf-cb-box {
    width: 17px; height: 17px; border: 2px solid #ccc; border-radius: 4px;
    -ms-flex-negative: 0; flex-shrink: 0; position: relative;
    -webkit-transition: all .2s; transition: all .2s; background: #fff;
}
.ls-pf-cb:checked + .ls-pf-cb-box {
    background: #1a73e8; border-color: #1a73e8;
}
.ls-pf-cb:checked + .ls-pf-cb-box::after {
    content: '';
    position: absolute; top: 1px; left: 4px;
    width: 6px; height: 10px;
    border: 2px solid #fff; border-top: none; border-left: none;
    -webkit-transform: rotate(45deg); transform: rotate(45deg);
}
.ls-pf-cb-text { font-size: 13px; }

/* Price range */
.ls-pf-price-row {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    gap: 6px;
}
.ls-pf-price-in {
    -webkit-box-flex: 1; -ms-flex: 1; flex: 1;
    border: 1px solid #ddd; border-radius: 6px;
    padding: 6px 8px; font-size: 12px; color: #333;
    background: #fafafa; outline: none;
}
.ls-pf-price-in:focus { border-color: #1a73e8; background: #fff; }
.ls-pf-price-sep { color: #aaa; font-size: 13px; }

/* Sidebar featured list */
.ls-pf-feat-list { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 10px; }
.ls-pf-feat-item {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    gap: 10px; text-decoration: none; color: inherit;
    padding: 4px 0; border-bottom: 1px solid #f5f5f5;
}
.ls-pf-feat-item:hover { color: #1a73e8; text-decoration: none; }
.ls-pf-feat-thumb {
    width: 46px; height: 46px; border-radius: 6px;
    overflow: hidden; background: #f5f5f5;
    -ms-flex-negative: 0; flex-shrink: 0; border: 1px solid #eee;
}
.ls-pf-feat-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ls-pf-feat-info { min-width: 0; }
.ls-pf-feat-name {
    font-size: 12px; font-weight: 500; color: #333;
    margin: 0 0 2px; line-height: 1.3;
    overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.ls-pf-feat-price { font-size: 12px; color: #1a73e8; font-weight: 700; }

/* ─── TOOLBAR ───────────────────────────────────────────────────────────────── */
.ls-pl-main-col { }
.ls-pl-toolbar {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
    background: #fff; border-radius: 8px; border: 1px solid #e0e0e0;
    padding: 10px 14px; margin-bottom: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.ls-pl-count { font-size: 13px; color: #666; font-weight: 500; }
.ls-pl-toolbar-right {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    gap: 10px;
}
.ls-pl-sort-wrap {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    gap: 6px;
}
.ls-pl-sort-ico { color: #888; font-size: 14px; }
.ls-pl-sort-select { font-size: 13px; }

/* Bootstrap-select button override */
.ls-sort-btn.btn { background: #f4f6fb !important; border: 1px solid #d8def0 !important; color: #444 !important; border-radius: 6px !important; font-size: 13px !important; padding: 5px 10px !important; box-shadow: none !important; }
.ls-sort-btn.btn:focus, .ls-sort-btn.btn:active { outline: none !important; box-shadow: none !important; }

/* Grid toggle buttons */
.ls-pl-grid-toggle { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 3px; }
.ls-pl-grid-btn {
    width: 32px; height: 32px; border: 1px solid #d0d7e8;
    background: #f4f6fb; border-radius: 6px; cursor: pointer;
    color: #666; font-size: 14px; display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
    -webkit-transition: all .2s; transition: all .2s;
}
.ls-pl-grid-btn:hover, .ls-pl-grid-btn.active {
    background: #1a73e8; border-color: #1a73e8; color: #fff;
}

/* Loading spinner */
.ls-pl-loading {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
    gap: 12px; padding: 40px; color: #888; font-size: 14px;
}
.ls-pl-spinner {
    width: 28px; height: 28px;
    border: 3px solid #e0e0e0; border-top-color: #1a73e8;
    border-radius: 50%;
    -webkit-animation: ls-spin .7s linear infinite;
    animation: ls-spin .7s linear infinite;
}
@keyframes ls-spin { to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }
@-webkit-keyframes ls-spin { to { -webkit-transform: rotate(360deg); } }

/* ─── PRODUCT GRID ──────────────────────────────────────────────────────────── */
.ls-pl-grid-wrap { }
.ls-pl-grid {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -ms-flex-wrap: wrap; flex-wrap: wrap;
    margin: 0 -8px;
}
.ls-pl-card-wrap {
    padding: 8px;
    width: 50%;
    -webkit-box-sizing: border-box; box-sizing: border-box;
}
.ls-2col .ls-pl-card-wrap { width: 50%; }
.ls-3col .ls-pl-card-wrap { width: 33.3333%; }

/* ─── PRODUCT CARD ──────────────────────────────────────────────────────────── */
.ls-pl-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eaeaea;
    overflow: hidden;
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-orient: vertical; -webkit-box-direction: normal;
    -ms-flex-direction: column; flex-direction: column;
    height: 100%;
    -webkit-transition: box-shadow .22s, -webkit-transform .22s;
    transition: box-shadow .22s, transform .22s;
    position: relative;
}
.ls-pl-card:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    border-color: #d0d7e8;
}

/* Promo badge */
.ls-pl-badge {
    position: absolute; top: 10px; left: 10px; z-index: 3;
    background: #e53935; color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: .8px;
    padding: 3px 8px; border-radius: 20px;
    text-transform: uppercase;
}

/* Wishlist button */
.ls-pl-wish {
    position: absolute; top: 10px; right: 10px; z-index: 3;
    background: #fff; border: 1px solid #eee;
    border-radius: 50%; width: 32px; height: 32px;
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
    cursor: pointer; color: #bbb; font-size: 15px;
    -webkit-transition: all .2s; transition: all .2s;
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.ls-pl-wish:hover { color: #e53935; border-color: #e53935; -webkit-transform: scale(1.1); transform: scale(1.1); }

/* Image */
.ls-pl-img-wrap {
    display: block;
    position: relative;
    padding-top: 75%;  /* 4:3 ratio */
    overflow: hidden;
    background: #f8f8f8;
}
.ls-pl-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 8px;
    -webkit-transition: -webkit-transform .35s ease;
    transition: transform .35s ease;
}
.ls-pl-card:hover .ls-pl-img { -webkit-transform: scale(1.06); transform: scale(1.06); }

/* Hover overlay */
.ls-pl-hover-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(26,115,232,.88);
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
    padding: 10px;
    opacity: 0;
    -webkit-transition: opacity .25s; transition: opacity .25s;
}
.ls-pl-card:hover .ls-pl-hover-overlay { opacity: 1; }
.ls-pl-overlay-btn {
    background: none; border: 2px solid #fff; color: #fff;
    border-radius: 20px; padding: 5px 16px; font-size: 12px; font-weight: 600;
    cursor: pointer; letter-spacing: .3px;
    -webkit-transition: all .2s; transition: all .2s;
}
.ls-pl-overlay-btn:hover { background: #fff; color: #1a73e8; }

/* Card body */
.ls-pl-body {
    padding: 12px 12px 14px;
    -webkit-box-flex: 1; -ms-flex: 1; flex: 1;
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-orient: vertical; -webkit-box-direction: normal;
    -ms-flex-direction: column; flex-direction: column;
    gap: 8px;
}
.ls-pl-name {
    font-size: 13px; font-weight: 600; color: #222;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    -webkit-transition: color .2s; transition: color .2s;
    min-height: 36px;
}
.ls-pl-name:hover { color: #1a73e8; text-decoration: none; }

/* Price */
.ls-pl-price-row {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    gap: 8px; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start;
}
.ls-pl-price { font-size: 17px; font-weight: 700; color: #1a73e8; }
.ls-pl-price-was { font-size: 13px; color: #aaa; }

/* Qty + cart row */
.ls-pl-actions {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    gap: 8px; margin-top: auto;
}
.ls-pl-qty {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    border: 1px solid #ddd; border-radius: 6px; overflow: hidden;
    background: #fafafa;
}
.ls-pl-qty-btn {
    background: none; border: none; width: 30px; height: 32px;
    cursor: pointer; color: #555; font-size: 13px;
    -webkit-transition: background .15s; transition: background .15s;
}
.ls-pl-qty-btn:hover { background: #e8f0fe; color: #1a73e8; }
.ls-pl-qty-input {
    width: 34px; height: 32px; border: none; border-left: 1px solid #ddd; border-right: 1px solid #ddd;
    text-align: center; font-size: 13px; font-weight: 600; background: #fff;
    -moz-appearance: textfield; outline: none; color: #333;
    box-shadow: none !important;
}
.ls-pl-qty-input::-webkit-inner-spin-button,
.ls-pl-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.ls-pl-cart-btn {
    -webkit-box-flex: 1; -ms-flex: 1; flex: 1;
    background: #1a73e8; color: #fff; border: none;
    border-radius: 6px; height: 34px;
    font-size: 12px; font-weight: 600; cursor: pointer;
    -webkit-transition: background .2s; transition: background .2s;
    padding: 0 8px; white-space: nowrap;
}
.ls-pl-cart-btn:hover { background: #1557b0; }

/* Empty state */
.ls-pl-empty {
    padding: 60px 20px; text-align: center; color: #aaa; width: 100%;
}
.ls-pl-empty i { display: block; margin-bottom: 12px; }
.ls-pl-empty p { font-size: 15px; }

/* ─── PAGINATION ────────────────────────────────────────────────────────────── */
.ls-pl-pagi-row {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
    margin-top: 24px; padding-top: 16px;
    border-top: 1px solid #eee; flex-wrap: wrap; gap: 10px;
}
.ls-pl-pagi-count { font-size: 13px; color: #888; }
.ls-pl-pagi { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }
.ls-pl-pagi .pagination { margin: 0; }
.ls-pl-pagi .pagination > li > a,
.ls-pl-pagi .pagination > li > span {
    border-radius: 6px !important; margin: 0 2px;
    border: 1px solid #dde3f0 !important;
    color: #555; font-size: 13px; font-weight: 500;
    padding: 5px 10px;
}
.ls-pl-pagi .pagination > .active > a,
.ls-pl-pagi .pagination > .active > span,
.ls-pl-pagi .pagination > .active > a:hover,
.ls-pl-pagi .pagination > .active > span:hover {
    background: #1a73e8 !important; border-color: #1a73e8 !important; color: #fff !important;
}
.ls-pl-pagi .pagination > li > a:hover {
    background: #e8f0fe !important; color: #1a73e8 !important; border-color: #c5d8fc !important;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .ls-3col .ls-pl-card-wrap { width: 50%; }
}
@media (max-width: 767px) {
    .ls-pl-toolbar { -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 8px; }
    .ls-pl-count { width: 100%; }
    .ls-2col .ls-pl-card-wrap,
    .ls-3col .ls-pl-card-wrap { width: 50%; }
}
@media (max-width: 480px) {
    .ls-2col .ls-pl-card-wrap,
    .ls-3col .ls-pl-card-wrap { width: 50%; }
    .ls-pl-price { font-size: 14px; }
    .ls-pl-cart-btn { font-size: 11px; }
}
