/* TRELELEKO - CSS v3 */

.home .entry-hero-container-inner,
.home .wp-block-post-title,
body.page-template-default.page .entry-hero-container-inner {
  display: none !important;
}

.trk-hero {
  background: linear-gradient(135deg, #FFF7ED 0%, #F3E8F9 40%, #EFF6FF 100%);
  padding: 48px 24px 0;
  text-align: center;
}
.trk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #E5E7EB;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #7B2D8E;
  margin-bottom: 20px;
}
.trk-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  color: #1A1A2E;
  line-height: 1.15;
  margin-bottom: 14px;
}
.trk-hero h1 span { color: #7B2D8E; }
.trk-hero .trk-sub {
  font-size: 17px;
  color: #6B7280;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-family: 'Quicksand', sans-serif;
}
.trk-hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.trk-hero-img {
  max-width: 420px;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.06);
}
.trk-hero-img img { width: 100%; display: block; }

.trk-btn-primary {
  background: #7B2D8E;
  color: #fff !important;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(123,45,142,0.25);
  transition: all 0.2s;
}
.trk-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(123,45,142,0.35);
  color: #fff !important;
}
.trk-btn-outline {
  background: #fff;
  color: #1A1A2E !important;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  border: 2px solid #E5E7EB;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.trk-btn-outline:hover {
  border-color: #7B2D8E;
  color: #7B2D8E !important;
}

.trk-btn-zap {
  background: #25D366;
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  width: 100%;
  text-align: center;
  transition: all 0.2s;
  border: none;
}
.trk-btn-zap:hover {
  background: #128C7E;
  color: #fff !important;
}

.trk-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #2D2145;
  color: #fff;
}
.trk-trust-item {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trk-trust-item:last-child { border-right: none; }
.trk-trust-icon { font-size: 24px; margin-bottom: 6px; }
.trk-trust-item h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  font-family: 'Quicksand', sans-serif;
}
.trk-trust-item p { font-size: 11px; opacity: 0.5; margin: 4px 0 0; }

.trk-section {
  padding: 64px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.trk-section-full { padding: 64px 24px; }
.trk-section-light { background: #FAFAFA; }
.trk-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: #1A1A2E;
  text-align: center;
  margin-bottom: 6px;
}
.trk-section-sub {
  text-align: center;
  color: #9CA3AF;
  font-size: 15px;
  margin-bottom: 40px;
  font-family: 'Quicksand', sans-serif;
}

.trk-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.trk-cat {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s;
}
.trk-cat:hover { transform: translateY(-4px); }
.trk-cat img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.trk-cat:hover img { transform: scale(1.05); }
.trk-cat-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.trk-products {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
  max-width: 1200px;
  margin: 0 auto;
}
.trk-products::-webkit-scrollbar { display: none; }
.trk-product {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: transform 0.2s, box-shadow 0.2s;
}
.trk-product:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.trk-product-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #F8F9FA;
}
.trk-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.trk-product:hover .trk-product-img img { transform: scale(1.04); }
.trk-product-info { padding: 14px; }
.trk-product-name {
  font-weight: 700;
  font-size: 15px;
  color: #1A1A2E;
  margin-bottom: 4px;
  text-transform: capitalize;
  font-family: 'Quicksand', sans-serif;
}
.trk-product-price {
  font-size: 12px;
  color: #7B2D8E;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Quicksand', sans-serif;
}
.trk-scroll-hint {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: #9CA3AF;
}

.trk-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.trk-feat {
  padding: 24px 20px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.2s;
}
.trk-feat:hover { transform: translateY(-2px); }
.trk-feat:nth-child(1) { background: linear-gradient(135deg, #F5F0FF, #EDE9FE); }
.trk-feat:nth-child(2) { background: linear-gradient(135deg, #FFF7ED, #FFEDD5); }
.trk-feat:nth-child(3) { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); }
.trk-feat:nth-child(4) { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); }
.trk-feat-icon { font-size: 28px; margin-bottom: 8px; }
.trk-feat h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1A1A2E;
  margin: 0 0 4px;
}
.trk-feat p { font-size: 12px; color: #6B7280; margin: 0; line-height: 1.5; }

.trk-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.trk-about-img { border-radius: 20px; overflow: hidden; }
.trk-about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.trk-about-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 14px;
  line-height: 1.2;
}
.trk-about-text h2 em { color: #7B2D8E; font-style: normal; }
.trk-about-text p {
  font-size: 15px;
  color: #6B7280;
  margin-bottom: 20px;
  line-height: 1.8;
  font-family: 'Quicksand', sans-serif;
}
.trk-stats { display: flex; gap: 28px; margin-bottom: 24px; }
.trk-stat { text-align: center; }
.trk-stat-num { font-family: 'Poppins', sans-serif; font-size: 30px; font-weight: 800; color: #7B2D8E; }
.trk-stat-label { font-size: 11px; color: #6B7280; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.trk-stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.trk-store {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  background: #fff;
  transition: box-shadow 0.2s;
}
.trk-store:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.trk-store-img { height: 200px; overflow: hidden; }
.trk-store-img img { width: 100%; height: 100%; object-fit: cover; }
.trk-store-info { padding: 24px; }
.trk-store-info h3 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: #1A1A2E; margin: 0 0 8px; }
.trk-store-info p { font-size: 14px; color: #6B7280; margin: 0 0 3px; }
.trk-store-hours { font-size: 13px; color: #6B7280; margin: 10px 0 16px; padding: 10px 14px; background: #F8F9FA; border-radius: 10px; }
.trk-store-btns { display: flex; gap: 10px; }
.trk-store-btns a {
  flex: 1; padding: 12px; border-radius: 12px; font-size: 14px; font-weight: 700;
  font-family: 'Quicksand', sans-serif; text-align: center; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.trk-btn-maps { background: #1A1A2E; color: #fff !important; }
.trk-btn-store-zap { background: #25D366; color: #fff !important; }

.trk-reviews {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding-bottom: 8px; scrollbar-width: none;
  max-width: 1200px; margin: 0 auto;
}
.trk-reviews::-webkit-scrollbar { display: none; }
.trk-review {
  flex: 0 0 300px; scroll-snap-align: start; background: #fff;
  border: 1px solid #E5E7EB; border-radius: 16px; padding: 24px;
}
.trk-review-stars { color: #EAB308; font-size: 16px; margin-bottom: 10px; letter-spacing: 2px; }
.trk-review-text { font-size: 14px; color: #374151; line-height: 1.7; margin-bottom: 14px; font-style: italic; font-family: 'Quicksand', sans-serif; }
.trk-review-author { font-weight: 700; font-size: 13px; color: #1A1A2E; }
.trk-review-source { font-size: 11px; color: #9CA3AF; }

.trk-cta {
  background: #1A1A2E; border-radius: 20px; padding: 56px 28px;
  text-align: center; margin: 0 24px; position: relative; overflow: hidden;
}
.trk-cta::before {
  content: ''; position: absolute; top: -60%; left: -30%; width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(123,45,142,0.2), transparent 70%); pointer-events: none;
}
.trk-cta h2 { font-family: 'Poppins', sans-serif; font-size: clamp(22px, 4vw, 32px); font-weight: 800; color: #fff; margin-bottom: 8px; position: relative; z-index: 1; }
.trk-cta p { color: rgba(255,255,255,0.5); font-size: 15px; margin-bottom: 24px; position: relative; z-index: 1; font-family: 'Quicksand', sans-serif; }
.trk-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.trk-btn-cta {
  background: #25D366; color: #fff !important; padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 700; font-family: 'Quicksand', sans-serif; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3); transition: transform 0.2s;
}
.trk-btn-cta:hover { transform: translateY(-2px); color: #fff !important; }

.trk-wpp-float {
  position: fixed; bottom: 20px; right: 20px; width: 56px; height: 56px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999; transition: transform 0.2s; font-size: 28px; color: #fff; text-decoration: none;
}
.trk-wpp-float:hover { transform: scale(1.1); color: #fff; }

.site-top-header-wrap .header-html { color: rgba(255,255,255,0.85); }
.site-top-header-wrap .header-html a { color: #EAB308 !important; font-weight: 600; }

@media (max-width: 768px) {
  .site-header-main-section-left .custom-logo,
  .site-branding img,
  .header-logo img {
    max-width: 90px !important;
    height: auto !important;
  }
  .site-header-wrap .header-button,
  .site-header-wrap .button {
    padding: 7px 14px !important;
    font-size: 12px !important;
    border-radius: 50px !important;
  }
  .site-header-main-section-center,
  .site-header-main-section .site-header-item {
    gap: 6px !important;
  }
  .site-top-header-wrap {
    font-size: 11px !important;
    padding: 5px 10px !important;
  }
  .site-header-row-container {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
  .trk-hero { padding: 32px 16px 0; }
  .trk-hero-img { max-width: 100%; border-radius: 0; margin-left: -16px; margin-right: -16px; box-shadow: none; }
  .trk-trust { grid-template-columns: repeat(2, 1fr); }
  .trk-trust-item { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 16px 12px; }
  .trk-trust-icon { font-size: 20px; }
  .trk-trust-item h4 { font-size: 10px; }
  .trk-cats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trk-product { flex: 0 0 180px; }
  .trk-feats { grid-template-columns: repeat(2, 1fr); }
  .trk-about { grid-template-columns: 1fr; gap: 24px; }
  .trk-stores { grid-template-columns: 1fr; }
  .trk-review { flex: 0 0 85vw; }
  .trk-cta { margin: 0 16px; padding: 40px 20px; }
  .trk-cta-btns { flex-direction: column; align-items: center; }
  .trk-btn-cta { width: 100%; justify-content: center; }
  .trk-hero-buttons { flex-direction: column; align-items: center; }
  .trk-btn-primary, .trk-btn-outline { width: 100%; justify-content: center; }
  .trk-store-btns { flex-direction: column; }
  .site-header-wrap .custom-logo { max-width: 120px !important; }
  .site-header-wrap .header-button { padding: 6px 14px !important; font-size: 12px !important; }
  .site-top-header-wrap { font-size: 12px !important; }
}

@media (min-width: 769px) {
  .trk-section { padding: 80px 48px; }
  .trk-section-full { padding: 80px 48px; }
  .trk-products { flex-wrap: wrap; justify-content: center; overflow: visible; }
  .trk-product { flex: 0 0 calc(25% - 12px); max-width: 260px; }
  .trk-scroll-hint { display: none; }
  .trk-reviews { flex-wrap: wrap; justify-content: center; overflow: visible; }
  .trk-review { flex: 0 0 calc(33.33% - 12px); }
  .trk-feats { grid-template-columns: repeat(4, 1fr); }
  .trk-hero { padding: 64px 48px 0; }
  .trk-hero-img { max-width: 500px; }
  .trk-cta { margin: 0 48px; padding: 64px; }
}
