@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/* TIMER STYLES */
.timeContainer {
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
}

.timeContainer .wrapper {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.timeContainer .wrapper div {
  color: #fff;
  text-align: center;
  width: 120px;
  height: 120px;
  padding: 15px 0;
  border-radius: 12px;
  background: #1a1a1a; /* Dark background for Black Friday */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #333;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeContainer .wrapper div h2 {
  color: #a761f4;
}

.timeContainer .wrapper div p {
  color: #e1e1e1;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .timeContainer .wrapper {
    gap: 5px;
  }

  .timeContainer .wrapper div {
    width: 70px;
    height: 70px;
    padding: 5px 0;
  }

  .timeContainer .wrapper div h2 {
    font-size: 1.5rem;
  }

  .timeContainer .wrapper div p {
    font-size: 0.5rem;
  }
}