/* ── SVG visibility fix (WordPress themes) ──────────────────────────── */
.lg-product-reels svg,
.lg-reels-modal svg {
    display: inline-block !important;
    visibility: visible !important;
    overflow: visible !important;
}

.lg-product-reels {
    --lg-reels-bg: linear-gradient(180deg, #fffaf4 0%, #f8fbff 100%);
    --lg-reels-card: #ffffff;
    --lg-reels-text: #111827;
    --lg-reels-muted: #6b7280;
    --lg-reels-border: rgba(148, 163, 184, 0.22);
    --lg-reels-accent: #ff5a36;
    --lg-reels-accent-2: #ff8a00;
    --lg-reels-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    position: relative;
    margin: 36px auto;
    padding: 28px;
    max-width: 1360px;
    border-radius: 36px;
    background: var(--lg-reels-bg);
    overflow: hidden;
}

.lg-product-reels::before,
.lg-product-reels::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.lg-product-reels::before {
    width: 240px;
    height: 240px;
    top: -40px;
    right: -40px;
    background: radial-gradient(circle, rgba(255, 90, 54, 0.18), transparent 70%);
}

.lg-product-reels::after {
    width: 280px;
    height: 280px;
    bottom: -70px;
    left: -70px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 72%);
}

.lg-product-reels-head {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.lg-product-reels-kicker {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 90, 54, 0.08);
    color: var(--lg-reels-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lg-product-reels-head h2 {
    margin: 12px 0 6px;
    color: var(--lg-reels-text);
    font-size: clamp(1.9rem, 2.6vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.lg-product-reels-head p {
    margin: 0;
    color: var(--lg-reels-muted);
    font-size: 15px;
    max-width: 720px;
    line-height: 1.7;
}

.lg-product-reels-meta {
    color: var(--lg-reels-muted);
    font-size: 13px;
    font-weight: 600;
}

/* ── Slider wrapper ─────────────────────────────────────────────────────── */
.lg-product-reels-slider {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lg-product-reels-slider-wrap {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.lg-product-reels-cards {
    display: flex;
    gap: 16px;
    transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* ── Slider arrows ──────────────────────────────────────────────────────── */
.lg-reels-slider-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--lg-reels-border);
    background: var(--lg-reels-card);
    color: var(--lg-reels-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.10);
    transition: background 0.15s, box-shadow 0.15s, opacity 0.15s, transform 0.15s;
    z-index: 2;
}

.lg-reels-slider-arrow:hover:not(:disabled) {
    background: var(--lg-reels-accent);
    color: #fff;
    border-color: var(--lg-reels-accent);
    box-shadow: 0 8px 24px rgba(255, 90, 54, 0.28);
    transform: scale(1.08);
}

.lg-reels-slider-arrow:disabled {
    opacity: 0.28;
    cursor: not-allowed;
}

/* ── Card ───────────────────────────────────────────────────────────────── */
.lg-product-reel-card {
    flex: 0 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #0f172a;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lg-product-reel-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.32);
}

.lg-product-reel-card:hover .lg-reel-card-play-btn {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.12);
}

.lg-product-reel-media {
    position: relative;
    aspect-ratio: 9 / 16;
    background: #0f172a;
    overflow: hidden;
    width: 100%;
}

.lg-product-reel-media video,
.lg-product-reel-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lg-product-reel-card:hover .lg-product-reel-media video,
.lg-product-reel-card:hover .lg-product-reel-media img {
    transform: scale(1.05);
}

.lg-reel-card-no-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

/* Cinematic gradient overlay */
.lg-reel-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.90) 0%,
        rgba(0, 0, 0, 0.42) 28%,
        rgba(0, 0, 0, 0.12) 52%,
        rgba(0, 0, 0, 0.38) 100%
    );
    pointer-events: none;
}

/* ── Card layers ────────────────────────────────────────────────────────── */
.lg-reel-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 14px 12px 10px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    z-index: 2;
}

.lg-product-reel-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.14);
    max-width: calc(100% - 52px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lg-reel-card-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.lg-reel-card-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
    transition: transform 0.22s ease, background 0.22s ease;
}

.lg-reel-card-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 12px 14px;
    z-index: 2;
}

.lg-reel-card-title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.lg-reel-card-product {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.lg-reel-card-product img {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
}

.lg-reel-card-product-text {
    flex: 1;
    min-width: 0;
}

.lg-reel-card-product-text span {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.lg-reel-card-product-text strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.35;
}

.lg-reel-card-arrow {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.65);
}

.lg-product-reels-empty {
    position: relative;
    z-index: 1;
    padding: 26px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--lg-reels-border);
    color: var(--lg-reels-muted);
}

.lg-reels-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    background: rgba(2, 6, 23, 0.95);
}

.lg-reels-modal.is-open {
    display: block;
}

.lg-reels-modal-shell {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lg-reels-modal-track {
    width: 100%;
    height: 100%;
    transition: transform 0.28s ease;
}

.lg-reels-modal-item {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
}

.lg-reels-modal-phone {
    width: min(100%, 420px);
    height: min(92vh, 860px);
    border-radius: 32px;
    overflow: hidden;
    background: #000;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lg-reels-modal-media,
.lg-reels-modal-media iframe,
.lg-reels-modal-media video,
.lg-reels-modal-media img {
    width: 100%;
    height: 100%;
    display: block;
}

.lg-reels-modal-media {
    position: absolute;
    inset: 0;
    background: #000;
}

.lg-reels-modal-media iframe,
.lg-reels-modal-media video {
    border: 0;
    object-fit: cover;
}

.lg-reels-modal-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.02) 30%, rgba(0, 0, 0, 0.72) 100%);
    pointer-events: none;
}

.lg-reels-progress {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.lg-reels-progress span {
    flex: 1;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
}

.lg-reels-progress span.is-active {
    background: #fff;
}

.lg-reels-modal-top {
    position: absolute;
    top: 24px;
    left: 18px;
    right: 18px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 14px;
    z-index: 2;
}

.lg-reels-modal-top strong,
.lg-reels-modal-top small,
.lg-reels-modal-bottom h3,
.lg-reels-modal-bottom p,
.lg-reels-modal-bottom a {
    color: #fff;
}

.lg-reels-modal-story {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── Brand avatar in modal ──────────────────────────────────── */
.lg-reels-brand-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.lg-reels-brand-ring {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f9a825 0%, #e91e63 50%, #9c27b0 100%);
    padding: 2.5px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lg-reels-brand-ring img,
.lg-reels-brand-ring .lg-reels-brand-initial {
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: #111;
    flex-shrink: 0;
}

.lg-reels-brand-ring img {
    object-position: center;
}

.lg-reels-brand-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.lg-reels-verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #1d9bf0;
    border: 2px solid rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lg-reels-brand-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.lg-reels-verified-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 3px;
    font-weight: 500;
}

/* ── Brand badge on cards ───────────────────────────────────── */
.lg-reels-card-brand {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
}

.lg-reels-brand-ring-sm {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f9a825 0%, #e91e63 50%, #9c27b0 100%);
    padding: 2px;
    box-sizing: border-box;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lg-reels-brand-ring-sm img {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #fff;
    flex-shrink: 0;
}

.lg-reels-card-verified-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1d9bf0;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.lg-reels-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.lg-reels-modal-bottom {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
}

.lg-reels-modal-bottom h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.05;
}

.lg-reels-modal-bottom p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.6;
    /* Trunca em 2 linhas para não cobrir o vídeo */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.lg-reels-product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
    backdrop-filter: blur(16px);
}

.lg-reels-product-cta:hover {
    background: rgba(255, 255, 255, 0.16);
}

.lg-reels-product-cta img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
}

.lg-reels-product-cta strong {
    display: block;
    font-size: 14px;
}

.lg-reels-product-cta small {
    color: rgba(255, 255, 255, 0.72);
}

.lg-reels-modal-hint {
    position: absolute;
    right: 18px;
    bottom: 132px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    text-align: right;
}

.lg-reels-modal-nav {
    position: absolute;
    right: max(24px, calc(50vw - 300px));
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.lg-reels-modal-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.lg-reels-modal-nav button[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ── Navigation zones (esquerda / centro / direita) ─────────────────── */
.lg-reels-nav-zones {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* Zona cobre só 60% superiores; os 40% inferiores têm o CTA do produto */
    bottom: 38%;
    display: flex;
    z-index: 1;
    pointer-events: none;
}

.lg-reels-zone-btn {
    flex: 1;
    border: 0;
    background: transparent;
    cursor: pointer;
    outline: none;
    pointer-events: all;
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    -webkit-appearance: none;
}

.lg-reels-zone-btn:focus,
.lg-reels-zone-btn:focus-visible {
    outline: none;
    box-shadow: none;
}

.lg-reels-zone-left  { flex: 3; }
.lg-reels-zone-center { flex: 4; cursor: default; }
.lg-reels-zone-right { flex: 3; }

/* ── Pause flash (indicador visual ao pausar) ────────────────────────── */
.lg-reels-pause-flash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    z-index: 10;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.lg-reels-pause-flash.is-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ── Cart top button ──────────────────────────────────────────────────── */
.lg-reels-modal-top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lg-reels-cart-top-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.lg-reels-cart-top-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lg-reels-cart-top-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #ff5a36;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid rgba(0, 0, 0, 0.6);
}

/* ── Full Cart Drawer ─────────────────────────────────────────────────── */
.lg-reels-full-cart {
    position: absolute;
    inset: 0;
    z-index: 30;
}

.lg-reels-full-cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.lg-reels-full-cart-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding: 20px 18px 32px;
    max-height: 75%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lg-reels-full-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    flex-shrink: 0;
}

.lg-reels-full-cart-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 0;
    background: #f1f5f9;
    color: #374151;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lg-reels-full-cart-body {
    flex: 1;
    overflow-y: auto;
    margin: 0 -18px;
    padding: 0 18px;
}

.lg-reels-full-cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.lg-reels-full-cart-item img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    background: #f8fafc;
}

.lg-reels-full-cart-item-img-fallback {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #f1f5f9;
    flex-shrink: 0;
}

.lg-reels-full-cart-item-info strong {
    display: block;
    font-size: 13px;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.lg-reels-full-cart-item-info span {
    font-size: 12px;
    color: #6b7280;
}

.lg-reels-full-cart-loading,
.lg-reels-full-cart-empty {
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
    padding: 24px 0;
}

.lg-reels-full-cart-footer {
    flex-shrink: 0;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    margin-top: 8px;
}

.lg-reels-full-cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0;
}

.lg-reels-full-cart-total strong {
    color: #ff5a36;
}

.lg-reels-full-cart-continue {
    flex: 1;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.lg-reels-full-cart-checkout {
    flex: 1;
    padding: 12px;
    border-radius: 16px;
    border: 0;
    background: #ff5a36;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s;
}

.lg-reels-full-cart-checkout:active {
    opacity: 0.82;
}

@media (max-width: 900px) {
    .lg-product-reels {
        padding: 20px;
        border-radius: 28px;
    }

    .lg-reels-modal-nav {
        display: none;
    }
}

@media (max-width: 520px) {
    .lg-product-reels {
        padding: 16px 12px;
    }

    .lg-reels-slider-arrow {
        display: none;
    }

    /* Mobile: garante que o peek do 3º card seja visível */
    .lg-product-reels-slider-wrap {
        overflow: hidden;
    }

    /* Cards menores + mais compactos no mobile */
    .lg-reel-card-title {
        font-size: 12px;
    }

    .lg-reel-card-product {
        padding: 6px 8px;
    }

    .lg-reel-card-product img {
        width: 26px;
        height: 26px;
    }

    .lg-reel-card-product-text span {
        font-size: 9px;
    }

    .lg-reel-card-product-text strong {
        font-size: 11px;
    }
}

@media (max-width: 640px) {
    .lg-reels-modal-item {
        padding: 0;
    }

    .lg-reels-modal-phone {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .lg-reels-progress {
        top: 50px;
    }

    .lg-reels-modal-top {
        top: 74px;
    }
}

/* ── Bottom area: leave room for the like sidebar ── */
.lg-reels-modal-bottom {
    right: 66px;
}

/* ── Like sidebar ─────────────────────────────────────────────────────── */
.lg-reels-modal-sidebar {
    position: absolute;
    right: 12px;
    bottom: 90px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.lg-reels-like-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 8px;
    border-radius: 16px;
}

.lg-reels-like-btn svg {
    width: 30px;
    height: 30px;
    color: #fff;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.45));
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), color 0.18s ease, fill 0.18s ease;
}

.lg-reels-like-btn.is-liked svg {
    color: #ff3366;
    filter: drop-shadow(0 2px 8px rgba(255,51,102,0.55));
    animation: lgReelsHeartPop 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes lgReelsHeartPop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.5); }
    70%  { transform: scale(0.92); }
    100% { transform: scale(1); }
}

.lg-reels-like-count {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ── Actions: product link + cart button ──────────────────────────────── */
.lg-reels-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lg-reels-add-to-cart-btn {
    width: 100%;
    padding: 13px 18px;
    border-radius: 22px;
    border: 0;
    background: #ff5a36;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.01em;
    transition: opacity 0.15s;
}

.lg-reels-add-to-cart-btn:active {
    opacity: 0.82;
}

/* ── Cart sheet ───────────────────────────────────────────────────────── */
.lg-reels-cart-sheet {
    position: absolute;
    inset: 0;
    z-index: 20;
}

.lg-reels-cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
}

.lg-reels-cart-dialog {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 28px 28px 0 0;
    padding: 28px 22px 40px;
    max-width: 460px;
    margin: 0 auto;
}

.lg-reels-cart-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: #f1f5f9;
    color: #374151;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lg-reels-cart-kicker {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 4px;
}

.lg-reels-cart-title {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 4px;
}

.lg-reels-cart-price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ff5a36;
    margin-bottom: 20px;
}

.lg-reels-cart-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.lg-reels-cart-qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #111;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lg-reels-cart-qty-input {
    width: 56px;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 8px;
    font-size: 16px;
    color: #111827;
}

.lg-reels-cart-submit {
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    border: 0;
    background: #ff5a36;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
    transition: opacity 0.15s;
}

.lg-reels-cart-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.lg-reels-cart-feedback {
    margin: 0;
    font-size: 13px;
    color: #ef4444;
    text-align: center;
    min-height: 18px;
}

.lg-reels-cart-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    text-align: center;
    color: #22c55e;
}

.lg-reels-cart-success span {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.lg-reels-cart-dialog.is-loading .lg-reels-cart-submit {
    opacity: 0.55;
}

.lg-reels-cart-dialog.is-success .lg-reels-cart-copy,
.lg-reels-cart-dialog.is-success .lg-reels-cart-qty,
.lg-reels-cart-dialog.is-success .lg-reels-cart-submit,
.lg-reels-cart-dialog.is-success .lg-reels-cart-feedback {
    display: none;
}

.lg-reels-cart-dialog.is-success .lg-reels-cart-success {
    display: flex;
}
