/*
 Theme Name:   TikTok Shop - GeneratePress Child
 Theme URI:    https://web.robosoft.site
 Description:  TikTok Shop style child theme for GeneratePress + WooCommerce
 Author:       Robosoft
 Author URI:   https://robosoft.site
 Template:     generatepress
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  tiktokshop-child
*/

/* ============================================
   TikTok Shop Design Tokens (oklch)
   ============================================ */
:root {
  /* Colors */
  --tt-red: #fe2c55;
  --tt-red-dark: #e91e4a;
  --tt-cyan: #25f4ee;
  --tt-pink: #ff6b9d;
  --tt-orange: #ff6900;
  --tt-yellow: #ffc107;
  --tt-green: #00c853;
  --tt-star: #ffc107;
  
  /* Semantic */
  --tt-primary: #fe2c55;
  --tt-primary-foreground: #ffffff;
  --tt-background: #ffffff;
  --tt-foreground: #161823;
  --tt-surface: #f5f5f5;
  --tt-muted: #93959f;
  --tt-border: #e8e8e8;
  --tt-price: #fe2c55;
  
  /* Gradients */
  --tt-gradient-flash: linear-gradient(90deg, #ff4757, #ff6b81);
  --tt-gradient-coupon: linear-gradient(90deg, #fff5f5, #fff8e1);
  --tt-gradient-live: linear-gradient(135deg, #fe2c55, #ff6b9d);
  
  /* Spacing */
  --tt-radius: 8px;
  --tt-radius-lg: 12px;
  --tt-radius-full: 9999px;
  
  /* Font */
  --tt-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--tt-font);
  font-size: 14px;
  line-height: 1.5;
  color: var(--tt-foreground);
  background: var(--tt-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ============================================
   Phone Shell (max 430px centered)
   ============================================ */
.tt-phone-shell {
  min-height: 100vh;
  background: var(--tt-surface);
  display: flex;
  justify-content: center;
  padding: 0;
}

@media (min-width: 768px) {
  .tt-phone-shell {
    padding: 24px 0;
  }
}

.tt-phone-container {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  background: var(--tt-background);
  padding-bottom: 62px;
}

@media (min-width: 768px) {
  .tt-phone-container {
    min-height: 860px;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
}

/* ============================================
   Header
   ============================================ */
.tt-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--tt-background);
}

.tt-header-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px 8px;
}

.tt-search-bar {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 8px;
  background: var(--tt-surface);
  border-radius: var(--tt-radius-full);
  padding: 8px 12px;
}

.tt-search-bar input {
  flex: 1;
  border: none;
  background: none;
  font-size: 13px;
  color: var(--tt-foreground);
  outline: none;
}

.tt-search-bar input::placeholder {
  color: var(--tt-muted);
}

.tt-search-btn {
  background: var(--tt-primary);
  color: var(--tt-primary-foreground);
  border-radius: var(--tt-radius-full);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
}

.tt-icon-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--tt-foreground);
}

/* Tabs */
.tt-tabs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  border-bottom: 1px solid var(--tt-border);
  padding: 0 12px;
  scrollbar-width: none;
}

.tt-tabs::-webkit-scrollbar {
  display: none;
}

.tt-tab {
  position: relative;
  white-space: nowrap;
  padding-bottom: 8px;
  font-size: 14px;
  color: var(--tt-muted);
}

.tt-tab.active {
  font-weight: 600;
  color: var(--tt-foreground);
}

.tt-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 4px;
  right: 4px;
  height: 2px;
  background: var(--tt-foreground);
  border-radius: 1px;
}

/* ============================================
   Hero Banner
   ============================================ */
.tt-hero {
  margin: 12px 12px 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--tt-radius-lg);
  background: var(--tt-gradient-flash);
  padding: 20px 16px;
  color: var(--tt-primary-foreground);
}

.tt-hero-label {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
}

.tt-hero-title {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.tt-hero-cta {
  display: inline-block;
  margin-top: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--tt-primary);
  border-radius: var(--tt-radius-full);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
}

.tt-hero-circle-1 {
  position: absolute;
  bottom: -24px;
  right: -16px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.tt-hero-circle-2 {
  position: absolute;
  right: -32px;
  top: 16px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

/* ============================================
   Category Grid
   ============================================ */
.tt-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 0;
  padding: 12px 8px 0;
}

.tt-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tt-category-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tt-surface);
}

.tt-category-icon svg {
  width: 22px;
  height: 22px;
  color: var(--tt-primary);
}

.tt-category-name {
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  color: var(--tt-foreground);
}

/* ============================================
   Voucher Section
   ============================================ */
.tt-vouchers {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px;
  scrollbar-width: none;
}

.tt-vouchers::-webkit-scrollbar {
  display: none;
}

.tt-voucher {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 150px;
  padding: 8px 12px;
  border-radius: var(--tt-radius);
  background: var(--tt-gradient-coupon);
}

.tt-voucher-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--tt-primary);
}

.tt-voucher-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--tt-primary);
}

.tt-voucher-desc {
  font-size: 10px;
  color: var(--tt-muted);
}

/* ============================================
   Flash Sale Section
   ============================================ */
.tt-flash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 8px;
}

.tt-flash-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tt-flash-title h2 {
  font-size: 16px;
  font-weight: 800;
  color: var(--tt-foreground);
}

.tt-flash-countdown {
  display: flex;
  gap: 4px;
}

.tt-flash-countdown span {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 20px;
  padding: 0 4px;
  border-radius: 4px;
  background: var(--tt-foreground);
  color: var(--tt-background);
  font-size: 11px;
  font-weight: 700;
}

.tt-flash-countdown .tt-colon {
  background: none;
  color: var(--tt-foreground);
  min-width: auto;
}

.tt-flash-see-all {
  font-size: 12px;
  color: var(--tt-muted);
}

/* ============================================
   Product Grid
   ============================================ */
.tt-section-title {
  padding: 12px 12px 8px;
  font-size: 16px;
  font-weight: 800;
}

.tt-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0 8px 16px;
}

/* Product Card */
.tt-product-card {
  display: block;
  overflow: hidden;
  border-radius: var(--tt-radius);
  background: var(--tt-background);
}

.tt-product-image {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  overflow: hidden;
  background: var(--tt-surface);
}

.tt-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-product-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  padding: 1px 4px;
  border-radius: 3px;
  background: var(--tt-primary);
  color: var(--tt-primary-foreground);
  font-size: 9px;
  font-weight: 600;
}

.tt-product-info {
  padding: 6px 6px 10px;
}

.tt-product-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  line-height: 17px;
  color: var(--tt-foreground);
}

.tt-product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
}

.tt-product-price .current {
  font-size: 15px;
  font-weight: 700;
  color: var(--tt-price);
}

.tt-product-price .original {
  font-size: 10px;
  color: var(--tt-muted);
  text-decoration: line-through;
}

.tt-product-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 10px;
  color: var(--tt-muted);
}

.tt-product-meta svg {
  width: 12px;
  height: 12px;
  fill: var(--tt-star);
  color: var(--tt-star);
}

.tt-product-freeship {
  display: inline-block;
  margin-top: 4px;
  padding: 1px 4px;
  border: 1px solid rgba(254, 44, 85, 0.4);
  border-radius: 3px;
  font-size: 9px;
  color: var(--tt-primary);
}

/* ============================================
   Bottom Navigation
   ============================================ */
.tt-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 40;
  border-top: 1px solid var(--tt-border);
  background: var(--tt-background);
}

.tt-bottom-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 6px 8px;
  padding-bottom: max(6px, env(safe-area-inset-bottom));
}

.tt-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 0;
  font-size: 10px;
  color: var(--tt-muted);
  flex: 1;
}

.tt-nav-item.active {
  color: var(--tt-foreground);
}

.tt-nav-item svg {
  width: 22px;
  height: 22px;
}

.tt-nav-plus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 4px 0;
}

.tt-nav-plus-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 26px;
  border-radius: 8px;
  background: var(--tt-foreground);
}

.tt-nav-plus-icon::before {
  content: '';
  position: absolute;
  left: -3px;
  width: 42px;
  height: 26px;
  border-radius: 8px;
  background: var(--tt-cyan);
}

.tt-nav-plus-icon::after {
  content: '';
  position: absolute;
  right: -3px;
  width: 42px;
  height: 26px;
  border-radius: 8px;
  background: var(--tt-red);
}

.tt-nav-plus-icon span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: var(--tt-background);
}

.tt-nav-plus-icon span svg {
  width: 16px;
  height: 16px;
  color: var(--tt-foreground);
  stroke-width: 3;
}

/* ============================================
   Shop Page
   ============================================ */
.tt-shop-header {
  position: relative;
  background: var(--tt-gradient-live);
  padding: 12px 12px 16px;
  color: var(--tt-primary-foreground);
}

.tt-shop-header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tt-shop-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.25);
  border-radius: var(--tt-radius-full);
  padding: 6px 12px;
}

.tt-shop-info {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.tt-shop-avatar {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tt-background);
  color: var(--tt-primary);
  font-size: 18px;
  font-weight: 900;
}

.tt-shop-name {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
}

.tt-shop-tagline {
  margin-top: 2px;
  font-size: 11px;
  opacity: 0.9;
}

.tt-shop-follow {
  flex-shrink: 0;
  background: var(--tt-background);
  color: var(--tt-primary);
  border-radius: var(--tt-radius-full);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
}

.tt-shop-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 11px;
}

.tt-shop-stats b {
  font-size: 13px;
}

/* Shop Vouchers */
.tt-shop-vouchers {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  border-bottom: 1px solid var(--tt-border);
  padding: 12px;
  scrollbar-width: none;
}

.tt-shop-voucher {
  white-space: nowrap;
  padding: 4px 10px;
  border: 1px dashed rgba(254, 44, 85, 0.5);
  border-radius: 6px;
  background: var(--tt-gradient-coupon);
  font-size: 11px;
  font-weight: 600;
  color: var(--tt-primary);
}

/* Shop Tabs */
.tt-shop-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--tt-border);
  padding: 0 12px;
  background: var(--tt-background);
}

/* Filter Pills */
.tt-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 12px;
  scrollbar-width: none;
}

.tt-filters::-webkit-scrollbar {
  display: none;
}

.tt-filter {
  white-space: nowrap;
  padding: 4px 12px;
  border-radius: var(--tt-radius-full);
  font-size: 12px;
  background: var(--tt-surface);
  color: var(--tt-muted);
}

.tt-filter.active {
  background: rgba(254, 44, 85, 0.1);
  font-weight: 600;
  color: var(--tt-primary);
}

/* ============================================
   Product Detail Page
   ============================================ */
.tt-detail-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.tt-detail-back {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: var(--tt-primary-foreground);
}

.tt-detail-actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.tt-detail-actions span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: var(--tt-primary-foreground);
}

/* Gallery */
.tt-gallery {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  background: var(--tt-surface);
}

.tt-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-gallery-counter {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 2px 8px;
  border-radius: var(--tt-radius-full);
  background: rgba(0,0,0,0.5);
  color: var(--tt-primary-foreground);
  font-size: 11px;
}

/* Price Block */
.tt-price-block {
  background: var(--tt-gradient-flash);
  padding: 12px;
  color: var(--tt-primary-foreground);
}

.tt-price-current {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.tt-price-original {
  font-size: 12px;
  text-decoration: line-through;
  opacity: 0.8;
}

.tt-price-discount {
  margin-bottom: 2px;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--tt-background);
  color: var(--tt-primary);
  font-size: 11px;
  font-weight: 700;
}

.tt-flash-info {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.95;
}

/* Product Title */
.tt-detail-title {
  padding: 12px;
}

.tt-detail-title h1 {
  font-size: 15px;
  font-weight: 600;
  line-height: 21px;
}

.tt-detail-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--tt-muted);
}

.tt-detail-rating b {
  color: var(--tt-foreground);
}

/* Shipping Info */
.tt-shipping {
  margin: 0 12px;
  padding: 12px;
  border-radius: var(--tt-radius);
  background: var(--tt-surface);
}

.tt-shipping-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.tt-shipping-row svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--tt-primary);
  margin-top: 2px;
}

.tt-shipping-row p {
  font-size: 12px;
}

.tt-shipping-row .title {
  font-weight: 500;
}

.tt-shipping-row .desc {
  color: var(--tt-muted);
}

/* Variants */
.tt-variants {
  padding: 12px;
}

.tt-variant-group {
  margin-bottom: 12px;
}

.tt-variant-label {
  font-size: 12px;
  color: var(--tt-muted);
}

.tt-variant-label span {
  color: var(--tt-foreground);
}

.tt-variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tt-variant-option {
  padding: 6px 12px;
  border: 1px solid var(--tt-border);
  border-radius: 6px;
  font-size: 12px;
}

.tt-variant-option.active {
  border-color: var(--tt-primary);
  background: rgba(254, 44, 85, 0.1);
  font-weight: 600;
  color: var(--tt-primary);
}

/* Shop Row */
.tt-shop-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-top: 1px solid var(--tt-border);
  border-bottom: 1px solid var(--tt-border);
  margin: 12px 0;
}

.tt-shop-row-avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tt-gradient-live);
  color: var(--tt-primary-foreground);
  font-size: 13px;
  font-weight: 900;
}

.tt-shop-row-info {
  flex: 1;
  min-width: 0;
}

.tt-shop-row-name {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
}

.tt-shop-row-meta {
  font-size: 11px;
  color: var(--tt-muted);
}

.tt-shop-row-link {
  flex-shrink: 0;
  padding: 4px 12px;
  border: 1px solid var(--tt-primary);
  border-radius: var(--tt-radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--tt-primary);
}

/* Reviews */
.tt-reviews {
  padding: 12px;
}

.tt-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tt-reviews-title {
  font-size: 14px;
  font-weight: 700;
}

.tt-reviews-see-all {
  font-size: 12px;
  color: var(--tt-muted);
}

.tt-review-item {
  padding-top: 12px;
  border-top: 1px solid var(--tt-border);
  margin-top: 12px;
}

.tt-review-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tt-review-avatar {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--tt-surface);
  font-size: 10px;
  color: var(--tt-muted);
}

.tt-review-text {
  margin-top: 6px;
  font-size: 12px;
  line-height: 18px;
}

/* Buy Bar */
.tt-buy-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 40;
  border-top: 1px solid var(--tt-border);
  background: var(--tt-background);
  padding: 8px 12px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
}

.tt-buy-bar-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tt-buy-bar-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 44px;
  font-size: 9px;
  color: var(--tt-muted);
}

.tt-buy-bar-icon svg {
  width: 20px;
  height: 20px;
}

.tt-buy-btn {
  flex: 1;
  height: 40px;
  border-radius: var(--tt-radius-full);
  font-size: 13px;
  font-weight: 600;
}

.tt-buy-btn.cart {
  border: 1px solid var(--tt-primary);
  color: var(--tt-primary);
}

.tt-buy-btn.buy {
  background: var(--tt-primary);
  color: var(--tt-primary-foreground);
}

/* ============================================
   Suggestions Section
   ============================================ */
.tt-suggestions {
  background: var(--tt-surface);
  padding: 12px 8px;
}

/* ============================================
   Shop Action Bar
   ============================================ */
.tt-shop-action-bar {
  position: fixed;
  bottom: 62px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 30;
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--tt-border);
  background: var(--tt-background);
  padding: 8px 12px;
}

.tt-shop-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0;
  border-radius: var(--tt-radius-full);
  font-size: 13px;
  font-weight: 500;
}

.tt-shop-action-btn.chat {
  border: 1px solid var(--tt-border);
  color: var(--tt-foreground);
}

.tt-shop-action-btn.view-all {
  background: var(--tt-primary);
  color: var(--tt-primary-foreground);
  font-weight: 600;
}

/* ============================================
   Utility Classes
   ============================================ */
.tt-flex { display: flex; }
.tt-items-center { align-items: center; }
.tt-gap-2 { gap: 8px; }
.tt-gap-3 { gap: 12px; }
.tt-px-3 { padding-left: 12px; padding-right: 12px; }
.tt-py-2 { padding-top: 8px; padding-bottom: 8px; }
.tt-mt-3 { margin-top: 12px; }
.tt-text-center { text-align: center; }
.tt-font-bold { font-weight: 700; }
.tt-text-primary { color: var(--tt-primary); }
.tt-text-muted { color: var(--tt-muted); }
.tt-text-sm { font-size: 12px; }
.tt-text-xs { font-size: 10px; }
.tt-w-full { width: 100%; }
.tt-block { display: block; }
