/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
:root {
  --lt-red: #d71920;
  --lt-red-dark: #a70f15;
  --lt-yellow: #ffd200;
  --lt-ink: #111827;
  --lt-muted: #64748b;
  --lt-line: #e5e7eb;
  --lt-bg: #f3f5f8;
  --lt-card: #ffffff;
  --lt-radius: 8px;
  --lt-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

body {
  background: var(--lt-bg);
  color: var(--lt-ink);
  font-family: Arial, "Roboto", "Helvetica Neue", sans-serif;
}

body .header-wrapper,
body .stuck .header-main {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.ltpc-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.ltpc-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 75% 20%, rgba(255, 210, 0, 0.33), transparent 30%),
    linear-gradient(135deg, #d71920 0%, #b61118 46%, #14171f 100%);
  color: #fff;
}

.ltpc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.16) 38%, transparent 54%);
  transform: translateX(-100%);
  animation: ltpc-shine 5.8s ease-in-out infinite;
}

.ltpc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: 36px;
  align-items: center;
  min-height: 520px;
  padding-top: 54px;
  padding-bottom: 64px;
}

.ltpc-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.ltpc-hero h1 {
  max-width: 760px;
  margin: 18px 0 14px;
  color: #fff;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 800;
}

.ltpc-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
}

.ltpc-hero-actions,
.ltpc-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.ltpc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ltpc-btn:hover {
  transform: translateY(-2px);
}

.ltpc-btn-primary {
  background: var(--lt-yellow);
  color: #1f2937;
  box-shadow: 0 12px 24px rgba(255, 210, 0, 0.24);
}

.ltpc-btn-light,
.ltpc-btn-ghost {
  border: 1px solid var(--lt-line);
  background: #fff;
  color: var(--lt-red);
}

.ltpc-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 28px;
}

.ltpc-hero-metrics span {
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--lt-radius);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
}

.ltpc-hero-metrics strong {
  color: #fff;
  font-size: 23px;
}

.ltpc-sale-card {
  position: relative;
  min-height: 330px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--lt-radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--lt-shadow);
  backdrop-filter: blur(16px);
}

.ltpc-sale-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--lt-red);
  font-size: 12px;
  font-weight: 900;
}

.ltpc-sale-card h2 {
  margin-top: 18px;
  color: #fff;
  font-size: 30px;
  line-height: 1.18;
}

.ltpc-device-stack {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: grid;
  gap: 10px;
  width: 64%;
}

.ltpc-device-stack span {
  display: block;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(90deg, #fff, #ffe66d);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  animation: ltpc-float 3.8s ease-in-out infinite;
}

.ltpc-device-stack span:nth-child(2) {
  margin-left: 34px;
  animation-delay: 0.25s;
}

.ltpc-device-stack span:nth-child(3) {
  margin-left: 68px;
  animation-delay: 0.5s;
}

.ltpc-search-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: -32px;
  padding-top: 0;
}

.ltpc-search-band form {
  display: grid;
  grid-template-columns: 1fr 132px;
  overflow: hidden;
  border: 1px solid var(--lt-line);
  border-radius: var(--lt-radius);
  background: #fff;
  box-shadow: var(--lt-shadow);
}

.ltpc-search-band input {
  height: 58px;
  margin: 0;
  border: 0;
  box-shadow: none;
  font-size: 15px;
}

.ltpc-search-band button,
.ltpc-cart-link {
  height: 58px;
  border: 0;
  background: var(--lt-red);
  color: #fff;
  font-weight: 900;
}

.ltpc-cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  border-radius: var(--lt-radius);
}

.ltpc-category-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  margin-top: 28px;
}

.ltpc-category-menu,
.ltpc-detail-card,
.ltpc-product-card,
.ltpc-promo,
.ltpc-single-trust {
  border: 1px solid var(--lt-line);
  border-radius: var(--lt-radius);
  background: var(--lt-card);
}

.ltpc-category-menu {
  padding: 16px;
}

.ltpc-category-menu h2 {
  margin: 0 0 12px;
  color: var(--lt-red);
  font-size: 18px;
}

.ltpc-category-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--lt-line);
  color: var(--lt-ink);
  font-weight: 700;
}

.ltpc-category-menu strong {
  color: var(--lt-red);
}

.ltpc-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ltpc-promo {
  min-height: 190px;
  padding: 22px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.ltpc-promo::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -30px;
  bottom: -30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.ltpc-promo span,
.ltpc-promo em {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-weight: 800;
}

.ltpc-promo strong {
  display: block;
  max-width: 230px;
  margin: 16px 0 26px;
  color: #fff;
  font-size: 23px;
  line-height: 1.18;
}

.ltpc-promo-red {
  background: linear-gradient(135deg, var(--lt-red), var(--lt-red-dark));
}

.ltpc-promo-yellow {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.ltpc-promo-dark {
  background: linear-gradient(135deg, #111827, #334155);
}

.ltpc-product-section {
  margin-top: 34px;
}

.ltpc-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.ltpc-section-head span {
  color: var(--lt-red);
  font-weight: 900;
  text-transform: uppercase;
}

.ltpc-section-head h2 {
  margin: 4px 0 0;
  font-size: 27px;
}

.ltpc-section-head a {
  color: var(--lt-red);
  font-weight: 900;
}

.ltpc-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ltpc-product-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ltpc-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 25, 32, 0.26);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.ltpc-product-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 0.8;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.ltpc-product-image img {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.ltpc-product-card:hover .ltpc-product-image img {
  transform: scale(1.06);
}

.ltpc-product-image span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(215, 25, 32, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.ltpc-product-body {
  padding: 13px;
}

.ltpc-product-name {
  display: -webkit-box;
  min-height: 43px;
  overflow: hidden;
  color: var(--lt-ink);
  font-weight: 800;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ltpc-product-price {
  margin: 9px 0;
  color: var(--lt-red);
  font-size: 18px;
  font-weight: 900;
}

.ltpc-card-spec,
.ltpc-short-spec {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ltpc-card-spec li,
.ltpc-short-spec li {
  position: relative;
  padding-left: 14px;
  color: var(--lt-muted);
  font-size: 13px;
  line-height: 1.55;
}

.ltpc-card-spec li::before,
.ltpc-short-spec li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lt-red);
}

.ltpc-card-actions {
  margin-top: 12px;
}

.ltpc-card-actions .ltpc-btn {
  flex: 1 1 110px;
  min-height: 38px;
  padding: 9px 10px;
  font-size: 13px;
}

.ltpc-configurator {
  margin-top: 42px;
  padding: 46px 0;
  background: #111827;
  color: #fff;
}

.ltpc-config-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  align-items: center;
}

.ltpc-configurator h2 {
  color: #fff;
}

.ltpc-configurator p {
  color: rgba(255, 255, 255, 0.76);
}

.ltpc-config-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ltpc-config-options span {
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.ltpc-single-trust {
  margin: 14px 0;
  padding: 14px;
}

.ltpc-single-trust ul {
  margin: 12px 0 0 18px;
}

.ltpc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ltpc-badges span {
  padding: 7px 9px;
  border-radius: 999px;
  background: #fff1f2;
  color: var(--lt-red);
  font-size: 12px;
  font-weight: 900;
}

.ltpc-product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 18px;
  max-width: 1220px;
  margin: 24px auto;
  padding: 0 16px;
}

.ltpc-detail-card {
  padding: 20px;
}

.ltpc-detail-card h2 {
  margin-top: 0;
  font-size: 22px;
}

.ltpc-spec-table {
  overflow: hidden;
  border: 1px solid var(--lt-line);
  border-radius: var(--lt-radius);
}

.ltpc-spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 44px;
  border-bottom: 1px solid var(--lt-line);
}

.ltpc-spec-row:last-child {
  border-bottom: 0;
}

.ltpc-spec-row span,
.ltpc-spec-row strong {
  padding: 11px 13px;
  line-height: 1.45;
}

.ltpc-spec-row span {
  background: #f8fafc;
  color: var(--lt-muted);
  font-weight: 800;
}

.ltpc-spec-row strong {
  color: var(--lt-ink);
  font-weight: 700;
}

.ltpc-policy-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.ltpc-policy-list span {
  padding: 11px 12px;
  border-radius: var(--lt-radius);
  background: #f8fafc;
  color: var(--lt-ink);
  font-weight: 800;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ltpc-shine {
  0%, 50% { transform: translateX(-120%); }
  72%, 100% { transform: translateX(120%); }
}

@keyframes ltpc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
  .ltpc-hero-grid,
  .ltpc-category-shell,
  .ltpc-config-grid,
  .ltpc-product-detail-grid {
    grid-template-columns: 1fr;
  }

  .ltpc-hero-grid {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .ltpc-hero h1 {
    font-size: 32px;
  }

  .ltpc-hero-metrics,
  .ltpc-promo-grid,
  .ltpc-product-grid {
    grid-template-columns: 1fr;
  }

  .ltpc-search-band,
  .ltpc-search-band form {
    grid-template-columns: 1fr;
  }

  .ltpc-search-band {
    margin-top: -22px;
  }

  .ltpc-cart-link,
  .ltpc-search-band button {
    width: 100%;
  }

  .ltpc-section-head {
    align-items: start;
    flex-direction: column;
  }

  .ltpc-spec-row {
    grid-template-columns: 1fr;
  }

  .ltpc-device-stack {
    position: static;
    width: 100%;
    margin-top: 28px;
  }
}
