/* ============================================================
   DEALS CRACK — Premium landing page
   Self-contained design system. .ld-* prefix avoids collisions.
   ============================================================ */

:root {
    --ld-primary:        #2563eb;
    --ld-primary-dark:   #1d4ed8;
    --ld-primary-light:  #3b82f6;
    --ld-primary-50:     #eff6ff;
    --ld-primary-100:    #dbeafe;

    --ld-accent:         #f59e0b;
    --ld-accent-dark:    #d97706;

    --ld-text:           #0b1729;
    --ld-text-soft:      #475569;
    --ld-muted:          #94a3b8;
    --ld-faint:          #cbd5e1;

    --ld-bg:             #ffffff;
    --ld-bg-soft:        #f8fafc;
    --ld-bg-tint:        #f1f5f9;
    --ld-border:         #e6ebf2;

    --ld-red:            #ef4444;
    --ld-rose:           #f43f5e;
    --ld-violet:         #8b5cf6;
    --ld-green:          #10b981;

    --ld-grad-blue:   linear-gradient(135deg, #3b82f6, #1d4ed8);
    --ld-grad-rose:   linear-gradient(135deg, #fb7185, #be123c);
    --ld-grad-violet: linear-gradient(135deg, #a78bfa, #6d28d9);
    --ld-grad-amber:  linear-gradient(135deg, #fbbf24, #d97706);
    --ld-grad-mint:   linear-gradient(135deg, #34d399, #047857);
    --ld-grad-cyan:   linear-gradient(135deg, #22d3ee, #0e7490);

    --ld-shadow-sm:   0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
    --ld-shadow:      0 4px 12px rgba(15, 23, 42, 0.06), 0 12px 28px rgba(15, 23, 42, 0.06);
    --ld-shadow-lg:   0 20px 50px rgba(15, 23, 42, 0.12);
    --ld-shadow-pop:  0 24px 60px rgba(37, 99, 235, 0.28);

    --ld-radius-sm: 10px;
    --ld-radius:    16px;
    --ld-radius-lg: 22px;
    --ld-radius-xl: 28px;
}

* { box-sizing: border-box; }

.ld-page {
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ld-text);
    background: var(--ld-bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

.ld-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.ld-section {
    padding: 70px 0;
    position: relative;
}

.ld-section--tight { padding: 50px 0; }

.ld-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 18px;
}

.ld-section-head--center {
    text-align: center;
    flex-direction: column;
    margin-bottom: 44px;
}

.ld-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ld-primary);
    background: var(--ld-primary-50);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.ld-section-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    color: var(--ld-text);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ld-section-title .ld-icon-bolt {
    color: var(--ld-accent);
    font-size: 24px;
}

.ld-section-subtitle {
    color: var(--ld-text-soft);
    font-size: 15px;
    margin: 10px 0 0;
    max-width: 560px;
}

.ld-section-head--center .ld-section-subtitle { margin-left: auto; margin-right: auto; }

.ld-view-all {
    color: var(--ld-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.ld-view-all:hover { color: var(--ld-primary-dark); gap: 10px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.ld-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
}

.ld-btn-primary {
    background: var(--ld-grad-blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.36);
}

.ld-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.45);
}

.ld-btn-outline {
    background: #fff;
    color: var(--ld-text);
    border: 1.5px solid var(--ld-border);
}

.ld-btn-outline:hover {
    border-color: var(--ld-primary);
    color: var(--ld-primary);
    transform: translateY(-2px);
}

.ld-btn-outline .ld-play {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--ld-grad-blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.ld-btn-yellow {
    background: var(--ld-grad-amber);
    color: #fff;
    box-shadow: 0 10px 22px rgba(245, 158, 11, 0.45);
}

.ld-btn-yellow:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245, 158, 11, 0.55); }

.ld-btn-light {
    background: #fff;
    color: var(--ld-primary);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.ld-btn-light:hover { color: var(--ld-primary-dark); transform: translateY(-2px); }

/* ============================================================
   TOP NOTIFICATION BAR
   ============================================================ */
.ld-topbar {
    background: linear-gradient(90deg, #1d4ed8, #2563eb 50%, #3b82f6);
    color: #fff;
    font-size: 13px;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.ld-topbar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(255,255,255,0.18), transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(255,255,255,0.12), transparent 40%);
    pointer-events: none;
}

.ld-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.ld-topbar-email,
.ld-topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.ld-topbar-left { display: flex; gap: 22px; align-items: center; }

.ld-topbar-center {
    font-weight: 500;
    text-align: center;
    flex: 1;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.ld-topbar-center .pill {
    background: var(--ld-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ld-topbar-links {
    display: flex;
    gap: 22px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ld-topbar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.92;
    transition: opacity 0.2s;
    font-weight: 500;
}
.ld-topbar-links a:hover { opacity: 1; }

@media (max-width: 900px) {
    .ld-topbar-center, .ld-topbar-phone { display: none; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.ld-navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    padding: 16px 0;
    box-shadow: 0 1px 0 var(--ld-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ld-nav-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ld-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.ld-logo-mark {
    width: 46px;
    height: 46px;
    background: var(--ld-grad-blue);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.4);
    position: relative;
}

.ld-logo-mark::after {
    content: '';
    position: absolute;
    top: -4px; right: -4px;
    width: 12px; height: 12px;
    background: var(--ld-accent);
    border: 2px solid #fff;
    border-radius: 50%;
}

.ld-logo-text { line-height: 1.05; }
.ld-logo-text .lt-1 {
    font-weight: 800;
    color: var(--ld-text);
    font-size: 17px;
    letter-spacing: 0.4px;
    display: block;
}
.ld-logo-text .lt-2 {
    color: var(--ld-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    display: block;
}

.ld-nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0 0 0 14px;
}

.ld-nav-menu a {
    color: var(--ld-text-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s;
}

.ld-nav-menu a.active,
.ld-nav-menu a:hover { color: var(--ld-primary); }

.ld-nav-menu a.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 3px;
    border-radius: 3px;
    background: var(--ld-primary);
}

.ld-search {
    margin-left: auto;
    position: relative;
    flex: 1;
    max-width: 340px;
}

.ld-search input {
    width: 100%;
    border: 1.5px solid var(--ld-border);
    border-radius: 999px;
    padding: 12px 18px 12px 44px;
    font-size: 14px;
    background: var(--ld-bg-soft);
    transition: all 0.2s;
    font-family: inherit;
}

.ld-search input:focus {
    outline: none;
    border-color: var(--ld-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.ld-search .ld-search-icon {
    position: absolute;
    top: 50%; left: 16px;
    transform: translateY(-50%);
    color: var(--ld-muted);
    pointer-events: none;
}

.ld-nav-actions { display: flex; gap: 8px; align-items: center; }

.ld-nav-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--ld-border);
    background: #fff;
    color: var(--ld-text-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    position: relative;
}

.ld-nav-icon:hover { color: var(--ld-red); border-color: var(--ld-red); transform: translateY(-2px); }

.ld-nav-icon .dot {
    position: absolute;
    top: 6px; right: 8px;
    width: 8px; height: 8px;
    background: var(--ld-red);
    border-radius: 50%;
    border: 2px solid #fff;
}

.ld-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--ld-text);
    cursor: pointer;
}

@media (max-width: 991px) {
    .ld-nav-menu { display: none; }
    .ld-search { max-width: none; }
    .ld-nav-toggle { display: block; }
}

/* ============================================================
   HERO — premium gradient mesh + floating product cards
   ============================================================ */
.ld-hero {
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(60% 60% at 15% 20%, rgba(59, 130, 246, 0.10), transparent 60%),
        radial-gradient(50% 50% at 85% 80%, rgba(245, 158, 11, 0.10), transparent 60%),
        var(--ld-bg);
}

.ld-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.6;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.ld-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ld-hero-left { max-width: 560px; }

.ld-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--ld-border);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ld-primary);
    margin-bottom: 22px;
    box-shadow: var(--ld-shadow-sm);
}

.ld-hero-pill .dot {
    width: 6px; height: 6px;
    background: var(--ld-green);
    border-radius: 50%;
    animation: ld-pulse 1.6s infinite;
}

.ld-hero-left h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 20px;
    color: var(--ld-text);
    letter-spacing: -0.025em;
}

.ld-hero-left h1 .ld-hl-blue {
    background: var(--ld-grad-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.ld-hero-left h1 .ld-hl-blue::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 5px;
    height: 12px;
    background: rgba(245, 158, 11, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.ld-hero-left p {
    color: var(--ld-text-soft);
    font-size: 17px;
    margin: 0 0 32px;
    max-width: 480px;
    line-height: 1.65;
}

.ld-hero-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.ld-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--ld-border);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.3;
    box-shadow: var(--ld-shadow-sm);
}

.ld-hero-feature .ico {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--ld-primary-50);
    color: var(--ld-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
}

.ld-hero-feature strong { display: block; color: var(--ld-text); font-size: 12px; font-weight: 700; }
.ld-hero-feature span { display: block; color: var(--ld-muted); font-size: 10.5px; }

.ld-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.ld-hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--ld-text-soft);
    font-size: 13px;
}

.ld-hero-trust .avatars { display: flex; }
.ld-hero-trust .avatars span {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 11px;
    margin-left: -10px;
}
.ld-hero-trust .avatars span:first-child { margin-left: 0; }
.ld-hero-trust .avatars .a1 { background: var(--ld-grad-rose); }
.ld-hero-trust .avatars .a2 { background: var(--ld-grad-violet); }
.ld-hero-trust .avatars .a3 { background: var(--ld-grad-amber); }
.ld-hero-trust .avatars .a4 { background: var(--ld-grad-mint); color: #fff; }

.ld-hero-trust .meta strong { display: block; color: var(--ld-text); }
.ld-hero-trust .meta .stars { color: var(--ld-accent); font-size: 12px; }

/* Hero right: phone mockup with deal app UI + floating cards */
.ld-hero-right {
    position: relative;
    height: 600px;
    perspective: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phone mockup */
.ld-phone {
    position: relative;
    width: 290px;
    height: 580px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 48px;
    padding: 14px;
    box-shadow:
        0 30px 60px rgba(15, 23, 42, 0.25),
        0 0 0 2px rgba(15, 23, 42, 0.06);
    z-index: 2;
    transform: rotate(-3deg);
    animation: ld-phone-tilt 8s ease-in-out infinite;
}

@keyframes ld-phone-tilt {
    0%, 100% { transform: rotate(-3deg); }
    50%      { transform: rotate(-1deg); }
}

.ld-phone::before {
    content: '';
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 110px; height: 28px;
    background: #0f172a;
    border-radius: 14px;
    z-index: 3;
}

.ld-phone-screen {
    width: 100%; height: 100%;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    border-radius: 36px;
    overflow: hidden;
    position: relative;
}

.ld-phone-status {
    padding: 18px 22px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--ld-text);
}

.ld-phone-status .icons { display: flex; gap: 5px; font-size: 11px; color: var(--ld-text-soft); }

.ld-phone-header {
    padding: 20px 18px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ld-phone-header .brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ld-phone-header .brand-mark {
    width: 30px; height: 30px;
    background: var(--ld-grad-blue);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 13px;
}

.ld-phone-header .brand-name {
    font-size: 12px;
    font-weight: 800;
    color: var(--ld-text);
    line-height: 1.1;
}
.ld-phone-header .brand-name span { display: block; color: var(--ld-primary); font-size: 9px; letter-spacing: 1.5px; }

.ld-phone-header .menu {
    width: 32px; height: 32px;
    background: var(--ld-bg-soft);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ld-text-soft);
    font-size: 12px;
}

.ld-phone-banner {
    background:
        radial-gradient(circle at 80% 30%, rgba(245,158,11,0.4), transparent 60%),
        var(--ld-grad-blue);
    margin: 0 14px;
    border-radius: 16px;
    padding: 16px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}

.ld-phone-banner .pb-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.ld-phone-banner h6 { font-size: 15px; font-weight: 800; margin: 0 0 4px; line-height: 1.15; }
.ld-phone-banner p  { font-size: 10px; margin: 0; color: rgba(255,255,255,0.85); }

.ld-phone-banner .pb-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    color: var(--ld-primary);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    margin-top: 8px;
}

.ld-phone-section-title {
    padding: 0 18px;
    font-size: 11px;
    font-weight: 800;
    color: var(--ld-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ld-phone-section-title a { color: var(--ld-primary); font-size: 9px; }

.ld-phone-deals {
    padding: 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ld-phone-deal {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: 12px;
    padding: 9px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.ld-phone-deal .img {
    width: 36px; height: 36px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.ld-phone-deal .img.icon-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.ld-phone-deal .info { flex: 1; min-width: 0; }
.ld-phone-deal .info h6 {
    font-size: 9.5px;
    font-weight: 700;
    color: var(--ld-text);
    margin: 0 0 2px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.ld-phone-deal .price .now { color: var(--ld-red); font-weight: 800; font-size: 10px; }
.ld-phone-deal .price .was { color: var(--ld-muted); text-decoration: line-through; font-size: 8px; margin-left: 3px; }
.ld-phone-deal .badge {
    background: var(--ld-grad-amber);
    color: #fff;
    padding: 3px 6px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 800;
}

.ld-phone-nav {
    position: absolute;
    bottom: 14px;
    left: 14px; right: 14px;
    background: #fff;
    border-radius: 18px;
    padding: 9px 14px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.ld-phone-nav .nav-i {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    color: var(--ld-muted);
    font-size: 13px;
    border-radius: 9px;
}
.ld-phone-nav .nav-i.active {
    background: var(--ld-grad-blue);
    color: #fff;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.35);
}

.ld-hero-blob {
    position: absolute;
    inset: 50px;
    background:
        radial-gradient(circle at 30% 30%, #c7d6ff, transparent 55%),
        radial-gradient(circle at 70% 70%, #ffe1b5, transparent 55%),
        linear-gradient(135deg, #dbeafe, #ede9fe);
    border-radius: 50%;
    filter: blur(2px);
    z-index: 0;
}

.ld-hero-orb {
    position: absolute;
    background: var(--ld-grad-blue);
    border-radius: 50%;
    opacity: 0.18;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.ld-hero-orb.o1 { width: 220px; height: 220px; top: -30px; left: -30px; background: var(--ld-grad-rose); }
.ld-hero-orb.o2 { width: 180px; height: 180px; bottom: -30px; right: -20px; background: var(--ld-grad-amber); }

.ld-hcard {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--ld-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 2;
    animation: ld-float 6s ease-in-out infinite;
}

.ld-hcard .img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
}

.ld-hcard h6 {
    font-size: 12px;
    font-weight: 700;
    color: var(--ld-text);
    margin: 0 0 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ld-hcard .price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}
.ld-hcard .price .now { color: var(--ld-red); font-weight: 800; }
.ld-hcard .price .was { color: var(--ld-muted); text-decoration: line-through; font-size: 11px; }

.ld-hcard.h1 {
    top: 20px; right: 30px;
    width: 200px;
    transform: rotate(-6deg);
    animation-delay: -1s;
}
.ld-hcard.h2 {
    top: 200px; left: 0;
    width: 180px;
    transform: rotate(4deg);
    animation-delay: -3s;
}
.ld-hcard.h3 {
    bottom: 30px; right: 60px;
    width: 210px;
    transform: rotate(-3deg);
    animation-delay: -5s;
}

.ld-hcard.h1 .img { background: var(--ld-grad-rose); }
.ld-hcard.h2 .img { background: var(--ld-grad-amber); }
.ld-hcard.h3 .img { background: var(--ld-grad-violet); }

.ld-hbadge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--ld-shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    font-size: 12px;
    font-weight: 600;
}

.ld-hbadge .ico {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 14px;
}

.ld-hbadge strong { display: block; color: var(--ld-text); font-size: 13px; }
.ld-hbadge span  { color: var(--ld-muted); font-size: 11px; }

.ld-hbadge.b1 { top: 80px; right: 20px; animation: ld-float 6s ease-in-out infinite; animation-delay: -2s; }
.ld-hbadge.b1 .ico { background: var(--ld-grad-mint); }

.ld-hbadge.b2 { bottom: 80px; left: 0; animation: ld-float 6s ease-in-out infinite; animation-delay: -4s; }
.ld-hbadge.b2 .ico { background: var(--ld-grad-blue); }

.ld-hdisc-orb {
    position: absolute;
    top: 40px; left: 30px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--ld-grad-amber);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.45);
    z-index: 4;
    animation: ld-bob 4s ease-in-out infinite;
    line-height: 1;
    transform: rotate(-10deg);
}

.ld-hdisc-orb span:first-child { font-size: 11px; opacity: 0.9; }
.ld-hdisc-orb span:last-child  { font-size: 26px; margin-top: 4px; }

@keyframes ld-float {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50%      { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}

@keyframes ld-bob {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}

.ld-hcard.h1 { --r: -6deg; }
.ld-hcard.h2 { --r: 4deg; }
.ld-hcard.h3 { --r: -3deg; }

@keyframes ld-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.35); }
}

@media (max-width: 1100px) {
    .ld-hero-left h1 { font-size: 44px; }
}

@media (max-width: 991px) {
    .ld-hero-grid { grid-template-columns: 1fr; }
    .ld-hero-right { height: 440px; max-width: 480px; margin: 0 auto; }
    .ld-hero-left h1 { font-size: 38px; }
}

@media (max-width: 540px) {
    .ld-hero { padding: 40px 0 60px; }
    .ld-hero-left h1 { font-size: 32px; }
    .ld-hero-right { height: 540px; transform: scale(0.85); transform-origin: center top; }
    .ld-hbadge.b1 { top: 60px; right: 0; padding: 8px 12px; }
    .ld-hbadge.b2 { bottom: 70px; left: 0; padding: 8px 12px; }
    .ld-hdisc-orb { width: 76px; height: 76px; top: 20px; left: 10px; }
    .ld-hdisc-orb span:last-child { font-size: 18px; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.ld-stats-strip {
    background: linear-gradient(135deg, var(--ld-primary) 0%, var(--ld-primary-dark) 100%);
    color: #fff;
    padding: 32px;
    border-radius: var(--ld-radius-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25);
    margin-top: -40px;
}

.ld-stats-strip::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 260px; height: 260px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}
.ld-stats-strip::after {
    content: '';
    position: absolute;
    bottom: -100px; left: 30%;
    width: 320px; height: 320px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.ld-stat {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ld-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px; top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.ld-stat .ico {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.ld-stat h3 {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.ld-stat p {
    margin: 4px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .ld-stats-strip { grid-template-columns: repeat(2, 1fr); margin-top: 0; padding: 26px; }
    .ld-stat:nth-child(2)::after { display: none; }
}

/* ============================================================
   DEAL OF THE DAY
   ============================================================ */
.ld-deal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.ld-deal-card {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
    padding: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    overflow: hidden;
    position: relative;
}

.ld-deal-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ld-shadow-lg);
    border-color: transparent;
    color: inherit;
}

.ld-deal-ribbon {
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 2;
    background: var(--ld-red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
}

.ld-deal-img {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ld-deal-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
}

.ld-deal-card:hover .ld-deal-img img { transform: scale(1.08); }

.ld-deal-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ld-text);
    margin: 0 0 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
}

.ld-deal-sub {
    font-size: 12px;
    color: var(--ld-muted);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ld-deal-sub i { color: var(--ld-accent); }

.ld-deal-priceline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ld-deal-priceline .now {
    font-size: 18px;
    font-weight: 800;
    color: var(--ld-primary);
    letter-spacing: -0.02em;
}

.ld-deal-priceline .was {
    font-size: 13px;
    color: var(--ld-muted);
    text-decoration: line-through;
}

.ld-deal-priceline .flat {
    margin-left: auto;
    background: rgba(245, 158, 11, 0.14);
    color: var(--ld-accent-dark);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
}

@media (max-width: 1200px) { .ld-deal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991px) { .ld-deal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ld-deal-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SHOP BY CATEGORY — image-style cards with gradient backgrounds
   ============================================================ */
.ld-cat-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
}

.ld-cat-tile {
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s;
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: 18px;
    padding: 20px 12px 16px;
    position: relative;
    overflow: hidden;
}

.ld-cat-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cat-grad, var(--ld-grad-blue));
    opacity: 0;
    transition: opacity 0.25s;
}

.ld-cat-tile:hover {
    transform: translateY(-6px);
    color: inherit;
    border-color: transparent;
    box-shadow: var(--ld-shadow-lg);
}

.ld-cat-tile:hover::before { opacity: 0.07; }

.ld-cat-circle {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    background: var(--cat-grad, var(--ld-grad-blue));
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
    position: relative;
    z-index: 1;
}

.ld-cat-tile h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--ld-text);
    margin: 0 0 3px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.ld-cat-tile .cnt {
    font-size: 11px;
    color: var(--ld-muted);
    position: relative;
    z-index: 1;
}

@media (max-width: 1100px) { .ld-cat-row { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px)  { .ld-cat-row { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   BRAND MARQUEE
   ============================================================ */
.ld-marquee {
    overflow: hidden;
    background: var(--ld-bg-soft);
    border-top: 1px solid var(--ld-border);
    border-bottom: 1px solid var(--ld-border);
    padding: 26px 0;
    position: relative;
}

.ld-marquee::before, .ld-marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.ld-marquee::before { left: 0;  background: linear-gradient(90deg, var(--ld-bg-soft), transparent); }
.ld-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--ld-bg-soft), transparent); }

.ld-marquee-track {
    display: flex;
    gap: 64px;
    animation: ld-scroll 35s linear infinite;
    width: max-content;
}

.ld-marquee-track span {
    color: var(--ld-text-soft);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.01em;
    opacity: 0.55;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.ld-marquee-track span::after {
    content: '★';
    color: var(--ld-accent);
    font-size: 14px;
    opacity: 0.7;
}

@keyframes ld-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   TOP PICKS
   ============================================================ */
.ld-tabs {
    display: inline-flex;
    background: var(--ld-bg-soft);
    border: 1px solid var(--ld-border);
    border-radius: 999px;
    padding: 5px;
    gap: 4px;
    margin: 0 auto;
}

.ld-tab {
    border: none;
    background: transparent;
    color: var(--ld-text-soft);
    font-weight: 600;
    font-size: 13px;
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.ld-tab.active {
    background: var(--ld-grad-blue);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.32);
}

.ld-pick-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.ld-pick-card {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.ld-pick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ld-shadow-lg);
    border-color: transparent;
}

.ld-pick-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--ld-grad-amber);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 9px;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.35);
}

.ld-pick-img {
    aspect-ratio: 1;
    background: var(--ld-bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.ld-pick-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.45s;
}

.ld-pick-card:hover .ld-pick-img img { transform: scale(1.08); }

.ld-pick-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ld-pick-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ld-text);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
    text-decoration: none;
}

.ld-pick-price {
    display: flex;
    align-items: center;
    gap: 6px;
}
.ld-pick-price .now { color: var(--ld-text); font-weight: 800; font-size: 15px; letter-spacing: -0.01em; }
.ld-pick-price .was { color: var(--ld-muted); text-decoration: line-through; font-size: 11px; }

.ld-pick-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--ld-muted);
}

.ld-pick-rating .stars { color: var(--ld-accent); letter-spacing: 1px; }

.ld-pick-actions {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.ld-pick-deal {
    flex: 1;
    background: var(--ld-text);
    color: #fff;
    text-align: center;
    padding: 9px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: background 0.2s;
}

.ld-pick-deal:hover { background: var(--ld-primary); color: #fff; }

.ld-pick-views {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ld-muted);
}

.ld-pick-views i { color: var(--ld-primary); font-size: 11px; }

@media (max-width: 1199px) { .ld-pick-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px)  { .ld-pick-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   FEATURED BANNER (mid-page promo)
   ============================================================ */
.ld-feat-banner {
    background:
        radial-gradient(circle at 80% 20%, rgba(245,158,11,0.25), transparent 50%),
        linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
    border-radius: var(--ld-radius-xl);
    padding: 50px 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.ld-feat-banner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 320px; height: 320px;
    background: rgba(245, 158, 11, 0.18);
    border-radius: 50%;
    filter: blur(40px);
}

.ld-feat-banner h3 {
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.ld-feat-banner h3 .ld-hl {
    color: var(--ld-accent);
}

.ld-feat-banner p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
    font-size: 15px;
    max-width: 480px;
}

.ld-feat-banner .ld-feat-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ld-feat-coupon {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px dashed rgba(255, 255, 255, 0.4);
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 16px;
}

.ld-feat-icon {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ld-feat-icon .gift-emoji {
    font-size: 200px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    line-height: 1;
}

@media (max-width: 900px) {
    .ld-feat-banner { grid-template-columns: 1fr; padding: 36px 28px; text-align: center; }
    .ld-feat-banner h3 { font-size: 28px; }
    .ld-feat-banner .ld-feat-actions { justify-content: center; }
    .ld-feat-icon .gift-emoji { font-size: 110px; }
}

/* ============================================================
   TOP STORES
   ============================================================ */
.ld-store-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.ld-store-card {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
    padding: 22px 16px 18px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.ld-store-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ld-grad-blue);
    opacity: 0;
    transition: opacity 0.3s;
}

.ld-store-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    color: inherit;
    box-shadow: var(--ld-shadow);
}

.ld-store-logo {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.ld-store-logo img { max-height: 42px; max-width: 100%; object-fit: contain; }

.ld-store-discount {
    background: rgba(239, 68, 68, 0.1);
    color: var(--ld-red);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    display: inline-block;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) { .ld-store-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .ld-store-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   HOW IT WORKS — 3 steps
   ============================================================ */
.ld-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
}

.ld-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, var(--ld-primary-100), transparent 50%, var(--ld-primary-100));
    z-index: 0;
}

.ld-step {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
    padding: 30px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.25s;
}

.ld-step:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: var(--ld-shadow-lg);
}

.ld-step-num {
    width: 96px; height: 96px;
    margin: 0 auto 18px;
    background: #fff;
    border: 4px solid var(--ld-primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ld-step-num .ico {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--ld-grad-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.ld-step-num .badge {
    position: absolute;
    top: -8px; right: -4px;
    width: 32px; height: 32px;
    background: var(--ld-accent);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 14px;
    border: 3px solid #fff;
    box-shadow: 0 6px 12px rgba(245, 158, 11, 0.4);
}

.ld-step h4 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--ld-text);
}

.ld-step p {
    color: var(--ld-text-soft);
    font-size: 13.5px;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 800px) {
    .ld-steps { grid-template-columns: 1fr; }
    .ld-steps::before { display: none; }
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.ld-why {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    border-radius: var(--ld-radius-xl);
    padding: 60px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    overflow: hidden;
    position: relative;
}

.ld-why::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 280px; height: 280px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}
.ld-why::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -80px;
    width: 360px; height: 360px;
    background: rgba(245, 158, 11, 0.18);
    border-radius: 50%;
    filter: blur(30px);
}

.ld-why-left { position: relative; z-index: 1; }

.ld-why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.ld-why-left h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.ld-why-left p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.7;
    max-width: 440px;
}

.ld-why-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ld-why-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ld-why-bullets .ico {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.ld-why-bullets strong { display: block; font-weight: 700; margin-bottom: 2px; font-size: 13px; }
.ld-why-bullets span   { color: rgba(255, 255, 255, 0.8); font-size: 11.5px; line-height: 1.4; }

.ld-why-right {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.ld-why-stat {
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.25s;
}

.ld-why-stat:hover { transform: translateY(-4px); }

.ld-why-stat .ld-stat-ico {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--ld-grad-amber);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.35);
}

.ld-why-stat:nth-child(2) .ld-stat-ico { background: var(--ld-grad-rose); box-shadow: 0 8px 16px rgba(244, 63, 94, 0.35); }
.ld-why-stat:nth-child(3) .ld-stat-ico { background: var(--ld-grad-mint); box-shadow: 0 8px 16px rgba(16, 185, 129, 0.35); }
.ld-why-stat:nth-child(4) .ld-stat-ico { background: var(--ld-grad-violet); box-shadow: 0 8px 16px rgba(139, 92, 246, 0.35); }

.ld-why-stat h3 {
    font-size: 28px;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.ld-why-stat p { margin: 5px 0 0; font-size: 13px; color: rgba(255, 255, 255, 0.85); }

@media (max-width: 991px) {
    .ld-why { grid-template-columns: 1fr; padding: 40px 28px; gap: 30px; }
    .ld-why-left h2 { font-size: 28px; }
    .ld-why-bullets { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ld-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.ld-test-card {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
    padding: 30px 26px;
    position: relative;
    transition: all 0.3s;
}

.ld-test-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ld-shadow-lg);
    border-color: transparent;
}

.ld-test-card::before {
    content: '"';
    position: absolute;
    top: 14px;
    right: 24px;
    font-size: 100px;
    color: var(--ld-primary-50);
    font-family: serif;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.ld-test-stars { color: var(--ld-accent); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }

.ld-test-quote {
    color: var(--ld-text);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 22px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.ld-test-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--ld-border);
}

.ld-test-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px;
}

.ld-test-name strong { font-size: 14px; color: var(--ld-text); display: block; }
.ld-test-name span   { font-size: 12px; color: var(--ld-muted); }

.ld-test-verified {
    margin-left: auto;
    background: rgba(16, 185, 129, 0.1);
    color: var(--ld-green);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 900px) { .ld-test-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NEWSLETTER — premium with gift incentive
   ============================================================ */
.ld-newsletter {
    background:
        radial-gradient(circle at 80% 20%, rgba(245,158,11,0.3), transparent 50%),
        linear-gradient(135deg, var(--ld-primary), var(--ld-primary-dark));
    border-radius: var(--ld-radius-xl);
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ld-newsletter::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 380px; height: 380px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}
.ld-newsletter::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 300px; height: 300px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 50%;
    filter: blur(40px);
}

.ld-news-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.ld-news-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.ld-news-eyebrow i { color: var(--ld-accent); }

.ld-newsletter h3 {
    font-size: 38px;
    font-weight: 900;
    margin: 0 0 12px;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.ld-newsletter h3 .ld-hl { color: var(--ld-accent); }

.ld-newsletter > .ld-news-inner > p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    margin: 0 0 28px;
    line-height: 1.6;
}

.ld-news-form {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 14px;
    padding: 6px;
    max-width: 480px;
    margin: 0 auto 22px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.ld-news-form input {
    flex: 1;
    border: none;
    padding: 13px 18px;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    color: var(--ld-text);
}

.ld-news-form button {
    background: var(--ld-grad-amber);
    color: #fff;
    border: none;
    padding: 13px 24px;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
}

.ld-news-form button:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(245, 158, 11, 0.45); }

.ld-news-perks {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
}

.ld-news-perks span { display: inline-flex; align-items: center; gap: 6px; }
.ld-news-perks i { color: var(--ld-accent); }

@media (max-width: 600px) {
    .ld-newsletter { padding: 40px 24px; }
    .ld-newsletter h3 { font-size: 26px; }
    .ld-news-form { flex-direction: column; padding: 8px; gap: 8px; }
    .ld-news-form input, .ld-news-form button { width: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.ld-footer {
    background: linear-gradient(180deg, #0b1729 0%, #050c19 100%);
    color: #cbd5e1;
    padding: 70px 0 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.ld-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ld-primary), transparent);
}

.ld-footer-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 50px;
}

.ld-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ld-trust-item .ico {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.15);
    color: var(--ld-primary-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ld-trust-item strong { color: #fff; display: block; font-size: 14px; }
.ld-trust-item span   { color: #94a3b8; font-size: 12px; }

.ld-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
}

.ld-footer-brand .ld-logo { margin-bottom: 18px; }
.ld-footer-brand .ld-logo-text .lt-1 { color: #fff; }
.ld-footer-brand .ld-logo-text .lt-2 { color: var(--ld-primary-light); }

.ld-footer-brand p {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.75;
    margin: 0 0 22px;
    max-width: 340px;
}

.ld-social {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ld-social a {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 15px;
}

.ld-social a:hover {
    background: var(--ld-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.45);
}

.ld-footer h5 {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin: 0 0 22px;
}

.ld-footer ul { list-style: none; padding: 0; margin: 0; }
.ld-footer ul li { margin-bottom: 12px; }

.ld-footer ul a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ld-footer ul a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--ld-primary-light);
    transition: width 0.25s;
}

.ld-footer ul a:hover { color: #fff; }
.ld-footer ul a:hover::before { width: 12px; }

.ld-footer-contact-btn {
    background: var(--ld-grad-blue);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    margin-top: 4px;
    transition: all 0.2s;
}
.ld-footer-contact-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4); }
.ld-footer-contact-btn::before { display: none; }

.ld-footer-email,
.ld-footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 13.5px;
    margin-bottom: 14px;
}

.ld-footer-email i, .ld-footer-phone i {
    width: 32px; height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ld-primary-light);
}

.ld-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.ld-footer-copy { color: #64748b; font-size: 12px; margin: 0; }

.ld-footer-pay {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 12px;
    flex-wrap: wrap;
}

.ld-footer-pay .pay-chip {
    height: 26px;
    padding: 0 8px;
    border-radius: 5px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: var(--ld-text);
}

.ld-footer-pay .pay-chip.visa  { color: #1a1f71; }
.ld-footer-pay .pay-chip.mc    { background: linear-gradient(90deg, #eb001b 50%, #f79e1b 50%); color: transparent; }
.ld-footer-pay .pay-chip.amex  { color: #2e77bb; }
.ld-footer-pay .pay-chip.upi   { background: #097969; color: #fff; }
.ld-footer-pay .pay-chip.rupay { color: #0f8a44; }

@media (max-width: 991px) {
    .ld-footer-trust { grid-template-columns: repeat(2, 1fr); }
    .ld-footer-grid  { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .ld-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
    .ld-footer-trust { grid-template-columns: 1fr; }
    .ld-footer-grid  { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL REVEAL UTILITY
   ============================================================ */
/* Reveal-on-scroll disabled — caused widgets to appear slowly while scrolling.
   Sections are visible immediately. `.is-in` left as a no-op for back-compat. */
.ld-reveal,
.ld-reveal.is-in {
    opacity: 1;
    transform: none;
    transition: none;
}

/* Skip animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ld-reveal { transition: none; opacity: 1; transform: none; }
    .ld-hcard, .ld-hdisc-orb { animation: none; }
    .ld-marquee-track { animation-duration: 60s; }
}

/* ============================================================
   INNER-PAGE HEADER (gradient hero used by all non-home pages)
   ============================================================ */
.ld-page-header {
    background:
        radial-gradient(60% 60% at 20% 30%, rgba(59, 130, 246, 0.16), transparent 60%),
        radial-gradient(50% 50% at 80% 70%, rgba(245, 158, 11, 0.10), transparent 60%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--ld-border);
}

.ld-ph-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.ld-ph-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
    opacity: 0.5;
}
.ld-ph-glow-1 { top: -100px; left: -80px;  width: 360px; height: 360px; background: rgba(59, 130, 246, 0.25); }
.ld-ph-glow-2 { bottom: -100px; right: -80px; width: 320px; height: 320px; background: rgba(245, 158, 11, 0.18); }

.ld-ph-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.ld-crumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 12.5px;
    color: var(--ld-text-soft);
    margin-bottom: 22px;
    box-shadow: var(--ld-shadow-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.ld-crumbs a {
    color: var(--ld-text-soft);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ld-crumbs a:hover { color: var(--ld-primary); }
.ld-crumbs .current { color: var(--ld-primary); font-weight: 700; }
.ld-crumbs .sep { color: var(--ld-faint); font-size: 9px; }

.ld-ph-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ld-primary-50);
    color: var(--ld-primary);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 16px;
}

.ld-ph-title {
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 16px;
    color: var(--ld-text);
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.ld-ph-title .ld-hl {
    background: var(--ld-grad-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ld-ph-sub {
    color: var(--ld-text-soft);
    font-size: 17px;
    margin: 0;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .ld-page-header { padding: 40px 0 50px; }
    .ld-ph-title { font-size: 32px; }
    .ld-ph-sub { font-size: 15px; }
}

/* ============================================================
   PROSE / DOCUMENT (privacy, terms, about copy)
   ============================================================ */
.ld-doc {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius-lg);
    padding: 50px;
    box-shadow: var(--ld-shadow-sm);
    max-width: 920px;
    margin: 0 auto;
}

.ld-doc h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--ld-text);
    margin: 36px 0 14px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ld-doc h2::before {
    content: '';
    width: 4px;
    height: 22px;
    background: var(--ld-grad-blue);
    border-radius: 2px;
    flex-shrink: 0;
}

.ld-doc h2:first-child { margin-top: 0; }

.ld-doc h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--ld-text);
    margin: 26px 0 10px;
}

.ld-doc p {
    color: var(--ld-text-soft);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 16px;
}

.ld-doc ul, .ld-doc ol {
    color: var(--ld-text-soft);
    font-size: 15px;
    line-height: 1.8;
    padding-left: 22px;
    margin: 0 0 16px;
}
.ld-doc li { margin-bottom: 6px; }
.ld-doc a { color: var(--ld-primary); text-decoration: none; font-weight: 600; }
.ld-doc a:hover { text-decoration: underline; }
.ld-doc strong { color: var(--ld-text); font-weight: 700; }

.ld-doc-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ld-muted);
    font-size: 13px;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--ld-border);
}

.ld-doc-meta .pill {
    background: var(--ld-primary-50);
    color: var(--ld-primary);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.ld-toc {
    background: var(--ld-bg-soft);
    border-radius: var(--ld-radius);
    padding: 22px 26px;
    margin: 0 0 32px;
}

.ld-toc h4 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--ld-text-soft);
    margin: 0 0 12px;
}

.ld-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 30px;
}

.ld-toc ol li {
    padding: 6px 0;
    border-bottom: 1px dashed var(--ld-border);
    counter-increment: toc;
    break-inside: avoid;
}

.ld-toc ol li:last-child { border-bottom: none; }

.ld-toc ol li::before {
    content: counter(toc, decimal-leading-zero) ". ";
    color: var(--ld-primary);
    font-weight: 700;
    font-size: 12px;
    margin-right: 6px;
}

.ld-toc a {
    color: var(--ld-text-soft);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}
.ld-toc a:hover { color: var(--ld-primary); }

@media (max-width: 768px) {
    .ld-doc { padding: 30px 22px; }
    .ld-toc ol { columns: 1; }
}

/* ============================================================
   ABOUT — value cards + mission split
   ============================================================ */
.ld-about-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ld-about-copy h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 16px;
    color: var(--ld-text);
    letter-spacing: -0.02em;
}

.ld-about-copy p {
    color: var(--ld-text-soft);
    font-size: 15.5px;
    line-height: 1.75;
    margin: 0 0 16px;
}

.ld-about-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}

.ld-about-stat {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
    padding: 18px 20px;
}
.ld-about-stat h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--ld-primary);
    margin: 0;
    letter-spacing: -0.02em;
}
.ld-about-stat p { font-size: 13px; color: var(--ld-text-soft); margin: 6px 0 0; }

.ld-about-visual {
    position: relative;
    height: 480px;
}

.ld-about-visual .av-shape {
    position: absolute;
    background: var(--ld-grad-blue);
    border-radius: var(--ld-radius-xl);
    box-shadow: var(--ld-shadow-lg);
}

.ld-about-visual .av-1 {
    top: 0; left: 0;
    width: 60%; height: 55%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 50%),
        var(--ld-grad-blue);
}

.ld-about-visual .av-2 {
    bottom: 0; right: 0;
    width: 50%; height: 40%;
    background:
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.2), transparent 50%),
        var(--ld-grad-amber);
}

.ld-about-visual .av-3 {
    bottom: 30%; left: 35%;
    width: 35%; height: 35%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 50%),
        var(--ld-grad-rose);
}

.ld-about-visual .av-emoji {
    position: absolute;
    font-size: 70px;
    line-height: 1;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.2));
    z-index: 2;
}
.ld-about-visual .av-emoji.e1 { top: 12%;  left: 18%; }
.ld-about-visual .av-emoji.e2 { bottom: 10%; right: 18%; }
.ld-about-visual .av-emoji.e3 { top: 48%; left: 48%; font-size: 50px; }

.ld-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ld-value-card {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s;
}

.ld-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ld-shadow-lg);
    border-color: transparent;
}

.ld-value-ico {
    width: 64px; height: 64px;
    border-radius: 18px;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.12);
}

.ld-value-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--ld-text);
}

.ld-value-card p {
    font-size: 13.5px;
    color: var(--ld-text-soft);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .ld-about-split { grid-template-columns: 1fr; }
    .ld-about-visual { height: 360px; }
    .ld-values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CONTACT (info side + form side)
   ============================================================ */
.ld-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

.ld-contact-info-card {
    background:
        radial-gradient(circle at 80% 20%, rgba(245,158,11,0.25), transparent 50%),
        linear-gradient(135deg, var(--ld-primary), var(--ld-primary-dark));
    color: #fff;
    border-radius: var(--ld-radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}

.ld-contact-info-card::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.ld-contact-info-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}
.ld-contact-info-card > p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 30px;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.ld-ci-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 1;
}
.ld-ci-item:last-of-type { border-bottom: none; }

.ld-ci-item .ico {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ld-ci-item strong { display: block; font-size: 13px; font-weight: 700; }
.ld-ci-item span   { font-size: 14px; color: rgba(255, 255, 255, 0.92); }

.ld-ci-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}
.ld-ci-social a {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}
.ld-ci-social a:hover { background: var(--ld-accent); transform: translateY(-2px); }

.ld-form {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius-lg);
    padding: 40px;
    box-shadow: var(--ld-shadow-sm);
}

.ld-form h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--ld-text);
    letter-spacing: -0.02em;
}

.ld-form > p {
    color: var(--ld-text-soft);
    font-size: 14px;
    margin: 0 0 28px;
}

.ld-field { margin-bottom: 18px; }

.ld-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--ld-text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.ld-field input,
.ld-field textarea,
.ld-field select {
    width: 100%;
    background: var(--ld-bg-soft);
    border: 1.5px solid var(--ld-border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14.5px;
    color: var(--ld-text);
    font-family: inherit;
    transition: all 0.2s;
}

.ld-field input:focus,
.ld-field textarea:focus,
.ld-field select:focus {
    outline: none;
    background: #fff;
    border-color: var(--ld-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.ld-field textarea { resize: vertical; min-height: 130px; }

.ld-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ld-form-flash {
    background: rgba(16, 185, 129, 0.1);
    color: var(--ld-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ld-form-flash.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--ld-red);
    border-color: rgba(239, 68, 68, 0.3);
}

@media (max-width: 900px) {
    .ld-contact-grid { grid-template-columns: 1fr; }
    .ld-form { padding: 28px 22px; }
    .ld-field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.ld-faq {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ld-faq-item {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.ld-faq-item[open] { box-shadow: var(--ld-shadow); border-color: transparent; }

.ld-faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    color: var(--ld-text);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

.ld-faq-item summary::-webkit-details-marker { display: none; }

.ld-faq-item summary::after {
    content: '+';
    font-size: 22px;
    color: var(--ld-primary);
    transition: transform 0.25s;
    width: 28px; height: 28px;
    background: var(--ld-primary-50);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.ld-faq-item[open] summary::after { content: '−'; }

.ld-faq-item .ld-faq-body {
    padding: 0 22px 22px;
    color: var(--ld-text-soft);
    font-size: 14.5px;
    line-height: 1.7;
}

/* ============================================================
   PRODUCTS LISTING — modern filters + grid (used by products.php)
   ============================================================ */
.ld-products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.ld-filters {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.ld-filters h4 {
    font-size: 12px;
    font-weight: 800;
    color: var(--ld-text);
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ld-filter-group { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--ld-border); }
.ld-filter-group:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.ld-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--ld-bg-soft);
    border: 1px solid var(--ld-border);
    border-radius: 999px;
    font-size: 12px;
    color: var(--ld-text-soft);
    cursor: pointer;
    margin: 4px 4px 4px 0;
    text-decoration: none;
    transition: all 0.2s;
}

.ld-filter-chip:hover,
.ld-filter-chip.active {
    background: var(--ld-primary-50);
    border-color: var(--ld-primary);
    color: var(--ld-primary);
}

.ld-products-toolbar {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 14px;
}

.ld-products-toolbar .count {
    color: var(--ld-text-soft);
    font-size: 14px;
    font-weight: 500;
}
.ld-products-toolbar .count strong { color: var(--ld-text); font-weight: 700; }

.ld-products-toolbar select {
    background: var(--ld-bg-soft);
    border: 1px solid var(--ld-border);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    color: var(--ld-text);
    font-family: inherit;
}

.ld-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 1100px) {
    .ld-products-layout { grid-template-columns: 240px 1fr; gap: 22px; }
    .ld-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ld-products-layout { grid-template-columns: 1fr; }
    .ld-filters { position: static; }
    .ld-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .ld-products-grid { grid-template-columns: 1fr; }
}

/* Pagination */
.ld-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.ld-pagination a, .ld-pagination span {
    width: 40px; height: 40px;
    border: 1px solid var(--ld-border);
    background: #fff;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--ld-text);
    text-decoration: none;
    transition: all 0.2s;
}

.ld-pagination a:hover { border-color: var(--ld-primary); color: var(--ld-primary); }
.ld-pagination .current { background: var(--ld-grad-blue); border-color: transparent; color: #fff; box-shadow: 0 6px 14px rgba(37, 99, 235, 0.35); }
.ld-pagination .disabled { color: var(--ld-faint); pointer-events: none; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.ld-pd-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: start;
}

.ld-pd-gallery {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius-lg);
    padding: 22px;
    box-shadow: var(--ld-shadow-sm);
    position: sticky;
    top: 96px;
}

.ld-pd-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.ld-pd-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.ld-pd-badge.save  { background: var(--ld-grad-amber); box-shadow: 0 6px 14px rgba(245,158,11,.28); }
.ld-pd-badge.hot   { background: var(--ld-grad-rose); }
.ld-pd-badge.trend { background: var(--ld-grad-violet); }
.ld-pd-badge.cb    { background: var(--ld-grad-mint); }

.ld-pd-main-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--ld-radius);
    overflow: hidden;
    background: var(--ld-bg-soft);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.ld-pd-main-image img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform 0.45s cubic-bezier(.2,.7,.2,1);
}
.ld-pd-main-image:hover img { transform: scale(1.08); }

.ld-pd-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.ld-pd-thumb {
    aspect-ratio: 1;
    border: 2px solid var(--ld-border);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--ld-bg-soft);
    transition: border-color 0.2s, transform 0.2s;
}
.ld-pd-thumb:hover { border-color: var(--ld-primary); transform: translateY(-2px); }
.ld-pd-thumb.active { border-color: var(--ld-primary); box-shadow: 0 0 0 3px var(--ld-primary-100); }
.ld-pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

.ld-pd-trust {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--ld-border);
}
.ld-pd-trust span {
    font-size: 12px;
    font-weight: 600;
    color: var(--ld-text-soft);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ld-pd-trust i { color: var(--ld-green); }

.ld-pd-info {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius-lg);
    padding: 32px;
    box-shadow: var(--ld-shadow-sm);
}

.ld-pd-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.ld-pd-cat, .ld-pd-store {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ld-pd-cat   { background: var(--ld-primary-50); color: var(--ld-primary); }
.ld-pd-store { background: #f1f5f9; color: var(--ld-text-soft); }

.ld-pd-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 14px;
    color: var(--ld-text);
    letter-spacing: -0.015em;
}

.ld-pd-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.ld-pd-rating .stars { color: var(--ld-accent); letter-spacing: 2px; font-size: 15px; }
.ld-pd-rating .meta  { color: var(--ld-text-soft); font-size: 13px; }
.ld-pd-rating .meta strong { color: var(--ld-text); }

.ld-pd-priceblock {
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    border: 1px solid var(--ld-primary-100);
    border-radius: var(--ld-radius);
    padding: 20px 22px;
    margin-bottom: 18px;
}
.ld-pd-pricerow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.ld-pd-priceblock .now {
    font-size: 34px;
    font-weight: 900;
    color: var(--ld-text);
    letter-spacing: -0.02em;
    line-height: 1;
}
.ld-pd-priceblock .was {
    font-size: 18px;
    color: var(--ld-muted);
    text-decoration: line-through;
}
.ld-pd-priceblock .save {
    margin-left: auto;
    background: var(--ld-grad-amber);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}
.ld-pd-savings {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #047857;
    display: flex;
    align-items: center;
    gap: 7px;
}
.ld-pd-savings strong { color: #047857; }

/* Urgency / stock */
.ld-pd-urgency { margin-bottom: 22px; }
.ld-pd-urgency-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ld-text-soft);
    margin-bottom: 8px;
}
.ld-pd-urgency-top i { color: var(--ld-accent-dark); }
.ld-pd-urgency-top strong { color: #be123c; }
.ld-pd-urgency-top .exp i { color: var(--ld-primary); }
.ld-pd-stockbar {
    height: 7px;
    border-radius: 999px;
    background: #fde4e1;
    overflow: hidden;
}
.ld-pd-stockbar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #fb7185, #be123c);
}

.ld-pd-desc {
    color: var(--ld-text-soft);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0 0 22px;
    padding-left: 14px;
    border-left: 3px solid var(--ld-primary-100);
}

/* Primary CTA shimmer */
.ld-pd-cta {
    position: relative;
    overflow: hidden;
    font-size: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}
.ld-pd-cta::after {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,.45), transparent);
    transform: skewX(-18deg);
    animation: ldPdShine 3.2s ease-in-out infinite;
}
@keyframes ldPdShine {
    0%, 60% { left: -120%; }
    100% { left: 130%; }
}

/* Guarantee line */
.ld-pd-assure {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 13px 16px;
    margin-bottom: 22px;
    font-size: 12.5px;
    line-height: 1.5;
    color: #166534;
}
.ld-pd-assure i { font-size: 18px; color: #16a34a; flex-shrink: 0; }
.ld-pd-assure strong { color: #15803d; }

/* Why-choose highlights */
.ld-pd-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}
.ld-pd-hl {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
    padding: 22px;
    display: flex;
    gap: 14px;
    box-shadow: var(--ld-shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}
.ld-pd-hl:hover { transform: translateY(-4px); box-shadow: var(--ld-shadow); }
.ld-pd-hl .ico {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px;
    flex-shrink: 0;
}
.ld-pd-hl strong { display: block; font-size: 14.5px; color: var(--ld-text); margin-bottom: 4px; }
.ld-pd-hl p { margin: 0; font-size: 12.5px; line-height: 1.6; color: var(--ld-text-soft); }

/* Deal details card — full container width to match the widgets above */
.ld-pd-detailcard {
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius-lg);
    padding: 30px 32px;
    box-shadow: var(--ld-shadow-sm);
    max-width: none;
    margin: 36px 0 0;
}
.ld-pd-detailcard h2 { display: flex; align-items: center; margin-top: 0; }
.ld-pd-detailcard h2::before { display: none; }

/* Sticky mobile buy bar */
.ld-pd-stickybar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1200;
    background: #fff;
    border-top: 1px solid var(--ld-border);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.1);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateY(120%);
    transition: transform 0.3s ease;
}
.ld-pd-stickybar.show { transform: translateY(0); }
.ld-pd-stickybar-price { display: flex; align-items: baseline; gap: 8px; flex-shrink: 0; }
.ld-pd-stickybar-price .now { font-size: 20px; font-weight: 900; color: var(--ld-text); }
.ld-pd-stickybar-price .was { font-size: 13px; color: var(--ld-muted); text-decoration: line-through; }
.ld-pd-stickybar .ld-btn { flex: 1; justify-content: center; }
@media (min-width: 768px) { .ld-pd-stickybar { display: none; } }

.ld-pd-coupon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1.5px dashed #d97706;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.ld-pd-coupon strong {
    font-size: 18px;
    color: #92400e;
    letter-spacing: 2px;
}
.ld-pd-coupon span { color: #92400e; font-size: 13px; font-weight: 600; }
.ld-pd-coupon .copy-btn {
    background: #d97706;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    font-family: inherit;
}

.ld-pd-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.ld-pd-actions .ld-btn { flex: 1; min-width: 160px; justify-content: center; }

.ld-pd-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.ld-pd-perk {
    background: var(--ld-bg-soft);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: var(--ld-text-soft);
}

.ld-pd-perk .ico {
    width: 32px; height: 32px;
    background: #fff;
    border-radius: 8px;
    color: var(--ld-primary);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.ld-pd-perk strong { color: var(--ld-text); display: block; font-weight: 700; font-size: 12.5px; }
.ld-pd-perk span { font-size: 11px; }

@media (max-width: 991px) {
    .ld-pd-grid { grid-template-columns: 1fr; }
    .ld-pd-gallery { position: static; top: auto; }
    .ld-pd-title { font-size: 22px; }
    .ld-pd-priceblock .now { font-size: 28px; }
    .ld-pd-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .ld-pd-info { padding: 22px; }
    .ld-pd-gallery { padding: 16px; }
    .ld-pd-actions { flex-direction: column; }
    .ld-pd-actions .ld-btn { width: 100%; }
    body.ld-page { padding-bottom: 76px; }
}

/* ============================================================
   CTA STRIP (used at bottom of internal pages)
   ============================================================ */
.ld-cta-strip {
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.25), transparent 55%),
        linear-gradient(135deg, var(--ld-primary), var(--ld-primary-dark));
    color: #fff;
    border-radius: var(--ld-radius-xl);
    padding: 50px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ld-cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
}

.ld-cta-strip h3 {
    font-size: 30px;
    font-weight: 900;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.ld-cta-strip p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
}

.ld-cta-strip .ld-btn { position: relative; z-index: 1; }

@media (max-width: 600px) {
    .ld-cta-strip { padding: 36px 24px; }
    .ld-cta-strip h3 { font-size: 22px; }
}

/* ==========================================================================
   RESPONSIVE OVERHAUL  v2  (mobile-first cleanup, consolidated breakpoints)
   Targets : ≤480 phones · 481–767 large phones · 768–991 tablets · ≥992 desktop
   ========================================================================== */

/* Global safety — prevents any rogue element from causing horizontal scroll */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, iframe { max-width: 100%; height: auto; }
* { -webkit-tap-highlight-color: rgba(37, 99, 235, 0.15); }

/* Fluid container padding */
.ld-container { padding-left: 24px; padding-right: 24px; }
@media (max-width: 767px) { .ld-container { padding-left: 18px; padding-right: 18px; } }
@media (max-width: 480px) { .ld-container { padding-left: 14px; padding-right: 14px; } }

/* ---------- TOP BAR ---------- */
@media (max-width: 991px) { .ld-topbar-center { display: none !important; } }
@media (max-width: 767px) {
    .ld-topbar-inner { padding-top: 6px; padding-bottom: 6px; gap: 8px; flex-wrap: wrap; justify-content: center; }
    .ld-topbar-left { gap: 14px; flex-wrap: wrap; justify-content: center; font-size: 11.5px; }
    .ld-topbar-phone { display: none; }
    .ld-topbar-links { gap: 12px; }
    .ld-topbar-links a { font-size: 11.5px; }
}
@media (max-width: 480px) {
    .ld-topbar { font-size: 11px; }
    .ld-topbar-links { display: none; }
}

/* ---------- NAVBAR ---------- */
@media (max-width: 1100px) {
    .ld-nav-inner { gap: 14px; }
    .ld-nav-menu { gap: 18px; }
    .ld-search { max-width: 240px; }
}
@media (max-width: 991px) {
    .ld-nav-inner { gap: 12px; padding: 12px 0; }
    .ld-nav-menu { display: none; }
    .ld-search { flex: 1; max-width: none; min-width: 0; }
    .ld-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}
@media (max-width: 600px) {
    .ld-logo-text .lt-2 { display: none; }
    .ld-logo-text .lt-1 { font-size: 16px; }
    .ld-logo-mark { width: 38px; height: 38px; font-size: 16px; }
    .ld-search { order: 5; flex-basis: 100%; max-width: none; margin: 6px 0 0; }
    .ld-nav-inner { flex-wrap: wrap; }
    .ld-nav-actions { gap: 6px; margin-left: auto; }
    .ld-nav-icon, .ld-nav-toggle { width: 40px; height: 40px; min-width: 40px; }
}
@media (max-width: 380px) {
    .ld-search input { font-size: 13px; padding-left: 36px; }
    .ld-search .ld-search-icon { left: 12px; }
}

/* ---------- PAGE HEADER (inner hero) ---------- */
.ld-ph-title { font-size: clamp(24px, 4.4vw, 44px); line-height: 1.15; }
.ld-ph-sub   { font-size: clamp(13.5px, 1.6vw, 17px); line-height: 1.55; }
@media (max-width: 767px) {
    .ld-page-header { padding-top: 28px; padding-bottom: 36px; }
    .ld-crumbs { font-size: 12px; flex-wrap: wrap; }
    .ld-ph-eyebrow { font-size: 11.5px; padding: 5px 12px; }
}
@media (max-width: 480px) {
    .ld-page-header { padding-top: 22px; padding-bottom: 28px; }
    .ld-ph-glow-1, .ld-ph-glow-2 { opacity: 0.5; }
}

/* ---------- HOMEPAGE HERO ---------- */
@media (max-width: 991px) {
    .ld-hero-title, .ld-hero h1 { font-size: clamp(28px, 5.5vw, 44px) !important; }
    .ld-hero-sub { font-size: 15px !important; }
}
@media (max-width: 600px) {
    .ld-hero { padding-top: 30px !important; padding-bottom: 30px !important; }
    .ld-hero-cta-row { flex-direction: column; align-items: stretch; }
    .ld-hero-cta-row .ld-btn { width: 100%; justify-content: center; }
}

/* ---------- SECTIONS ---------- */
@media (max-width: 767px) {
    .ld-section { padding: 40px 0; }
    .ld-section-head { flex-direction: column; align-items: flex-start; gap: 10px; }
    .ld-section-title { font-size: clamp(20px, 3.6vw, 28px); }
    .ld-section-subtitle { font-size: 13.5px; }
    .ld-view-all { font-size: 12.5px; }
}

/* ---------- GRIDS (consolidated tablet breakpoints) ---------- */
@media (max-width: 991px) {
    .ld-pick-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 16px; }
    .ld-store-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .ld-cat-row { grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .ld-coupon-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 767px) {
    .ld-pick-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
    .ld-store-grid { grid-template-columns: repeat(2, 1fr); }
    .ld-cat-row { grid-template-columns: repeat(3, 1fr); }
    .ld-coupon-grid { grid-template-columns: 1fr; }
    .ld-deal-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 420px) {
    .ld-pick-grid { grid-template-columns: 1fr !important; }
    .ld-cat-row { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- COUPON CARDS ---------- */
@media (max-width: 480px) {
    .ld-coupon-card { padding: 16px; }
    .ld-coupon-head { gap: 10px; }
    .ld-coupon-disc { font-size: 11px; padding: 4px 10px; }
    .ld-coupon-body h4 { font-size: 14px; }
    .ld-coupon-body p { font-size: 12.5px; }
}

/* ---------- MODAL (coupon reveal) ---------- */
@media (max-width: 600px) {
    .ld-modal { width: calc(100vw - 24px) !important; max-width: 460px; margin: 12px; }
    .ld-modal-head { padding: 22px 18px 14px; }
    .ld-modal-head h3 { font-size: 18px; }
    .ld-modal-body { padding: 14px 18px 22px; }
    .ld-modal-code .code { font-size: 17px; }
    .ld-modal-cta { padding: 13px; font-size: 14px; }
}

/* ---------- PRODUCTS LAYOUT (sidebar + grid) ---------- */
@media (max-width: 1100px) {
    .ld-products-layout { grid-template-columns: 240px 1fr; gap: 22px; }
}
@media (max-width: 991px) {
    .ld-products-layout { grid-template-columns: 1fr; gap: 18px; }
    .ld-filters { position: static; }
}
@media (max-width: 767px) {
    .ld-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ld-products-toolbar { flex-direction: column; align-items: stretch; gap: 10px; }
    .ld-products-toolbar > * { width: 100%; }
}
@media (max-width: 420px) {
    .ld-products-grid { grid-template-columns: 1fr; }
}

/* ---------- PAGINATION ---------- */
@media (max-width: 480px) {
    .ld-pagination { gap: 4px; flex-wrap: wrap; justify-content: center; }
    .ld-pagination a, .ld-pagination span { min-width: 36px; height: 36px; font-size: 13px; }
}

/* ---------- TESTIMONIALS / FOOTER ---------- */
@media (max-width: 991px) {
    .ld-footer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 32px; }
}
@media (max-width: 600px) {
    .ld-footer { padding: 40px 0 24px; }
    .ld-footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
    .ld-footer-bottom { flex-direction: column; gap: 10px; text-align: center; font-size: 12px; }
    .ld-footer-social { justify-content: center; }
}

/* ---------- TOUCH-FRIENDLY MINIMUMS ---------- */
@media (hover: none) and (pointer: coarse) {
    .ld-btn, .ld-nav-icon, .ld-nav-toggle, .ld-filter-chip,
    .ld-pick-deal, .ld-coupon-reveal,
    .lp-card-cta, .lp-quicktab {
        min-height: 40px;
    }
}

/* ---------- PRODUCTS LANDING (lp- prefix) tablet/phone polish ---------- */
@media (max-width: 991px) {
    .lp-stats { margin-top: -28px; }
}
@media (max-width: 767px) {
    .lp-stats { grid-template-columns: repeat(2, 1fr); margin-top: -16px; gap: 12px; }
    .lp-stat { padding: 14px 16px; }
    .lp-stat-icon { width: 42px; height: 42px; font-size: 16px; }
    .lp-stat-value { font-size: 18px; }
    .lp-stat-label { font-size: 11px; }
    .lp-trust { padding: 26px 18px; grid-template-columns: 1fr 1fr; gap: 18px; }
    .lp-newsletter h3 { font-size: 22px; }
    .lp-quicktab { padding: 8px 14px 8px 10px; font-size: 12.5px; }
}
@media (max-width: 480px) {
    .lp-stats { grid-template-columns: 1fr; }
    .lp-trust { grid-template-columns: 1fr; }
    .lp-toolbar { padding: 12px 14px; gap: 10px; }
    .lp-toolbar-left, .lp-toolbar-right { width: 100%; justify-content: space-between; flex-wrap: wrap; }
    .lp-sort { flex: 1; }
}

/* ==========================================================================
   CATEGORY LANDING (/category) — large tile variant with proper breakpoints
   ========================================================================== */
.ld-cat-row--lg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.ld-cat-row--lg .ld-cat-tile { padding: 30px 18px 24px; }
.ld-cat-row--lg .ld-cat-circle {
    width: 84px; height: 84px;
    border-radius: 24px;
    font-size: 30px;
    margin: 0 auto 14px;
}
.ld-cat-row--lg h6 {
    font-size: 15.5px;
    line-height: 1.25;
    word-break: break-word;
    hyphens: auto;
    margin: 0 0 6px;
}
.ld-cat-row--lg .cnt { font-size: 12px; }

@media (max-width: 991px) {
    .ld-cat-row--lg { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .ld-cat-row--lg .ld-cat-tile { padding: 24px 14px 20px; }
    .ld-cat-row--lg .ld-cat-circle { width: 72px; height: 72px; font-size: 26px; border-radius: 20px; }
    .ld-cat-row--lg h6 { font-size: 14.5px; }
}
@media (max-width: 600px) {
    .ld-cat-row--lg { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ld-cat-row--lg .ld-cat-tile { padding: 22px 12px 18px; }
    .ld-cat-row--lg .ld-cat-circle { width: 66px; height: 66px; font-size: 24px; border-radius: 18px; margin-bottom: 12px; }
    .ld-cat-row--lg h6 { font-size: 14px; }
    .ld-cat-row--lg .cnt { font-size: 11.5px; }
}
@media (max-width: 360px) {
    .ld-cat-row--lg { grid-template-columns: 1fr; }
    .ld-cat-row--lg .ld-cat-tile { padding: 20px 16px; flex-direction: row; text-align: left; align-items: center; gap: 14px; }
    .ld-cat-row--lg .ld-cat-circle { margin: 0; width: 56px; height: 56px; font-size: 22px; border-radius: 16px; flex-shrink: 0; }
    .ld-cat-row--lg h6 { margin: 0 0 2px; }
}

/* ==========================================================================
   ADVERTISEMENT SYSTEM  (.dc-ad-*)  — admin-managed banners / HTML / scripts
   ========================================================================== */
.dc-ad-slot { width: 100%; }
.dc-ad-box {
    position: relative;
    background: #fff;
    border: 1px solid var(--ld-border);
    border-radius: 14px;
    padding: 14px;
    margin: 18px auto;
    max-width: 100%;
    overflow: hidden;
}
.dc-ad-label {
    position: absolute; top: 8px; right: 12px;
    font-size: 9.5px; font-weight: 700;
    color: var(--ld-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--ld-bg-soft);
    padding: 2px 8px;
    border-radius: 30px;
    z-index: 1;
}
.dc-ad-content { line-height: 0; }
.dc-ad-content img,
.dc-ad-content iframe { max-width: 100%; height: auto; display: block; margin: 0 auto; border-radius: 8px; }
.dc-ad-content iframe { line-height: normal; }
.dc-ad-content a { display: block; line-height: 0; }

/* Position-specific widths */
.dc-ad-header_banner,
.dc-ad-below_navigation,
.dc-ad-above_content,
.dc-ad-middle_content,
.dc-ad-below_content,
.dc-ad-footer_banner { max-width: 1200px; padding-left: 18px; padding-right: 18px; }

.dc-ad-sidebar_top .dc-ad-box,
.dc-ad-sidebar_middle .dc-ad-box,
.dc-ad-sidebar_bottom .dc-ad-box { padding: 10px; margin: 12px 0; }

.dc-ad-footer_banner { background: rgba(255,255,255,0.04); padding-top: 8px; padding-bottom: 8px; }
.dc-ad-footer_banner .dc-ad-box { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.dc-ad-footer_banner .dc-ad-label { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); }

/* Device targeting (server adds class, CSS hides for non-matching device) */
@media (max-width: 600px)              { .dc-ad-dev-desktop { display: none !important; } .dc-ad-dev-tablet  { display: none !important; } }
@media (min-width: 601px) and (max-width: 991px) { .dc-ad-dev-desktop { display: none !important; } .dc-ad-dev-mobile  { display: none !important; } }
@media (min-width: 992px)              { .dc-ad-dev-mobile  { display: none !important; } .dc-ad-dev-tablet  { display: none !important; } }

/* Mobile sticky bottom — only renders below 768px regardless of device class */
.dc-ad-sticky {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 900;
    background: #fff;
    border-top: 1px solid var(--ld-border);
    box-shadow: 0 -6px 22px rgba(15, 23, 42, 0.10);
    padding: 6px env(safe-area-inset-right, 6px) calc(6px + env(safe-area-inset-bottom, 0)) env(safe-area-inset-left, 6px);
}
.dc-ad-sticky .dc-ad-box {
    margin: 0;
    border: none;
    padding: 6px 36px 6px 6px;
    border-radius: 0;
    background: transparent;
}
.dc-ad-sticky .dc-ad-content { display: flex; align-items: center; justify-content: center; max-height: 70px; overflow: hidden; }
.dc-ad-sticky .dc-ad-content img { max-height: 60px; }
.dc-ad-sticky .dc-ad-label {
    top: 4px; left: 6px; right: auto;
    font-size: 8.5px; padding: 1px 6px;
}
.dc-ad-close {
    position: absolute; top: 50%; right: 8px;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #f1f5f9; border: none;
    color: var(--ld-text-soft); font-size: 18px; line-height: 1;
    cursor: pointer; z-index: 2;
}
.dc-ad-close:hover { background: #e2e8f0; color: var(--ld-text); }

@media (min-width: 768px) { .dc-ad-sticky { display: none !important; } }
@media (max-width: 767px) { body:has(.dc-ad-sticky) { padding-bottom: 90px; } }

/* ---------------------------------------------------------------------------
   Social share bar (dc_share_buttons)
--------------------------------------------------------------------------- */
.ld-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 4px;
}
.ld-share-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ld-muted);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}
.ld-share-label i { color: var(--ld-primary); }
.ld-share-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ld-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--ld-border);
    background: #fff;
    color: var(--ld-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.ld-share-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}
.ld-share-btn.s-facebook:hover  { background: #1877f2; border-color: #1877f2; }
.ld-share-btn.s-x:hover         { background: #000;     border-color: #000; }
.ld-share-btn.s-whatsapp:hover  { background: #25d366; border-color: #25d366; }
.ld-share-btn.s-telegram:hover  { background: #229ed9; border-color: #229ed9; }
.ld-share-btn.s-linkedin:hover  { background: #0a66c2; border-color: #0a66c2; }
.ld-share-btn.s-pinterest:hover { background: #e60023; border-color: #e60023; }
.ld-share-btn.s-email:hover     { background: var(--ld-primary); border-color: var(--ld-primary); }
.ld-share-btn.s-copy:hover      { background: var(--ld-text); border-color: var(--ld-text); }
.ld-share-btn.s-copy.copied     { background: #16a34a; border-color: #16a34a; color: #fff; }
.ld-share-btn.s-native          { display: none; } /* shown by JS when Web Share is supported */
.ld-share-btn.s-native:hover    { background: var(--ld-primary); border-color: var(--ld-primary); }

/* Compact variant (cards / list rows) */
.ld-share.is-compact { margin: 0; gap: 6px; }
.ld-share.is-compact .ld-share-btn { width: 32px; height: 32px; font-size: 13px; }

/* ---------------------------------------------------------------------------
   Shared social-share popup (coupon card share icon)
--------------------------------------------------------------------------- */
.ld-sharepop-back {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease;
}
.ld-sharepop-back.open { opacity: 1; visibility: visible; }
.ld-sharepop {
    background: #fff;
    border-radius: 18px;
    padding: 26px 24px 22px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(12px) scale(0.98);
    transition: transform 0.2s ease;
}
.ld-sharepop-back.open .ld-sharepop { transform: translateY(0) scale(1); }
.ld-sharepop-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 32px; height: 32px;
    border: none;
    background: var(--ld-bg-soft);
    color: var(--ld-muted);
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.15s;
}
.ld-sharepop-close:hover { background: #e2e8f0; color: var(--ld-text); }
.ld-sharepop-title {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 800;
    color: var(--ld-text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.ld-sharepop-title i { color: var(--ld-primary); }
.ld-sharepop-sub {
    margin: 0 0 18px;
    font-size: 13px;
    color: var(--ld-muted);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ld-sharepop-btns { gap: 10px; margin-bottom: 18px; }
.ld-sharepop-btns .ld-share-btn { width: 44px; height: 44px; font-size: 17px; }
.ld-sharepop-copy {
    display: flex;
    gap: 8px;
    border-top: 1px solid var(--ld-border);
    padding-top: 16px;
}
.ld-sharepop-copy input {
    flex: 1;
    min-width: 0;
    border: 1.5px solid var(--ld-border);
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 12.5px;
    color: var(--ld-text-soft);
    background: var(--ld-bg-soft);
    font-family: inherit;
}
.ld-sharepop-copy button {
    flex: 0 0 auto;
    border: none;
    background: var(--ld-grad-blue);
    color: #fff;
    border-radius: 10px;
    padding: 9px 16px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
}
.ld-sharepop-copy button.copied { background: #16a34a; }

/* Deal-of-the-day card share button (opens shared social popup) */
.ld-deal-share {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ld-text);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.16);
    cursor: pointer;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.ld-deal-share:hover {
    background: var(--ld-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ---------------------------------------------------------------------------
   Shop-by-Category carousel (homepage) — swipe on touch, arrows on desktop.
   Scoped to .ld-cat-carousel so the full category grid (.ld-cat-row) is unaffected.
--------------------------------------------------------------------------- */
.ld-cat-carousel-wrap { position: relative; }
.ld-cat-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 6px 2px 10px;
    scrollbar-width: none;          /* Firefox */
}
.ld-cat-carousel::-webkit-scrollbar { display: none; }   /* Chrome/Safari */
.ld-cat-carousel .ld-cat-tile {
    flex: 0 0 auto;
    width: clamp(132px, 42vw, 158px);
    scroll-snap-align: start;
}
.ld-cat-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--ld-border);
    background: #fff;
    color: var(--ld-text);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.15s, color 0.15s, transform 0.15s;
}
.ld-cat-nav:hover { background: var(--ld-primary); color: #fff; }
.ld-cat-nav.prev { left: -8px; }
.ld-cat-nav.next { right: -8px; }
.ld-cat-nav[hidden] { display: none; }
/* Touch devices: rely on swipe, never show arrows */
@media (hover: none) { .ld-cat-nav { display: none !important; } }
