/** Shopify CDN: Minification failed

Line 504:0 Unexpected "}"

**/

/* ============================================
   LVT-8 CRO OPTIMIZATION STYLES
   ============================================ */

/* --- ANNOUNCEMENT BAR ENHANCEMENT --- */
.cro-announcement-bar {
  background: #FE6632;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 100;
  font-family: 'Open Sans', sans-serif;
}
.cro-marquee {
  display: flex;
  animation: cro-scroll 20s linear infinite;
  white-space: nowrap;
}
.cro-marquee span {
  padding: 8px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cro-marquee span::after {
  content: '★';
  margin-left: 40px;
  opacity: 0.6;
}
@keyframes cro-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- HERO ENHANCEMENT --- */
.banner .banner__content {
  z-index: 2;
}
.cro-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.cro-hero-badge {
  display: inline-block;
  background: #FE6632;
  color: #fff;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 16px;
  animation: cro-fadeDown 0.8s ease-out both;
}
.cro-hero-heading {
  font-size: clamp(2.8rem, 8vw, 6.5rem) !important;
  font-weight: 900 !important;
  letter-spacing: -1px;
  line-height: 1.05 !important;
  color: #fff !important;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  margin: 0 0 12px 0 !important;
  animation: cro-fadeUp 0.8s ease-out 0.1s both;
}
.cro-hero-sub {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem) !important;
  color: rgba(255,255,255,0.85) !important;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 28px !important;
  animation: cro-fadeUp 0.8s ease-out 0.2s both;
}
.cro-hero-cta {
  display: inline-block;
  background: #FE6632 !important;
  color: #fff !important;
  padding: 16px 48px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase;
  border: none !important;
  border-radius: 4px;
  transition: all 0.3s ease;
  animation: cro-fadeUp 0.8s ease-out 0.3s both;
  text-decoration: none;
}
.cro-hero-cta:hover {
  background: #e55525 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254,102,50,0.4);
}

/* --- TRUST STRIP --- */
.cro-trust-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  background: #1a1a1a;
  padding: 14px 0;
  flex-wrap: wrap;
}
.cro-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.cro-trust-item:last-child { border-right: none; }
.cro-trust-item svg {
  width: 18px;
  height: 18px;
  fill: #FE6632;
  flex-shrink: 0;
}
@media (max-width: 749px) {
  .cro-trust-strip { gap: 4px; padding: 12px 8px; }
  .cro-trust-item {
    font-size: 10px;
    padding: 4px 10px;
    border-right: none;
    width: 50%;
    justify-content: center;
  }
}

/* --- SECTION HEADINGS --- */
.cro-section-header {
  text-align: center;
  padding: 60px 20px 30px;
}
.cro-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FE6632;
  margin-bottom: 10px;
}
.cro-section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #121212;
  margin: 0;
  line-height: 1.1;
}

/* --- COUNTDOWN BANNER --- */
.cro-countdown-section {
  background: linear-gradient(135deg, #121212 0%, #1a1a1a 50%, #121212 100%);
  padding: 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cro-countdown-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(254,102,50,0.08) 0%, transparent 60%);
}
.cro-countdown-badge {
  display: inline-block;
  border: 1px solid #FE6632;
  color: #FE6632;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.cro-countdown-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  position: relative;
}
.cro-countdown-heading span { color: #FE6632; }
.cro-countdown-sub {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-bottom: 30px;
  position: relative;
}
.cro-timer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
}
.cro-timer-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(254,102,50,0.3);
  border-radius: 8px;
  padding: 16px 20px;
  min-width: 80px;
}
.cro-timer-num {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.cro-timer-label {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}
.cro-countdown-cta {
  display: inline-block;
  background: #FE6632;
  color: #fff;
  padding: 16px 48px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}
.cro-countdown-cta:hover {
  background: #e55525;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254,102,50,0.4);
  color: #fff;
}

/* --- REVIEWS SECTION OVERRIDE --- */
.cro-reviews-wrapper {
  background: #f8f8f8;
  padding: 20px 0 40px;
}

/* --- BRAND STORY / WHY US SECTION --- */
.cro-why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #121212;
  min-height: 500px;
}
.cro-why-image {
  background: linear-gradient(135deg, #1a1a1a, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(254,102,50,0.15);
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.cro-why-image::after {
  content: 'LVT-8';
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 8rem);
  opacity: 0.06;
  position: absolute;
}
.cro-why-content {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cro-why-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FE6632;
  margin-bottom: 12px;
}
.cro-why-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.1;
}
.cro-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.cro-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.cro-why-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #FE6632;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.cro-why-cta {
  display: inline-block;
  border: 2px solid #FE6632;
  color: #FE6632;
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.cro-why-cta:hover {
  background: #FE6632;
  color: #fff;
}
@media (max-width: 749px) {
  .cro-why-section { grid-template-columns: 1fr; }
  .cro-why-image { min-height: 250px; }
  .cro-why-content { padding: 40px 24px; }
}

/* --- NEWSLETTER ENHANCEMENT --- */
.cro-newsletter {
  background: linear-gradient(135deg, #FE6632 0%, #e04d1a 100%);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}
.cro-newsletter-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 16px;
}
.cro-newsletter-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin: 0 0 8px;
}
.cro-newsletter-sub {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 28px;
}
.cro-newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
}
.cro-newsletter-form input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-size: 15px;
  outline: none;
}
.cro-newsletter-form button {
  background: #121212;
  color: #fff;
  padding: 16px 32px;
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.cro-newsletter-form button:hover { background: #333; }

/* --- FLOATING WHATSAPP --- */
.cro-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  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: 9999;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.cro-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
.cro-whatsapp svg { width: 28px; height: 28px; fill: #fff; }

/* --- BACK TO TOP --- */
.cro-back-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: rgba(18,18,18,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}
.cro-back-top.visible { opacity: 1; visibility: visible; }
.cro-back-top:hover { background: #FE6632; }
.cro-back-top svg { width: 18px; height: 18px; fill: #fff; }

/* --- SCROLL ANIMATIONS --- */
.cro-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.cro-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- ANIMATIONS --- */
@keyframes cro-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cro-fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- PRODUCT CARD ENHANCEMENTS --- */
.card--standard .card__inner:hover .card__media img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}
.card__media img {
  transition: transform 0.5s ease;
}

/* --- QUICK ADD BUTTON ENHANCEMENT --- */
.quick-add__submit {
  background: #121212 !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
}
.quick-add__submit:hover {
  background: #FE6632 !important;
}


}


/* Hide broken AirReviews color circles on product cards */
.AirReviews-Widget--ColorSwatches,
.air-swatch,
.air-color-swatch,
.AirReviews-ColorSwatch,
[class*="AirReviews"][class*="Swatch"],
[class*="AirReviews"][class*="Color"],
.card-information .AirReviews-Widget:not(.AirReviews-Widget--Stars) {
  display: none !important;
}
