/**
 * TENTREK B2B — STORE CSS  v19.0
 * Fuentes: Inter + Montserrat (encoladas vía PHP)
 */

:root {
    --tkl-bg:       #fbfbfd;
    --tkl-surface:  #ffffff;
    --tkl-dark:     #1d1d1f;
    --tkl-gray:     #86868b;
    --tkl-blue:     #0071e3;
    --tkl-blue-lt:  rgba(0,113,227,.08);
    --tkl-border:   rgba(0,0,0,.06);
    --tkl-green:    #10b981;
    --tkl-red:      #ef4444;
    --font-ui:      'Montserrat', sans-serif;
    --font-body:    'Inter', sans-serif;
}

/* ── Reset helpers ─────────────────────────────────────────────────── */
.tkl-store-wrap *,
.tkl-sp-wrapper * { box-sizing: border-box; }

.tkl-store-wrap input[type=number]::-webkit-inner-spin-button,
.tkl-store-wrap input[type=number]::-webkit-outer-spin-button,
.tkl-sp-wrapper  input[type=number]::-webkit-inner-spin-button,
.tkl-sp-wrapper  input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* ── Layout tienda ─────────────────────────────────────────────────── */
.tkl-store-wrap {
    background: var(--tkl-bg);
    font-family: var(--font-body);
    color: var(--tkl-dark);
    padding: 40px 0;
    position: relative;
}

.tkl-shop-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Sidebar ───────────────────────────────────────────────────────── */
.tkl-sidebar { position: sticky; top: 100px; background: transparent; }

.tkl-portal-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; background: var(--tkl-dark); color: #fff;
    padding: 15px 20px; border-radius: 14px; border: none;
    font-family: var(--font-ui); font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: .3s; margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
}
.tkl-portal-btn:hover { background: var(--tkl-blue); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,113,227,.3); }

.tkl-filter-title {
    font-family: var(--font-ui); font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: #111; margin: 0 0 15px;
}

.tkl-search-wrap { position: relative; margin-bottom: 30px; display: flex; align-items: center; }
.tkl-search-wrap i { position: absolute; left: 16px; color: var(--tkl-gray); pointer-events: none; }
.tkl-search-input {
    width: 100%; padding: 14px 15px 14px 44px !important;
    background: #fff; border: 1px solid var(--tkl-border);
    border-radius: 14px; font-size: 14px; outline: none;
    box-shadow: 0 4px 15px rgba(0,0,0,.02); transition: .3s;
}
.tkl-search-input:focus { border-color: var(--tkl-blue); box-shadow: 0 0 0 4px var(--tkl-blue-lt); }

.tkl-filter-group { margin-bottom: 25px; }

/* Pills */
.tkl-pill { display: inline-flex; align-items: center; cursor: pointer; margin: 0 6px 10px 0; }
.tkl-pill input { display: none; }
.tkl-pill span {
    background: #f5f5f7; border: 1px solid #e5e5ea;
    padding: 8px 16px; border-radius: 50px;
    font-size: 12px; font-weight: 600; color: #424245; transition: .3s;
}
.tkl-pill:hover span { background: #e5e5ea; }
.tkl-pill input:checked + span { background: var(--tkl-blue); color: #fff; border-color: var(--tkl-blue); box-shadow: 0 4px 10px rgba(0,113,227,.2); }

/* Price range */
.tkl-price-range { width: 100%; margin-top: 10px; accent-color: var(--tkl-blue); cursor: pointer; }
.tkl-price-label { font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--tkl-gray); margin-top: 5px; text-align: right; }

/* ── Tarjetas de producto ──────────────────────────────────────────── */
.tkl-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 25px; }

.tkl-card {
    background: #fff; border-radius: 16px; border: 1px solid var(--tkl-border);
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,.04); transition: .4s ease;
}
.tkl-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,.08); border-color: rgba(0,113,227,.3); }

.tkl-card-img {
    width: 100%; aspect-ratio: 1/1; background: var(--tkl-bg);
    padding: 25px; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.tkl-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 10px 15px rgba(0,0,0,.06)); transition: .5s; }
.tkl-card:hover .tkl-card-img img { transform: scale(1.08); }

.tkl-badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(0,0,0,.8); color: #fff;
    font-size: 10px; font-weight: 700; padding: 4px 10px;
    border-radius: 6px; text-transform: uppercase; letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.tkl-sale-badge {
    background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
    color: #fff; font-size: 10px; font-weight: 800;
    padding: 4px 8px; border-radius: 6px; text-transform: uppercase;
    letter-spacing: 1px; display: inline-block; margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(255,8,68,.3);
}
.tkl-timer {
    font-size: 11px; font-weight: 600; color: var(--tkl-red);
    display: flex; align-items: center; gap: 5px; margin-top: 5px;
    background: rgba(239,68,68,.05); padding: 4px 8px; border-radius: 6px;
}

.tkl-card-info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.tkl-card-tech { font-size: 11px; color: var(--tkl-gray); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 5px; }
.tkl-card-title { font-family: var(--font-ui); font-size: 17px; font-weight: 700; margin: 0 0 10px; color: var(--tkl-dark); line-height: 1.3; letter-spacing: -.3px; }
.tkl-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 11px; font-weight: 600; }
.tkl-card-meta .sku { color: #86868b; }
.tkl-stock-in  { color: var(--tkl-green); font-size: 11px; font-weight: 600; }
.tkl-stock-out { color: var(--tkl-red);   font-size: 11px; font-weight: 600; }

.tkl-stars { color: #f59e0b; font-size: 12px; margin-bottom: 15px; cursor: pointer; display: flex; gap: 2px; align-items: center; }
.tkl-stars i { transition: .2s; }
.tkl-stars i:hover { transform: scale(1.3); }
.tkl-rating-text { font-size: 12px; color: #86868b; margin-left: 8px; font-weight: 500; }

.tkl-card-price { font-family: var(--font-ui); font-size: 18px; font-weight: 800; margin-top: auto; margin-bottom: 15px; }

.tkl-card-actions { display: flex; gap: 10px; }
.tkl-btn-outline {
    flex: 1; background: var(--tkl-bg); color: #111;
    padding: 12px; border-radius: 12px; font-weight: 600; font-size: 13px;
    border: 1px solid var(--tkl-border);
    display: flex; align-items: center; justify-content: center;
    transition: .3s; cursor: pointer; text-decoration: none !important;
}
.tkl-btn-outline:hover { border-color: var(--tkl-blue); color: var(--tkl-blue); }

.tkl-btn-solid {
    flex: 1.5; background: var(--tkl-dark); color: #fff;
    padding: 12px; border-radius: 12px; font-weight: 600; font-size: 13px;
    border: none; display: flex; align-items: center; justify-content: center; gap: 6px;
    transition: .3s; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,.1);
    text-decoration: none !important;
}
.tkl-btn-solid:hover { background: var(--tkl-blue); box-shadow: 0 8px 15px rgba(0,113,227,.2); color: #fff; }

/* ── Floating cart ─────────────────────────────────────────────────── */
.tkl-floating-cart {
    position: fixed; bottom: 30px; right: 30px;
    background: var(--tkl-dark); color: #fff;
    border-radius: 50px; padding: 15px 25px;
    font-family: var(--font-ui); font-weight: 700; font-size: 14px;
    display: flex; align-items: center; gap: 15px;
    cursor: pointer; box-shadow: 0 15px 30px rgba(0,0,0,.3);
    z-index: 9900; transition: .3s; border: none;
}
.tkl-floating-cart:hover { background: var(--tkl-blue); transform: translateY(-5px); }
.tkl-cart-badge {
    background: var(--tkl-red); color: #fff; border-radius: 50%;
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-family: var(--font-body);
}

/* ── Cart sidebar ──────────────────────────────────────────────────── */
.tkl-cart-modal {
    background: #fff; width: 100%; max-width: 500px; height: 100vh;
    position: fixed; right: -550px; top: 0; z-index: 10000;
    box-shadow: -10px 0 40px rgba(0,0,0,.2);
    transition: right .4s ease; display: flex; flex-direction: column;
}
.tkl-cart-modal.open { right: 0; }

.tkl-cart-header { padding: 25px; border-bottom: 1px solid var(--tkl-border); display: flex; justify-content: space-between; align-items: center; }
.tkl-cart-header h2 { font-family: var(--font-ui); margin: 0; font-size: 20px; font-weight: 700; }
.tkl-cart-close { background: none; border: none; font-size: 24px; cursor: pointer; color: #888; }
.tkl-cart-body  { padding: 25px; flex-grow: 1; overflow-y: auto; }
.tkl-cart-footer { padding: 25px; border-top: 1px solid var(--tkl-border); background: var(--tkl-bg); }
.tkl-cart-total { display: flex; justify-content: space-between; font-size: 20px; font-weight: 800; font-family: var(--font-ui); margin-bottom: 20px; color: #111; }

.tkl-cart-item { display: flex; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid #f0f0f0; padding-bottom: 20px; }
.tkl-cart-item img { width: 70px; height: 70px; object-fit: contain; background: var(--tkl-bg); border-radius: 10px; padding: 5px; }
.tkl-cart-item-info { flex-grow: 1; }
.tkl-cart-item-title { font-weight: 700; font-size: 14px; margin: 0 0 5px; color: #111; line-height: 1.2; }
.tkl-cart-item-vars  { font-size: 11px; color: #888; margin-bottom: 5px; }
.tkl-cart-item-price { font-weight: 700; color: var(--tkl-blue); font-size: 14px; }

/* ── QTY CONTROLS (NUEVO DISEÑO PÍLDORA - ANTI THEME OVERRIDE) ─────── */
.tkl-qty-wrap { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.tkl-qty-wrap label { font-size: 12px; font-weight: 700; color: #86868b; text-transform: uppercase; letter-spacing: 1px; }

.tkl-qty-ctrl {
    display: inline-flex !important; align-items: center !important; justify-content: space-between !important;
    background: #ffffff !important; border-radius: 50px !important; border: 1px solid #d1d1d6 !important;
    height: 44px !important; padding: 4px !important; width: 130px !important; box-sizing: border-box !important;
}
.tkl-qty-ctrl button {
    background: #f5f5f7 !important; border: none !important; border-radius: 50% !important;
    width: 34px !important; height: 34px !important; font-size: 18px !important; color: #1d1d1f !important;
    display: flex !important; align-items: center !important; justify-content: center !important; 
    cursor: pointer !important; transition: 0.2s !important; outline: none !important; padding: 0 !important; margin: 0 !important;
}
.tkl-qty-ctrl button:hover { background: #e5e5ea !important; }
.tkl-qty-ctrl input {
    width: 40px !important; text-align: center !important; border: none !important;
    background: transparent !important; font-size: 16px !important; font-weight: 700 !important;
    color: #1d1d1f !important; box-shadow: none !important; padding: 0 !important;
    margin: 0 !important; -moz-appearance: textfield !important; outline: none !important; height: 100% !important;
    flex-shrink: 0 !important; min-height: unset !important;
}
.tkl-cart-remove {
    background: #424245; border: none; color: #fff; cursor: pointer;
    padding: 0; border-radius: 50%; font-size: 13px; margin-left: 10px;
    display: flex; align-items: center; justify-content: center;
    height: 38px; width: 38px; transition: .2s; flex-shrink: 0;
}
.tkl-cart-remove:hover { background: var(--tkl-red); }

/* ── Modales genéricos ─────────────────────────────────────────────── */
.tkl-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.7);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: .3s; padding: 20px;
}
.tkl-overlay.active { opacity: 1; visibility: visible; }

.tkl-modal-box {
    background: #fff; border-radius: 28px; width: 100%;
    max-width: 950px; max-height: 90vh; overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,.4); position: relative;
    transform: scale(.95); transition: .3s;
}
.tkl-overlay.active .tkl-modal-box { transform: scale(1); }

.tkl-modal-sm { max-width: 450px; padding: 50px 40px; text-align: center; }

.tkl-modal-close {
    position: absolute; top: 15px; right: 20px;
    background: rgba(0,0,0,.05); width: 36px; height: 36px;
    border-radius: 50%; font-size: 18px; color: #111;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: none; z-index: 10;
}
.tkl-modal-close:hover { background: #000; color: #fff; }

/* ── Quick-view ────────────────────────────────────────────────────── */
.tkl-qv-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.tkl-qv-img  {
    background: var(--tkl-bg); padding: 40px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border-right: 1px solid var(--tkl-border);
}
.tkl-qv-img img { width: 100%; max-height: 300px; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(0,0,0,.1)); margin-bottom: 20px; transition: .3s; }
.tkl-qv-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.tkl-qv-title { font-family: var(--font-ui); font-size: 28px; font-weight: 800; margin: 0 0 10px; line-height: 1.1; letter-spacing: -1px; }
.tkl-qv-desc  { font-size: 14px; color: var(--tkl-gray); line-height: 1.6; margin-bottom: 25px; }

.tkl-thumb-row { display: flex; gap: 10px; width: 100%; justify-content: center; }
.tkl-thumb {
    width: 60px; height: 60px; border-radius: 12px; background: #fff;
    border: 2px solid transparent; cursor: pointer; padding: 5px; transition: .3s;
}
.tkl-thumb img { width: 100%; height: 100%; object-fit: contain; }
.tkl-thumb.active { border-color: var(--tkl-blue); box-shadow: 0 5px 15px rgba(0,0,0,.05); }

.tkl-qv-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--tkl-blue); color: #fff; padding: 16px; border-radius: 14px;
    font-weight: 600; font-size: 15px; border: none; width: 100%; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px; transition: .3s; margin-bottom: 15px;
}
.tkl-qv-btn:hover { background: var(--tkl-dark); box-shadow: 0 10px 25px rgba(0,0,0,.15); transform: translateY(-2px); }
.tkl-qv-link { text-align: center; display: block; font-size: 13px; font-weight: 600; color: var(--tkl-gray); text-decoration: none !important; transition: .3s; }
.tkl-qv-link:hover { color: var(--tkl-blue); }

/* ── Form helpers ──────────────────────────────────────────────────── */
.tkl-input {
    width: 100%; padding: 16px 20px; background: rgba(0,0,0,.03);
    border: 1px solid rgba(0,0,0,.1); border-radius: 12px;
    font-size: 15px; transition: .3s; margin-bottom: 20px;
}
.tkl-input:focus { background: #fff; border-color: var(--tkl-blue); box-shadow: 0 0 0 4px var(--tkl-blue-lt); outline: none; }

.tkl-btn-wa {
    width: 100%; background: #25D366; color: #fff;
    padding: 18px; border-radius: 14px; font-weight: 700; font-size: 15px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    border: none; cursor: pointer; transition: .3s;
}
.tkl-btn-wa:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(37,211,102,.3); }

.tkl-btn-dark { background: var(--tkl-dark) !important; }
.tkl-btn-dark:hover { background: var(--tkl-blue) !important; box-shadow: 0 10px 20px rgba(0,113,227,.3); }

.tkl-alert { padding: 15px; border-radius: 10px; font-size: 14px; display: none; margin-bottom: 20px; text-align: left; }
.tkl-alert-err { background: rgba(239,68,68,.1); color: #dc2626; border: 1px solid #fca5a5; }
.tkl-alert-ok  { background: rgba(16,185,129,.1); color: #10b981; border: 1px solid #6ee7b7; }

/* ── Portal dashboard ──────────────────────────────────────────────── */
.tkl-portal-box { text-align: left; max-width: 900px; padding: 40px; }
.tkl-portal-hd  { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }

.tkl-tabs { display: flex; background: #f5f5f7; border-radius: 12px; padding: 4px; margin-bottom: 30px; }
.tkl-tab { flex: 1; text-align: center; padding: 12px; font-size: 13px; font-weight: 600; color: #86868b; cursor: pointer; border-radius: 8px; transition: .3s; }
.tkl-tab.active { background: #fff; color: var(--tkl-dark); box-shadow: 0 2px 10px rgba(0,0,0,.05); }

.tkl-tab-content { display: none; animation: tklFadeIn .4s ease; }
.tkl-tab-content.active { display: block; }
@keyframes tklFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.tkl-table-wrap { overflow-x: auto; background: #fff; border-radius: 16px; border: 1px solid var(--tkl-border); margin-bottom: 35px; }
.tkl-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 14px; }
.tkl-table th { background: var(--tkl-bg); padding: 15px 20px; font-weight: 600; color: #86868b; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; }
.tkl-table td { padding: 15px 20px; border-top: 1px solid var(--tkl-border); }

.tkl-profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left; }
.tkl-profile-grid label { display: block; font-size: 11px; font-weight: 700; color: #86868b; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }

/* ── Single product ────────────────────────────────────────────────── */
.tkl-sp-wrapper { font-family: var(--font-body); color: var(--tkl-dark); max-width: 1250px; margin: 0 auto; padding: 20px 5% 80px; position: relative; }

.tkl-sp-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; color: #86868b; margin-bottom: 40px; font-weight: 500; }
.tkl-sp-breadcrumb a { color: var(--tkl-dark); text-decoration: none !important; transition: .3s; display: flex; align-items: center; gap: 6px; }
.tkl-sp-breadcrumb a:hover { color: var(--tkl-blue); }
.tkl-sp-breadcrumb i.fa-chevron-right { font-size: 9px; color: #d1d1d6; }

.tkl-sp-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: start; }

.tkl-sp-img-wrap { position: sticky; top: 100px; }
.tkl-sp-img {
    background: var(--tkl-bg); border-radius: 32px; padding: 60px;
    text-align: center; border: 1px solid rgba(0,0,0,.04);
    margin-bottom: 20px; display: flex; align-items: center; justify-content: center; aspect-ratio: 4/3;
}
.tkl-sp-img img { width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,.06)); transition: .3s ease; cursor: zoom-in; }
.tkl-sp-img img:hover { transform: scale(1.05); }

.tkl-sp-thumbs { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 10px; }
.tkl-sp-thumbs::-webkit-scrollbar { display: none; }
.tkl-sp-thumbs .tkl-thumb { width: 80px; height: 80px; border-radius: 16px; background: var(--tkl-bg); padding: 10px; }

.tkl-sp-title { font-family: var(--font-ui); font-size: clamp(32px,4vw,42px); font-weight: 800; margin: 0 0 15px; letter-spacing: -1px; line-height: 1.1; }
.tkl-sp-meta  { font-size: 13px; color: #86868b; margin-bottom: 15px; font-weight: 500; display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.tkl-sp-sku   { background: #f5f5f7; padding: 4px 10px; border-radius: 6px; }

.tkl-urgency {
    background: rgba(239,68,68,.05); border: 1px solid rgba(239,68,68,.2);
    color: var(--tkl-red); padding: 12px 15px; border-radius: 12px;
    font-size: 13px; font-weight: 600; margin-bottom: 25px;
    display: inline-flex; align-items: center; gap: 10px;
}

.tkl-sp-price { font-family: var(--font-ui); font-size: 38px; font-weight: 700; margin-bottom: 20px; color: #111; }
.tkl-sp-desc  { font-size: 15px; color: #424245; line-height: 1.7; margin-bottom: 30px; }

.tkl-specs { list-style: none; padding: 0; margin: 0; }
.tkl-specs li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed rgba(0,0,0,.04); font-size: 14px; }
.tkl-specs li span:first-child { color: #86868b; }
.tkl-specs li span:last-child  { font-weight: 600; color: var(--tkl-dark); }

.tkl-sp-add-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--tkl-dark); color: #fff; padding: 20px; border-radius: 14px;
    font-weight: 600; font-size: 16px; text-decoration: none !important;
    transition: .3s; cursor: pointer; border: none; width: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
}
.tkl-sp-add-btn:hover { background: var(--tkl-blue); box-shadow: 0 15px 30px rgba(0,113,227,.3); color: #fff; transform: translateY(-2px); }

.tkl-sp-content { margin-top: 80px; border-top: 1px solid rgba(0,0,0,.06); padding-top: 50px; font-size: 16px; line-height: 1.8; color: #424245; }

.tkl-related { margin-top: 80px; }
.tkl-related-title { font-family: var(--font-ui); font-size: 28px; font-weight: 800; margin-bottom: 30px; letter-spacing: -.5px; border-bottom: 2px solid #111; display: inline-block; padding-bottom: 10px; }

/* ── FOMO popup FIX CLASES Y POSICIÓN ───────────────────────────────── */
.tkl-fomo {
    position: fixed; bottom: 30px; left: 30px;
    background: rgba(255,255,255,.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: 16px; padding: 15px; box-shadow: 0 20px 40px rgba(0,0,0,.15);
    display: flex; align-items: center; gap: 15px;
    border: 1px solid rgba(0,0,0,.05); max-width: 340px;
    transform: translateY(150px) scale(.9); opacity: 0; visibility: hidden;
    transition: all .6s cubic-bezier(.25,1,.5,1); z-index: 999999;
}
.tkl-fomo.active { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
.tkl-fomo-icon { width: 45px; height: 45px; background: var(--tkl-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; flex-shrink: 0; }
.tkl-fomo-body { display: flex; flex-direction: column; gap: 2px; }
.tkl-fomo-title { font-family: var(--font-body); font-size: 13px; color: var(--tkl-dark); line-height: 1.3; }
.tkl-fomo-time  { font-size: 11px; color: #86868b; font-weight: 500; }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .tkl-shop-grid { grid-template-columns: 1fr; }
    .tkl-sidebar { position: relative; top: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: start; }
    .tkl-qv-grid { grid-template-columns: 1fr; }
    .tkl-qv-img  { padding: 20px; border-right: none; border-bottom: 1px solid var(--tkl-border); }
}
@media (max-width: 768px) {
    .tkl-sidebar { grid-template-columns: 1fr; gap: 10px; }
    .tkl-products { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .tkl-card-title { font-size: 14px; }
    .tkl-card-price { font-size: 16px; }
    .tkl-sp-grid { grid-template-columns: 1fr; gap: 40px; }
    .tkl-sp-img-wrap { position: relative; top: 0; }
    .tkl-sp-img { padding: 30px; }
    .tkl-sp-price { font-size: 32px; }
    .tkl-portal-box { padding: 25px 20px; }
    .tkl-profile-grid { grid-template-columns: 1fr; }
    .tkl-fomo { bottom: 20px; left: 20px; right: 20px; max-width: calc(100% - 40px); }
}