.cd-page {
  background: #ffffff;
}

.cd-hero {
  border-top: 1px solid #2c3e50;
  border-bottom: 1px solid #2c3e50;
  background: #ffffff;
}

.cd-hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
}

.cd-hero h1 {
  margin: 0;
  color: #2c3e50;
  font-size: 35px;
  line-height: 1.2;
}

.cd-hero p {
  margin: 8px 0 12px;
  color: #2d3436;
  font-size: 15px;
  line-height: 1.75;
}

.cd-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cd-pills span {
  border: 1px solid #2c3e50;
  border-radius: 999px;
  padding: 5px 10px;
  color: #2c3e50;
  font-size: 12px;
  font-weight: 600;
}

.cd-hero img {
  width: 100%;
  max-width: 290px;
  border: 1px solid #2c3e50;
  border-radius: 14px;
  justify-self: end;
}

.cd-main {
  padding: 22px 0 36px;
}

.cd-heading {
  margin: 0 0 12px;
  color: #2c3e50;
  font-size: 30px;
}

.cd-store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.cd-store-card {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #2c3e50;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.cd-store-card img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: contain;
  border: 1px solid #2c3e50;
  background: #fff;
}

.cd-store-card h3 {
  margin: 0;
  color: #2c3e50;
  font-size: 17px;
  line-height: 1.3;
}

.cd-store-card small {
  color: #2d3436;
  font-size: 12px;
}

.cd-coupon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cd-coupon-card {
  border: 1px solid #2c3e50;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.cd-coupon-label {
  color: #2ecc71;
  font-size: 20px;
  font-weight: 700;
}

.cd-coupon-card h3 {
  margin: 7px 0 6px;
  font-size: 18px;
  line-height: 1.35;
}

.cd-coupon-card h3 a {
  color: #2c3e50;
}

.cd-coupon-card p {
  margin: 0 0 10px;
  color: #2d3436;
  font-size: 13px;
}

.cd-coupon-btn {
  display: inline-block;
  background: #2ecc71;
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
}

.cd-empty {
  border: 1px solid #2c3e50;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  color: #2d3436;
}

@media (max-width: 1024px) {
  .cd-hero-inner {
    grid-template-columns: 1fr;
  }

  .cd-hero img {
    justify-self: start;
  }

  .cd-store-grid,
  .cd-coupon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .cd-hero h1,
  .cd-heading {
    font-size: 26px;
  }

  .cd-store-grid,
  .cd-coupon-grid {
    grid-template-columns: 1fr;
  }
}
