@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
    --lc-navy: #0a1628;
    --lc-navy-soft: #1a2d47;
    --lc-emerald: #00c853;
    --lc-emerald-dark: #00a844;
    --lc-mint: #69f0ae;
    --lc-amber: #ffb300;
    --lc-coral: #ff6b4a;
    --lc-sky: #00b4d8;
    --lc-surface: #ffffff;
    --lc-muted: #5a6a7e;
    --lc-border: #e8eef5;
    --lc-bg: #f4f7fb;
    --lc-gradient: linear-gradient(135deg, #0a1628 0%, #0d3b2e 45%, #00c853 100%);
    --lc-gradient-btn: linear-gradient(135deg, #00c853 0%, #00a844 50%, #00897b 100%);
    --lc-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
    --lc-shadow-lg: 0 24px 64px rgba(10, 22, 40, 0.14);
    --lc-shadow-glow: 0 0 40px rgba(0, 200, 83, 0.25);
    --lc-radius: 18px;
    --lc-radius-lg: 28px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; }

body.lc-home {
    font-family: 'DM Sans', 'Manrope', sans-serif;
    background: var(--lc-bg);
    color: var(--lc-navy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, .lc-section-title, .lc-brand-name, .lc-hero-title,
.lc-product-name, .lc-shop-name, .lc-group-name, .lc-price-new, .lc-winner-name,
.lc-stat-card h4, .lc-cta h2, .lc-feature h5, .lc-footer h5 {
    font-family: 'Manrope', 'DM Sans', sans-serif;
    letter-spacing: 0.015em;
    font-synthesis: none;
}

/* ═══════════ PAGE LOADER ═══════════ */
.lc-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--lc-navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.lc-loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.lc-loader-logo {
    width: 72px;
    height: 72px;
    background: var(--lc-gradient-btn);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    animation: lcPulse 1.2s ease-in-out infinite;
    box-shadow: var(--lc-shadow-glow);
}
.lc-loader-bar {
    width: 120px;
    height: 3px;
    background: rgba(255,255,255,.15);
    border-radius: 4px;
    margin-top: 1.5rem;
    overflow: hidden;
}
.lc-loader-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--lc-emerald);
    border-radius: 4px;
    animation: lcLoadBar 1.2s var(--ease-out) forwards;
}
@keyframes lcPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
@keyframes lcLoadBar {
    to { width: 100%; }
}

/* ═══════════ AMBIENT BG ═══════════ */
.lc-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.lc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: lcFloat 18s ease-in-out infinite;
}
.lc-orb-1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(0,200,83,.4), transparent 70%);
    top: -10%; right: -5%;
    animation-delay: 0s;
}
.lc-orb-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(0,180,216,.3), transparent 70%);
    bottom: 20%; left: -8%;
    animation-delay: -6s;
}
.lc-orb-3 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255,179,0,.25), transparent 70%);
    top: 50%; right: 20%;
    animation-delay: -12s;
}
@keyframes lcFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ═══════════ NAVBAR ═══════════ */
.lc-nav {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(232, 238, 245, 0.6);
    padding: 0.65rem 0;
    transition: all 0.4s var(--ease-out);
    z-index: 1000;
}
.lc-nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 30px rgba(10, 22, 40, 0.08);
    padding: 0.4rem 0;
}
.lc-brand-icon {
    width: 46px;
    height: 46px;
    background: var(--lc-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    transition: transform 0.4s var(--ease-spring);
    box-shadow: 0 4px 16px rgba(0,200,83,.3);
}
.navbar-brand:hover .lc-brand-icon {
    transform: rotate(-8deg) scale(1.08);
}
.lc-brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--lc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    line-height: 1.25;
}
.lc-brand-tag {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    color: var(--lc-muted);
    font-weight: 600;
    text-transform: uppercase;
}
.lc-nav .nav-link {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--lc-navy-soft) !important;
    padding: 0.45rem 0.9rem !important;
    border-radius: 10px;
    transition: all 0.3s var(--ease-out);
    position: relative;
}
.lc-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--lc-emerald);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform: translateX(-50%);
}
.lc-nav .nav-link:hover::after,
.lc-nav .nav-link.active::after {
    width: 60%;
}
.lc-nav .nav-link:hover,
.lc-nav .nav-link.active {
    color: var(--lc-emerald) !important;
    background: rgba(0, 200, 83, 0.06);
}
.lc-cart-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--lc-bg);
    border: 1.5px solid var(--lc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lc-navy);
    transition: all 0.35s var(--ease-spring);
    position: relative;
}
.lc-cart-btn:hover {
    background: var(--lc-emerald);
    color: #fff;
    border-color: var(--lc-emerald);
    transform: scale(1.1);
    box-shadow: var(--lc-shadow-glow);
}
#cartBadge {
    transition: transform 0.3s var(--ease-spring);
}
#cartBadge.pop {
    animation: lcBadgePop 0.5s var(--ease-spring);
}
@keyframes lcBadgePop {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.5); }
    100% { transform: translate(-50%, -50%) scale(1); }
}
.lc-btn-outline {
    border: 2px solid var(--lc-navy);
    color: var(--lc-navy);
    font-weight: 700;
    border-radius: 50px;
    padding: 0.45rem 1.3rem;
    font-size: 0.85rem;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.lc-btn-outline:hover {
    background: var(--lc-navy);
    color: #fff;
    transform: translateY(-2px);
}
.lc-btn-primary {
    background: var(--lc-gradient-btn);
    color: #fff;
    border: none;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.5rem 1.4rem;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.35);
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.lc-btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    transition: left 0.5s;
}
.lc-btn-primary:hover::before { left: 100%; }
.lc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.5);
    color: #fff;
}

/* ═══════════ TICKER ═══════════ */
.lc-ticker-wrap {
    background: linear-gradient(90deg, #0a1628, #0d3b2e, #0a1628);
    overflow: hidden;
    position: relative;
}
.lc-ticker-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0a1628 0%, transparent 8%, transparent 92%, #0a1628 100%);
    z-index: 2;
    pointer-events: none;
}
.lc-ticker-badge {
    background: linear-gradient(135deg, var(--lc-amber), #ff8f00);
    color: var(--lc-navy);
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.9rem;
    border-radius: 8px;
    white-space: nowrap;
    z-index: 3;
    animation: lcBlink 2s ease-in-out infinite;
    box-shadow: 0 0 16px rgba(255,179,0,.4);
}
@keyframes lcBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.lc-ticker-track {
    display: flex;
    animation: lcTicker 30s linear infinite;
    white-space: nowrap;
}
.lc-ticker-track:hover { animation-play-state: paused; }
.lc-ticker-text {
    color: rgba(255,255,255,0.88);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.7rem 0;
}
@keyframes lcTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════ HERO — full banner visible, no crop ═══════════ */
.lc-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a3d2a 0%, #0d5c3d 40%, #128a4f 100%);
}
.lc-hero .carousel-inner {
    background: transparent;
}
body.lc-home .lc-hero .carousel-item {
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden;
    background: linear-gradient(135deg, #0a3d2a 0%, #0d5c3d 40%, #128a4f 100%);
}
/* Banner image: show FULL design (text-in-image) — no crop */
body.lc-home .lc-hero .carousel-item img,
body.lc-home .lc-hero .carousel-item a img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block;
    transform: none !important;
    animation: none !important;
    filter: none !important;
    margin: 0 auto;
}
/* No dark overlay — banner already designed */
.lc-hero .carousel-item::after {
    display: none !important;
}
/* Captions only for fallback (no DB banner) */
.lc-hero .carousel-caption {
    background: none !important;
    backdrop-filter: none !important;
    text-align: left;
    left: 6%;
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    max-width: 520px;
    padding: 0 !important;
    z-index: 2;
}
.lc-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0,200,83,.2);
    border: 1px solid rgba(0,200,83,.4);
    color: var(--lc-mint);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.lc-hero .carousel-caption h2,
.lc-hero-title {
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.lc-hero .carousel-caption p {
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    color: rgba(255,255,255,.9);
    margin-bottom: 1.25rem;
    line-height: 1.55;
}
.lc-hero .carousel-indicators {
    bottom: 0.75rem;
    z-index: 3;
    margin-bottom: 0;
}
.lc-hero .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.7);
    background: transparent;
    opacity: 0.55;
    transition: all 0.35s var(--ease-out);
    margin: 0 3px;
}
.lc-hero .carousel-indicators .active {
    background: #fff;
    border-color: #fff;
    opacity: 1;
    width: 24px;
    border-radius: 8px;
}
.lc-hero .carousel-control-prev,
.lc-hero .carousel-control-next {
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    transition: all 0.3s var(--ease-out);
    z-index: 3;
}
.lc-hero .carousel-control-prev { left: 12px; }
.lc-hero .carousel-control-next { right: 12px; }
.lc-hero .carousel-control-prev:hover,
.lc-hero .carousel-control-next:hover {
    background: var(--lc-emerald);
    border-color: var(--lc-emerald);
    opacity: 1;
}
.lc-scroll-hint { display: none !important; }

/* ═══════════ STATS — below banner, no overlap hide ═══════════ */
.lc-stats {
    margin-top: 0;
    padding-top: 1.25rem;
    position: relative;
    z-index: 10;
}
.lc-stat-card {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(16px);
    border-radius: var(--lc-radius);
    padding: 1.35rem 1.5rem;
    box-shadow: var(--lc-shadow-lg);
    border: 1px solid rgba(255,255,255,.8);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s var(--ease-out);
    cursor: default;
}
.lc-stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,200,83,.15);
    border-color: rgba(0,200,83,.3);
}
.lc-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-spring);
}
.lc-stat-card:hover .lc-stat-icon {
    transform: scale(1.15) rotate(-5deg);
}
.lc-stat-icon.green { background: linear-gradient(135deg, rgba(0,200,83,.15), rgba(0,200,83,.05)); color: var(--lc-emerald); }
.lc-stat-icon.blue  { background: linear-gradient(135deg, rgba(0,180,216,.15), rgba(0,180,216,.05)); color: var(--lc-sky); }
.lc-stat-icon.amber { background: linear-gradient(135deg, rgba(255,179,0,.15), rgba(255,179,0,.05)); color: var(--lc-amber); }
.lc-stat-icon.navy  { background: linear-gradient(135deg, rgba(10,22,40,.1), rgba(10,22,40,.03)); color: var(--lc-navy); }
.lc-stat-card h4 {
    font-family: 'Manrope', 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.lc-stat-card span {
    font-size: 0.78rem;
    color: var(--lc-muted);
    font-weight: 500;
}

/* ═══════════ SECTIONS ═══════════ */
.lc-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}
.lc-section-alt {
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.7) 20%, rgba(255,255,255,.7) 80%, transparent 100%);
}
.lc-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.lc-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lc-emerald);
    margin-bottom: 0.4rem;
}
.lc-section-label i {
    animation: lcSpinSlow 4s linear infinite;
}
@keyframes lcSpinSlow {
    to { transform: rotate(360deg); }
}
.lc-section-title {
    font-weight: 700;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    color: var(--lc-navy);
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.35;
    word-spacing: 0.05em;
}
.lc-section-sub {
    color: var(--lc-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    line-height: 1.55;
    letter-spacing: 0.01em;
    font-weight: 400;
}
.lc-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--lc-navy);
    text-decoration: none;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    border: 1.5px solid var(--lc-border);
    background: #fff;
    letter-spacing: 0.02em;
    line-height: 1.3;
    transition: all 0.35s var(--ease-out);
}
.lc-view-all i {
    transition: transform 0.3s var(--ease-out);
}
.lc-view-all:hover {
    background: var(--lc-navy);
    color: #fff;
    border-color: var(--lc-navy);
}
.lc-view-all:hover i {
    transform: translateX(4px);
}

/* ═══════════ PRODUCT CARDS ═══════════ */
.lc-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.75rem;
}
.lc-product-card {
    background: var(--lc-surface);
    border-radius: var(--lc-radius-lg);
    overflow: hidden;
    border: 1px solid var(--lc-border);
    transition: all 0.45s var(--ease-out);
    position: relative;
}
.lc-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 2;
}
.lc-product-card:hover::before {
    background: linear-gradient(135deg, var(--lc-emerald), var(--lc-sky));
    opacity: 1;
}
.lc-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--lc-shadow-lg);
}
.lc-product-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    height: auto;
    background: #eef2f6;
    padding: 0;
    overflow: hidden;
    display: block;
}
.lc-product-img::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,.5) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: none;
    z-index: 2;
    pointer-events: none;
}
.lc-product-card:hover .lc-product-img::after {
    animation: lcShine 0.8s var(--ease-out);
}
@keyframes lcShine {
    to { transform: translateX(100%); }
}
.lc-product-img img {
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    max-height: none;
    object-fit: cover !important;
    object-position: center;
    display: block;
    transition: transform 0.5s var(--ease-out);
    position: absolute;
    inset: 0;
    z-index: 1;
}
.lc-product-card:hover .lc-product-img img {
    transform: scale(1.04);
}
.lc-badge-discount {
    position: absolute;
    top: 14px; left: 14px;
    background: linear-gradient(135deg, var(--lc-coral), #ff3d00);
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    border-radius: 10px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(255,61,0,.3);
}
.lc-badge-rp {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--lc-gradient-btn);
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    border-radius: 10px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,200,83,.3);
}
.lc-product-body { padding: 1.35rem; }
.lc-product-name {
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--lc-navy);
    margin-bottom: 0.55rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
    letter-spacing: 0.01em;
}
.lc-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}
.lc-price-old {
    color: var(--lc-muted);
    text-decoration: line-through;
    font-size: 0.85rem;
}
.lc-price-new {
    font-family: 'Manrope', 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--lc-emerald-dark);
    letter-spacing: 0.02em;
    line-height: 1.3;
}
.lc-meta-tags {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-bottom: 1.1rem;
}
.lc-meta-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.28rem 0.65rem;
    border-radius: 8px;
    background: var(--lc-bg);
    color: var(--lc-muted);
}
.lc-meta-tag.stock {
    color: var(--lc-emerald-dark);
    background: rgba(0,200,83,.1);
}
.lc-btn-cart {
    width: 100%;
    background: var(--lc-navy);
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 0.8rem;
    border-radius: 14px;
    transition: all 0.35s var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}
.lc-btn-cart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lc-gradient-btn);
    opacity: 0;
    transition: opacity 0.35s;
}
.lc-btn-cart span, .lc-btn-cart i { position: relative; z-index: 1; }
.lc-btn-cart:hover::before { opacity: 1; }
.lc-btn-cart:hover {
    color: #fff;
    transform: scale(1.02);
    box-shadow: var(--lc-shadow-glow);
}

/* ═══════════ SHOP CARDS ═══════════ */
.lc-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.75rem;
}
.lc-shop-card {
    background: var(--lc-surface);
    border-radius: var(--lc-radius-lg);
    overflow: hidden;
    border: 1px solid var(--lc-border);
    transition: all 0.45s var(--ease-out);
}
.lc-shop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lc-shadow-lg);
}
.lc-shop-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    position: relative;
    overflow: hidden;
    background: #eef2f6;
    padding: 0;
    display: block;
}
.lc-shop-img img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
    position: absolute;
    inset: 0;
    transition: transform 0.5s var(--ease-out);
}
.lc-shop-card:hover .lc-shop-img img {
    transform: scale(1.04);
}
.lc-shop-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,.35) 0%, transparent 45%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 1;
}
.lc-shop-card:hover .lc-shop-img::after { opacity: 1; }
.lc-shop-rp {
    position: absolute;
    top: 14px; right: 14px;
    background: linear-gradient(135deg, var(--lc-sky), #0077b6);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(0,180,216,.35);
}
.lc-shop-body { padding: 1.35rem; }
.lc-shop-cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lc-emerald);
}
.lc-shop-name {
    font-family: 'Manrope', 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0.3rem 0 0.5rem;
    color: var(--lc-navy);
}
.lc-shop-addr {
    font-size: 0.85rem;
    color: var(--lc-muted);
    margin-bottom: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lc-location-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.lc-location-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.28rem 0.65rem;
    border-radius: 8px;
    background: var(--lc-navy);
    color: #fff;
}

/* ═══════════ GROUP CARDS ═══════════ */
.lc-group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.75rem;
}
.lc-group-card {
    background: var(--lc-surface);
    border-radius: var(--lc-radius-lg);
    overflow: hidden;
    border: 1px solid var(--lc-border);
    transition: all 0.45s var(--ease-out);
}
.lc-group-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,180,216,.15);
    border-color: rgba(0,180,216,.3);
}
.lc-group-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    overflow: hidden;
    position: relative;
    background: #eef2f6;
    padding: 0;
    display: block;
}
.lc-group-img img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
    position: absolute;
    inset: 0;
    transition: transform 0.5s var(--ease-out);
}
.lc-group-card:hover .lc-group-img img {
    transform: scale(1.04);
}
.lc-group-body {
    padding: 1.35rem;
    text-align: center;
}
.lc-group-name {
    font-family: 'Manrope', 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
    color: var(--lc-navy);
}
.lc-group-rp {
    display: inline-block;
    background: var(--lc-gradient-btn);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.45rem 1.35rem;
    border-radius: 50px;
    margin-bottom: 1.1rem;
    box-shadow: 0 4px 16px rgba(0,200,83,.3);
}
.lc-progress-wrap { margin-bottom: 1.1rem; }
.lc-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lc-muted);
    margin-bottom: 0.4rem;
}
.lc-progress-bar {
    height: 8px;
    background: var(--lc-bg);
    border-radius: 10px;
    overflow: hidden;
}
.lc-progress-fill {
    height: 100%;
    background: var(--lc-gradient);
    border-radius: 10px;
    width: 0;
    transition: width 1.2s var(--ease-out);
}
.lc-btn-join {
    width: 100%;
    background: linear-gradient(135deg, var(--lc-sky), #0077b6);
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 0.8rem;
    border-radius: 14px;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.lc-btn-join::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
    transition: left 0.5s;
}
.lc-btn-join:hover::before { left: 100%; }
.lc-btn-join:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(0,180,216,.4);
    color: #fff;
}

/* ═══════════ WINNER CARDS ═══════════ */
.lc-winner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}
.lc-winner-card {
    background: linear-gradient(160deg, #fff9e6 0%, #fff 55%);
    border: 1px solid #ffe082;
    border-radius: var(--lc-radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all 0.45s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.lc-winner-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 100px; height: 100px;
    background: rgba(255,179,0,.12);
    border-radius: 50%;
    transition: transform 0.5s;
}
.lc-winner-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255,179,0,.2);
}
.lc-winner-card:hover::before {
    transform: scale(1.5);
}
.lc-winner-avatar {
    position: relative;
    width: 86px;
    height: 86px;
    margin: 0 auto 1.1rem;
}
.lc-winner-avatar img {
    width: 86px; height: 86px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
    transition: transform 0.4s var(--ease-spring);
}
.lc-winner-card:hover .lc-winner-avatar img {
    transform: scale(1.08);
}
.lc-winner-medal {
    position: absolute;
    bottom: 0; right: 0;
    width: 30px; height: 30px;
    background: linear-gradient(135deg, var(--lc-amber), #ff8f00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--lc-navy);
    border: 2.5px solid #fff;
    animation: lcPulse 2s ease-in-out infinite;
}
.lc-winner-name {
    font-family: 'Manrope', 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--lc-navy);
    margin-bottom: 0.15rem;
}
.lc-winner-id {
    font-size: 0.75rem;
    color: var(--lc-muted);
    margin-bottom: 0.85rem;
}
.lc-winner-prize {
    background: rgba(255,61,0,.06);
    color: var(--lc-coral);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.55rem 0.8rem;
    border-radius: 12px;
    margin-bottom: 0.55rem;
    border: 1px solid rgba(255,61,0,.12);
}
.lc-winner-group {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--lc-emerald-dark);
}
.lc-winner-date {
    font-size: 0.7rem;
    color: var(--lc-muted);
    margin-top: 0.3rem;
}

/* ═══════════ CTA ═══════════ */
.lc-cta {
    background: var(--lc-gradient);
    border-radius: var(--lc-radius-lg);
    padding: clamp(2.5rem, 6vw, 4rem);
    position: relative;
    overflow: hidden;
}
.lc-cta::before, .lc-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}
.lc-cta::before {
    top: -40%; right: -5%;
    width: 450px; height: 450px;
    animation: lcFloat 15s ease-in-out infinite;
}
.lc-cta::after {
    bottom: -30%; left: 15%;
    width: 280px; height: 280px;
    animation: lcFloat 12s ease-in-out infinite reverse;
}
.lc-cta h2 {
    font-family: 'Manrope', 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 0.6rem;
}
.lc-cta p {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    max-width: 480px;
}
.lc-cta-btn {
    background: #fff;
    color: var(--lc-navy);
    font-weight: 700;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    border: none;
    transition: all 0.35s var(--ease-out);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.lc-cta-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
    color: var(--lc-navy);
}
.lc-cta-btn i {
    transition: transform 0.3s;
}
.lc-cta-btn:hover i {
    transform: translateX(5px);
}

/* ═══════════ FEATURES ═══════════ */
.lc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
}
.lc-feature {
    background: var(--lc-surface);
    border-radius: var(--lc-radius);
    padding: 2.25rem 1.75rem;
    text-align: center;
    border: 1px solid var(--lc-border);
    transition: all 0.4s var(--ease-out);
}
.lc-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--lc-shadow);
    border-color: rgba(0,200,83,.25);
}
.lc-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.35rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: transform 0.4s var(--ease-spring);
}
.lc-feature:hover .lc-feature-icon {
    transform: scale(1.12) rotate(-6deg);
}
.lc-feature-icon.deliver { background: linear-gradient(135deg, rgba(0,200,83,.15), rgba(0,200,83,.05)); color: var(--lc-emerald); }
.lc-feature-icon.secure  { background: linear-gradient(135deg, rgba(0,180,216,.15), rgba(0,180,216,.05)); color: var(--lc-sky); }
.lc-feature-icon.network { background: linear-gradient(135deg, rgba(255,179,0,.15), rgba(255,179,0,.05)); color: var(--lc-amber); }
.lc-feature h5 {
    font-family: 'Manrope', 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--lc-navy);
}
.lc-feature p {
    font-size: 0.875rem;
    color: var(--lc-muted);
    margin: 0;
    line-height: 1.65;
}

/* ═══════════ FOOTER ═══════════ */
.lc-footer {
    background: var(--lc-navy);
    color: rgba(255,255,255,.65);
    padding-top: 4.5rem;
    position: relative;
    z-index: 1;
}
.lc-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--lc-gradient-btn);
}
.lc-footer h5 {
    font-family: 'Manrope', 'DM Sans', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.35rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.lc-footer h5::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 3px;
    background: var(--lc-emerald);
    border-radius: 2px;
}
.lc-footer a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.25s;
}
.lc-footer a:hover {
    color: var(--lc-emerald);
    padding-left: 4px;
}
.lc-social {
    width: 42px; height: 42px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 0.5rem;
    transition: all 0.35s var(--ease-spring);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.08);
}
.lc-social:hover {
    background: var(--lc-emerald);
    color: #fff;
    transform: translateY(-4px) scale(1.08);
    border-color: var(--lc-emerald);
    padding-left: 0 !important;
}

/* ═══════════ EMPTY ═══════════ */
.lc-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3.5rem 1rem;
    color: var(--lc-muted);
}
.lc-empty i {
    font-size: 2.8rem;
    opacity: 0.25;
    margin-bottom: 1rem;
    display: block;
}

/* ═══════════ SCROLL ANIMATIONS ═══════════ */
.lc-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.lc-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.lc-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.lc-reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.lc-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.lc-reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}
.lc-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.lc-stagger > *:nth-child(2) { transition-delay: 0.12s; }
.lc-stagger > *:nth-child(3) { transition-delay: 0.19s; }
.lc-stagger > *:nth-child(4) { transition-delay: 0.26s; }
.lc-stagger > *:nth-child(5) { transition-delay: 0.33s; }
.lc-stagger > *:nth-child(6) { transition-delay: 0.4s; }
.lc-stagger > *:nth-child(7) { transition-delay: 0.47s; }
.lc-stagger > *:nth-child(8) { transition-delay: 0.54s; }

/* ═══════════ BACK TO TOP ═══════════ */
.lc-back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--lc-gradient-btn);
    color: #fff;
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--lc-shadow-glow);
}
.lc-back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lc-back-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,200,83,.5);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 991.98px) {
    .lc-hero .carousel-control-prev,
    .lc-hero .carousel-control-next {
        width: 36px;
        height: 36px;
        opacity: 0.9;
    }
    .lc-hero .carousel-control-prev { left: 6px; }
    .lc-hero .carousel-control-next { right: 6px; }
    .lc-hero .carousel-indicators {
        bottom: 0.4rem;
    }
}

@media (max-width: 768px) {
    .lc-hero {
        /* Keep full banner readable on mobile */
    }
    .lc-hero .carousel-item img {
        width: 100%;
        height: auto !important;
        object-fit: contain !important;
    }
    .lc-hero .carousel-caption {
        left: 4%;
        right: 4%;
        max-width: none;
        padding: 0.5rem !important;
    }
    .lc-hero .carousel-caption h2 {
        font-size: 1.35rem;
    }
    .lc-stats {
        margin-top: 0;
        padding-top: 1rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .lc-stat-card {
        padding: 0.9rem;
    }
    .lc-stat-icon {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
        border-radius: 12px;
    }
    .lc-stat-card h4 {
        font-size: 1.15rem;
    }
    .lc-section {
        padding: 2.75rem 0;
    }
@media (max-width: 768px) {
    .lc-shop-img img,
    .lc-group-img img,
    .lc-product-img img {
        max-height: none !important;
        object-fit: cover !important;
    }
}
    .lc-back-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 42px;
        height: 42px;
    }
    .lc-orb {
        opacity: 0.12;
    }
}

@media (max-width: 480px) {
    .lc-hero .carousel-control-prev,
    .lc-hero .carousel-control-next {
        display: none;
    }
}
