/* Radio HARCHI — compact recipes-page player. */
.hk-recipes-discovery-row{
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  gap:18px;
  margin:0 0 22px;
}

.hk-recipes-discovery-row>.hk-recipes-discovery-tabs{
  flex:0 0 auto;
  margin-bottom:0;
}

.hk-radio-harchi{
  --hk-radio-green:#123F2F;
  --hk-radio-gold:#C79A2B;
  --hk-radio-cream:#fffdf8;
  --hk-radio-muted:#738078;
  position:relative;
  display:grid;
  grid-template-columns:auto minmax(125px,1fr) auto;
  align-items:center;
  gap:13px;
  flex:1 1 530px;
  min-width:0;
  max-width:680px;
  min-height:102px;
  padding:8px 13px 39px 11px;
  overflow:hidden;
  border:1px solid rgba(18,63,47,.12);
  border-radius:16px;
  background:
    radial-gradient(circle at 92% 0%,rgba(199,154,43,.10),transparent 31%),
    linear-gradient(135deg,rgba(255,253,248,.99),rgba(250,248,241,.98));
  box-shadow:0 8px 24px rgba(18,63,47,.045);
  color:var(--hk-radio-green);
}

.hk-radio-harchi::after{
  content:"";
  position:absolute;
  left:0;
  top:17px;
  bottom:17px;
  width:2px;
  border-radius:0 99px 99px 0;
  background:var(--hk-radio-gold);
  opacity:.9;
}

.hk-radio-harchi__brand{
  display:flex;
  align-items:center;
  gap:9px;
  min-width:142px;
}

.hk-radio-harchi__mark{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2px;
  width:38px;
  height:38px;
  flex:0 0 38px;
  border:1px solid rgba(199,154,43,.3);
  border-radius:50%;
  background:var(--hk-radio-green);
  box-shadow:0 5px 13px rgba(18,63,47,.12);
}

.hk-radio-harchi__mark i{
  display:block;
  width:2px;
  height:8px;
  border-radius:99px;
  background:var(--hk-radio-gold);
  transform-origin:center;
}
.hk-radio-harchi__mark i:nth-child(2){height:15px}
.hk-radio-harchi__mark i:nth-child(3){height:11px}
.hk-radio-harchi__mark i:nth-child(4){height:6px}

.hk-radio-harchi.is-playing .hk-radio-harchi__mark i{
  animation:hk-radio-bars .85s ease-in-out infinite alternate;
}
.hk-radio-harchi.is-playing .hk-radio-harchi__mark i:nth-child(2){animation-delay:.12s}
.hk-radio-harchi.is-playing .hk-radio-harchi__mark i:nth-child(3){animation-delay:.24s}
.hk-radio-harchi.is-playing .hk-radio-harchi__mark i:nth-child(4){animation-delay:.36s}

@keyframes hk-radio-bars{
  from{transform:scaleY(.55);opacity:.72}
  to{transform:scaleY(1.22);opacity:1}
}

.hk-radio-harchi__brand-copy{
  display:block;
  min-width:0;
  line-height:1.08;
}
.hk-radio-harchi__brand-copy strong{
  display:block;
  color:var(--hk-radio-green);
  font-size:12px;
  font-weight:950;
  letter-spacing:.055em;
  white-space:nowrap;
}
.hk-radio-harchi__brand-copy small{
  display:block;
  max-width:128px;
  margin-top:4px;
  color:#7c887f;
  font-size:9.5px;
  font-weight:650;
  line-height:1.15;
}

.hk-radio-harchi__now{
  min-width:0;
  padding-left:12px;
  border-left:1px solid rgba(18,63,47,.10);
  line-height:1.12;
}
.hk-radio-harchi__mood{
  display:block;
  overflow:hidden;
  color:var(--hk-radio-gold);
  font-size:9px;
  font-weight:900;
  letter-spacing:.05em;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.hk-radio-harchi__track{
  display:block;
  overflow:hidden;
  margin-top:4px;
  color:var(--hk-radio-green);
  font-size:12px;
  font-weight:900;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.hk-radio-harchi__artist{
  display:block;
  overflow:hidden;
  margin-top:3px;
  color:var(--hk-radio-muted);
  font-size:9.5px;
  font-weight:650;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.hk-radio-harchi__controls{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:7px;
  min-width:0;
}

.hk-radio-harchi__modes{
  display:flex;
  align-items:center;
  gap:2px;
  padding:3px;
  border:1px solid rgba(18,63,47,.09);
  border-radius:9px;
  background:rgba(255,255,255,.72);
}
.hk-radio-harchi__modes button{
  min-width:0!important;
  min-height:25px!important;
  height:25px!important;
  padding:0 6px!important;
  border:0!important;
  border-radius:7px!important;
  background:transparent!important;
  box-shadow:none!important;
  color:#64756c!important;
  font-family:inherit!important;
  font-size:8px!important;
  font-weight:900!important;
  line-height:25px!important;
  letter-spacing:.025em!important;
  text-transform:none!important;
  cursor:pointer;
  transition:background-color .17s ease,color .17s ease,box-shadow .17s ease;
}
.hk-radio-harchi__modes button:hover{
  color:var(--hk-radio-green)!important;
  background:#fff9eb!important;
}
.hk-radio-harchi__modes button.is-active{
  color:#fff!important;
  background:var(--hk-radio-green)!important;
  box-shadow:0 3px 8px rgba(18,63,47,.12)!important;
}

.hk-radio-harchi__play,
.hk-radio-harchi__next{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  flex:0 0 auto;
  min-width:0!important;
  margin:0!important;
  padding:0!important;
  border-radius:50%!important;
  cursor:pointer;
  transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease,background-color .16s ease!important;
}
.hk-radio-harchi__play{
  width:39px!important;
  height:39px!important;
  border:1px solid var(--hk-radio-green)!important;
  background:var(--hk-radio-green)!important;
  color:#fff!important;
  box-shadow:0 5px 13px rgba(18,63,47,.14)!important;
}
.hk-radio-harchi__play:hover{
  transform:translateY(-1px);
  box-shadow:0 7px 17px rgba(18,63,47,.19)!important;
}
.hk-radio-harchi__next{
  width:31px!important;
  height:31px!important;
  border:1px solid rgba(18,63,47,.14)!important;
  background:#fff!important;
  color:var(--hk-radio-green)!important;
}
.hk-radio-harchi__next:hover{
  border-color:rgba(199,154,43,.55)!important;
  background:#fffaf0!important;
}
.hk-radio-harchi__play svg{width:17px;height:17px;fill:currentColor}
.hk-radio-harchi__next svg{width:14px;height:14px;fill:currentColor}
.hk-radio-harchi__icon-pause{display:none}
.hk-radio-harchi.is-playing .hk-radio-harchi__icon-play{display:none}
.hk-radio-harchi.is-playing .hk-radio-harchi__icon-pause{display:block}

.hk-radio-harchi__volume{
  display:flex;
  align-items:center;
  gap:5px;
  width:72px;
  color:#6f7e76;
}
.hk-radio-harchi__volume svg{width:13px;height:13px;flex:0 0 13px;fill:currentColor}
.hk-radio-harchi__volume input{
  width:52px!important;
  min-width:0!important;
  height:3px!important;
  margin:0!important;
  padding:0!important;
  accent-color:var(--hk-radio-gold);
  cursor:pointer;
}

.hk-radio-harchi__license{
  position:absolute;
  right:10px;
  bottom:5px;
  color:rgba(18,63,47,.38);
  font-size:7px;
  font-weight:900;
  letter-spacing:.055em;
  pointer-events:none;
}

.hk-radio-harchi__submit{
  position:absolute;
  z-index:2;
  left:10px;
  right:10px;
  bottom:7px;
  display:flex!important;
  align-items:center!important;
  gap:8px;
  min-height:27px;
  padding:4px 5px 4px 8px!important;
  border:1px solid rgba(199,154,43,.24);
  border-radius:9px;
  background:linear-gradient(90deg,rgba(199,154,43,.075),rgba(255,255,255,.72));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72);
  color:var(--hk-radio-green)!important;
  text-decoration:none!important;
  transition:border-color .20s ease,box-shadow .20s ease,transform .20s ease,min-height .20s ease,padding .20s ease!important;
}
.hk-radio-harchi__submit:hover{
  border-color:rgba(199,154,43,.48);
  background:linear-gradient(90deg,rgba(199,154,43,.13),rgba(255,255,255,.88));
  box-shadow:0 4px 12px rgba(18,63,47,.055),inset 0 1px 0 rgba(255,255,255,.82);
  color:var(--hk-radio-green)!important;
  text-decoration:none!important;
  transform:translateY(-1px);
}
.hk-radio-harchi__submit-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  flex:0 0 20px;
  border-radius:50%;
  background:var(--hk-radio-green);
  color:var(--hk-radio-gold);
  font-family:Georgia,serif;
  font-size:13px;
  font-weight:700;
  line-height:1;
}
.hk-radio-harchi__submit-copy{
  display:block;
  min-width:0;
  flex:1 1 auto;
  line-height:1.05;
}
.hk-radio-harchi__submit-copy strong{
  display:block;
  overflow:hidden;
  color:var(--hk-radio-green);
  font-size:8.9px;
  font-weight:900;
  letter-spacing:.005em;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.hk-radio-harchi__submit-copy small{
  display:block;
  margin-top:2px;
  overflow:hidden;
  color:#718078;
  font-size:7.2px;
  font-weight:650;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.hk-radio-harchi__submit-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  flex:0 0 auto;
  min-height:22px;
  padding:0 8px;
  border-radius:7px;
  background:var(--hk-radio-gold);
  color:#fff;
  font-size:7.5px;
  font-weight:900;
  letter-spacing:.01em;
  white-space:nowrap;
}
.hk-radio-harchi__submit:focus-visible{outline:2px solid var(--hk-radio-gold)!important;outline-offset:2px!important}

/* Desktop: make the artist invitation unmistakably readable on hover without shifting layout. */
@media (hover:hover) and (pointer:fine){
  .hk-radio-harchi__submit{
    transform-origin:center bottom;
  }
  .hk-radio-harchi__submit-icon{transition:width .20s ease,height .20s ease,flex-basis .20s ease,font-size .20s ease}
  .hk-radio-harchi__submit-copy strong{transition:font-size .20s ease,letter-spacing .20s ease}
  .hk-radio-harchi__submit-copy small{transition:font-size .20s ease,color .20s ease,margin-top .20s ease}
  .hk-radio-harchi__submit-action{transition:min-height .20s ease,padding .20s ease,font-size .20s ease,background-color .20s ease,box-shadow .20s ease}
  .hk-radio-harchi__submit:hover{
    z-index:6;
    min-height:34px;
    padding:6px 8px!important;
    border-color:rgba(199,154,43,.72);
    background:linear-gradient(90deg,rgba(199,154,43,.20),rgba(255,255,255,.97));
    box-shadow:0 8px 22px rgba(18,63,47,.12),0 0 0 1px rgba(199,154,43,.08),inset 0 1px 0 rgba(255,255,255,.92);
    transform:translateY(-2px) scale(1.022);
  }
  .hk-radio-harchi__submit:hover .hk-radio-harchi__submit-icon{
    width:23px;
    height:23px;
    flex-basis:23px;
    font-size:15px;
  }
  .hk-radio-harchi__submit:hover .hk-radio-harchi__submit-copy{
    line-height:1.12;
  }
  .hk-radio-harchi__submit:hover .hk-radio-harchi__submit-copy strong{
    font-size:11px;
    letter-spacing:.003em;
  }
  .hk-radio-harchi__submit:hover .hk-radio-harchi__submit-copy small{
    margin-top:3px;
    color:#586a60;
    font-size:8.4px;
  }
  .hk-radio-harchi__submit:hover .hk-radio-harchi__submit-action{
    min-height:25px;
    padding:0 10px;
    background:#b98718;
    box-shadow:0 3px 9px rgba(199,154,43,.20);
    font-size:8.3px;
  }
}

.hk-radio-harchi button:focus-visible,
.hk-radio-harchi input:focus-visible{
  outline:2px solid var(--hk-radio-gold)!important;
  outline-offset:2px!important;
}

.hk-radio-harchi.is-loading .hk-radio-harchi__track{opacity:.58}
.hk-radio-harchi.is-error{border-color:rgba(166,60,60,.28)}
.hk-radio-harchi.is-error .hk-radio-harchi__mood{color:#a33a3a}

@media (max-width:1180px) and (min-width:701px){
  .hk-recipes-discovery-row{flex-wrap:wrap;gap:10px}
  .hk-radio-harchi{max-width:none;width:100%;flex-basis:100%}
}

@media (max-width:700px){
  .hk-recipes-discovery-row{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin:0 0 14px;
  }
  .hk-recipes-discovery-row>.hk-recipes-discovery-tabs{margin-bottom:0}
  .hk-radio-harchi{
    grid-template-columns:auto minmax(0,1fr) auto;
    gap:9px;
    width:100%;
    max-width:none;
    min-height:101px;
    padding:8px 10px 42px;
    border-radius:14px;
  }
  .hk-radio-harchi__brand{min-width:0;gap:7px}
  .hk-radio-harchi__mark{width:36px;height:36px;flex-basis:36px}
  .hk-radio-harchi__brand-copy strong{font-size:10px}
  .hk-radio-harchi__brand-copy small{display:none}
  .hk-radio-harchi__now{padding-left:9px}
  .hk-radio-harchi__mood{font-size:8px}
  .hk-radio-harchi__track{font-size:11px}
  .hk-radio-harchi__artist{font-size:8.5px}
  .hk-radio-harchi__controls{gap:6px}
  .hk-radio-harchi__modes{display:none}
  .hk-radio-harchi__volume{display:none}
  .hk-radio-harchi__next{width:29px!important;height:29px!important}
  .hk-radio-harchi__play{width:38px!important;height:38px!important}
  .hk-radio-harchi__submit{left:8px;right:8px;bottom:7px;gap:7px;padding-left:7px!important}
  .hk-radio-harchi__submit-copy strong{font-size:9.4px}
  .hk-radio-harchi__submit-copy small{font-size:7.6px}
  .hk-radio-harchi__submit-action{min-height:23px;padding:0 7px;font-size:7.8px}
}

@media (max-width:410px){
  .hk-radio-harchi{grid-template-columns:auto minmax(0,1fr) auto;min-height:105px;padding-bottom:46px}
  .hk-radio-harchi__brand-copy{display:none}
  .hk-radio-harchi__brand{min-width:36px}
  .hk-radio-harchi__submit-copy small{display:none}
  .hk-radio-harchi__submit-copy strong{font-size:9.2px;white-space:normal;line-height:1.12}
  .hk-radio-harchi__submit-action{padding:0 6px;font-size:7.6px}
}

@media (prefers-reduced-motion:reduce){
  .hk-radio-harchi *,
  .hk-radio-harchi *::before,
  .hk-radio-harchi *::after{
    animation:none!important;
    transition:none!important;
  }
}
