/* ==========================================================================
   Technotech — Homepage Styles (Light Theme)
   ========================================================================== */

:root {
  --tt-orange: #d35400;
  --tt-orange-hover: #e8650e;
  --tt-green: #2e7d32;
  --tt-dark: #1a202c;
  --tt-body: #374151;
  --tt-muted: #6b7280;
  --tt-light: #f7f8fa;
  --tt-border: #e5e7eb;
}

/* Force light background */
body.tt-homepage {
  background: #fff !important;
}

body.tt-homepage .site-content,
body.tt-homepage #content .content-area,
body.tt-homepage #secondary {
  display: none !important;
}

body.tt-homepage .site-header {
  background: #fff !important;
  border-bottom: none !important;
  padding: 0 !important;
  min-height: 0 !important;
}

body.tt-homepage .site-branding,
body.tt-homepage .site-search,
body.tt-homepage .site-header-cart,
body.tt-homepage .storefront-primary-navigation {
  display: none !important;
}

body.tt-homepage .site-main { margin-bottom: 0 !important; }
body.tt-homepage .col-full { padding: 0 !important; max-width: none !important; }

/* Homepage wrapper */
.tt-home {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  color: #374151;
}

.tt-home { color: #374151 !important; }
.tt-home a { color: inherit; text-decoration: none; }
.tt-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --------------------------------------------------------------------------
   NAVIGATION — light with mega menu
   -------------------------------------------------------------------------- */

.tt-nav {
  padding: 14px 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

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

.tt-logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1a202c;
}

.tt-logo .t { color: #d35400; }

.tt-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.tt-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.tt-nav-links > a {
  font-size: 15px;
  color: #374151;
  transition: color 0.15s;
  font-weight: 500;
}

.tt-nav-links > a:hover { color: #d35400; }

.tt-nav-links .cart-badge {
  background: #d35400;
  color: #fff;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 5px;
}

/* Mega Menu Trigger */
.tt-mega-trigger {
  position: relative;
}

.tt-mega-btn {
  font-size: 15px;
  color: #374151;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.15s;
}

.tt-mega-btn:hover { color: #d35400; }

.tt-mega-btn i {
  margin-right: 6px;
  font-size: 14px;
}

/* Mega Menu Dropdown */
.tt-mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -200px;
  z-index: 1000;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 32px 36px;
  width: 820px;
  margin-top: 10px;
}

.tt-mega-trigger:hover .tt-mega-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Bridge gap between trigger and menu */
.tt-mega-trigger::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -50px;
  right: -50px;
  height: 14px;
}

.tt-mega-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a202c;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #d35400;
}

.tt-mega-col a {
  display: block;
  font-size: 14px;
  color: #374151;
  padding: 5px 0;
  transition: color 0.15s;
  font-weight: 400;
}

.tt-mega-col a:hover {
  color: #d35400;
}

@media (max-width: 991px) {
  .tt-mega-menu {
    width: 600px;
    left: -150px;
  }
  .tt-mega-trigger:hover .tt-mega-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .tt-nav-links { gap: 16px; }
  .tt-nav-links > a { font-size: 13px; }
  .tt-mega-menu {
    position: fixed;
    left: 0 !important;
    right: 0;
    width: auto;
    border-radius: 0;
    margin-top: 0;
  }
  .tt-mega-trigger:hover .tt-mega-menu {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   HERO — light background
   -------------------------------------------------------------------------- */

.tt-hero {
  padding: 70px 0 56px;
  text-align: center;
  background: #fff !important;
}

.tt-hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6b7280 !important;
  margin-bottom: 18px;
}

.tt-hero h1 {
  font-size: 46px !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
  margin: 0 0 20px !important;
  max-width: 750px;
  margin-left: auto !important;
  margin-right: auto !important;
  color: #1a202c !important;
}

.tt-hero h1 .highlight { color: #d35400; }

.tt-hero-sub {
  font-size: 18px;
  color: #6b7280 !important;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.tt-hero-cta {
  display: inline-block;
  background: #d35400;
  color: #fff;
  padding: 14px 40px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.15s;
}

.tt-hero-cta:hover { background: #e8650e; color: #fff; }

.tt-hero-stats {
  display: flex;
  justify-content: center;
  gap: 52px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid #e5e7eb;
}

.tt-stat-num { font-size: 28px; font-weight: 700; color: #1a202c !important; }
.tt-stat-label { font-size: 13px; color: #6b7280 !important; margin-top: 4px; }

@media (max-width: 767px) {
  .tt-hero { padding: 44px 0 36px; }
  .tt-hero h1 { font-size: 30px !important; }
  .tt-hero-sub { font-size: 16px; }
  .tt-hero-stats { gap: 24px; flex-wrap: wrap; }
  .tt-stat-num { font-size: 22px; }
}

/* --------------------------------------------------------------------------
   TRUST STRIP — bigger text
   -------------------------------------------------------------------------- */

.tt-trust {
  padding: 36px 0;
  background: #f7f8fa;
  border-bottom: 1px solid #e5e7eb;
}

.tt-trust-row { display: flex; justify-content: center; gap: 0; }

.tt-trust-item {
  flex: 1; text-align: center; padding: 16px 20px;
  border-right: 1px solid #e5e7eb;
}

.tt-trust-item:last-child { border-right: none; }
.tt-trust-icon { font-size: 28px; color: #d35400; margin-bottom: 10px; }
.tt-trust-label { font-size: 16px; font-weight: 600; color: #1a202c; margin-bottom: 3px; }
.tt-trust-desc { font-size: 14px; color: #6b7280; }

@media (max-width: 767px) {
  .tt-trust-row { flex-wrap: wrap; }
  .tt-trust-item { flex: 0 0 50%; border-bottom: 1px solid #e5e7eb; }
  .tt-trust-item:nth-child(2) { border-right: none; }
  .tt-trust-item:nth-child(3), .tt-trust-item:nth-child(4) { border-bottom: none; }
}

/* --------------------------------------------------------------------------
   SECTION COMMON
   -------------------------------------------------------------------------- */

.tt-section-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: #d35400; margin-bottom: 10px;
}

.tt-section-heading {
  font-size: 30px !important; font-weight: 700 !important;
  margin: 0 0 36px !important; color: #1a202c !important;
}

.tt-section-cta-wrap { text-align: center; }

.tt-section-cta {
  display: inline-block; background: #d35400; color: #fff;
  padding: 14px 36px; border-radius: 6px;
  font-size: 16px; font-weight: 600; transition: background 0.15s;
}

.tt-section-cta:hover { background: #e8650e; color: #fff; }

/* --------------------------------------------------------------------------
   SOLUTIONS GRID
   -------------------------------------------------------------------------- */

.tt-solutions { padding: 56px 0; background: #fff; }

.tt-sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 991px) { .tt-sol-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .tt-sol-grid { grid-template-columns: 1fr; } }

.tt-sol-card {
  background: #f7f8fa !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px; padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: block; cursor: pointer;
}

.tt-sol-card:hover {
  border-color: #d35400 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  color: inherit;
}

.tt-sol-icon {
  width: 48px; height: 48px;
  background: rgba(211, 84, 0, 0.10); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.tt-sol-icon i { font-size: 20px; color: #d35400; }
.tt-sol-problem { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: #1a202c !important; }
.tt-sol-answer { font-size: 14px; color: #6b7280 !important; line-height: 1.6; margin-bottom: 14px; }
.tt-sol-count { font-size: 13px; color: #d35400; font-weight: 600; }
.tt-sol-count i { margin-left: 5px; font-size: 10px; }

/* --------------------------------------------------------------------------
   BESTSELLERS
   -------------------------------------------------------------------------- */

.tt-bestsellers {
  padding: 56px 0; background: #f7f8fa;
  border-top: 1px solid #e5e7eb;
}

.tt-bs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 991px) { .tt-bs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .tt-bs-grid { grid-template-columns: repeat(2, 1fr); } }

.tt-bs-card {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: block;
}

.tt-bs-card:hover {
  border-color: #d35400 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  color: inherit;
}

.tt-bs-img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 20px; background: #fff; }
.tt-bs-body { padding: 16px 18px 20px; }

.tt-bs-title {
  font-size: 14px; line-height: 1.45; color: #1a202c !important;
  margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 40px;
}

.tt-bs-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.tt-bs-price { font-size: 20px; font-weight: 700; color: #1a202c !important; }
.tt-bs-orig { font-size: 13px; color: #6b7280; text-decoration: line-through; }
.tt-bs-off { font-size: 12px; color: #2e7d32; font-weight: 600; }
.tt-bs-sold { font-size: 12px; color: #6b7280; margin-top: 8px; }
.tt-bs-sold strong { color: #d35400; }

/* --------------------------------------------------------------------------
   CATEGORIES GRID
   -------------------------------------------------------------------------- */

.tt-categories {
  padding: 56px 0; background: #fff;
  border-top: 1px solid #e5e7eb;
}

.tt-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 36px; }
@media (max-width: 991px) { .tt-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .tt-cat-grid { grid-template-columns: repeat(2, 1fr); } }

.tt-cat-card {
  background: #f7f8fa !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px; padding: 24px 20px; text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: block;
}

.tt-cat-card:hover {
  border-color: #d35400 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  color: inherit;
}

.tt-cat-icon {
  width: 52px; height: 52px;
  background: rgba(211, 84, 0, 0.08); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}

.tt-cat-icon i { font-size: 22px; color: #d35400; }
.tt-cat-name { font-size: 15px; font-weight: 600; color: #1a202c !important; margin-bottom: 4px; }
.tt-cat-count { font-size: 13px; color: #6b7280; }

/* --------------------------------------------------------------------------
   NEW ARRIVALS
   -------------------------------------------------------------------------- */

.tt-arrivals {
  padding: 56px 0; background: #f7f8fa;
  border-top: 1px solid #e5e7eb;
}

.tt-arr-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 28px; }
@media (max-width: 1100px) { .tt-arr-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 850px) { .tt-arr-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .tt-arr-grid { grid-template-columns: repeat(2, 1fr); } }

.tt-arr-card {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: block;
}

.tt-arr-card:hover {
  border-color: #d35400 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  color: inherit;
}

.tt-arr-img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 14px; background: #fff; }
.tt-arr-body { padding: 12px 14px 16px; }

.tt-arr-title {
  font-size: 13px; line-height: 1.45; color: #1a202c !important;
  margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 38px;
}

.tt-arr-prices { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.tt-arr-sale { font-size: 17px; font-weight: 700; color: #1a202c !important; }
.tt-arr-reg { font-size: 12px; color: #6b7280; text-decoration: line-through; }
.tt-arr-off { font-size: 11px; color: #2e7d32; font-weight: 600; }

.tt-arr-new-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: #d35400; margin-top: 6px;
}

/* --------------------------------------------------------------------------
   CUSTOMER REVIEWS — light background
   -------------------------------------------------------------------------- */

.tt-reviews-home {
  padding: 56px 0;
  background: #fff !important;
  border-top: 1px solid #e5e7eb;
}

.tt-reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 767px) { .tt-reviews-grid { grid-template-columns: 1fr; } }

.tt-review-card {
  background: #f7f8fa !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px; padding: 24px;
}

.tt-review-stars { color: #e5a100; font-size: 14px; margin-bottom: 10px; letter-spacing: 1px; }

.tt-review-text {
  font-size: 15px; color: #374151 !important;
  line-height: 1.6; margin-bottom: 14px;
}

.tt-review-meta { font-size: 13px; color: #6b7280 !important; }
.tt-review-meta strong { color: #1a202c !important; font-weight: 600; }

/* --------------------------------------------------------------------------
   BRAND STRIP + BULK CTA — light background, dark text
   -------------------------------------------------------------------------- */

.tt-brand-strip {
  padding: 56px 0;
  background: #f7f8fa !important;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.tt-brand-quote {
  font-size: 22px; font-weight: 300; line-height: 1.55;
  max-width: 640px; margin: 0 auto 28px;
  color: #6b7280 !important;
}

.tt-brand-quote strong { color: #1a202c !important; font-weight: 600; }

.tt-brand-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.tt-brand-cta-primary {
  display: inline-block; background: #d35400; color: #fff;
  padding: 14px 36px; border-radius: 6px;
  font-size: 16px; font-weight: 600; transition: background 0.15s;
}

.tt-brand-cta-primary:hover { background: #e8650e; color: #fff; }

.tt-brand-cta-secondary {
  display: inline-block;
  border: 1px solid #e5e7eb; color: #374151 !important;
  padding: 14px 28px; border-radius: 6px;
  font-size: 15px; font-weight: 500;
  transition: border-color 0.15s, background 0.15s;
}

.tt-brand-cta-secondary:hover {
  border-color: #d35400;
  background: rgba(211, 84, 0, 0.04);
  color: #1a202c !important;
}

.tt-brand-cta-secondary i { color: #25D366; margin-right: 6px; }
