/* ============================================================
   PANELA MTA — SHOPEE / TIKTOK SHOP STYLE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
  padding-bottom: 68px;
  max-width: 520px;
  margin: 0 auto;
  font-size: 14px;
}
:root {
  --pink:   #fe2c55;
  --pink-d: #d9193e;
  --orange: #ff4f2d;
  --teal:   #00bfa5;
  --text:   #1a1a1a;
  --gray:   #757575;
  --lgray:  #f0f0f0;
  --border: #e8e8e8;
  --bg:     #f5f5f5;
  --white:  #ffffff;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

/* ============================================================
   TOP NAV
   ============================================================ */
.top-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  height: 50px; padding: 0 10px; gap: 8px;
}
.nav-back {
  font-size: 20px; color: var(--text);
  padding: 4px 6px; flex-shrink: 0; line-height: 1;
}
.nav-search {
  flex: 1; background: #f5f5f5; border-radius: 18px;
  height: 34px; display: flex; align-items: center;
  padding: 0 12px; gap: 6px; overflow: hidden;
}
.search-ico { font-size: 14px; color: var(--gray); flex-shrink: 0; }
.search-txt { font-size: 13px; color: var(--gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-actions { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.nav-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text); position: relative;
}
.cart-dot {
  position: absolute; top: 2px; right: 2px;
  background: var(--pink); color: #fff;
  font-size: 9px; font-weight: 700;
  min-width: 15px; height: 15px; padding: 0 3px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* ============================================================
   PRODUCT IMAGE CAROUSEL
   ============================================================ */
.carousel {
  position: relative; width: 100%; aspect-ratio: 4/3;
  background: var(--white); overflow: hidden;
}
.c-slides {
  display: flex; height: 100%; width: 600%;
  transition: transform .38s ease;
  will-change: transform;
}
.c-slide {
  width: calc(100% / 6); height: 100%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #f8f8f8; overflow: hidden;
}
.c-slide img { width: 100%; height: 100%; object-fit: cover; }
.c-slide .ph { font-size: 120px; }
.c-counter {
  position: absolute; bottom: 10px; right: 12px;
  background: rgba(0,0,0,.42); color: #fff;
  font-size: 11px; padding: 3px 10px; border-radius: 10px;
}

/* ============================================================
   FLASH SALE BANNER
   ============================================================ */
.flash-bar {
  background: linear-gradient(90deg, #ff5722, #ff1744);
  padding: 9px 12px;
  display: flex; align-items: center; gap: 0;
}
.flash-left { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.flash-pct-badge {
  background: var(--white); color: #ff1744;
  font-size: 12px; font-weight: 800;
  padding: 3px 7px; border-radius: 3px; flex-shrink: 0;
}
.flash-price {
  font-size: 26px; font-weight: 800; color: #fff; line-height: 1;
  white-space: nowrap;
}
.flash-price small { font-size: 16px; }
.flash-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 3px;
  flex-shrink: 0; margin-left: 10px;
}
.flash-name {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap;
}
.flash-timer {
  display: flex; align-items: center; gap: 2px;
}
.flash-timer-lbl { font-size: 11px; color: rgba(255,255,255,.9); margin-right: 2px; }
.t-blk {
  background: rgba(0,0,0,.3); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 2px 5px; border-radius: 3px;
  min-width: 24px; text-align: center;
  font-variant-numeric: tabular-nums;
}
.t-sep { color: #fff; font-weight: 700; font-size: 13px; }

/* ============================================================
   PRICE AREA
   ============================================================ */
.price-area {
  background: var(--white);
  padding: 7px 12px 10px;
}
.price-orig { font-size: 12px; color: var(--gray); text-decoration: line-through; }

.inst-row {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; background: var(--white);
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--gray);
}
.inst-row .inst-link { color: var(--pink); margin-left: auto; font-weight: 500; }

.coupon-row {
  display: flex; align-items: center;
  padding: 8px 12px; background: var(--white);
  border-top: 1px solid var(--border); cursor: pointer;
}
.c-pill {
  background: #fff0f3; color: var(--pink);
  font-size: 12px; font-weight: 700;
  padding: 5px 11px; border-radius: 4px;
  display: flex; align-items: center; gap: 5px;
}
.c-arr { color: var(--pink); margin-left: auto; font-size: 15px; }

/* ============================================================
   PRODUCT INFO
   ============================================================ */
.prod-info {
  background: var(--white); padding: 12px;
  border-top: 6px solid var(--bg);
}
.prod-info-top {
  display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px;
}
.rating-badge {
  background: #ff6034; color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 2px 6px; border-radius: 3px; flex-shrink: 0; margin-top: 2px;
}
.prod-title {
  flex: 1; font-size: 15px; font-weight: 500; line-height: 1.5; color: var(--text);
}
.bookmark-btn { font-size: 20px; color: var(--gray); flex-shrink: 0; padding: 0 2px; }
.prod-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 12px; color: var(--gray); margin-bottom: 10px;
}
.prod-meta .star { color: #ff9800; font-size: 13px; }
.prod-meta .r-cnt { color: var(--pink); }
.prod-meta .sep { color: #ccc; }
.ship-row {
  display: flex; align-items: center; gap: 8px;
  padding-top: 10px; border-top: 1px solid var(--border); font-size: 13px;
}
.free-pill {
  background: #e0f7f4; color: var(--teal);
  font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 3px; flex-shrink: 0;
}
.ship-detail { color: var(--gray); flex: 1; font-size: 12px; }
.ship-arrow { color: var(--gray); font-size: 14px; }

/* ============================================================
   TAB NAVIGATION
   ============================================================ */
.tab-nav {
  position: sticky; top: 50px; z-index: 150;
  background: var(--white); border-bottom: 1px solid var(--border);
  display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 11px 15px;
  font-size: 13px; font-weight: 500; color: var(--gray);
  white-space: nowrap; flex-shrink: 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.tab-btn.active { color: var(--text); font-weight: 700; border-bottom-color: var(--text); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   PROTECTION SECTION
   ============================================================ */
.protection {
  background: var(--white); padding: 12px; margin-top: 8px;
}
.prot-hd {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: #f59700; margin-bottom: 10px;
}
.prot-hd .p-arr { margin-left: auto; color: var(--gray); font-size: 16px; }
.prot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 8px; }
.prot-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--gray);
}
.prot-ck { font-size: 12px; color: var(--text); }

/* ============================================================
   OFFERS
   ============================================================ */
.offers-sec { background: var(--white); padding: 12px; margin-top: 8px; }
.offers-hd {
  display: flex; align-items: center;
  font-size: 14px; font-weight: 700; margin-bottom: 10px;
}
.offers-hd .o-arr { color: var(--gray); margin-left: auto; }
.offers-scroll {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.offers-scroll::-webkit-scrollbar { display: none; }
.offer-card {
  min-width: 155px; background: #e5f9f7;
  border-radius: 6px; padding: 10px; flex-shrink: 0; position: relative;
}
.off-badge {
  position: absolute; top: -7px; right: 8px;
  background: var(--teal); color: #fff;
  font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 8px;
}
.off-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.off-desc { font-size: 11px; color: #444; line-height: 1.4; margin-bottom: 8px; }
.off-btn {
  background: var(--teal); color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 4px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-sec { background: var(--white); padding: 12px; margin-top: 8px; }
.rv-hd {
  display: flex; align-items: center;
  font-size: 14px; font-weight: 700; margin-bottom: 10px;
}
.rv-hd .ver { font-size: 12px; font-weight: 600; color: var(--pink); margin-left: auto; cursor: pointer; padding: 4px 8px; border-radius: 4px; }
.rv-summary { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.rv-big { font-size: 28px; font-weight: 700; line-height: 1; }
.rv-rt { }
.rv-stars { font-size: 19px; color: #ffa726; letter-spacing: 1px; }
.rv-cnt { font-size: 12px; color: var(--gray); margin-top: 2px; }
.rv-chips { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.rv-chip {
  font-size: 11px; color: var(--text);
  border: 1px solid var(--border); padding: 4px 10px; border-radius: 12px;
  display: flex; align-items: center; gap: 4px; cursor: pointer;
}
.rv-card { padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
.rv-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.rv-user { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.rv-av {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--lgray); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 15px; overflow: hidden;
}
.rv-uname { font-size: 13px; font-weight: 600; }
.rv-date { font-size: 11px; color: var(--gray); margin-left: auto; }
.rv-stars-sm { font-size: 14px; color: #ffa726; margin-bottom: 3px; }
.rv-item { font-size: 11px; color: var(--gray); margin-bottom: 6px; }
.rv-text { font-size: 13px; line-height: 1.55; color: var(--text); }
.rv-photos { display: flex; gap: 6px; margin-top: 8px; overflow-x: auto; }
.rv-photo {
  width: 80px; height: 80px; flex-shrink: 0; border-radius: 5px;
  background: var(--lgray);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.rv-loja-hd {
  font-size: 14px; font-weight: 700; margin: 14px 0 8px;
  display: flex; align-items: center;
}
.rv-loja-hd .arr { color: var(--gray); margin-left: auto; }

/* ============================================================
   STORE SECTION
   ============================================================ */
.store-sec { background: var(--white); padding: 12px; margin-top: 8px; }
.store-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.store-logo {
  width: 50px; height: 50px; border-radius: 50%;
  background: #2e7d32; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 900; color: #fff; text-align: center; line-height: 1.2;
  text-transform: uppercase;
}
.store-meta { flex: 1; }
.store-name { font-size: 15px; font-weight: 700; }
.store-sold { font-size: 12px; color: var(--gray); margin-top: 2px; }
.store-visit {
  border: 1px solid var(--border); padding: 7px 16px;
  border-radius: 4px; font-size: 13px; font-weight: 600;
}
.store-stats { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.store-more-hd {
  font-size: 14px; font-weight: 700; margin-bottom: 8px;
  display: flex; align-items: center;
}
.store-more-hd .arr { color: var(--gray); margin-left: auto; }
.store-scroll {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.store-scroll::-webkit-scrollbar { display: none; }
.sp-card {
  min-width: 110px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden; cursor: pointer;
}
.sp-img {
  width: 100%; aspect-ratio: 1; background: var(--lgray);
  display: flex; align-items: center; justify-content: center; font-size: 38px;
}
.sp-info { padding: 6px; }
.sp-price { font-size: 14px; font-weight: 700; color: var(--pink); }
.sp-disc { font-size: 11px; color: var(--pink); }

/* ============================================================
   ABOUT / DESCRIPTION
   ============================================================ */
.about-sec { background: var(--white); padding: 12px; margin-top: 8px; }
.about-hd { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.about-ptitle { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.about-text { font-size: 13px; line-height: 1.75; color: var(--text); }
.about-text ul { padding-left: 20px; margin-top: 8px; }
.about-text li { margin-bottom: 4px; }

/* ============================================================
   RELATED PRODUCTS
   ============================================================ */
.related-sec { background: var(--white); padding: 12px; margin-top: 8px; }
.related-hd { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.prod-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.pc {
  border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; cursor: pointer;
}
.pc-img {
  width: 100%; aspect-ratio: 1; background: var(--lgray);
  display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.pc-info { padding: 8px; }
.pc-name {
  font-size: 12px; line-height: 1.4; color: var(--text); margin-bottom: 5px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pc-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 3px; }
.pc-price { font-size: 15px; font-weight: 700; color: var(--pink); }
.pc-orig { font-size: 11px; color: var(--gray); text-decoration: line-through; }
.pc-flash {
  display: inline-flex; align-items: center; gap: 3px;
  background: #fff0f3; color: var(--pink);
  font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 3px; margin-bottom: 3px;
}
.pc-meta { font-size: 11px; color: var(--gray); display: flex; align-items: center; gap: 3px; }
.pc-star { color: #ffa726; }

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
.sticky-bar {
  position: fixed; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 520px;
  background: var(--white); border-top: 1px solid var(--border);
  display: flex; align-items: center; height: 58px;
  z-index: 1000; box-shadow: 0 -2px 8px rgba(0,0,0,.12);
  -webkit-transform: translateX(-50%) translateZ(0);
}
.bar-icons { display: flex; flex-shrink: 0; }
.bar-icon {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 4px 14px; gap: 2px; font-size: 10px; color: var(--gray);
}
.bar-icon .ico { font-size: 22px; }
.bar-sep { width: 1px; height: 38px; background: var(--border); }
.bar-btns { display: flex; flex: 1; height: 100%; padding: 5px 6px 5px 0; gap: 6px; }
.btn-add {
  flex: 0.85; background: var(--lgray); color: var(--text);
  font-size: 12px; font-weight: 600; border-radius: 24px;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  white-space: nowrap;
}
.btn-buy {
  flex: 1.15; background: linear-gradient(90deg, #ff1744, #fe2c55);
  color: #fff; font-size: 14px; font-weight: 800; border-radius: 24px;
  border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1px; line-height: 1.2;
  box-shadow: 0 3px 10px rgba(254,44,85,.45);
  letter-spacing: .2px;
}
.btn-buy .sub { font-size: 10px; font-weight: 500; opacity: .9; }

/* ============================================================
   BOTTOM SHEET
   ============================================================ */
.sheet-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 500;
  align-items: flex-end; justify-content: center;
}
.sheet-overlay.show { display: flex; }
.bottom-sheet {
  background: var(--white); border-radius: 16px 16px 0 0;
  width: 100%; max-width: 520px;
  padding: 8px 16px 36px;
  animation: sheetUp .28s cubic-bezier(.22,.61,.36,1);
}
@keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.sh-drag {
  width: 36px; height: 4px; background: var(--border);
  border-radius: 2px; margin: 0 auto 14px;
}
.sh-prod-row {
  display: flex; gap: 12px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border); margin-bottom: 14px;
}
.sh-prod-img {
  width: 82px; height: 82px; border-radius: 6px;
  background: var(--lgray); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 38px;
}
.sh-prod-info { flex: 1; }
.sh-price { font-size: 24px; font-weight: 800; color: var(--pink); }
.sh-price small { font-size: 15px; }
.sh-orig { font-size: 12px; color: var(--gray); text-decoration: line-through; margin-top: 2px; }
.sh-pct {
  display: inline-block; background: var(--pink); color: #fff;
  font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 3px; margin-top: 4px;
}
.sh-lbl { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.color-opts { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.co {
  display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer;
}
.co-sw {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2.5px solid transparent;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
  position: relative; transition: border-color .15s, box-shadow .15s;
}
.co.selected .co-sw { border-color: var(--pink); box-shadow: 0 0 0 1px var(--pink); }
.co.selected .co-sw::after {
  content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #fff; font-weight: 700;
}
.co-nm { font-size: 10px; color: var(--gray); }
.co.selected .co-nm { color: var(--pink); font-weight: 700; }
.qty-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;
}
.qty-ctrl { display: flex; align-items: center; }
.q-btn {
  width: 34px; height: 34px;
  border: 1.5px solid var(--border); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; cursor: pointer; background: var(--white);
  transition: opacity .15s;
}
.q-btn:disabled { opacity: .35; cursor: default; }
.q-val {
  width: 44px; height: 34px;
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
}
.q-stock { font-size: 12px; color: var(--gray); }
.sh-cta {
  width: 100%; background: var(--pink); color: #fff;
  font-size: 16px; font-weight: 800; padding: 15px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.sh-cta:active { background: var(--pink-d); }

/* ============================================================
   STICKY BAR — hidden when bottom sheet is open
   ============================================================ */
.sticky-bar.bar-hidden {
  transform: translateX(-50%) translateY(110%);
  -webkit-transform: translateX(-50%) translateY(110%) translateZ(0);
  transition: transform .28s ease;
  pointer-events: none;
}

/* ============================================================
   PAGE FOOTER
   ============================================================ */
.page-footer { background: var(--white); margin-top: 8px; }
.ft-store-row {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; border-bottom: 1px solid var(--border);
}
.ft-logo {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; border: 1px solid var(--border); flex-shrink: 0;
}
.ft-logo img { width: 100%; height: 100%; object-fit: cover; }
.ft-store-meta { flex: 1; }
.ft-store-name { font-size: 15px; font-weight: 700; }
.ft-store-count { font-size: 12px; color: var(--gray); margin-top: 2px; }
.ft-follow-btn {
  border: 1.5px solid var(--border); padding: 8px 20px;
  border-radius: 6px; font-size: 14px; font-weight: 600;
  white-space: nowrap;
}
.ft-desc {
  padding: 16px; font-size: 14px; line-height: 1.8; color: #333;
  border-bottom: 1px solid var(--border);
}
.ft-accordion { }
.ft-acc-item { border-bottom: 1px solid var(--border); }
.ft-acc-hd {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px; font-size: 15px; font-weight: 700; text-align: left;
  background: var(--white); color: var(--text);
}
.ft-acc-hd svg { transition: transform .22s ease; flex-shrink: 0; }
.ft-acc-hd.open svg { transform: rotate(180deg); }
.ft-acc-body {
  display: none; padding: 0 16px 16px;
  font-size: 13px; line-height: 1.75; color: var(--gray);
}
.ft-acc-body.open { display: block; }
.ft-trust {
  display: flex; justify-content: center; gap: 28px;
  padding: 16px; border-top: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--gray);
}
.ft-apps {
  display: flex; gap: 10px; padding: 14px 16px; justify-content: center;
  border-top: 1px solid var(--border);
}
.ft-app-img {
  height: 58px; width: auto; cursor: pointer; border-radius: 8px;
  flex-shrink: 0; object-fit: contain;
}
.ft-copy {
  text-align: center; font-size: 11px; color: var(--gray);
  padding: 12px 16px 20px; border-top: 1px solid var(--border);
}

/* ============================================================
   SOCIAL PROOF POPUP
   ============================================================ */
.sale-popup {
  position: fixed; bottom: 76px; left: 12px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  padding: 10px 12px 10px 10px;
  display: flex; align-items: center; gap: 10px;
  max-width: 275px; z-index: 800;
  animation: popupSlide .38s cubic-bezier(.22,.61,.36,1);
  transition: opacity .35s ease, transform .35s ease;
}
@keyframes popupSlide {
  from { opacity: 0; transform: translateX(-110%); }
  to   { opacity: 1; transform: translateX(0); }
}
.sp-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
}
.sp-body { flex: 1; min-width: 0; }
.sp-name { font-size: 13px; font-weight: 700; color: #1a1a1a; }
.sp-txt  { font-size: 12px; color: #757575; line-height: 1.3; margin-top: 1px; }
.sp-time { font-size: 11px; color: #9e9e9e; margin-top: 3px; display: flex; align-items: center; gap: 3px; }
.sp-close {
  font-size: 17px; color: #bbb; flex-shrink: 0; line-height: 1;
  width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
  padding: 0; background: none; border: none; cursor: pointer; align-self: flex-start;
}

/* ============================================================
   DESKTOP
   ============================================================ */
.ft-trust-item { display: inline-flex; align-items: center; gap: 5px; }

@media (min-width: 521px) {
  body { box-shadow: 0 0 20px rgba(0,0,0,.12); min-height: 100vh; }
}
