/** Shopify CDN: Minification failed

Line 158:0 Unexpected "<"

**/
/* --- STYLES GÉNÉRAUX --- */
.black-week-bar {
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: center;
  font-family: var(--alt-font-family);
  /*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
  overflow: hidden;
  padding: 8px 0; 
}

.black-week-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}

.black-week-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}

.black-week-title {
  font-weight: 700;
}

.black-week-subtitle {
  font-weight: 500;
  margin-top: 2px;
  line-height: 1;
}

.black-week-countdown {
  display: flex;
  align-items: center;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.time-box span {
  font-weight: 700;
  line-height: 1;
}

.time-box p {
  margin: 0;
  text-transform: uppercase;
  opacity: 0.9;
  line-height: 1;
}

/* --- VERSION DESKTOP (> 740px) --- */
@media screen and (min-width: 741px) {
  .black-week-bar {
    padding: 8px 15px; 
  }
  
  .black-week-content {
    gap: 32px;
    max-width: 700px;
    justify-content: center;
  }

  .black-week-text {
    align-items: flex-end;
    text-align: right;
  }

  .black-week-title {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .black-week-subtitle {
    font-size: 0.9rem;
  }

  .black-week-countdown {
    gap: 16px;
  }

  .time-box {
    min-width: 45px; 
  }

  .time-box span {
    font-size: 1.4rem;
  }

  .time-box p {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    margin-top: -1px; 
  }
}

/* --- VERSION MOBILE (< 740px) --- */
@media screen and (max-width: 740px) {
  .black-week-bar {
    padding: 6px 24px; 
  }

  .black-week-content {
    justify-content: space-between; 
    width: 100%;
    max-width: 500px;
  }

  .black-week-text {
    align-items: flex-start;
    text-align: left;
  }

  .black-week-title {
    font-size: 0.85rem; 
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }

  .black-week-subtitle {
    font-size: 0.7rem;
  }

  .black-week-countdown {
    gap: 4px;
    justify-content: flex-end;
  }

  .time-box {
    min-width: 28px; 
  }

  .time-box span {
    font-size: 1.1rem;
  }

  .time-box p {
    font-size: 0.5rem;
    margin-top: 5px; 
  }
}
</style>