/*
Theme Name: Lingualloops
Theme URI: https://lingualloops.com
Author: Director Soo
Description: 베트남인을 위한 한국어 학습 사이트 — 교재 + 동영상 강의 + 회화 클럽. 가이드라인 기반 강의사이트 디자인.
Version: 28.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: thll
*/

/* ═══════════════════════════════════════════════
   🎨 LINGUALLOOPS DESIGN SYSTEM v6
   ═══════════════════════════════════════════════ */
:root{
    /* 메인 컬러 */
    --mint-50:#eefff7; --mint-100:#d6ffed; --mint-200:#b0feda;
    --mint-400:#42f0a1; --mint-500:#1ad685; --mint-600:#00b86d;
    --mint-700:#009158; --mint-800:#007247; --mint-900:#005d3b;

    /* 액센트 */
    --coral-50:#fff5f2; --coral-500:#ff6b4a;
    --yellow-300:#fde047; --yellow-400:#facc15;
    --red-500:#ef4444; --red-600:#dc2626; --red-700:#b91c1c;

    /* 네이비 */
    --navy-50:#f1f3f7; --navy-700:#2c3a50; --navy-800:#1c2836; --navy-900:#0f172a;

    /* 그레이 */
    --gray-50:#f9fafb; --gray-100:#f3f4f6; --gray-200:#e5e7eb;
    --gray-400:#9ca3af; --gray-500:#6b7280; --gray-700:#374151;

    /* 시스템 */
    --radius-sm:.75rem; --radius:1rem; --radius-lg:1.5rem; --radius-xl:2rem;
    --shadow-sm:0 2px 8px rgba(0,0,0,.04);
    --shadow:0 4px 20px rgba(0,0,0,.08);
    --shadow-lg:0 12px 40px rgba(0,0,0,.12);
    --shadow-xl:0 25px 50px -12px rgba(0,0,0,.25);

    /* 헤더 높이 (반응형) */
    --nav-h:60px;
    --bar-h:36px;
}
@media (min-width:768px){
    :root{ --nav-h:64px; --bar-h:40px; }
}

/* ═══════════════════════════════════════════════
   🔧 RESET
   ═══════════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth; -webkit-text-size-adjust:100%}
body{
    font-family:'Pretendard Variable',Pretendard,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
    color:var(--navy-800);
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.6;
    background:#fff;
    font-feature-settings:'kern','liga','calt';
}
::selection{background:var(--mint-500);color:#fff}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:color .2s}
ul,ol{list-style:none}
button{cursor:pointer;font:inherit;border:none;background:none;color:inherit}
input,textarea,select{font:inherit;color:inherit}
input:focus,textarea:focus,select:focus{outline:2px solid var(--mint-500);outline-offset:2px}
.font-vn{font-family:'Be Vietnam Pro',sans-serif}

/* ═══════════════════════════════════════════════
   📱 모바일 최적화 (타이포그래피)
   ═══════════════════════════════════════════════ */
@media (max-width:640px){
    h1,h2,h3,h4{word-break:keep-all; line-height:1.25}
    h1{font-size:32px}
    h2{font-size:26px}
    h3{font-size:20px}
    p{word-break:keep-all; line-height:1.7}
}

/* ═══════════════════════════════════════════════
   🎯 NAVIGATION
   ═══════════════════════════════════════════════ */
.nav{
    position:fixed; top:0; left:0; right:0; z-index:100;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(20px) saturate(1.4);
    -webkit-backdrop-filter:blur(20px) saturate(1.4);
    border-bottom:1px solid rgba(0,0,0,.05);
    transition:box-shadow .3s, background .3s;
}
.nav.scrolled{
    box-shadow:0 2px 20px rgba(0,0,0,.08);
    background:rgba(255,255,255,.98);
}

/* 모바일 메뉴 */
.mob-menu{
    display:none;
    position:fixed; inset:0; top:var(--nav-h);
    background:#fff;
    z-index:99;
    padding:20px;
    overflow-y:auto;
    animation:slideDown .3s ease;
}
.mob-menu.open{display:block}
.mob-menu a{
    display:flex; align-items:center; gap:12px;
    padding:18px 0;
    font-size:17px;
    font-weight:700;
    border-bottom:1px solid #f0f0f0;
    color:var(--navy-800);
}
.mob-menu a:hover{color:var(--mint-600)}
@keyframes slideDown{from{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}

/* 모바일 하단 CTA (강의 사이트 핵심!) */
.m-cta{
    display:none;
    position:fixed; bottom:0; left:0; right:0;
    z-index:60;
    background:#fff;
    border-top:1px solid var(--gray-200);
    padding:10px 12px;
    padding-bottom:max(10px, env(safe-area-inset-bottom));
    gap:8px;
    box-shadow:0 -4px 20px rgba(0,0,0,.08);
}
@media (max-width:1024px){.m-cta{display:flex}}

/* PC 사이드 빠른 메뉴 */
.q-side{
    position:fixed; right:0; top:50%;
    transform:translateY(-50%);
    z-index:50;
    display:flex; flex-direction:column;
    border-radius:14px 0 0 14px;
    overflow:hidden;
    box-shadow:-6px 0 24px rgba(0,0,0,.1);
    border:1px solid var(--gray-200);
    border-right:0;
    background:#fff;
}
.q-side a{
    display:flex; flex-direction:column; align-items:center; gap:4px;
    padding:12px 8px; width:72px;
    font-size:10px; font-weight:700;
    color:var(--gray-500);
    background:#fff;
    transition:all .2s;
    border-bottom:1px solid #f5f5f5;
}
.q-side a:last-child{border-bottom:none}
.q-side a:hover{background:var(--mint-50);color:var(--mint-700);transform:translateX(-4px)}
@media (max-width:1280px){.q-side{display:none}}

/* Zalo 플로팅 */
.kakao-f{
    position:fixed; bottom:24px; right:24px;
    z-index:50;
    width:60px; height:60px;
    border-radius:50%;
    background:#FEE500;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 6px 24px rgba(0,0,0,.18), 0 0 0 4px rgba(254,229,0,.2);
    transition:transform .2s, box-shadow .2s;
    animation:pulse 2.4s ease-in-out infinite;
}
.kakao-f:hover{transform:scale(1.1)}
@keyframes pulse{
    0%,100%{box-shadow:0 6px 24px rgba(0,0,0,.18), 0 0 0 4px rgba(254,229,0,.2)}
    50%{box-shadow:0 6px 24px rgba(0,0,0,.18), 0 0 0 12px rgba(254,229,0,0)}
}
@media (max-width:768px){
    .kakao-f{
        bottom:84px; right:14px;
        width:52px; height:52px;
    }
}

/* ═══════════════════════════════════════════════
   🎬 ANIMATIONS - Reveal on scroll
   ═══════════════════════════════════════════════ */
.rv{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.rv.show{opacity:1;transform:translateY(0)}
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}
.d4{transition-delay:.32s}.d5{transition-delay:.4s}.d6{transition-delay:.48s}

/* Float */
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)}}
.float{animation:float 6s ease-in-out infinite}

/* Glow */
@keyframes glow{0%,100%{opacity:.6}50%{opacity:1}}
.glow{animation:glow 3s ease-in-out infinite}

/* Shake (urgency) */
@keyframes shake{
    0%,100%{transform:translateX(0)}
    10%,30%,50%,70%,90%{transform:translateX(-2px)}
    20%,40%,60%,80%{transform:translateX(2px)}
}
.shake{animation:shake .6s ease-in-out}

/* Ring pulse */
@keyframes ring-pulse{
    0%{box-shadow:0 0 0 0 rgba(220,38,38,.5)}
    70%{box-shadow:0 0 0 16px rgba(220,38,38,0)}
    100%{box-shadow:0 0 0 0 rgba(220,38,38,0)}
}
.ring-pulse{animation:ring-pulse 2s ease-in-out infinite}

/* ═══════════════════════════════════════════════
   💎 COMPONENT POLISH (강의 사이트답게)
   ═══════════════════════════════════════════════ */

/* 카드 호버 효과 */
.hover-lift{transition:transform .3s, box-shadow .3s}
.hover-lift:hover{transform:translateY(-6px); box-shadow:0 20px 40px rgba(0,0,0,.12)}

/* 구매 CTA 강조 */
.btn-buy{
    background:linear-gradient(135deg, var(--red-500), var(--red-600));
    color:#fff;
    box-shadow:0 8px 24px rgba(220,38,38,.35), inset 0 1px 0 rgba(255,255,255,.2);
    transition:all .3s;
    position:relative;
    overflow:hidden;
}
.btn-buy::before{
    content:'';
    position:absolute;
    top:0; left:-100%;
    width:100%; height:100%;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    transition:left .6s;
}
.btn-buy:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 32px rgba(220,38,38,.45);
}
.btn-buy:hover::before{left:100%}

/* 강조 노란 버튼 */
.btn-yellow{
    background:linear-gradient(135deg, #fde047, #facc15);
    color:var(--navy-900);
    box-shadow:0 8px 24px rgba(250,204,21,.4), inset 0 1px 0 rgba(255,255,255,.5);
    transition:all .3s;
}
.btn-yellow:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 32px rgba(250,204,21,.5);
}

/* 가격 카드 추천 효과 */
.pkg-recommend{
    position:relative;
    transform:scale(1.02);
    z-index:2;
}
@media (max-width:768px){.pkg-recommend{transform:none; margin:8px 0}}

/* 가격 카운트다운 */
.countdown{
    font-variant-numeric:tabular-nums;
    font-feature-settings:'tnum';
}

/* FAQ 토글 부드러움 */
details summary{list-style:none}
details summary::-webkit-details-marker{display:none}
details[open] summary{}

/* Bunny Stream 임베드 컨테이너 */
.video-wrap{
    position:relative;
    padding-bottom:56.25%; /* 16:9 */
    height:0;
    overflow:hidden;
    border-radius:var(--radius-lg);
    background:#000;
}
.video-wrap iframe{
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
}

/* 자음 변환 카드 효과 */
.loop-card{
    background:linear-gradient(135deg, var(--mint-50), #fff);
    border:2px solid var(--mint-200);
    transition:all .3s;
}
.loop-card:hover{
    border-color:var(--mint-500);
    box-shadow:0 12px 32px rgba(26,214,133,.25);
    transform:translateY(-4px);
}

/* 메서드 카드 (3가지 독점 학습법) */
.method-card{
    background:#fff;
    border:2px solid var(--gray-200);
    transition:all .4s cubic-bezier(.4,0,.2,1);
    position:relative;
    overflow:hidden;
}
.method-card::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, transparent, rgba(26,214,133,.05));
    opacity:0;
    transition:opacity .3s;
    pointer-events:none;
}
.method-card:hover{
    border-color:var(--mint-500);
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(26,214,133,.2);
}
.method-card:hover::after{opacity:1}

/* 그라데이션 텍스트 */
.text-gradient{
    background:linear-gradient(135deg, var(--mint-500), var(--mint-700));
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* 별점 */
.stars{color:#fbbf24; font-size:14px; letter-spacing:1px}

/* Bank Box (계좌 정보) */
.bank-box{
    background:linear-gradient(135deg, #fef3c7, #fffbeb);
    border:2px solid #fbbf24;
    border-radius:var(--radius-lg);
    padding:20px;
}

/* ═══════════════════════════════════════════════
   📱 모바일 디테일 (강의 사이트 핵심)
   ═══════════════════════════════════════════════ */
@media (max-width:768px){
    /* 모바일에서 더 두꺼운 터치 영역 */
    button, .btn, a[role="button"]{
        min-height:44px;
    }

    /* 모바일 카드 패딩 줄이기 */
    .mobile-tight{padding:16px}

    /* 모바일에서 스크롤 가능한 가로 영역 */
    .scroll-x{
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        scroll-snap-type:x mandatory;
        padding-bottom:8px;
    }
    .scroll-x > *{scroll-snap-align:start}
    .scroll-x::-webkit-scrollbar{display:none}

    /* 모바일 하단 여백 (m-cta 가리지 않게) */
    body{padding-bottom:80px}
    body.no-mcta{padding-bottom:0}

    /* 모바일에서 큰 헤더 */
    h1{font-size:32px !important; line-height:1.2}
    h2{font-size:26px !important; line-height:1.25}

    /* 모바일에서 양옆 패딩 */
    section{padding-left:0; padding-right:0}
}

/* 더 작은 모바일 (iPhone SE 등) */
@media (max-width:380px){
    h1{font-size:28px !important}
    h2{font-size:24px !important}
    .btn-buy, .btn-yellow{font-size:14px !important; padding:14px 16px !important}
}

/* ═══════════════════════════════════════════════
   📄 PAGE-SPECIFIC
   ═══════════════════════════════════════════════ */
.page-hero{
    padding:120px 0 60px;
    position:relative;
    overflow:hidden;
}
.page-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, var(--mint-500), var(--mint-700));
}
.page-hero > div{position:relative; z-index:1}

/* 사이트 푸터 */
.site-footer{
    background:#0f172a;
    color:#cbd5e1;
}

/* ═══════════════════════════════════════════════
   🎨 SKELETON (이미지 로딩 대기)
   ═══════════════════════════════════════════════ */
.skeleton{
    background:linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size:200% 100%;
    animation:skeleton 1.4s infinite;
}
@keyframes skeleton{0%{background-position:200% 0}100%{background-position:-200% 0}}

/* ═══════════════════════════════════════════════
   🔧 ADMIN MANUAL PAGE
   ═══════════════════════════════════════════════ */
.thll-manual{max-width:900px;margin:20px auto;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif}
.thll-manual h1{font-size:28px;font-weight:700;margin-bottom:8px;color:#1e2a3a}
.thll-manual .manual-card{background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:24px;margin-bottom:16px;transition:box-shadow .2s}
.thll-manual .manual-card:hover{box-shadow:0 4px 12px rgba(0,0,0,.06)}
.thll-manual .manual-card h3{font-size:16px;font-weight:700;margin-bottom:8px;display:flex;align-items:center;gap:8px}
.thll-manual .manual-card p{color:#6b7280;font-size:14px;line-height:1.7;margin-bottom:8px}
.thll-manual .manual-card .step{display:flex;gap:12px;align-items:start;padding:8px 0}
.thll-manual .manual-card .step-num{width:24px;height:24px;border-radius:50%;background:#1ad685;color:#fff;font-size:12px;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.thll-manual code{background:#fffbeb;padding:2px 6px;border-radius:4px;font-size:13px;color:#92400e}


/* ═══════════════════════════════════════════════
   WooCommerce shop emergency layout fix v8.0.0
   상점 카드가 한 글자씩 세로로 깨지거나 푸터와 겹치는 문제 방지
   ═══════════════════════════════════════════════ */
body.post-type-archive-product,
body.woocommerce-shop,
body.single-product{
  background:#f8fafc!important;
  overflow-x:hidden!important;
}
body.post-type-archive-product main,
body.woocommerce-shop main,
body.single-product main{
  display:block!important;
  clear:both!important;
  min-height:70vh!important;
}
.thll-shop-page,
.thll-product-page{
  display:block!important;
  width:100%!important;
  clear:both!important;
  min-height:80vh!important;
  writing-mode:horizontal-tb!important;
  text-orientation:mixed!important;
}
.thll-shop-page *,
.thll-product-page *,
ul.products li.product *{
  writing-mode:horizontal-tb!important;
  text-orientation:mixed!important;
  word-break:keep-all!important;
}
.thll-shop-grid,
.thll-shop-grid-courses,
.thll-shop-grid-physical{
  display:grid!important;
  width:100%!important;
  gap:24px!important;
  align-items:stretch!important;
  clear:both!important;
}
.thll-shop-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
.thll-shop-grid-courses{grid-template-columns:repeat(4,minmax(0,1fr))!important;}
.thll-shop-card{
  display:flex!important;
  flex-direction:column!important;
  width:100%!important;
  min-width:0!important;
  max-width:none!important;
  float:none!important;
  clear:none!important;
  height:auto!important;
}
.thll-shop-card h2,
.thll-shop-card-title,
.woocommerce-loop-product__title{
  white-space:normal!important;
  overflow-wrap:normal!important;
  word-break:keep-all!important;
  line-height:1.35!important;
}
.thll-shop-card img,
.thll-wc-visual img,
.thll-product-media img{
  max-width:100%!important;
  height:auto!important;
}
body.woocommerce ul.products,
body.woocommerce-page ul.products{
  display:grid!important;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr))!important;
  gap:24px!important;
  float:none!important;
  clear:both!important;
  margin:0 auto!important;
  padding:0!important;
  width:100%!important;
  max-width:1180px!important;
}
body.woocommerce ul.products li.product,
body.woocommerce-page ul.products li.product{
  float:none!important;
  clear:none!important;
  width:auto!important;
  min-width:0!important;
  margin:0!important;
}
@media(max-width:1024px){.thll-shop-grid-courses{grid-template-columns:repeat(2,minmax(0,1fr))!important;}}
@media(max-width:720px){.thll-shop-grid,.thll-shop-grid-courses,.thll-shop-grid-physical{grid-template-columns:1fr!important;}}

/* ═══════════════════════════════════════════════
   WooCommerce product redesign v8.0.0
   상세페이지 코드 입력/구매 버튼/상품 비주얼 통합 디자인
   ═══════════════════════════════════════════════ */
body.single-product{background:#f4f7fb!important;color:#0f172a!important}
.thll-product-page-v8{max-width:1180px;margin:0 auto;padding:92px 18px 72px!important;display:block!important;overflow:visible!important;writing-mode:horizontal-tb!important}
.thll-product-page-v8 *{box-sizing:border-box!important;writing-mode:horizontal-tb!important;text-orientation:mixed!important;word-break:keep-all!important}
.thll-product-breadcrumb{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin:0 0 18px;color:#64748b;font-size:13px;font-weight:800}
.thll-product-breadcrumb a{color:#64748b;text-decoration:none}.thll-product-breadcrumb a:hover{color:#0dbb74}.thll-product-breadcrumb strong{color:#0f172a}
.thll-product-hero-v8{display:grid!important;grid-template-columns:minmax(0,540px) minmax(0,1fr)!important;gap:36px!important;align-items:start!important;margin:0 0 34px!important;float:none!important;clear:both!important;width:100%!important;max-width:none!important}
.thll-product-gallery-v8,.thll-product-summary-v8{min-width:0!important;width:100%!important;float:none!important;clear:none!important}
.thll-product-visual-frame{position:relative;background:#fff;border:1px solid #dde6f2;border-radius:32px;padding:18px;box-shadow:0 28px 80px rgba(15,23,42,.11);overflow:hidden}
.thll-product-media-badge{position:absolute;left:30px;top:30px;z-index:5;display:inline-flex;align-items:center;gap:6px;background:#ef242b;color:#fff;border-radius:999px;padding:10px 14px;font-weight:950;font-size:13px;box-shadow:0 10px 24px rgba(239,36,43,.24)}
.thll-product-trust-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin-top:12px}.thll-product-trust-strip span{background:#fff;border:1px solid #e2e8f0;border-radius:16px;padding:11px 10px;text-align:center;color:#334155;font-size:12px;font-weight:900;box-shadow:0 8px 24px rgba(15,23,42,.05)}
.thll-product-summary-v8{background:#fff;border:1px solid #dde6f2;border-radius:32px;padding:32px 34px;box-shadow:0 28px 80px rgba(15,23,42,.10)}
.thll-product-kicker-row{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}.thll-product-kicker{display:inline-flex;align-items:center;border-radius:999px;background:#ecfdf5;color:#047857;border:1px solid #bbf7d0;padding:8px 12px;font-size:12px;font-weight:950}.thll-product-stock-pill{display:inline-flex;border-radius:999px;background:#f1f5f9;color:#475569;padding:8px 12px;font-size:12px;font-weight:900}
.thll-product-title-v8{margin:0 0 14px!important;font-size:clamp(34px,4.6vw,56px)!important;line-height:1.08!important;letter-spacing:-.055em!important;color:#111827!important;font-weight:950!important;max-width:100%!important;overflow:visible!important;text-align:left!important}.thll-product-price-v8{margin:0 0 12px!important;color:#e11d28!important;font-size:clamp(34px,4.3vw,54px)!important;font-weight:950!important;letter-spacing:-.04em!important;line-height:1.1!important}.thll-product-price-v8 del{color:#ef4444!important;opacity:1!important;text-decoration-thickness:4px!important;margin-right:10px!important}.thll-product-price-v8 ins{text-decoration:none!important;color:#e11d28!important}.thll-product-price-v8 .woocommerce-Price-currencySymbol{font-size:.82em!important}.thll-product-short-v8{margin:0 0 18px;color:#334155;font-size:15px;line-height:1.75;font-weight:700}.thll-product-short-v8 p{margin:0}
.thll-product-flow-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin:18px 0}.thll-product-flow-cards div{background:#f8fafc;border:1px solid #e2e8f0;border-radius:18px;padding:14px 13px;min-width:0}.thll-product-flow-cards b{display:grid;place-items:center;width:28px;height:28px;border-radius:10px;background:#0f172a;color:#fff;font-size:13px;margin-bottom:8px}.thll-product-flow-cards strong{display:block;color:#111827;font-size:13px;font-weight:950;margin-bottom:4px}.thll-product-flow-cards span{display:block;color:#64748b;font-size:12px;font-weight:750;line-height:1.45}
.thll-kh-code-card{margin:20px 0!important;padding:22px!important;background:linear-gradient(135deg,#fff7ed 0%,#fffbeb 42%,#ffffff 100%)!important;border:2px solid #f59e0b!important;border-radius:26px!important;box-shadow:0 20px 50px rgba(245,158,11,.14)!important;overflow:hidden!important;position:relative!important}.thll-kh-code-card:before{content:"";position:absolute;inset:0 0 auto auto;width:180px;height:180px;background:radial-gradient(circle,rgba(245,158,11,.25),transparent 70%);transform:translate(35%,-35%);pointer-events:none}.thll-kh-code-card-head{position:relative;display:grid;grid-template-columns:48px minmax(0,1fr) auto;gap:14px;align-items:start;margin-bottom:16px}.thll-kh-code-icon{width:48px;height:48px;border-radius:18px;background:#0f172a;color:#fff;display:grid;place-items:center;font-size:24px;box-shadow:0 12px 24px rgba(15,23,42,.16)}.thll-kh-code-kicker{display:inline-flex;margin:0 0 4px;color:#b45309;font-size:12px;font-weight:950;letter-spacing:.02em}.thll-kh-code-card h3{margin:0!important;color:#7c2d12!important;font-size:20px!important;line-height:1.25!important;font-weight:950!important}.thll-kh-code-card-head p{margin:6px 0 0;color:#92400e;font-size:13px;line-height:1.65;font-weight:800}.thll-kh-code-card-head em{font-style:normal;white-space:nowrap;background:#0f172a;color:#fff;border-radius:999px;padding:8px 11px;font-size:11px;font-weight:950}
.thll-kh-choice{position:relative;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px;margin-bottom:14px}.thll-kh-choice-btn{appearance:none;border:2px solid #fed7aa;background:#fff;border-radius:16px;padding:13px 10px;text-align:left;cursor:pointer;transition:.18s;min-width:0}.thll-kh-choice-btn strong{display:block;color:#9a3412;font-size:13px;font-weight:950;margin-bottom:4px}.thll-kh-choice-btn span{display:block;color:#64748b;font-size:11px;font-weight:850;line-height:1.35}.thll-kh-choice-btn:hover,.thll-kh-choice-btn.is-active{border-color:#f59e0b;background:#fff7ed;box-shadow:0 12px 24px rgba(245,158,11,.15);transform:translateY(-1px)}.thll-kh-single-target{position:relative;display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px;background:#fff;border:1px solid #fed7aa;border-radius:18px;padding:14px 16px}.thll-kh-single-target strong{color:#7c2d12;font-weight:950}.thll-kh-single-target span{color:#b45309;font-size:13px;font-weight:850;text-align:right}
.thll-kh-code-form{position:relative;display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;gap:10px!important;margin:0!important}.thll-kh-code-input{width:100%!important;min-height:58px!important;border:2px solid #f59e0b!important;background:#fff!important;border-radius:18px!important;padding:0 18px!important;color:#0f172a!important;font-size:16px!important;font-weight:950!important;letter-spacing:.04em!important;text-transform:uppercase!important;outline:none!important;box-shadow:inset 0 0 0 1px rgba(245,158,11,.04)!important}.thll-kh-code-input:focus{border-color:#0f172a!important;box-shadow:0 0 0 4px rgba(15,23,42,.10)!important}.thll-kh-code-apply{min-height:58px!important;border:0!important;border-radius:18px!important;background:linear-gradient(135deg,#ef242b,#b91c1c)!important;color:#fff!important;padding:0 24px!important;font-size:15px!important;font-weight:950!important;cursor:pointer!important;white-space:nowrap!important;box-shadow:0 14px 30px rgba(239,36,43,.22)!important;transition:.18s!important}.thll-kh-code-apply:hover{transform:translateY(-1px)!important;box-shadow:0 18px 38px rgba(239,36,43,.28)!important}.thll-kh-code-apply:disabled{opacity:.65!important;cursor:wait!important;transform:none!important}.thll-kh-code-result{display:none;margin-top:12px}.thll-kh-code-result>div{border-radius:16px;padding:13px 15px;font-size:13px;font-weight:850;line-height:1.6}.thll-kh-code-result .success{background:#ecfdf5;border:2px solid #1ad685;color:#005d3b}.thll-kh-code-result .error{background:#fef2f2;border:2px solid #dc2626;color:#991b1b}.thll-kh-code-result .loading{background:#eff6ff;border:2px solid #3b82f6;color:#1e40af}.thll-kh-code-manual{margin-top:12px;background:rgba(255,255,255,.70);border:1px solid #fed7aa;border-radius:18px;padding:14px 16px;color:#9a3412;font-size:13px;line-height:1.65}.thll-kh-code-manual strong{display:block;color:#7c2d12;font-size:14px;font-weight:950;margin-bottom:6px}.thll-kh-code-manual ul{margin:0!important;padding-left:18px!important}.thll-kh-code-manual li{margin:2px 0!important;font-weight:800!important}
.thll-buy-panel-v8{margin-top:18px;background:#f8fafc;border:1px solid #dce6f2;border-radius:24px;padding:20px}.thll-buy-panel-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:10px}.thll-buy-panel-head span{display:block;color:#64748b;font-size:12px;font-weight:950;margin-bottom:4px}.thll-buy-panel-head h3{margin:0!important;color:#111827!important;font-size:18px!important;font-weight:950!important}.thll-buy-panel-head strong{color:#ef242b;font-size:18px;font-weight:950;text-align:right;white-space:nowrap}.thll-buy-panel-head strong del{font-size:13px;color:#94a3b8;margin-right:6px}.thll-buy-panel-head strong ins{text-decoration:none}.thll-buy-help-v8{margin:0 0 14px;color:#475569;font-size:13px;line-height:1.65;font-weight:760}.thll-buy-form-v8{display:grid!important;grid-template-columns:auto minmax(190px,1fr)!important;gap:10px!important;align-items:stretch!important;margin:0!important;width:100%!important}.thll-qty-wrap-v8{display:flex;align-items:center;gap:9px;background:#fff;border:1px solid #cbd5e1;border-radius:18px;padding:8px 12px}.thll-qty-wrap-v8 span{font-size:12px;color:#64748b;font-weight:950}.thll-qty-wrap-v8 .quantity{margin:0!important}.thll-qty-wrap-v8 input.qty{width:72px!important;height:42px!important;border:0!important;background:#f1f5f9!important;border-radius:12px!important;text-align:center!important;font-weight:950!important;color:#0f172a!important}.thll-buy-button-v8{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:100%!important;min-height:58px!important;border:0!important;border-radius:18px!important;background:linear-gradient(135deg,#1ad685,#009158)!important;color:#062116!important;padding:0 22px!important;font-size:17px!important;font-weight:950!important;text-decoration:none!important;box-shadow:0 16px 32px rgba(26,214,133,.25)!important;transition:.18s!important}.thll-buy-button-v8:hover{transform:translateY(-1px)!important;filter:brightness(.98)!important}.thll-product-soldout-v8{border-radius:18px;background:#fef2f2;border:1px solid #fecaca;color:#991b1b;padding:14px 16px;font-weight:900}.thll-buy-fallback-v8{display:block!important}.thll-buy-fallback-v8 .button{border-radius:16px!important;background:#1ad685!important;color:#062116!important;font-weight:950!important;padding:14px 22px!important}
.thll-code-router{margin:20px 0;padding:18px;background:#fff;border:1px solid #e2e8f0;border-radius:22px;box-shadow:0 14px 36px rgba(15,23,42,.06)}.thll-code-router-head{display:grid;grid-template-columns:34px minmax(0,1fr);gap:10px;margin-bottom:13px}.thll-code-router-head>span{font-size:25px}.thll-code-router-head strong{display:block;color:#0f172a;font-size:15px;font-weight:950;margin-bottom:4px}.thll-code-router-head p{margin:0;color:#64748b;font-size:13px;line-height:1.55;font-weight:750}.thll-code-router-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px}.thll-code-router-grid a{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:70px;border-radius:16px;text-decoration:none;background:#f8fafc;border:1px solid #e2e8f0;transition:.18s}.thll-code-router-grid a:hover{transform:translateY(-1px);background:#ecfdf5;border-color:#1ad685}.thll-code-router-grid b{color:#0f172a;font-size:12px;font-weight:950}.thll-code-router-grid span{margin-top:3px;color:#047857;font-size:12px;font-weight:900}
.thll-product-detail-v8{display:grid;grid-template-columns:minmax(0,1fr) 390px;gap:24px;margin:34px 0}.thll-product-detail-main-v8,.thll-product-policy-v8{background:#fff;border:1px solid #dde6f2;border-radius:30px;padding:28px;box-shadow:0 20px 60px rgba(15,23,42,.08)}.thll-section-kicker-v8{display:inline-flex;margin-bottom:8px;color:#047857;font-size:12px;font-weight:950;letter-spacing:.06em}.thll-product-detail-main-v8 h2,.thll-product-policy-v8 h2{margin:0 0 16px!important;color:#0f172a!important;font-size:28px!important;font-weight:950!important;letter-spacing:-.03em!important}.thll-product-description-v8{color:#334155;font-size:15px;line-height:1.85;font-weight:700}.thll-product-description-v8 p{margin:0 0 14px}.thll-product-description-v8 strong{color:#0f172a;font-weight:950}.thll-policy-card-v8{border:1px solid #e2e8f0;border-radius:20px;padding:16px;margin-bottom:12px;background:#f8fafc}.thll-policy-card-v8 h3{margin:0 0 12px;color:#0f172a;font-size:15px;font-weight:950}.thll-policy-card-v8 p{display:flex;justify-content:space-between;gap:12px;margin:8px 0;color:#475569;font-size:13px;font-weight:800}.thll-policy-card-v8 p b{color:#111827}.thll-policy-card-v8 p span{text-align:right;color:#dc2626;font-weight:950}.thll-policy-board-v8{background:#f0fdf4;border-color:#bbf7d0}.thll-policy-board-v8 p span{color:#047857}.thll-policy-list-v8{margin:14px 0 0!important;padding-left:18px!important;color:#475569;font-size:13px;line-height:1.7;font-weight:800}.thll-policy-list-v8 li{margin:3px 0!important}.thll-product-bottom-cta-v8{display:flex;align-items:center;justify-content:space-between;gap:22px;background:#0f172a;color:#fff;border-radius:30px;padding:28px 30px;box-shadow:0 26px 65px rgba(15,23,42,.16)}.thll-product-bottom-cta-v8 span{display:inline-flex;margin-bottom:6px;color:#93f9c9;font-size:12px;font-weight:950}.thll-product-bottom-cta-v8 h2{margin:0 0 6px!important;font-size:22px!important;line-height:1.35!important;font-weight:950!important;color:#fff!important}.thll-product-bottom-cta-v8 p{margin:0;color:#cbd5e1;font-weight:750}.thll-product-bottom-cta-v8 a{display:inline-flex;align-items:center;justify-content:center;min-width:190px;min-height:52px;border-radius:16px;background:#1ad685;color:#062116;text-decoration:none;font-weight:950;box-shadow:0 16px 32px rgba(26,214,133,.22)}
.thll-wc-visual{position:relative;overflow:hidden;border-radius:24px;background:linear-gradient(135deg,#0d2b1a,#123c27);min-height:260px;aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;width:100%!important}.thll-wc-visual-single{min-height:520px;aspect-ratio:1/1.03}.thll-wc-visual img{position:absolute;inset:0;width:100%!important;height:100%!important;object-fit:cover!important;z-index:2}.thll-wc-visual.is-fallback img{display:none!important}.thll-wc-visual-fallback{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;z-index:1;padding:34px}.has-real-image .thll-wc-visual-fallback{opacity:0}.thll-visual-price-hint{position:absolute;right:18px;bottom:18px;z-index:4;background:#f5c518;color:#0d2b1a;border-radius:999px;padding:8px 13px;font-size:12px;font-weight:950;box-shadow:0 12px 24px rgba(0,0,0,.16)}.thll-mock-book-wrap{position:relative;width:min(68%,320px);height:min(78%,420px);display:flex;align-items:center;justify-content:center}.thll-mock-book-cover{position:relative;width:100%;height:100%;background:linear-gradient(155deg,#101827 0%,#0a0f19 58%,#172034 100%);border-radius:12px;box-shadow:18px 22px 48px rgba(0,0,0,.28);padding:34px 30px;color:#fff;display:flex;flex-direction:column;justify-content:space-between;transform:rotate(-7deg)}.thll-mock-book-cover:before{content:"";position:absolute;inset:14px;border:1px solid rgba(255,255,255,.14);border-radius:8px}.thll-mock-book-cover span{font-size:12px;color:#f5c518;font-weight:950;letter-spacing:.08em;text-transform:uppercase}.thll-mock-book-cover strong{font-size:clamp(28px,4vw,44px);line-height:1.06;font-weight:950;letter-spacing:-.04em}.thll-mock-book-cover em{font-style:normal;color:rgba(255,255,255,.64);font-size:13px;line-height:1.55;font-weight:750}.thll-mock-book-shadow{position:absolute;inset:auto 4% -4% 15%;height:24px;background:rgba(0,0,0,.25);filter:blur(12px);border-radius:50%}.thll-mock-board-wrap{width:min(86%,420px);background:#fff9e8;border:8px solid #f5c518;border-radius:28px;padding:26px;color:#0d2b1a;box-shadow:18px 22px 48px rgba(0,0,0,.24)}.thll-mock-board-head{background:#0d2b1a;color:#f5c518;border-radius:16px;padding:13px 16px;font-size:20px;font-weight:950;text-align:center;margin-bottom:18px}.thll-mock-board-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:8px}.thll-mock-board-grid span{aspect-ratio:1;display:grid;place-items:center;background:#fff;border:2px solid #1a5c35;border-radius:12px;font-size:24px;font-weight:950}.thll-mock-board-wrap p{margin:16px 0 0;text-align:center;font-weight:950;color:#1a5c35}.thll-mock-video-wrap{width:min(86%,460px);aspect-ratio:16/9;background:linear-gradient(135deg,#020617,#0f172a);border:1px solid rgba(255,255,255,.12);border-radius:28px;color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;box-shadow:20px 24px 54px rgba(0,0,0,.28)}.thll-mock-video-book{background:linear-gradient(135deg,#111827,#7f1d1d)}.thll-mock-play{width:76px;height:76px;border-radius:50%;display:grid;place-items:center;background:#1ad685;color:#062116;font-size:30px;font-weight:950;margin-bottom:16px;box-shadow:0 18px 38px rgba(26,214,133,.28)}.thll-mock-video-wrap strong{font-size:28px;font-weight:950}.thll-mock-video-wrap span{margin-top:6px;color:rgba(255,255,255,.72);font-size:13px;font-weight:850}
ul.products li.product.thll-loop-product-card{background:#fff!important;border:1px solid #e2e8f0!important;border-radius:24px!important;padding:12px!important;box-shadow:0 16px 45px rgba(15,23,42,.08)!important;overflow:hidden!important}.thll-loop-product-link{text-decoration:none!important;color:#0f172a!important;display:block!important}.thll-loop-product-card .thll-wc-visual{border-radius:18px;min-height:220px}.thll-loop-product-card .woocommerce-loop-product__title{font-size:18px!important;font-weight:950!important;color:#0f172a!important;line-height:1.35!important;padding:12px 4px 4px!important}.thll-loop-product-card .price{display:block!important;color:#ef242b!important;font-size:20px!important;font-weight:950!important;padding:0 4px 12px!important}.thll-loop-detail-btn{display:flex!important;align-items:center!important;justify-content:center!important;border-radius:16px!important;background:#0f172a!important;color:#fff!important;font-weight:950!important;text-decoration:none!important;padding:13px 14px!important;margin:0!important}.thll-loop-product-badge{position:absolute;left:12px;top:12px;z-index:4;background:#ef242b;color:#fff;border-radius:999px;padding:7px 10px;font-size:11px;font-weight:950}.thll-loop-product-card .thll-wc-visual{position:relative}
@media(max-width:1100px){.thll-product-hero-v8{grid-template-columns:1fr!important}.thll-product-detail-v8{grid-template-columns:1fr}.thll-wc-visual-single{min-height:420px}.thll-product-trust-strip{grid-template-columns:1fr 1fr 1fr}.thll-product-bottom-cta-v8{align-items:flex-start;flex-direction:column}.thll-product-bottom-cta-v8 a{width:100%}}
@media(max-width:760px){.thll-product-page-v8{padding:78px 14px 54px!important}.thll-product-summary-v8,.thll-product-detail-main-v8,.thll-product-policy-v8{padding:22px;border-radius:24px}.thll-product-title-v8{font-size:32px!important}.thll-product-price-v8{font-size:34px!important}.thll-product-flow-cards,.thll-product-trust-strip,.thll-kh-choice{grid-template-columns:1fr!important}.thll-kh-code-card-head{grid-template-columns:42px minmax(0,1fr)}.thll-kh-code-card-head em{grid-column:1 / -1;justify-self:start}.thll-kh-code-form{grid-template-columns:1fr!important}.thll-kh-code-apply{width:100%!important}.thll-buy-form-v8{grid-template-columns:1fr!important}.thll-buy-panel-head{flex-direction:column}.thll-buy-panel-head strong{text-align:left}.thll-code-router-grid{grid-template-columns:1fr 1fr}.thll-wc-visual-single{min-height:360px}.thll-mock-book-wrap{width:76%;height:82%}.thll-mock-board-grid span{font-size:18px}.thll-product-bottom-cta-v8{padding:24px;border-radius:24px}}
@media(max-width:480px){.thll-code-router-grid{grid-template-columns:1fr}.thll-product-visual-frame{padding:12px;border-radius:24px}.thll-product-media-badge{left:22px;top:22px}.thll-wc-visual-single{min-height:310px}.thll-mock-book-cover{padding:26px 22px}.thll-mock-board-wrap{padding:18px;border-width:6px}.thll-mock-board-grid{grid-template-columns:repeat(4,1fr)}}

/* Cart / checkout quick polish v8 */
body.woocommerce-cart,body.woocommerce-checkout{background:#f4f7fb!important}.woocommerce-cart .woocommerce,.woocommerce-checkout .woocommerce{max-width:1160px;margin:90px auto 70px;padding:0 18px}.woocommerce-cart table.shop_table,.woocommerce-checkout table.shop_table,.woocommerce-checkout #payment{background:#fff!important;border:1px solid #dde6f2!important;border-radius:24px!important;overflow:hidden!important;box-shadow:0 20px 60px rgba(15,23,42,.08)!important}.woocommerce-cart table.shop_table th,.woocommerce-cart table.shop_table td,.woocommerce-checkout table.shop_table th,.woocommerce-checkout table.shop_table td{padding:16px!important;border-color:#e2e8f0!important;color:#0f172a!important;font-weight:800!important}.woocommerce-cart .cart_totals,.woocommerce-checkout .col2-set .col-1,.woocommerce-checkout .col2-set .col-2{background:#fff;border:1px solid #dde6f2;border-radius:24px;padding:24px!important;box-shadow:0 18px 54px rgba(15,23,42,.08)}.woocommerce a.button,.woocommerce button.button,.woocommerce input.button,.woocommerce #respond input#submit,.woocommerce button.button.alt,.woocommerce a.button.alt{border-radius:16px!important;background:#1ad685!important;color:#062116!important;font-weight:950!important;padding:14px 22px!important;border:0!important;text-decoration:none!important}.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce input.button:hover,.woocommerce button.button.alt:hover,.woocommerce a.button.alt:hover{background:#00b86d!important;color:#062116!important}.woocommerce .checkout-button.button.alt,.woocommerce #place_order{background:#ef242b!important;color:#fff!important;box-shadow:0 16px 34px rgba(239,36,43,.24)!important}.woocommerce .checkout-button.button.alt:hover,.woocommerce #place_order:hover{background:#b91c1c!important;color:#fff!important}.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,.woocommerce form .form-row select{border:2px solid #dbe5f1!important;border-radius:14px!important;padding:12px 14px!important;background:#fff!important;color:#0f172a!important;font-weight:800!important}.woocommerce-message,.woocommerce-info,.woocommerce-error{max-width:1160px;margin:18px auto!important;border-radius:18px!important;border:0!important;box-shadow:0 14px 36px rgba(15,23,42,.08)!important;font-weight:850!important}.woocommerce-message{border-top:4px solid #1ad685!important}.woocommerce-info{border-top:4px solid #3b82f6!important}.woocommerce-error{border-top:4px solid #dc2626!important}

/* v10.1 — Bunny real WooCommerce test product detail video lab */
.thll-product-video-lab{max-width:1140px;margin:34px auto 70px;padding:28px;background:#fff;border:1px solid #dbe4ef;border-radius:32px;box-shadow:0 26px 80px rgba(15,23,42,.10);clear:both}
.thll-product-video-head{position:relative;padding:10px 10px 22px;min-height:118px}
.thll-product-video-head span{display:inline-flex;background:#ecfdf5;color:#047857;border-radius:999px;padding:7px 12px;font-size:12px;font-weight:950;letter-spacing:.04em}
.thll-product-video-head h2{margin:13px 0 8px;font-size:clamp(25px,4vw,40px);letter-spacing:-.045em;color:#0f172a;font-weight:950;line-height:1.12}
.thll-product-video-head p{margin:0;color:#64748b;line-height:1.75;max-width:760px;font-weight:650}
.thll-product-video-head p a{color:#047857;font-weight:950;text-decoration:none}
.thll-product-video-status{position:absolute;right:10px;top:10px;display:grid;text-align:center;border-radius:20px;padding:12px 16px;min-width:128px}
.thll-product-video-status.is-open{background:#dcfce7;color:#047857}
.thll-product-video-status.is-locked{background:#fff7ed;color:#c2410c}
.thll-product-video-status b{font-weight:950;font-size:16px}
.thll-product-video-status small{font-weight:850;font-size:11px}
.thll-product-video-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.thll-product-video-grid article{background:#f8fafc;border:1px solid #e2e8f0;border-radius:22px;padding:14px;overflow:hidden;min-width:0}
.thll-product-video-title{display:flex;align-items:center;gap:10px;margin-bottom:10px;color:#0f172a}
.thll-product-video-title span{display:grid;place-items:center;width:46px;height:34px;border-radius:12px;background:#0f172a;color:#fff;font-size:12px;font-weight:950;flex:0 0 auto}
.thll-product-video-title strong{font-weight:950;color:#0f172a;line-height:1.35;word-break:keep-all}
.thll-product-guid{font-size:12px;color:#64748b;margin:9px 0 0;word-break:break-all}
.thll-product-video-admin-note{margin-top:14px;background:#fff7ed;border:1px solid #fed7aa;color:#9a3412;border-radius:16px;padding:12px 14px;font-weight:850}
.thll-product-video-lab .thll-test-locked{background:#0f172a;color:#fff;border-radius:20px;min-height:260px}
.thll-product-video-lab .thll-test-player{box-shadow:none}
@media(max-width:900px){.thll-product-video-lab{margin:24px 14px 54px;padding:20px}.thll-product-video-status{position:static;margin-top:14px;display:inline-grid}.thll-product-video-grid{grid-template-columns:1fr}.thll-product-video-head{min-height:0}}

/* Bunny real WooCommerce test product video lab v10 */
.thll-product-video-lab{max-width:1140px;margin:34px auto 70px;padding:28px;background:#fff;border:1px solid #dbe4ef;border-radius:32px;box-shadow:0 26px 80px rgba(15,23,42,.10)}
.thll-product-video-head{position:relative;padding:10px 10px 22px}.thll-product-video-head span{display:inline-flex;background:#ecfdf5;color:#047857;border-radius:999px;padding:7px 12px;font-size:12px;font-weight:950}.thll-product-video-head h2{margin:13px 0 8px;font-size:clamp(25px,4vw,40px);letter-spacing:-.045em;color:#0f172a;font-weight:950}.thll-product-video-head p{margin:0;color:#64748b;line-height:1.75;max-width:760px}.thll-product-video-status{position:absolute;right:10px;top:10px;display:grid;text-align:center;border-radius:20px;padding:12px 16px}.thll-product-video-status.is-open{background:#dcfce7;color:#047857}.thll-product-video-status.is-locked{background:#fff7ed;color:#c2410c}.thll-product-video-status b{font-weight:950}.thll-product-video-status small{font-weight:850}.thll-product-video-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.thll-product-video-grid article{background:#f8fafc;border:1px solid #e2e8f0;border-radius:22px;padding:14px;overflow:hidden}.thll-product-video-title{display:flex;align-items:center;gap:10px;margin-bottom:10px}.thll-product-video-title span{display:grid;place-items:center;width:46px;height:34px;border-radius:12px;background:#0f172a;color:#fff;font-size:12px;font-weight:950}.thll-product-video-title strong{font-weight:950;color:#0f172a}.thll-product-guid{font-size:12px;color:#64748b;margin:9px 0 0;word-break:break-all}.thll-product-video-admin-note{margin-top:14px;background:#fff7ed;border:1px solid #fed7aa;color:#9a3412;border-radius:16px;padding:12px 14px;font-weight:850}
@media(max-width:900px){.thll-product-video-status{position:static;margin-top:14px;display:inline-grid}.thll-product-video-grid{grid-template-columns:1fr}}


/* v10 Bunny 실제 WooCommerce 테스트 상품/상세 영상 랩 */
.thll-real-product-lab{max-width:1180px;margin:26px auto 28px;background:linear-gradient(135deg,#07111f,#10233d);border:1px solid rgba(255,255,255,.12);border-radius:34px;padding:28px;display:grid;grid-template-columns:minmax(0,1fr) 420px;gap:26px;box-shadow:0 34px 90px rgba(15,23,42,.28);color:#fff;position:relative;overflow:hidden}.thll-real-product-lab:before{content:"";position:absolute;inset:auto -120px -160px auto;width:420px;height:420px;background:radial-gradient(circle,rgba(26,214,133,.42),transparent 62%);pointer-events:none}.thll-real-product-copy,.thll-real-product-panel{position:relative;z-index:1}.thll-real-eyebrow{display:inline-flex;align-items:center;border-radius:999px;background:rgba(26,214,133,.14);border:1px solid rgba(26,214,133,.42);color:#86efac;padding:8px 12px;font-size:12px;font-weight:950;letter-spacing:.05em}.thll-real-product-copy h2{margin:16px 0 10px;font-size:clamp(27px,4vw,46px);line-height:1.08;font-weight:950;letter-spacing:-.045em;color:#fff}.thll-real-product-copy p{margin:0;color:#cbd5e1;line-height:1.8;font-size:15px}.thll-real-product-copy strong{color:#fff}.thll-real-product-meta{margin-top:18px;display:flex;gap:10px;flex-wrap:wrap}.thll-real-product-meta span{display:inline-flex;gap:6px;align-items:center;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:999px;padding:9px 12px;color:#cbd5e1;font-size:12px;font-weight:850}.thll-real-product-meta b{color:#fff}.thll-real-product-panel{background:#fff;color:#0f172a;border-radius:26px;padding:20px;border:1px solid rgba(255,255,255,.16);box-shadow:0 24px 60px rgba(0,0,0,.25)}.thll-real-product-box{display:grid;grid-template-columns:58px 1fr;gap:14px;align-items:center;border:1px solid #e2e8f0;background:#f8fafc;border-radius:20px;padding:14px}.thll-real-product-icon{width:58px;height:58px;border-radius:18px;display:grid;place-items:center;background:#0f172a;color:#fff;font-size:28px}.thll-real-product-box strong{display:block;font-weight:950;line-height:1.25;color:#0f172a}.thll-real-product-box small{display:block;margin-top:4px;color:#64748b;font-weight:800;line-height:1.45}.thll-real-code-form{margin-top:14px;display:grid;gap:10px}.thll-real-code-form label{display:grid;gap:7px}.thll-real-code-form span{font-size:12px;font-weight:950;color:#475569}.thll-real-code-form input{width:100%;border:2px solid #dbe4ef;background:#fff;border-radius:16px;padding:15px 16px;color:#0f172a;font-size:15px;font-weight:950;text-transform:uppercase}.thll-real-code-form button{border:0;border-radius:16px;background:linear-gradient(135deg,#ea580c,#f59e0b);color:#fff;padding:15px 18px;font-size:15px;font-weight:950;cursor:pointer;box-shadow:0 16px 34px rgba(234,88,12,.28)}.thll-real-code-result{display:none;margin-top:10px;border-radius:16px;padding:12px 14px;font-size:13px;font-weight:850;line-height:1.6}.thll-real-code-result.is-success{display:block;background:#ecfdf5;border:1px solid #86efac;color:#047857}.thll-real-code-result.is-error{display:block;background:#fef2f2;border:1px solid #fecaca;color:#b91c1c}.thll-real-code-result.is-loading{display:block;background:#eff6ff;border:1px solid #bfdbfe;color:#1d4ed8}.thll-real-product-actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-top:12px}.thll-real-product-actions a{display:flex;align-items:center;justify-content:center;text-align:center;min-height:42px;border-radius:14px;background:#f1f5f9;color:#0f172a;text-decoration:none;font-size:12px;font-weight:950}.thll-real-product-actions a:first-child{background:#0f172a;color:#fff}.thll-real-code-bank{margin-top:14px;border:1px dashed #cbd5e1;background:#f8fafc;border-radius:18px;padding:12px}.thll-real-code-bank b{display:block;margin-bottom:8px;color:#0f172a;font-size:12px;font-weight:950}.thll-real-code-bank div{display:flex;gap:6px;flex-wrap:wrap;max-height:160px;overflow:auto}.thll-real-code-chip{border:0;border-radius:999px;background:#dcfce7;color:#047857;padding:7px 9px;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:11px;font-weight:950;cursor:pointer}.thll-real-code-chip.is-used{background:#e2e8f0;color:#64748b;text-decoration:line-through}.thll-real-code-chip.is-copied{background:#0f172a;color:#fff}.thll-product-video-lab,.thll-test-product-video-section{max-width:1140px;margin:28px auto;background:#fff;border:1px solid #dbe4ef;border-radius:32px;padding:28px;box-shadow:0 28px 80px rgba(15,23,42,.10)}.thll-product-video-head,.thll-test-product-video-head{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:18px;align-items:start;margin-bottom:20px}.thll-product-video-head span,.thll-test-product-video-head span{display:inline-flex;width:max-content;border-radius:999px;background:#ecfdf5;color:#047857;padding:7px 11px;font-size:12px;font-weight:950;letter-spacing:.04em}.thll-product-video-head h2,.thll-test-product-video-head h2{margin:10px 0 8px;color:#0f172a;font-size:clamp(24px,3vw,36px);line-height:1.15;font-weight:950;letter-spacing:-.035em}.thll-product-video-head p,.thll-test-product-video-head p{margin:0;color:#64748b;line-height:1.75}.thll-product-video-status,.thll-test-product-video-status{align-self:start;border-radius:18px;padding:13px 16px;background:#fff7ed;border:1px solid #fed7aa;min-width:150px}.thll-product-video-status.is-open,.thll-test-product-video-status.is-open{background:#ecfdf5;border-color:#86efac}.thll-product-video-status b,.thll-test-product-video-status b{display:block;color:#0f172a;font-weight:950}.thll-product-video-status small,.thll-test-product-video-status span{display:block;margin-top:3px;color:#64748b;font-size:12px;font-weight:800}.thll-product-video-grid,.thll-test-product-video-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.thll-product-video-grid article,.thll-test-product-video-card{background:#f8fafc;border:1px solid #e2e8f0;border-radius:22px;padding:14px}.thll-product-video-title,.thll-test-product-video-title{display:flex;align-items:center;gap:8px;margin-bottom:10px}.thll-product-video-title span,.thll-test-product-video-title span{background:#0f172a;color:#fff;border-radius:999px;padding:5px 8px;font-size:11px;font-weight:950}.thll-product-video-title strong,.thll-test-product-video-title strong{font-weight:950;color:#0f172a}.thll-product-guid{margin:8px 0 0;color:#64748b;font-size:11px}.thll-product-video-admin-note,.thll-test-product-video-empty{margin-top:16px;background:#fff7ed;border:1px solid #fed7aa;border-radius:18px;padding:14px;color:#9a3412;font-weight:850}.thll-test-code-item span a{color:#2563eb;text-decoration:none;font-weight:950}@media(max-width:900px){.thll-real-product-lab{grid-template-columns:1fr}.thll-product-video-head,.thll-test-product-video-head{grid-template-columns:1fr}.thll-product-video-grid,.thll-test-product-video-grid{grid-template-columns:1fr}}@media(max-width:560px){.thll-real-product-lab{padding:18px;border-radius:24px}.thll-real-product-actions{grid-template-columns:1fr}.thll-product-video-lab,.thll-test-product-video-section{padding:18px;border-radius:24px}}


/* v10.2 — 실제 WooCommerce Bunny 테스트 상품 UX 보강 */
.single-product .thll-product-shell-KH-BOOK-1-5-BUNNY-TEST,
.single-product .product_cat-bunny-test{overflow:visible!important}
.thll-product-video-lab .thll-test-locked{display:grid;place-items:center;aspect-ratio:16/9;background:linear-gradient(135deg,#0f172a,#1e293b);color:#fff;border-radius:18px;text-align:center;padding:18px;font-weight:950}
.thll-test-product-video-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}.thll-test-product-video-actions a{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;border-radius:999px;background:#0f172a;color:#fff;padding:10px 13px;font-size:12px;font-weight:950}.thll-test-product-video-actions a:last-child{background:#1ad685;color:#062116}
.thll-product-page-v8 .thll-code-panel-v8 input,
.thll-product-page-v8 .thll-code-panel-v8 button{min-height:52px!important;font-size:15px!important}
.thll-product-page-v8 .thll-code-panel-v8 button{box-shadow:0 16px 34px rgba(234,88,12,.22)!important}

/* ═══════════════════════════════════════════════
   v11.0 — 실제 상품 상세페이지/테스트 상품 PC 풀사이즈 보강
   ═══════════════════════════════════════════════ */
body.single-product .thll-product-page-v8{max-width:1500px!important;width:100%!important;padding:96px clamp(18px,3vw,42px) 88px!important}
.thll-product-shell-v8{display:grid!important;grid-template-columns:minmax(430px,.92fr) minmax(0,1.08fr)!important;gap:34px!important;align-items:start!important;width:100%!important;margin:0 auto 34px!important;float:none!important;clear:both!important}
.thll-product-media-v8,.thll-product-summary-v8{min-width:0!important;width:100%!important;float:none!important;clear:none!important;writing-mode:horizontal-tb!important;text-orientation:mixed!important}
.thll-product-media-v8{position:relative;background:#fff;border:1px solid #dbe4ef;border-radius:34px;padding:20px;box-shadow:0 28px 80px rgba(15,23,42,.10);overflow:hidden}
.thll-product-media-badge-v8{position:absolute;left:34px;top:34px;z-index:6;display:inline-flex;background:#ef242b;color:#fff;border-radius:999px;padding:10px 14px;font-size:13px;font-weight:950;box-shadow:0 12px 28px rgba(239,36,43,.24)}
.thll-product-media-note-v8{margin-top:14px;background:#f8fafc;border:1px solid #e2e8f0;border-radius:20px;padding:16px;color:#64748b;font-size:13px;line-height:1.6}.thll-product-media-note-v8 strong{display:block;color:#0f172a;font-weight:950;margin-bottom:4px}.thll-product-media-note-v8 p{margin:0;font-weight:750}
.thll-product-summary-v8{background:#fff!important;border:1px solid #dbe4ef!important;border-radius:34px!important;padding:36px!important;box-shadow:0 28px 80px rgba(15,23,42,.10)!important;overflow:hidden!important}.thll-product-topline-v8{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:16px}.thll-product-topline-v8 span{display:inline-flex;background:#ecfdf5;color:#047857;border:1px solid #bbf7d0;border-radius:999px;padding:8px 12px;font-size:12px;font-weight:950}.thll-product-topline-v8 em{font-style:normal;background:#f1f5f9;color:#64748b;border-radius:999px;padding:8px 12px;font-size:12px;font-weight:900}.thll-product-summary-v8 .product_title{margin:0 0 16px!important;color:#0f172a!important;font-size:clamp(36px,4vw,60px)!important;line-height:1.05!important;letter-spacing:-.055em!important;font-weight:950!important}.thll-product-price-v8{font-size:clamp(34px,4vw,56px)!important}.thll-product-short-v8{font-size:16px!important;color:#334155!important;line-height:1.75!important}.thll-product-points-v8{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:20px 0!important;padding:0!important;list-style:none!important}.thll-product-points-v8 li{background:#f8fafc;border:1px solid #e2e8f0;border-radius:16px;padding:13px 14px;color:#334155;font-size:13px;font-weight:850;line-height:1.45}.thll-product-points-v8 li:before{content:'✓ ';color:#047857;font-weight:950}.thll-product-meta-v8{display:flex;gap:8px;flex-wrap:wrap;color:#64748b;font-size:12px;font-weight:850;margin-top:14px}.thll-product-meta-v8 span{background:#f8fafc;border:1px solid #e2e8f0;border-radius:999px;padding:8px 10px}
.thll-wc-visual-single{min-height:560px!important;border-radius:26px!important}.thll-wc-visual-fallback .thll-mock-book{position:relative;width:min(70%,340px);height:min(82%,455px);background:linear-gradient(155deg,#101827,#0a0f19 58%,#172034);border-radius:16px;box-shadow:18px 24px 60px rgba(0,0,0,.32);padding:38px 30px;color:#fff;display:flex;flex-direction:column;justify-content:space-between;transform:rotate(-6deg);text-align:left}.thll-wc-visual-fallback .thll-mock-book:before{content:"";position:absolute;inset:16px;border:1px solid rgba(255,255,255,.15);border-radius:12px}.thll-wc-visual-fallback .thll-mock-book span,.thll-wc-visual-fallback .thll-mock-video span{color:#f5c518;font-size:12px;font-weight:950;letter-spacing:.1em;text-transform:uppercase}.thll-wc-visual-fallback .thll-mock-book strong{font-size:clamp(30px,4vw,48px);line-height:1.04;letter-spacing:-.04em;font-weight:950;z-index:1}.thll-wc-visual-fallback .thll-mock-book small{color:rgba(255,255,255,.72);font-size:13px;line-height:1.5;font-weight:760;z-index:1}.thll-wc-visual-fallback .thll-mock-book em{font-style:normal;color:#f5c518;font-weight:950;z-index:1}.thll-wc-visual-fallback .thll-mock-board{width:min(86%,460px);background:#fff9e8;border:8px solid #f5c518;border-radius:30px;padding:28px;color:#0d2b1a;box-shadow:18px 24px 60px rgba(0,0,0,.28)}.thll-wc-visual-fallback .thll-mock-board span{display:block;background:#0d2b1a;color:#f5c518;border-radius:16px;padding:12px 14px;font-weight:950;text-align:center;margin-bottom:14px}.thll-wc-visual-fallback .thll-mock-board strong{display:block;text-align:center;font-size:32px;line-height:1.08;font-weight:950;margin-bottom:18px}.thll-wc-visual-fallback .thll-mock-board-grid{display:grid!important;grid-template-columns:repeat(6,1fr)!important;gap:8px!important}.thll-wc-visual-fallback .thll-mock-board-grid b{aspect-ratio:1;display:grid;place-items:center;background:#fff;border:2px solid #1a5c35;border-radius:12px;font-size:22px}.thll-wc-visual-fallback .thll-mock-video{width:min(90%,520px);aspect-ratio:16/10;border-radius:30px;background:linear-gradient(135deg,#020617,#111827);box-shadow:20px 26px 68px rgba(0,0,0,.32);display:flex;flex-direction:column;align-items:center;justify-content:center;color:#fff;text-align:center;padding:28px}.thll-wc-visual-fallback .thll-mock-video-screen{width:92px;height:92px;border-radius:50%;background:#1ad685;color:#062116;display:grid;place-items:center;margin:18px 0;font-size:36px;box-shadow:0 18px 42px rgba(26,214,133,.28)}.thll-wc-visual-fallback .thll-mock-video strong{font-size:28px;font-weight:950}.thll-wc-visual-fallback .thll-mock-video small{max-width:360px;color:rgba(255,255,255,.72);font-size:13px;font-weight:760;line-height:1.5;margin-top:8px}
.thll-v8-code-panel{margin:24px 0!important;padding:24px!important;background:linear-gradient(135deg,#fff7ed,#fff 62%)!important;border:2px solid #f59e0b!important;border-radius:28px!important;box-shadow:0 24px 60px rgba(245,158,11,.13)!important}.thll-v8-code-head{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:18px;align-items:start;margin-bottom:18px}.thll-v8-code-kicker{display:inline-flex;color:#b45309;font-size:12px;font-weight:950;letter-spacing:.06em;margin-bottom:6px}.thll-v8-code-head h3{margin:0!important;color:#7c2d12!important;font-size:clamp(22px,2.7vw,34px)!important;line-height:1.15!important;font-weight:950!important;letter-spacing:-.035em!important}.thll-v8-code-head p{margin:8px 0 0!important;color:#92400e!important;font-size:14px!important;line-height:1.7!important;font-weight:800!important}.thll-v8-code-lock{display:grid;place-items:center;width:54px;height:54px;border-radius:18px;background:#0f172a;color:#fff;font-size:26px}.thll-v8-targets{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin:0 0 16px}.thll-v8-target{position:relative;display:block;background:#fff;border:2px solid #fed7aa;border-radius:18px;padding:14px;cursor:pointer;transition:.18s}.thll-v8-target.is-selected{border-color:#f59e0b;background:#fff7ed;box-shadow:0 14px 28px rgba(245,158,11,.15);transform:translateY(-1px)}.thll-v8-target input{position:absolute;opacity:0;pointer-events:none}.thll-v8-target-prefix{display:inline-flex;color:#b45309;font-size:11px;font-weight:950;letter-spacing:.04em;margin-bottom:5px}.thll-v8-target strong{display:block;color:#0f172a;font-size:15px;font-weight:950}.thll-v8-target small{display:block;margin-top:6px;color:#64748b;font-size:12px;font-weight:850;line-height:1.4}.thll-v8-target small b{color:#dc2626}.thll-v8-target em{display:inline-flex;margin-top:8px;background:#ecfdf5;color:#047857;border-radius:999px;padding:5px 8px;font-style:normal;font-size:11px;font-weight:950}.thll-v8-code-form{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;gap:10px!important;margin:0!important}.thll-kh-code-input-v8{width:100%!important;height:60px!important;border:2px solid #f59e0b!important;border-radius:18px!important;padding:0 18px!important;background:#fff!important;color:#0f172a!important;font-size:16px!important;font-weight:950!important;letter-spacing:.04em!important;text-transform:uppercase!important}.thll-kh-apply-btn-v8{height:60px!important;border:0!important;border-radius:18px!important;background:linear-gradient(135deg,#ef4444,#b91c1c)!important;color:#fff!important;padding:0 24px!important;font-size:15px!important;font-weight:950!important;cursor:pointer!important;white-space:nowrap!important;box-shadow:0 16px 36px rgba(239,68,68,.24)!important}.thll-v8-code-result{display:none;margin-top:12px;border-radius:16px;padding:13px 15px;font-size:13px;font-weight:850;line-height:1.6}.thll-v8-code-result.is-success{display:block;background:#ecfdf5;border:1px solid #86efac;color:#047857}.thll-v8-code-result.is-error{display:block;background:#fef2f2;border:1px solid #fecaca;color:#b91c1c}.thll-v8-code-result.is-loading{display:block;background:#eff6ff;border:1px solid #bfdbfe;color:#1d4ed8}.thll-v8-code-rules{margin-top:14px;background:rgba(255,255,255,.75);border:1px solid #fed7aa;border-radius:20px;padding:16px;color:#9a3412}.thll-v8-code-rules strong{display:block;color:#7c2d12;font-size:14px;font-weight:950;margin-bottom:8px}.thll-v8-code-rules ul{margin:0!important;padding-left:18px!important}.thll-v8-code-rules li{font-size:13px!important;font-weight:800!important;line-height:1.6!important;margin:0!important}.thll-code-login-note{background:#eff6ff;border:1px solid #bfdbfe;color:#1d4ed8;border-radius:16px;padding:12px 14px;font-weight:850}.thll-code-login-note a{color:#1d4ed8;font-weight:950}
.thll-product-buy-v8{margin-top:20px;background:#f8fafc;border:1px solid #e2e8f0;border-radius:24px;padding:20px}.thll-product-buy-head-v8{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:12px}.thll-product-buy-head-v8 span{display:block;color:#64748b;font-size:12px;font-weight:950;letter-spacing:.04em}.thll-product-buy-head-v8 strong{color:#0f172a;font-size:15px;font-weight:950;text-align:right}.thll-product-buy-v8 form.cart{display:grid!important;grid-template-columns:90px minmax(0,1fr)!important;gap:10px!important;align-items:center!important;margin:0!important}.thll-product-buy-v8 .quantity input{width:90px!important;height:54px!important;border:1px solid #cbd5e1!important;border-radius:16px!important;text-align:center!important;font-weight:950!important}.thll-product-buy-v8 .single_add_to_cart_button{height:54px!important;border:0!important;border-radius:16px!important;background:#10b981!important;color:#fff!important;font-weight:950!important;font-size:15px!important;padding:0 22px!important}.thll-product-buy-note-v8{margin:12px 0 0;color:#64748b;font-size:12px;line-height:1.6;font-weight:750}.thll-product-extra-v8{display:none!important}.thll-product-video-lab{max-width:1500px!important;width:100%!important}.thll-product-video-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.thll-product-video-grid .thll-bunny-player{border-radius:18px!important}.thll-product-video-lab .thll-test-locked{min-height:300px!important}
@media(max-width:1180px){.thll-product-shell-v8{grid-template-columns:1fr!important}.thll-product-media-v8{position:static}.thll-v8-targets{grid-template-columns:1fr 1fr}.thll-wc-visual-single{min-height:460px!important}}@media(max-width:760px){body.single-product .thll-product-page-v8{padding:82px 14px 60px!important}.thll-product-summary-v8,.thll-product-media-v8{padding:20px!important;border-radius:26px!important}.thll-v8-targets,.thll-v8-code-form,.thll-product-buy-v8 form.cart,.thll-product-points-v8{grid-template-columns:1fr!important}.thll-kh-apply-btn-v8{width:100%!important}.thll-product-video-grid{grid-template-columns:1fr!important}.thll-wc-visual-single{min-height:340px!important}.thll-product-buy-head-v8{display:block}.thll-product-buy-head-v8 strong{text-align:left;display:block;margin-top:5px}}

/* v17 manual-bank admin mini button */
.tfm-mini{border:0;border-radius:10px;background:#16a34a;color:#fff;font-weight:900;padding:8px 10px;cursor:pointer;box-shadow:0 8px 20px rgba(22,163,74,.18)}
.tfm-mini:hover{filter:brightness(.95)}


/* v22 Flow Test + Inline Editor Precision */
.thll-flowtest-page{background:#eef3f8;color:#0f172a;min-height:100vh}.thll-flowtest-shell{max-width:1480px;margin:0 auto;padding:0 22px}.thll-flowtest-hero{padding:124px 0 28px;background:radial-gradient(circle at 0 0,rgba(26,214,133,.18),transparent 30%),linear-gradient(135deg,#07111f,#0f172a);color:#fff}.thll-flowtest-kicker{display:inline-flex;background:rgba(26,214,133,.16);border:1px solid rgba(26,214,133,.36);color:#b7ffe1;border-radius:999px;padding:8px 13px;font-size:12px;font-weight:950}.thll-flowtest-hero-grid{display:grid;grid-template-columns:1fr 430px;gap:24px;align-items:end}.thll-flowtest-hero h1{font-size:clamp(42px,6.4vw,86px);line-height:.98;letter-spacing:-.07em;margin:14px 0 12px;font-weight:950}.thll-flowtest-hero h1 span{color:#1ad685}.thll-flowtest-hero p{font-size:17px;line-height:1.8;color:rgba(255,255,255,.78);max-width:820px}.thll-flowtest-login-card{background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.18);border-radius:30px;padding:20px;box-shadow:0 24px 80px rgba(0,0,0,.22)}.thll-flowtest-login-card h2{margin:0 0 10px;font-size:25px;font-weight:950}.thll-flowtest-cred{display:grid;gap:8px;margin-top:12px}.thll-flowtest-cred div{display:flex;justify-content:space-between;gap:12px;background:rgba(255,255,255,.08);border-radius:14px;padding:10px 12px}.thll-flowtest-cred span{color:rgba(255,255,255,.6);font-size:12px;font-weight:950}.thll-flowtest-cred strong{font-family:ui-monospace,Menlo,monospace;word-break:break-all}.thll-flowtest-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px}.thll-flowtest-actions a,.thll-flowtest-actions button{border:0;text-decoration:none!important;display:inline-flex;align-items:center;justify-content:center;border-radius:14px;padding:12px 14px;background:#1ad685;color:#052e1a!important;font-weight:950;cursor:pointer}.thll-flowtest-actions .dark{background:#fff;color:#0f172a!important}.thll-flowtest-actions .warn{background:#fbbf24;color:#3b2603!important}.thll-flowtest-main{padding:28px 0 70px}.thll-flowtest-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);gap:18px;align-items:start}.thll-flowtest-card{background:#fff;border:1px solid #dbe3ef;border-radius:30px;padding:24px;box-shadow:0 22px 70px rgba(15,23,42,.09);overflow:hidden}.thll-flowtest-card h2{margin:0 0 8px;font-size:clamp(28px,3vw,44px);line-height:1.08;font-weight:950;letter-spacing:-.05em}.thll-flowtest-card p{color:#64748b;line-height:1.75}.thll-flowtest-product{display:grid;grid-template-columns:240px 1fr;gap:18px;align-items:center}.thll-flowtest-product-visual{height:250px;border-radius:26px;background:radial-gradient(circle at 50% 15%,rgba(26,214,133,.34),transparent 42%),linear-gradient(145deg,#020617,#111827);display:grid;place-items:center;color:#fff;position:relative}.thll-flowtest-product-visual b{display:grid;place-items:center;width:88px;height:88px;border-radius:50%;background:#ef4444;font-size:36px;box-shadow:0 20px 50px rgba(239,68,68,.38)}.thll-flowtest-product-visual span{position:absolute;left:16px;top:16px;background:#1ad685;color:#052e1a;border-radius:999px;padding:8px 11px;font-size:12px;font-weight:950}.thll-flowtest-price{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin:12px 0}.thll-flowtest-price del{font-size:22px;color:#94a3b8;font-weight:950}.thll-flowtest-price strong{font-size:36px;color:#dc2626;font-weight:950}.thll-flowtest-code-box{margin-top:16px;background:#fff7ed;border:2px dashed #fb923c;border-radius:24px;padding:17px}.thll-flowtest-code-box label{display:block;color:#9a3412;font-weight:950;margin-bottom:8px}.thll-flowtest-code-row{display:grid;grid-template-columns:1fr 220px;gap:10px}.thll-flowtest-code-row input{height:60px;border:2px solid #fdba74;border-radius:17px;background:#fff;padding:0 16px;font-size:18px;font-weight:950;text-transform:uppercase}.thll-flowtest-code-row button{height:60px;border:0;border-radius:17px;background:linear-gradient(135deg,#f97316,#dc2626);color:#fff;font-size:15px;font-weight:950;cursor:pointer;box-shadow:0 16px 38px rgba(220,38,38,.20)}.thll-flowtest-codes{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}.thll-flowtest-codechip{border:1px solid #bfdbfe;background:#eff6ff;color:#1d4ed8;border-radius:999px;padding:9px 12px;font-family:ui-monospace,Menlo,monospace;font-weight:950;cursor:pointer}.thll-flowtest-codechip:hover{background:#dbeafe}.thll-flowtest-result{margin-top:14px}.thll-flowtest-steps{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px;margin-top:16px}.thll-flowtest-step{background:#f8fafc;border:1px solid #e2e8f0;border-radius:18px;padding:13px;min-height:126px}.thll-flowtest-step b{display:grid;place-items:center;width:34px;height:34px;border-radius:11px;background:#0f172a;color:#fff;margin-bottom:9px}.thll-flowtest-step strong{display:block;font-weight:950}.thll-flowtest-step small{display:block;margin-top:5px;color:#64748b;line-height:1.45}.thll-flowtest-status{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-bottom:18px}.thll-flowtest-status div{background:#fff;border:1px solid #dbe3ef;border-radius:20px;padding:14px}.thll-flowtest-status b{display:block;font-size:18px;color:#047857}.thll-flowtest-status span{display:block;margin-top:4px;color:#64748b;font-size:12px;font-weight:900}.thll-flowtest-video-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px}.thll-flowtest-video-grid article{background:#07111f;color:#fff;border-radius:24px;padding:12px}.thll-flowtest-video-title{display:flex;justify-content:space-between;gap:8px;align-items:center;margin-bottom:9px}.thll-flowtest-video-title span{background:#1ad685;color:#052e1a;border-radius:999px;padding:6px 9px;font-size:11px;font-weight:950}.thll-flowtest-video-title strong{font-size:14px}.thll-flowtest-video-grid iframe,.thll-flowtest-video-grid .thll-test-player{width:100%!important;min-height:230px!important;border-radius:18px!important}.thll-flowtest-video-grid .thll-test-locked,.thll-flowtest-video-grid .thll-video-empty{min-height:230px;border-radius:18px!important}.thll-flowtest-staff{margin-top:18px;background:#0f172a;color:#fff;border:1px solid #1e293b;border-radius:26px;padding:20px}.thll-flowtest-staff h3{margin:0 0 6px;font-size:24px;font-weight:950}.thll-flowtest-staff p{color:#cbd5e1}.thll-flowtest-staff form{display:inline-flex;margin:6px 6px 0 0}.thll-flowtest-staff button{border:0;border-radius:13px;background:#1ad685;color:#052e1a;padding:12px 14px;font-weight:950;cursor:pointer}.thll-flowtest-staff .warn{background:#fbbf24}.thll-flowtest-notice{margin-bottom:16px;border-radius:18px;padding:14px 16px;font-weight:950}.thll-flowtest-notice.ok{background:#ecfdf5;border:1px solid #86efac;color:#047857}.thll-flowtest-notice.warn{background:#fff7ed;border:1px solid #fdba74;color:#9a3412}@media(max-width:1100px){.thll-flowtest-hero-grid,.thll-flowtest-grid,.thll-flowtest-product{grid-template-columns:1fr}.thll-flowtest-steps{grid-template-columns:repeat(2,minmax(0,1fr))}.thll-flowtest-status{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:720px){.thll-flowtest-shell{padding:0 16px}.thll-flowtest-code-row,.thll-flowtest-video-grid,.thll-flowtest-steps,.thll-flowtest-status{grid-template-columns:1fr}.thll-flowtest-hero{padding-top:110px}.thll-flowtest-price strong{font-size:28px}}
