/** Shopify CDN: Minification failed

Line 7:8 Expected identifier but found whitespace
Line 7:13 Unexpected ";"

**/
  color: #fff;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.tcl-product-card {
  background: #fff;
  border: 1px solid var(--tcl-border);
  padding: 16px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative;
}

.tcl-product-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.tcl-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--tcl-red);
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.tcl-product-card__image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 16px;
}

.tcl-product-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--tcl-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tcl-product-card__subtitle {
  font-size: 12px;
  color: var(--tcl-text-light);
  margin-bottom: 12px;
}

.tcl-product-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--tcl-dark);
}

.tcl-product-card__price--sale {
  color: var(--tcl-red);
}

.tcl-product-card__price--compare {
  font-size: 13px;
  color: var(--tcl-text-light);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

.tcl-product-card a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   FEATURE BANNERS — Innovation Section
   ============================================ */
.tcl-innovation {
  padding: 0;
}

.tcl-innovation__header {
  text-align: center;
  padding: 60px 20px 30px;
}

.tcl-innovation__title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--tcl-dark);
}

.tcl-feature-banner {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.tcl-feature-banner--dark {
  color: #fff;
}

.tcl-feature-banner--light {
  color: var(--tcl-dark);
}

.tcl-feature-banner__content {
  position: relative;
  z-index: 2;
  max-width: var(--tcl-page-width);
  margin: 0 auto;
  padding: 60px 40px;
  width: 100%;
}

.tcl-feature-banner__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.tcl-feature-banner__heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tcl-feature-banner__subheading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tcl-feature-banner__cta {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid currentColor;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.tcl-feature-banner__cta:hover {
  background: #fff;
  color: var(--tcl-dark);
  border-color: #fff;
}

/* ============================================
   CRAFTED SECTION — Image Carousel
   ============================================ */
.tcl-crafted {
  padding: 60px 20px;
  text-align: center;
  background: var(--tcl-bg-light);
}

.tcl-crafted__title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--tcl-dark);
  margin-bottom: 32px;
}

.tcl-crafted__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--tcl-page-width);
  margin: 0 auto;
}

.tcl-crafted__item {
  overflow: hidden;
  border-radius: 4px;
}

.tcl-crafted__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s;
}

.tcl-crafted__item:hover img {
  transform: scale(1.05);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.tcl-newsletter {
  padding: 60px 20px;
  text-align: center;
  background: var(--tcl-dark);
  color: #fff;
}

.tcl-newsletter__title {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tcl-newsletter__form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.tcl-newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #444;
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.tcl-newsletter__input::placeholder {
  color: #888;
}

.tcl-newsletter__btn {
  padding: 14px 28px;
  background: var(--tcl-red);
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
}

.tcl-newsletter__btn:hover {
  background: var(--tcl-red-hover);
}

/* ============================================
   FOOTER — Matching us.tcl.com
   ============================================ */
.tcl-footer {
  background: #fff;
  border-top: 1px solid var(--tcl-border);
  padding: 48px 20px 24px;
}

.tcl-footer__inner {
  max-width: var(--tcl-page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.tcl-footer__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--tcl-dark);
  margin-bottom: 16px;
}

.tcl-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tcl-footer__links li {
  margin-bottom: 8px;
}

.tcl-footer__links a {
  color: var(--tcl-text-light);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.tcl-footer__links a:hover {
  color: var(--tcl-red);
}

.tcl-footer__social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

