/* ==========================================================
   Got Hot Wheels - Wishlist / Share / Admin Feature Patch v57
   ========================================================== */

.ghw-heart,
.ghw-v57-card-share {
  position: absolute !important;
  z-index: 8 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  background: rgba(0,0,0,.58) !important;
  color: #fff !important;
  box-shadow: 0 0 16px rgba(0,0,0,.46) !important;
  backdrop-filter: blur(5px) !important;
  cursor: pointer !important;
  line-height: 1 !important;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease !important;
}

.ghw-heart {
  top: 7px !important;
  right: 7px !important;
  font-size: 23px !important;
  font-weight: 900 !important;
}

.ghw-v57-card-share {
  top: 47px !important;
  right: 7px !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

.ghw-heart:hover,
.ghw-v57-card-share:hover,
.ghw-heart:focus,
.ghw-v57-card-share:focus {
  transform: translateY(-1px) scale(1.04) !important;
  background: rgba(20,20,20,.82) !important;
  border-color: rgba(255,157,0,.82) !important;
  color: #ffd35a !important;
}

.ghw-heart.is-saved,
.ghw-heart.ghw-v57-saved {
  color: #ff2633 !important;
  border-color: rgba(255,38,51,.9) !important;
  background: rgba(40,0,4,.88) !important;
  text-shadow: 0 0 10px rgba(255,38,51,.65) !important;
}

.ghw-v57-toast {
  position: fixed !important;
  left: 50% !important;
  bottom: 24px !important;
  transform: translateX(-50%) translateY(18px) !important;
  z-index: 99999 !important;
  max-width: calc(100vw - 40px) !important;
  padding: 12px 16px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,157,0,.55) !important;
  background: rgba(6,8,12,.94) !important;
  color: #fff !important;
  font-weight: 900 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: .03em !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.42), 0 0 22px rgba(255,157,0,.18) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity .18s ease, transform .18s ease !important;
}

.ghw-v57-toast.show {
  opacity: 1 !important;
  transform: translateX(-50%) translateY(0) !important;
}

.ghw-v57-detail-tools {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin: 14px 0 0 !important;
}

.ghw-v57-detail-tools button,
.ghw-v57-detail-tools a {
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255,157,0,.58) !important;
  background: rgba(0,0,0,.34) !important;
  color: #fff !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

.ghw-v57-detail-tools button:hover,
.ghw-v57-detail-tools a:hover,
.ghw-v57-detail-tools button.is-saved {
  color: #ffd35a !important;
  border-color: rgba(255,157,0,.95) !important;
  background: rgba(255,157,0,.10) !important;
}

.ghw-v57-report-form {
  display: none !important;
  margin-top: 12px !important;
  padding: 14px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  background: rgba(0,0,0,.28) !important;
}

.ghw-v57-report-form.open {
  display: grid !important;
  gap: 10px !important;
}

.ghw-v57-report-form select,
.ghw-v57-report-form textarea {
  width: 100% !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: #05080d !important;
  color: #fff !important;
  padding: 10px !important;
  outline: none !important;
}

.ghw-v57-report-form textarea {
  min-height: 82px !important;
  resize: vertical !important;
}

.ghw-v57-report-form button {
  min-height: 40px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg,#ff3438,#c9000a) !important;
  color: #fff !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.ghw-v57-admin-card {
  border-radius: 16px !important;
  background: linear-gradient(180deg,#121821,#080b10) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.42) !important;
  padding: 20px !important;
  margin-bottom: 20px !important;
}

.ghw-v57-admin-table {
  width: 100% !important;
  border-collapse: collapse !important;
  color: #fff !important;
}

.ghw-v57-admin-table th,
.ghw-v57-admin-table td {
  padding: 12px !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
  text-align: left !important;
}

.ghw-v57-admin-table th {
  color: #ffd35a !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: .05em !important;
}

.ghw-v57-admin-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 0 0 18px !important;
}

.ghw-v57-admin-actions a {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 14px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255,157,0,.55) !important;
  color: #fff !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

@media (max-width: 720px) {
  .ghw-v57-detail-tools {
    grid-template-columns: 1fr !important;
  }

  .ghw-v57-card-share {
    top: 7px !important;
    right: 47px !important;
  }
}
