/** Shopify CDN: Minification failed

Line 205:10 Unexpected "{"
Line 205:19 Expected ":"
Line 206:14 Expected identifier but found whitespace
Line 206:16 Unexpected "{"
Line 206:25 Expected ":"
Line 206:65 Expected ":"
Line 207:17 Expected identifier but found whitespace
Line 207:19 Unexpected "{"
Line 207:28 Expected ":"
Line 207:71 Expected ":"
... and 14 more hidden warnings

**/
.black-friday-countdown {
  background-color: var(--color-background, #000000);
  color: var(--color-text, #ffffff);
  overflow: hidden;
  position: relative;
}

.money-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.falling-product {
  position: absolute;
  top: -150px;
  animation: fall linear infinite;
  opacity: 0.95;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.5));
}

.product-card {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

/* Mobile optimizations */
@media screen and (max-width: 749px) {
  .falling-product {
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.4));
  }
  
  .product-card {
    width: 70px;
    height: 70px;
  }
}

@keyframes fall {
  0% {
    top: -150px;
    transform: translateX(0);
  }
  50% {
    transform: translateX(50px);
  }
  100% {
    top: 110%;
    transform: translateX(100px);
  }
}

.countdown-container {
  text-align: center;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.countdown-heading {
  margin: 0 0 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.countdown-subheading {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  opacity: 0.9;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  font-family: monospace;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.countdown-value {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.countdown-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.countdown-separator {
  font-size: 3rem;
  font-weight: bold;
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.countdown-expired {
  font-size: 2rem;
  font-weight: bold;
  padding: 2rem;
  animation: pulse 2s infinite;
}

.countdown-button-wrapper {
  margin-top: 2rem;
}

.countdown-button-wrapper .button {
  min-width: 200px;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Responsive */
@media screen and (max-width: 749px) {
  .countdown-timer {
    gap: 0.5rem;
  }

  .countdown-item {
    min-width: 60px;
  }

  .countdown-value {
    font-size: 2rem;
  }

  .countdown-separator {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .countdown-label {
    font-size: 0.75rem;
  }

  .countdown-heading {
    font-size: 1.5rem;
  }

  .countdown-subheading {
    font-size: 1rem;
  }
}

/* Section padding */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | default: 36 }}px;
  padding-bottom: {{ section.settings.padding_bottom | default: 36 }}px;
}

/* Custom colors */
{% if section.settings.background_color %}
  .black-friday-countdown {
    background-color: {{ section.settings.background_color }};
  }
{% endif %}

{% if section.settings.text_color %}
  .black-friday-countdown {
    color: {{ section.settings.text_color }};
  }
{% endif %}
