.vfc-wrapper {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
  background-image: url('/wp-content/plugins/cyan-flip-countdown/assets/frame.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 20px;
  border-radius: 8px;
  min-height: 200px;
}

.vfc-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.vfc-number {
  position: relative;
  width: 80px;
  height: 80px;
  background: #e8dfd0;
  color: #2c4c5c;
  font-size: 36px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.15);
}

/* خط وسط */
.vfc-number::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
}

.vfc-box span {
  display: block;
  letter-spacing: 2px;
  font-size: 12px;
  color: #e5d8c3;
  text-transform: uppercase;
  font-weight: 500;
}

/* برای دسکتاپ */
@media (min-width: 768px) {
  .vfc-wrapper {
    gap: 24px;
  }
  
  .vfc-number {
    height: 100px;
    font-size: 48px;
    border-radius: 16px;
  }
  
  .vfc-box span {
    font-size: 14px;
  }
}
