/* Shipping Deadline Notice */
.shipping-deadline-notice {
  background: #325b77;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: none;
}

.shipping-deadline-notice.active {
  display: block;
}

.shipping-deadline-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.shipping-icon {
  font-size: 18px;
}

.shipping-text {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-timer {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-family: 'Courier New', monospace;
  min-width: 70px;
  text-align: center;
  display: inline-block;
}

.shipping-bolt {
  font-size: 18px;
}

@media (max-width: 768px) {
  .shipping-deadline-notice {
    padding: 8px 12px;
    margin-bottom: 15px;
    border-radius: 6px;
  }
  
  .shipping-deadline-content {
    font-size: 11px;
    flex-wrap: nowrap;
    gap: 4px;
    white-space: nowrap;
  }
  
  .shipping-icon {
    font-size: 14px;
    flex-shrink: 0;
  }
  
  .shipping-text {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
  }
  
  .countdown-timer {
    font-size: 11px;
    padding: 2px 5px;
    min-width: 50px;
    flex-shrink: 0;
  }
  
  .shipping-bolt {
    font-size: 14px;
    flex-shrink: 0;
  }
}

