/*
Theme Name: THE BIG T
Theme URI: https://www.bigtstore.com/
Author: LUCIDEA STUDIO
Author URI: https://www.bigtstore.com/
Description: Premium multi-market Arabic/English fashion store theme with WooCommerce integration, 9 markets, cart drawer, and OPS dashboard.
Version: 4.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
WC requires at least: 8.0
WC tested up to: 9.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: the-big-t
Tags: e-commerce, woocommerce, rtl-language-support, custom-colors, custom-menu, featured-images, translation-ready
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --tbt-blue:    #126EF7;
  --tbt-deep:    #0057D9;
  --tbt-pink:    #F8BAD2;
  --tbt-lpink:   #FDD9E9;
  --tbt-lav:     #C9A6E2;
  --tbt-ice:     #DCEAFF;
  --tbt-white:   #FFFFFF;
  --tbt-dark:    #171717;
  --tbt-gray:    #F2F4F7;
  --tbt-soft:    #FCEFF4;
  --tbt-sh-sm:   0 2px 12px rgba(18,110,247,.08);
  --tbt-sh-md:   0 8px 30px rgba(18,110,247,.14);
  --tbt-sh-lg:   0 20px 50px rgba(0,0,0,.14);
  --tbt-r:       14px;
  --tbt-r-lg:    22px;
  --tbt-r-xl:    30px;
  --tbt-fn-d:    'Baloo 2', cursive;
  --tbt-fn-b:    'Nunito', sans-serif;
  --tbt-fn-ar:   'Cairo', sans-serif;
  --tbt-ease:    cubic-bezier(.4,0,.2,1);
  --tbt-bounce:  cubic-bezier(.34,1.56,.64,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--tbt-fn-b);
  background: var(--tbt-soft);
  color: var(--tbt-dark);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 15px;
}
[dir="rtl"] body,
[dir="rtl"] { font-family: var(--tbt-fn-ar); }

a { color: var(--tbt-blue); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--tbt-lpink); }
::-webkit-scrollbar-thumb { background: var(--tbt-blue); border-radius: 4px; }

h1, h2, h3, h4, h5 {
  font-family: var(--tbt-fn-d);
  font-weight: 800;
  color: var(--tbt-dark);
  line-height: 1.15;
}

/* Accessibility */
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
:focus-visible { outline: 3px solid var(--tbt-blue); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.tbt-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--tbt-blue); color: #fff;
  border: none; padding: 13px 28px;
  border-radius: var(--tbt-r-xl);
  font-family: var(--tbt-fn-b); font-weight: 800; font-size: 15px;
  cursor: pointer; transition: all .25s;
  box-shadow: 0 6px 20px rgba(18,110,247,.35);
  text-decoration: none; white-space: nowrap;
}
[dir="rtl"] .tbt-btn { font-family: var(--tbt-fn-ar); }
.tbt-btn:hover { background: var(--tbt-deep); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(18,110,247,.4); color: #fff; }
.tbt-btn-ghost { background: #fff !important; color: var(--tbt-blue) !important; border: 2px solid var(--tbt-blue) !important; box-shadow: none !important; }
.tbt-btn-ghost:hover { background: var(--tbt-blue) !important; color: #fff !important; }
.tbt-btn-sm { padding: 9px 18px; font-size: 13px; }
.tbt-btn-white { background: #fff; color: var(--tbt-blue); box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.tbt-btn-white:hover { background: var(--tbt-ice); color: var(--tbt-deep); }

/* WooCommerce buttons override */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt {
  background: var(--tbt-blue) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--tbt-r-xl) !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  padding: 12px 24px !important;
  transition: all .25s !important;
  box-shadow: 0 4px 14px rgba(18,110,247,.3) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button.alt:hover {
  background: var(--tbt-deep) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.tbt-announce {
  background: var(--tbt-blue); color: #fff;
  padding: 10px 0; overflow: hidden; z-index: 200; position: relative;
}
.tbt-announce-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: tbt-marquee 28s linear infinite;
}
[dir="rtl"] .tbt-announce-track { animation-name: tbt-marquee-rtl; }
.tbt-announce-track span { padding: 0 36px; font-size: 13px; font-weight: 700; }
@keyframes tbt-marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes tbt-marquee-rtl { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }

/* ============================================================
   HEADER
   ============================================================ */
.tbt-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(252,239,244,.95);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid rgba(18,110,247,.1);
  transition: box-shadow .3s;
}
.tbt-header.scrolled { box-shadow: var(--tbt-sh-md); }
.tbt-header-wrap {
  max-width: 1440px; margin: 0 auto; padding: 0 24px;
  height: 70px; display: flex; align-items: center; gap: 16px;
}

/* Logo */
.tbt-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.tbt-logo img { width: 44px; height: 44px; object-fit: contain; animation: tbt-float 4s ease-in-out infinite; }
@keyframes tbt-float { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-5px) rotate(2deg)} }
.tbt-logo-name { font-family: var(--tbt-fn-d); font-size: 22px; font-weight: 800; color: var(--tbt-blue); line-height: 1; }
.tbt-logo-name small { display: block; font-size: 9px; color: var(--tbt-lav); font-weight: 700; letter-spacing: 2px; }

/* Desktop nav */
.tbt-nav { display: flex; align-items: center; margin-inline-start: 8px; }
.tbt-nav ul { display: flex; align-items: center; gap: 2px; }
.tbt-nav li { position: relative; }
.tbt-nav li a {
  display: flex; align-items: center; gap: 4px;
  color: var(--tbt-dark); font-weight: 700; font-size: 14px;
  padding: 8px 14px; border-radius: 20px;
  transition: all .2s; text-decoration: none;
}
.tbt-nav li a:hover, .tbt-nav li:hover > a { color: var(--tbt-blue); background: var(--tbt-ice); }
.tbt-nav .chevron { font-size: 8px; opacity: .6; transition: transform .2s; }
.tbt-nav li:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.tbt-dropdown {
  position: absolute; top: calc(100% + 8px); inset-inline-start: 0;
  background: #fff; border-radius: 16px; padding: 8px;
  min-width: 200px; box-shadow: var(--tbt-sh-lg);
  border: 1px solid rgba(18,110,247,.08);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: all .22s var(--tbt-ease); z-index: 300;
}
.tbt-nav li:hover .tbt-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.tbt-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  color: var(--tbt-dark); font-size: 13.5px; font-weight: 700;
}
.tbt-dropdown a:hover { background: var(--tbt-soft); color: var(--tbt-blue); }
.tbt-dropdown a .d-ico { font-size: 18px; width: 32px; text-align: center; }

/* Header actions */
.tbt-header-actions { display: flex; align-items: center; gap: 8px; margin-inline-start: auto; }
.tbt-icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; position: relative;
  box-shadow: var(--tbt-sh-sm); transition: all .22s;
  text-decoration: none; color: var(--tbt-dark); flex-shrink: 0;
}
.tbt-icon-btn:hover { transform: translateY(-2px) scale(1.05); box-shadow: var(--tbt-sh-md); }
.tbt-count {
  position: absolute; top: -3px; inset-inline-end: -3px;
  background: var(--tbt-blue); color: #fff;
  font-size: 10px; min-width: 18px; height: 18px;
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; border: 2px solid var(--tbt-soft);
}
.tbt-market-btn {
  background: #fff; border: 1.5px solid rgba(18,110,247,.2);
  border-radius: 22px; padding: 7px 14px;
  font-size: 13px; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  color: var(--tbt-dark); transition: all .2s; flex-shrink: 0;
}
.tbt-market-btn:hover { border-color: var(--tbt-blue); background: var(--tbt-ice); }
.tbt-lang-btn {
  background: #fff; border: 1.5px solid rgba(18,110,247,.2);
  border-radius: 22px; padding: 7px 14px;
  font-size: 13px; font-weight: 800; cursor: pointer;
  color: var(--tbt-dark); transition: all .2s; flex-shrink: 0;
}
.tbt-lang-btn:hover { border-color: var(--tbt-blue); color: var(--tbt-blue); background: var(--tbt-ice); }

/* Free shipping bar */
.tbt-ship-bar {
  background: linear-gradient(90deg, var(--tbt-ice), var(--tbt-lpink), var(--tbt-ice));
  padding: 8px 24px; display: flex; align-items: center;
  justify-content: center; gap: 12px; font-size: 13px; font-weight: 700;
  color: var(--tbt-deep); flex-wrap: wrap;
}
.tbt-ship-bar .bar { flex: 0 1 180px; height: 6px; background: rgba(18,110,247,.15); border-radius: 3px; overflow: hidden; }
.tbt-ship-bar .fill { height: 100%; background: var(--tbt-blue); border-radius: 3px; transition: width .8s; }

/* ============================================================
   HERO
   ============================================================ */
.tbt-hero {
  position: relative; overflow: hidden; min-height: 500px;
  display: flex; align-items: center; padding: 60px 24px 50px;
  background: var(--tbt-soft);
}
.tbt-hero-blob {
  position: absolute; border-radius: 50%; opacity: .45; pointer-events: none;
}
.tbt-hero-blob.b1 {
  width: 480px; height: 480px; background: var(--tbt-lav);
  top: -140px; inset-inline-end: -60px;
  animation: tbt-blob 12s ease-in-out infinite;
}
.tbt-hero-blob.b2 {
  width: 320px; height: 320px; background: var(--tbt-ice);
  bottom: -100px; inset-inline-start: 5%;
  animation: tbt-blob 10s ease-in-out infinite reverse;
}
@keyframes tbt-blob { 0%,100%{transform:scale(1)} 50%{transform:scale(1.12) translate(-15px,15px)} }
.tbt-hero-inner {
  max-width: 1440px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: center; position: relative; z-index: 2;
}
.tbt-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: var(--tbt-blue);
  padding: 6px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 800; margin-bottom: 20px;
  box-shadow: var(--tbt-sh-sm);
}
.tbt-hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #10B981; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.tbt-hero h1 { font-size: clamp(38px, 5vw, 68px); margin-bottom: 16px; }
.tbt-hero h1 em { color: var(--tbt-blue); font-style: normal; position: relative; }
.tbt-hero h1 em::after {
  content: ''; position: absolute; bottom: 4px; inset-inline-start: 0;
  width: 100%; height: 9px; background: var(--tbt-lpink); z-index: -1; border-radius: 4px;
}
.tbt-hero-sub { font-size: 17px; color: #5a5a5a; line-height: 1.7; margin-bottom: 30px; max-width: 460px; }
.tbt-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.tbt-hero-stats { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.tbt-stat-num { font-family: var(--tbt-fn-d); font-size: 28px; font-weight: 800; color: var(--tbt-blue); }
.tbt-stat-lbl { font-size: 12px; color: #999; font-weight: 700; }
.tbt-hero-img { display: flex; justify-content: center; }
.tbt-hero-img img { width: 340px; filter: drop-shadow(0 20px 40px rgba(18,110,247,.25)); animation: tbt-mascot 5s ease-in-out infinite; }
@keyframes tbt-mascot { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-18px) rotate(2deg)} }

/* ============================================================
   SECTIONS
   ============================================================ */
.tbt-section { padding: 60px 24px; }
.tbt-container { max-width: 1440px; margin: 0 auto; }
.tbt-section-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; gap: 16px; flex-wrap: wrap; }
.tbt-sec-title { font-size: clamp(26px, 3.2vw, 40px); margin: 0; }
.tbt-sec-sub { font-size: 14px; color: #999; margin-top: 5px; font-weight: 600; }

/* Brand strip */
.tbt-strip { background: var(--tbt-blue); padding: 14px 0; overflow: hidden; }
.tbt-strip-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: tbt-marquee 20s linear infinite;
}
.tbt-strip-track span { padding: 0 32px; font-family: var(--tbt-fn-d); font-size: 17px; font-weight: 700; color: #fff; }
.tbt-strip-track .sep { color: var(--tbt-lpink); }

/* ============================================================
   CATEGORIES
   ============================================================ */
.tbt-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.tbt-cat-card {
  border-radius: 22px; padding: 36px 22px;
  text-align: center; cursor: pointer;
  transition: all .32s var(--tbt-ease);
  text-decoration: none; display: block; position: relative; overflow: hidden;
}
.tbt-cat-card:hover { transform: translateY(-7px) scale(1.02); box-shadow: var(--tbt-sh-lg); }
.tbt-cat-card .emoji { font-size: 54px; display: block; margin-bottom: 14px; }
.tbt-cat-card .name { font-family: var(--tbt-fn-d); font-size: 22px; font-weight: 800; color: var(--tbt-dark); }
.tbt-cat-card .cnt { font-size: 12.5px; color: #666; margin-top: 5px; font-weight: 700; }
.tbt-cat-card .img-wrap { width: 90px; height: 90px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; background: rgba(255,255,255,.5); }
.tbt-cat-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PRODUCT CARDS (WooCommerce)
   ============================================================ */
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0 !important; }
.woocommerce-page ul.products { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0 !important; }

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: #fff; border-radius: var(--tbt-r-lg);
  overflow: hidden; box-shadow: var(--tbt-sh-sm);
  transition: all .32s var(--tbt-ease);
  padding: 0 !important; margin: 0 !important;
  float: none !important; width: auto !important;
  position: relative;
}
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  transform: translateY(-8px); box-shadow: var(--tbt-sh-lg);
}

/* Product image wrapper */
.tbt-pimg {
  aspect-ratio: 4/5; background: var(--tbt-pink);
  overflow: hidden; position: relative; display: block;
}
.tbt-pimg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--tbt-ease);
}
.woocommerce ul.products li.product:hover .tbt-pimg img { transform: scale(1.05); }
.woocommerce ul.products li.product a img { margin: 0 !important; border-radius: 0 !important; display: block !important; }

/* Product body */
.tbt-pbody { padding: 14px 16px 16px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--tbt-fn-b) !important; font-size: 14px !important;
  font-weight: 700 !important; color: var(--tbt-dark) !important;
  padding: 0 0 6px !important; margin: 0 !important;
}
.woocommerce ul.products li.product .price {
  color: var(--tbt-blue) !important; font-family: var(--tbt-fn-d) !important;
  font-weight: 800 !important; font-size: 18px !important;
  padding: 0 !important; display: block; margin-bottom: 10px !important;
}
.woocommerce ul.products li.product .price del { color: #bbb !important; font-size: 12px !important; font-weight: 400 !important; }

/* Product actions */
.tbt-pactions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }

/* Badges */
.tbt-badge {
  position: absolute; top: 10px; inset-inline-start: 10px; z-index: 5;
  border-radius: 16px; padding: 4px 10px; font-size: 11px; font-weight: 800;
  line-height: 1.4;
}
.tbt-badge-sale { background: #EF4444; color: #fff; }
.tbt-badge-new { background: #10B981; color: #fff; }
.tbt-badge-best { background: #F59E0B; color: #fff; }
.woocommerce span.onsale {
  background: #EF4444 !important; color: #fff !important;
  border-radius: 16px !important; font-size: 11px !important;
  padding: 4px 10px !important; font-weight: 800 !important;
  min-height: auto !important; min-width: auto !important;
  line-height: 1.4 !important; top: 10px !important; left: 10px !important;
}

/* Wishlist btn */
.tbt-wish-btn {
  position: absolute; top: 10px; inset-inline-end: 10px; z-index: 5;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none;
  font-size: 16px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  box-shadow: var(--tbt-sh-sm); transition: all .2s;
}
.tbt-wish-btn:hover { background: #fff; transform: scale(1.1); }
.tbt-wish-btn.active { color: #EF4444; }

/* Quick-view btn */
.tbt-qv-btn {
  position: absolute; bottom: -42px; inset-inline-start: 8px; inset-inline-end: 8px;
  background: rgba(18,110,247,.93); color: #fff; border: none;
  border-radius: 12px; padding: 9px; font-size: 13px; font-weight: 800;
  cursor: pointer; transition: bottom .28s var(--tbt-bounce); z-index: 4;
}
.woocommerce ul.products li.product:hover .tbt-qv-btn { bottom: 8px; }

/* Low-stock badge */
.tbt-low-stock {
  position: absolute; bottom: 8px; inset-inline-start: 8px; inset-inline-end: 8px;
  background: rgba(239,68,68,.9); color: #fff;
  border-radius: 8px; padding: 4px 10px; font-size: 11px; font-weight: 800;
  text-align: center; z-index: 4;
}

/* Color swatches */
.tbt-swatches { display: flex; gap: 5px; margin-bottom: 8px; flex-wrap: wrap; }
.tbt-swatch {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2.5px solid #fff; box-shadow: 0 0 0 1.5px #ddd;
  cursor: pointer; transition: all .15s; flex-shrink: 0;
}
.tbt-swatch:hover { box-shadow: 0 0 0 2px var(--tbt-blue); transform: scale(1.15); }
.tbt-swatch.active { box-shadow: 0 0 0 2.5px var(--tbt-blue); }

/* Stars */
.tbt-stars { color: #FBBF24; font-size: 13px; letter-spacing: 1px; margin-bottom: 6px; }
.tbt-stars .cnt { color: #bbb; font-size: 11.5px; font-family: var(--tbt-fn-b); font-weight: 600; }

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */
.woocommerce div.product .product_title { font-family: var(--tbt-fn-d) !important; font-weight: 800 !important; font-size: clamp(24px, 3vw, 36px) !important; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--tbt-blue) !important; font-family: var(--tbt-fn-d) !important; font-weight: 800 !important; font-size: 30px !important; }
.woocommerce div.product form.cart .qty { border: 2px solid #eee; border-radius: 12px; padding: 10px 14px; font-size: 16px; font-weight: 700; width: 80px; text-align: center; }
.woocommerce div.product .woocommerce-product-gallery { background: var(--tbt-gray); border-radius: var(--tbt-r-lg); overflow: hidden; }
.tbt-delivery-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tbt-ice); color: var(--tbt-deep);
  padding: 10px 16px; border-radius: 12px; font-size: 13px; font-weight: 700; margin: 12px 0;
}
.tbt-viewing {
  display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: #dc2626; margin: 6px 0;
}
.tbt-viewing .dot { width: 7px; height: 7px; border-radius: 50%; background: #dc2626; animation: blink 1.2s infinite; flex-shrink: 0; }
.tbt-sticky-atc {
  position: fixed; bottom: -90px; left: 0; right: 0; z-index: 400;
  background: #fff; box-shadow: 0 -6px 24px rgba(0,0,0,.1);
  padding: 12px 24px; transition: bottom .35s var(--tbt-bounce);
}
.tbt-sticky-atc.show { bottom: 0; }
@media (max-width: 768px) { .tbt-sticky-atc { bottom: 64px !important; } .tbt-sticky-atc.show { bottom: 64px; } }
.tbt-sticky-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 14px; }
.tbt-sticky-thumb { width: 48px; height: 58px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--tbt-gray); }
.tbt-sticky-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tbt-sticky-info { flex: 1; min-width: 0; }
.tbt-sticky-name { font-size: 14px; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tbt-sticky-price { font-family: var(--tbt-fn-d); font-size: 18px; font-weight: 800; color: var(--tbt-blue); }

/* ============================================================
   FLASH SALE
   ============================================================ */
.tbt-flash {
  background: linear-gradient(135deg, var(--tbt-deep) 0%, var(--tbt-blue) 60%, #3B82F6 100%);
  padding: 60px 24px; color: #fff; position: relative; overflow: hidden;
}
.tbt-flash::before { content: '⚡'; font-size: 280px; position: absolute; inset-inline-end: -30px; top: -50px; opacity: .06; line-height: 1; }
.tbt-flash-hdr { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.tbt-flash-title { font-family: var(--tbt-fn-d); font-size: clamp(28px, 4vw, 50px); font-weight: 800; }
.tbt-flash-title span { color: #FFD93D; }
.tbt-countdown { display: flex; align-items: center; gap: 8px; }
.tbt-cbox { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: 12px; padding: 10px 14px; min-width: 64px; text-align: center; }
.tbt-cnum { font-family: var(--tbt-fn-d); font-size: 32px; font-weight: 800; display: block; line-height: 1; }
.tbt-clbl { font-size: 10px; opacity: .7; font-weight: 800; letter-spacing: .8px; margin-top: 3px; }
.tbt-csep { font-family: var(--tbt-fn-d); font-size: 30px; font-weight: 800; opacity: .5; }

/* ============================================================
   LOYALTY
   ============================================================ */
.tbt-loyalty { background: linear-gradient(135deg, var(--tbt-pink), var(--tbt-lpink)); padding: 64px 24px; }
.tbt-loyalty-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.tbt-loyalty-img img { width: 220px; animation: tbt-mascot 5s ease-in-out infinite; filter: drop-shadow(0 14px 30px rgba(18,110,247,.28)); }
.tbt-points-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--tbt-blue); color: #fff; padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 800; margin-bottom: 18px; }
.tbt-loyalty-steps { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 28px; }
.tbt-lstep { display: flex; align-items: center; gap: 14px; background: #fff; padding: 14px 18px; border-radius: 14px; box-shadow: var(--tbt-sh-sm); }
.tbt-lstep-ico { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--tbt-blue), var(--tbt-deep)); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.tbt-lstep-txt { font-size: 14px; font-weight: 700; }

/* ============================================================
   REVIEWS
   ============================================================ */
.tbt-reviews { background: #fff; padding: 60px 24px; }
.tbt-rev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.tbt-rev-card { background: var(--tbt-soft); border-radius: 18px; padding: 22px; border: 1.5px solid transparent; transition: all .28s; position: relative; }
.tbt-rev-card:hover { transform: translateY(-5px); border-color: var(--tbt-lpink); box-shadow: var(--tbt-sh-md); }
.tbt-rev-stars { color: #FBBF24; font-size: 20px; letter-spacing: 2px; margin-bottom: 10px; }
.tbt-rev-name { font-size: 14px; font-weight: 800; }
.tbt-rev-loc { font-size: 12px; color: #aaa; margin-top: 3px; font-weight: 700; }
.tbt-verified { position: absolute; top: 14px; inset-inline-end: 14px; background: #10B981; color: #fff; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 10px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.tbt-newsletter { background: linear-gradient(135deg, var(--tbt-blue), var(--tbt-deep)); padding: 60px 24px; text-align: center; }
.tbt-newsletter h2 { color: #fff; font-size: clamp(24px, 3.5vw, 38px); margin-bottom: 10px; }
.tbt-newsletter p { color: rgba(255,255,255,.82); font-size: 15.5px; margin-bottom: 26px; font-weight: 600; }
.tbt-news-form { max-width: 480px; margin: 0 auto; background: #fff; border-radius: 28px; padding: 5px 5px 5px 20px; display: flex; align-items: center; gap: 6px; }
.tbt-news-form input { flex: 1; border: none; outline: none; font-size: 15px; font-weight: 600; font-family: inherit; background: transparent; min-width: 0; }
.tbt-news-form input::placeholder { color: #bbb; }
.tbt-news-form .tbt-btn { flex-shrink: 0; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.tbt-drawer-overlay { position: fixed; inset: 0; background: rgba(23,23,23,.45); z-index: 800; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(3px); }
.tbt-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.tbt-cart-drawer {
  position: fixed; top: 0; inset-inline-end: -460px; width: 100%; max-width: 440px;
  height: 100dvh; background: #fff; z-index: 900;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  transition: inset-inline-end .38s var(--tbt-bounce);
}
[dir="rtl"] .tbt-cart-drawer { inset-inline-end: auto; inset-inline-start: -460px; box-shadow: 8px 0 40px rgba(0,0,0,.15); }
.tbt-cart-drawer.open { inset-inline-end: 0; }
[dir="rtl"] .tbt-cart-drawer.open { inset-inline-start: 0; }
.tbt-drawer-head { padding: 18px 20px; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.tbt-drawer-title { font-family: var(--tbt-fn-d); font-size: 21px; font-weight: 800; }
.tbt-drawer-close { background: var(--tbt-gray); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 17px; cursor: pointer; transition: all .2s; }
.tbt-drawer-close:hover { background: var(--tbt-blue); color: #fff; transform: rotate(90deg); }
.tbt-drawer-nudge { margin: 10px 18px 0; }
.tbt-ship-nudge { background: var(--tbt-ice); color: var(--tbt-deep); border-radius: 10px; padding: 9px 13px; font-size: 12.5px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.tbt-ship-nudge .n-bar { flex: 1; height: 5px; background: rgba(18,110,247,.15); border-radius: 3px; overflow: hidden; }
.tbt-ship-nudge .n-fill { height: 100%; background: var(--tbt-blue); border-radius: 3px; transition: width .5s; }
.tbt-ship-nudge.done { background: #D1FAE5; color: #065F46; }
.tbt-drawer-body { flex: 1; overflow-y: auto; padding: 14px 18px; }
.tbt-empty-cart { text-align: center; padding: 48px 20px; color: #bbb; }
.tbt-empty-cart .ico { font-size: 60px; margin-bottom: 14px; }
.tbt-empty-cart p { font-size: 15px; font-weight: 700; color: #999; }
.tbt-cart-item { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid #f5f5f5; }
.tbt-cart-item:last-child { border-bottom: none; }
.tbt-ci-img { width: 70px; height: 88px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--tbt-gray); }
.tbt-ci-img img { width: 100%; height: 100%; object-fit: cover; }
.tbt-ci-info { flex: 1; min-width: 0; }
.tbt-ci-name { font-size: 13.5px; font-weight: 700; margin-bottom: 4px; }
.tbt-ci-meta { font-size: 12px; color: #999; font-weight: 600; margin-bottom: 7px; }
.tbt-ci-price { font-family: var(--tbt-fn-d); font-size: 17px; font-weight: 800; color: var(--tbt-blue); }
.tbt-ci-qty { display: flex; align-items: center; gap: 9px; margin-top: 8px; }
.tbt-ci-qty button { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid #ddd; background: #fff; font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: 800; transition: all .15s; }
.tbt-ci-qty button:hover { border-color: var(--tbt-blue); background: var(--tbt-ice); color: var(--tbt-blue); }
.tbt-ci-qty .num { font-size: 14px; font-weight: 800; min-width: 18px; text-align: center; }
.tbt-ci-remove { background: none; border: none; color: #ccc; font-size: 18px; cursor: pointer; padding: 2px; transition: color .15s; margin-inline-start: auto; }
.tbt-ci-remove:hover { color: #EF4444; }
.tbt-drawer-foot { padding: 14px 18px; border-top: 1px solid #f0f0f0; flex-shrink: 0; }
.tbt-coupon-row { display: flex; gap: 8px; margin-bottom: 13px; }
.tbt-coupon-row input { flex: 1; border: 1.5px solid #e5e5e5; border-radius: 10px; padding: 10px 13px; font-size: 13.5px; font-weight: 700; font-family: inherit; outline: none; transition: border-color .2s; }
.tbt-coupon-row input:focus { border-color: var(--tbt-blue); }
.tbt-coupon-row button { background: var(--tbt-blue); color: #fff; border: none; border-radius: 10px; padding: 10px 16px; font-size: 13px; font-weight: 800; cursor: pointer; font-family: inherit; transition: background .2s; }
.tbt-coupon-row button:hover { background: var(--tbt-deep); }
.tbt-drawer-totals { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.tbt-drawer-total-lbl { font-size: 15px; font-weight: 700; color: #666; }
.tbt-drawer-total-val { font-family: var(--tbt-fn-d); font-size: 24px; font-weight: 800; color: var(--tbt-blue); }
.tbt-checkout-btn { width: 100%; padding: 15px !important; font-size: 16px !important; border-radius: 14px !important; margin-bottom: 8px !important; }
.tbt-viewcart-btn { width: 100%; background: transparent !important; border: 2px solid var(--tbt-blue) !important; color: var(--tbt-blue) !important; box-shadow: none !important; }

/* ============================================================
   MARKET MODAL
   ============================================================ */
.tbt-modal-overlay { position: fixed; inset: 0; background: rgba(23,23,23,.55); backdrop-filter: blur(8px); z-index: 9000; display: none; align-items: center; justify-content: center; padding: 20px; }
.tbt-modal-overlay.open { display: flex; }
.tbt-modal { background: #fff; border-radius: 28px; padding: 40px 36px; max-width: 620px; width: 100%; text-align: center; position: relative; max-height: 92vh; overflow-y: auto; animation: modal-in .38s var(--tbt-bounce); }
@keyframes modal-in { from{opacity:0;transform:translateY(36px) scale(.93)} to{opacity:1;transform:none} }
.tbt-modal-close { position: absolute; top: 16px; inset-inline-end: 16px; background: var(--tbt-gray); border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 17px; cursor: pointer; transition: all .2s; }
.tbt-modal-close:hover { transform: rotate(90deg); background: var(--tbt-blue); color: #fff; }
.tbt-modal-logo { width: 80px; margin: 0 auto 13px; animation: tbt-mascot 4s ease-in-out infinite; }
.tbt-modal h2 { font-size: 28px; margin-bottom: 4px; }
.tbt-modal-sub { font-size: 14px; color: #999; margin-bottom: 26px; font-weight: 600; }
.tbt-region-lbl { font-size: 11px; font-weight: 800; color: var(--tbt-blue); text-transform: uppercase; letter-spacing: 1px; text-align: start; margin: 8px 0 10px; display: flex; align-items: center; gap: 7px; }
.tbt-region-lbl::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--tbt-lpink), transparent); }
.tbt-market-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.tbt-mkt-opt { background: var(--tbt-soft); border: 2.5px solid transparent; border-radius: 14px; padding: 16px 8px; cursor: pointer; transition: all .22s; text-align: center; }
.tbt-mkt-opt:hover, .tbt-mkt-opt.active { border-color: var(--tbt-blue); background: var(--tbt-ice); transform: translateY(-2px); }
.tbt-mkt-opt .flag { font-size: 30px; margin-bottom: 6px; display: block; }
.tbt-mkt-opt .mname { font-size: 13px; font-weight: 800; }
.tbt-mkt-opt .mcur { font-size: 11px; color: #999; margin-top: 2px; font-weight: 600; }

/* ============================================================
   QUICK VIEW MODAL
   ============================================================ */
.tbt-qv-overlay { position: fixed; inset: 0; background: rgba(23,23,23,.6); backdrop-filter: blur(8px); z-index: 8000; display: none; align-items: center; justify-content: center; padding: 20px; }
.tbt-qv-overlay.open { display: flex; animation: tbt-fade .28s ease; }
@keyframes tbt-fade { from{opacity:0} to{opacity:1} }
.tbt-qv-modal { background: #fff; border-radius: 22px; max-width: 820px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; animation: modal-in .38s var(--tbt-bounce); }
.tbt-qv-close { position: absolute; top: 14px; inset-inline-end: 14px; z-index: 5; background: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 17px; cursor: pointer; box-shadow: var(--tbt-sh-sm); transition: all .2s; }
.tbt-qv-close:hover { transform: rotate(90deg); }
.tbt-qv-grid { display: grid; grid-template-columns: 1fr 1fr; }
.tbt-qv-img { background: var(--tbt-gray); min-height: 360px; display: flex; align-items: center; justify-content: center; }
.tbt-qv-img img { width: 100%; height: 100%; object-fit: cover; }
.tbt-qv-body { padding: 30px; }
.tbt-qv-body h2 { font-family: var(--tbt-fn-d); font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.tbt-qv-price { font-family: var(--tbt-fn-d); font-size: 26px; font-weight: 800; color: var(--tbt-blue); margin-bottom: 12px; }
.tbt-qv-price del { font-size: 16px; color: #bbb; font-weight: 400; margin-inline-start: 8px; }
.tbt-qv-desc { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 18px; }
.tbt-qv-actions { display: flex; gap: 10px; margin-top: 8px; }
.tbt-qv-loading { padding: 60px; text-align: center; color: #999; font-weight: 700; grid-column: 1/-1; font-size: 16px; }

/* ============================================================
   TOAST
   ============================================================ */
.tbt-toast { position: fixed; bottom: 80px; inset-inline-start: 50%; transform: translateX(-50%) translateY(100px); background: var(--tbt-dark); color: #fff; padding: 13px 24px; border-radius: 14px; font-size: 14px; font-weight: 700; z-index: 9999; transition: transform .4s var(--tbt-bounce); pointer-events: none; white-space: nowrap; box-shadow: var(--tbt-sh-lg); }
[dir="rtl"] .tbt-toast { transform: translateX(50%) translateY(100px); }
.tbt-toast.show { transform: translateX(-50%) translateY(0); }
[dir="rtl"] .tbt-toast.show { transform: translateX(50%) translateY(0); }

/* ============================================================
   WooCommerce pages
   ============================================================ */
.tbt-wc-wrap { max-width: 1440px; margin: 0 auto; padding: 40px 24px 60px; }
.woocommerce .woocommerce-breadcrumb { font-size: 13px; color: #999; margin-bottom: 24px; font-weight: 600; }
.woocommerce .woocommerce-breadcrumb a { color: var(--tbt-blue); }

/* Shop filters/ordering */
.woocommerce .woocommerce-ordering select { border: 1.5px solid #eee; border-radius: 10px; padding: 9px 14px; font-family: inherit; font-weight: 700; font-size: 13.5px; outline: none; }
.woocommerce .woocommerce-ordering select:focus { border-color: var(--tbt-blue); }
.woocommerce-result-count { color: #999; font-size: 13px; font-weight: 600; }

/* Pagination */
.woocommerce nav.woocommerce-pagination ul { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid #eee;
  font-weight: 800; font-size: 14px; color: var(--tbt-dark); transition: all .2s;
}
.woocommerce nav.woocommerce-pagination ul li a:hover { border-color: var(--tbt-blue); background: var(--tbt-ice); color: var(--tbt-blue); }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--tbt-blue); color: #fff; border-color: var(--tbt-blue); }

/* My Account */
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 230px 1fr; gap: 32px; max-width: 1200px; margin: 0 auto; padding: 40px 24px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { display: flex; flex-direction: column; gap: 4px; }
.woocommerce-account .woocommerce-MyAccount-navigation a { display: block; padding: 11px 16px; border-radius: 12px; color: var(--tbt-dark); font-weight: 700; font-size: 14px; transition: all .2s; }
.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a { background: var(--tbt-blue); color: #fff; }
.woocommerce-account .woocommerce-MyAccount-content { background: #fff; border-radius: var(--tbt-r-lg); padding: 28px; box-shadow: var(--tbt-sh-sm); }

/* Cart page */
.woocommerce-cart .woocommerce { max-width: 1200px; margin: 0 auto; padding: 40px 24px; }
.woocommerce table.cart { border-collapse: collapse; width: 100%; }
.woocommerce table.cart td, .woocommerce table.cart th { padding: 14px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
.woocommerce table.cart th { font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: #999; }
.woocommerce .cart_totals { background: #fff; border-radius: var(--tbt-r-lg); padding: 28px; box-shadow: var(--tbt-sh-sm); margin-top: 24px; }
.woocommerce .cart_totals h2 { font-family: var(--tbt-fn-d); font-size: 22px; font-weight: 800; margin-bottom: 20px; }

/* Checkout */
.woocommerce-checkout .woocommerce { max-width: 1200px; margin: 0 auto; padding: 40px 24px; }
.woocommerce form .form-row label { font-weight: 700; font-size: 13px; margin-bottom: 6px; display: block; color: #555; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%; border: 1.5px solid #e5e5e5; border-radius: 12px;
  padding: 12px 14px; font-family: inherit; font-size: 14px;
  font-weight: 600; outline: none; transition: border-color .2s;
  background: #fff; color: var(--tbt-dark);
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus { border-color: var(--tbt-blue); box-shadow: 0 0 0 3px rgba(18,110,247,.1); }
#order_review_heading { font-family: var(--tbt-fn-d); font-size: 22px; font-weight: 800; }
.woocommerce-checkout-review-order-table { background: #fff; border-radius: var(--tbt-r-lg); padding: 20px; box-shadow: var(--tbt-sh-sm); }

/* Thank you page */
.woocommerce-order-received { max-width: 800px; margin: 40px auto; padding: 0 24px; }
.woocommerce-thankyou-order-received { font-family: var(--tbt-fn-d); font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--tbt-blue); }

/* ============================================================
   FOOTER
   ============================================================ */
.tbt-footer { background: var(--tbt-dark); color: #fff; padding: 56px 24px 28px; }
.tbt-footer-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 40px; }
.tbt-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.tbt-footer-logo img { width: 40px; }
.tbt-footer-logo-name { font-family: var(--tbt-fn-d); font-size: 20px; font-weight: 800; color: var(--tbt-blue); }
.tbt-footer-desc { font-size: 13.5px; color: #888; line-height: 1.7; max-width: 280px; margin-bottom: 16px; }
.tbt-footer-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.tbt-pill { background: rgba(255,255,255,.07); border-radius: 18px; padding: 5px 12px; font-size: 11.5px; font-weight: 700; color: #888; cursor: pointer; transition: all .18s; border: none; font-family: inherit; }
.tbt-pill:hover { background: var(--tbt-blue); color: #fff; }
.tbt-footer-col h4 { font-family: var(--tbt-fn-d); font-size: 16px; color: var(--tbt-lpink); margin-bottom: 16px; }
.tbt-footer-col li { font-size: 13px; color: #888; padding: 5px 0; font-weight: 600; transition: color .18s; }
.tbt-footer-col li a { color: #888; font-weight: 600; transition: color .18s; }
.tbt-footer-col li:hover, .tbt-footer-col li a:hover { color: var(--tbt-blue); }
.tbt-footer-bottom { max-width: 1440px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: #555; flex-wrap: wrap; gap: 10px; }

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */
.tbt-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid rgba(18,110,247,.1); z-index: 400; padding: 6px 0; box-shadow: 0 -4px 18px rgba(0,0,0,.06); }
.tbt-bottom-nav { display: none; }
.tbt-bottom-nav-inner { display: flex; }
.tbt-bottom-nav a, .tbt-bottom-nav button { flex: 1; text-align: center; color: #888; font-size: 10.5px; font-weight: 700; text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 2px; background: none; border: none; padding: 5px 0; cursor: pointer; font-family: inherit; }
.tbt-bottom-nav .ico { font-size: 20px; }
.tbt-bottom-nav .active, .tbt-bottom-nav a:hover { color: var(--tbt-blue); }

/* Order tracking */
.tbt-track-page { max-width: 780px; margin: 40px auto; padding: 0 24px; }
.tbt-track-form-wrap { background: #fff; border-radius: var(--tbt-r-lg); padding: 32px; box-shadow: var(--tbt-sh-sm); margin-bottom: 24px; text-align: center; }
.tbt-track-form-wrap h2 { font-family: var(--tbt-fn-d); font-size: 28px; margin-bottom: 14px; }
.tbt-track-inputs { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.tbt-track-inputs input { flex: 1; border: 2px solid #eee; border-radius: 14px; padding: 13px 16px; font-size: 14.5px; font-weight: 700; font-family: inherit; outline: none; transition: border-color .2s; }
.tbt-track-inputs input:focus { border-color: var(--tbt-blue); }
.tbt-stepper { background: #fff; border-radius: var(--tbt-r-lg); padding: 30px; box-shadow: var(--tbt-sh-sm); display: none; }
.tbt-step { display: flex; gap: 14px; padding: 12px 0; position: relative; }
.tbt-step:not(:last-child)::after { content: ''; position: absolute; inset-inline-start: 19px; top: 52px; width: 2px; height: calc(100% - 12px); background: #eee; }
[dir="rtl"] .tbt-step:not(:last-child)::after { inset-inline-start: auto; inset-inline-end: 19px; }
.tbt-step-circle { width: 40px; height: 40px; border-radius: 50%; background: #eee; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; border: 2.5px solid #fff; box-shadow: var(--tbt-sh-sm); }
.tbt-step-circle.done { background: var(--tbt-blue); box-shadow: 0 4px 14px rgba(18,110,247,.4); }
.tbt-step-circle.current { background: #fff; border-color: var(--tbt-blue); animation: blink 1.5s infinite; }
.tbt-step-info { padding-top: 5px; }
.tbt-step-name { font-size: 15px; font-weight: 800; }
.tbt-step-date { font-size: 12px; color: #999; font-weight: 600; margin-top: 3px; }

/* Scroll reveal */
.tbt-rv { opacity: 0; transform: translateY(32px); transition: opacity .65s var(--tbt-ease), transform .65s var(--tbt-ease); }
.tbt-rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .tbt-rv { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* Reading progress */
.tbt-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 9999; background: linear-gradient(90deg, var(--tbt-blue), var(--tbt-lav)); pointer-events: none; }

/* Back to top */
.tbt-totop { position: fixed; bottom: 80px; inset-inline-end: 20px; width: 46px; height: 46px; border-radius: 50%; background: var(--tbt-blue); color: #fff; border: none; font-size: 20px; cursor: pointer; box-shadow: 0 6px 20px rgba(18,110,247,.4); z-index: 350; opacity: 0; transform: translateY(16px); transition: all .3s; pointer-events: none; }
.tbt-totop.show { opacity: 1; transform: none; pointer-events: auto; }
.tbt-totop:hover { background: var(--tbt-deep); transform: translateY(-2px); }

/* Confetti */
.tbt-confetti-piece { position: fixed; width: 10px; height: 10px; z-index: 9998; pointer-events: none; }
@keyframes confetti-fall { to { transform: translateY(105vh) rotate(720deg); opacity: .2; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 1024px) {
  .tbt-nav { display: none; }
  .tbt-footer-grid { grid-template-columns: 1fr 1fr; }
  .tbt-loyalty-inner { grid-template-columns: 1fr; }
  .tbt-loyalty-img { display: none; }
}
@media (max-width: 768px) {
  .tbt-hero-inner { grid-template-columns: 1fr; }
  .tbt-hero-img { order: -1; }
  .tbt-hero-img img { width: 200px; }
  .woocommerce ul.products { grid-template-columns: 1fr 1fr !important; }
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; }
  .tbt-footer-grid { grid-template-columns: 1fr 1fr; }
  .tbt-market-grid { grid-template-columns: repeat(2, 1fr); }
  .tbt-qv-grid { grid-template-columns: 1fr; }
  .tbt-qv-img { min-height: 220px; }
  .tbt-bottom-nav { display: block; }
  body { padding-bottom: 60px; }
  .tbt-cart-drawer { max-width: 100%; }
  .tbt-track-inputs { flex-direction: column; }
}
@media (max-width: 480px) {
  .tbt-market-grid { grid-template-columns: 1fr 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .tbt-header-wrap { padding: 0 14px; gap: 10px; }
  .tbt-footer-grid { grid-template-columns: 1fr; }
}
