.custom-editable-section {
    text-align: center;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-editable-section h2 {
    color: #333;
    font-size: 24px;
}

.custom-editable-section p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}

.custom-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #0056b3;
}

.easter-sale-wrapper {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: transparent;
  padding: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0;
}

.easter-sale-container {
  background: transparent;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  padding-top: 0;
}

.easter-sale-header img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.easter-sale-content {
  padding: 24px 20px 30px;
}

.easter-sale-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}

.easter-sale-title span {
  color: #007aff;
  font-weight: 900;
}

.easter-sale-description {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.promo-code {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #007aff;
}

.promo-code-box {
  padding: 10px 16px;
  border: 2px dashed #007aff;
  border-radius: 8px;
  background: #f1f8ff;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: -25px;
}

.countdown-box {
  background: #f1f3f5;
  border-radius: 8px;
  padding: 10px 8px;
  width: 65px;
}

.countdown-box div {
  font-size: 20px;
  font-weight: 600;
}

.countdown-box small {
  font-size: 11px;
  color: #555;
}

@media (max-width: 600px) {
  .easter-sale-title {
    font-size: 28px;
    margin-top: 10px;
  }

  .easter-sale-wrapper {
    margin-top: 60px;
  }
}