/* ======================================================
   HEADER SEARCH
====================================================== */

.header-widget {
  grid-area: search;
  width: 100%;
  margin: 0;
}

.header-widget .wp-block-search {
  width: 100%;
  margin: 0;
}

.header-widget .wp-block-search__label {
  position: absolute;
  left: -9999px;
}

.header-widget .wp-block-search__inside-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.header-widget .wp-block-search__input {
  width: 100%;
  min-width: 0;
  height: 54px;
  border: 4px solid #9f1537;
  border-right: none;
  background: #ffffff;
  padding: 0 18px;
  font-size: 16px;
  color: #222222;
  outline: none;
}

.header-widget .wp-block-search__input::placeholder {
  color: #6b7280;
  opacity: 1;
}

.header-widget .wp-block-search__input:focus {
  border-color: #7c0f2b;
}

.header-widget .wp-block-search__button {
  width: 70px;
  height: 54px;
  border: none;
  background: #9f1537 url("https://www.couponarena.de/wp-content/uploads/2026/03/search.png") no-repeat center center;
  background-size: 22px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.header-widget .wp-block-search__button:hover,
.header-widget .wp-block-search__button:focus {
  background-color: #7c0f2b;
}

.header-widget .wp-block-search__button:focus-visible {
  outline: 2px solid #9f1537;
  outline-offset: 2px;
}


/* ======================================================
   SEARCH RESULTS PAGE
====================================================== */

.coupon-search-page {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 90px;
  padding: 0 20px;
}

.coupon-search-page__inner {
  width: 100%;
}

.coupon-search-header {
  margin-bottom: 30px;
}

.coupon-search-header h1 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1;
}

.coupon-search-summary {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.94);
}

.coupon-search-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.coupon-search-card {
  background: rgba(236, 215, 215, 0.94);
  border: 8px solid #1e293b;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  overflow: hidden;
}

.coupon-search-card__content {
  padding: 26px 26px 18px;
}

.coupon-search-card__category {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 14px;
  background: #9f1537;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}

.coupon-search-card__title {
  margin: 0 0 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 700;
  color: #9f1537;
}

.coupon-search-card__description {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: #333333;
}

.coupon-search-card__footer {
  padding: 0 26px 26px;
}

.coupon-search-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 20px;
  background: #9f1537;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.coupon-search-card__btn:hover,
.coupon-search-card__btn:focus {
  background: #7c0f2b;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(159, 21, 55, 0.25);
  text-decoration: none;
}

.coupon-search-card__btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.coupon-search-empty {
  background: rgba(236, 215, 215, 0.94);
  border: 8px solid #1e293b;
  padding: 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  color: #333333;
}

.coupon-search-empty h2 {
  margin: 0 0 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 32px;
  line-height: 1.2;
  color: #9f1537;
}

.coupon-search-empty p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: #333333;
}


/* ======================================================
   SEARCH / HEADER TABLET
====================================================== */

@media (max-width: 1024px) {
  .header-widget .wp-block-search__input {
    height: 50px;
  }

  .header-widget .wp-block-search__button {
    width: 62px;
    height: 50px;
  }

  .coupon-search-page {
    margin: 40px auto 70px;
  }

  .coupon-search-grid {
    gap: 20px;
  }

  .coupon-search-card {
    min-height: 250px;
  }

  .coupon-search-card__title {
    font-size: 32px;
  }

  .coupon-search-card__description,
  .coupon-search-empty p,
  .coupon-search-summary {
    font-size: 17px;
  }
}


/* ======================================================
   SEARCH / HEADER MOBILE
====================================================== */

@media (max-width: 768px) {
  .header-widget {
    width: 100%;
  }

  .header-widget .wp-block-search__input {
    width: 100%;
    height: 46px;
    font-size: 14px;
    padding: 0 14px;
  }

  .header-widget .wp-block-search__button {
    width: 54px;
    height: 46px;
    background-size: 18px;
  }

  .coupon-search-page {
    margin: 30px auto 60px;
    padding: 0 18px;
  }

  .coupon-search-header {
    margin-bottom: 22px;
  }

  .coupon-search-header h1 {
    font-size: clamp(34px, 8vw, 48px);
  }

  .coupon-search-summary {
    font-size: 16px;
  }

  .coupon-search-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .coupon-search-card {
    min-height: auto;
  }

  .coupon-search-card__content {
    padding: 22px 18px 16px;
  }

  .coupon-search-card__footer {
    padding: 0 18px 20px;
  }

  .coupon-search-card__title {
    font-size: 28px;
  }

  .coupon-search-card__description {
    font-size: 16px;
    line-height: 1.6;
  }

  .coupon-search-card__btn {
    width: 100%;
    min-width: 0;
  }

  .coupon-search-empty {
    padding: 22px 18px;
  }

  .coupon-search-empty h2 {
    font-size: 26px;
  }

  .coupon-search-empty p {
    font-size: 16px;
  }
}


/* ======================================================
   SEARCH / HEADER SMALL MOBILE
====================================================== */

@media (max-width: 400px) {
  .header-widget .wp-block-search__input {
    height: 42px;
    font-size: 13px;
  }

  .header-widget .wp-block-search__button {
    width: 48px;
    height: 42px;
  }

  .coupon-search-page {
    padding: 0 14px;
  }

  .coupon-search-card__title {
    font-size: 24px;
  }

  .coupon-search-card__description,
  .coupon-search-empty p,
  .coupon-search-summary {
    font-size: 15px;
  }
}