.oy-blog-floating-cta-ready{
  padding-bottom:150px;
}

.oy-floating-cta{
  position:fixed;
  left:16px;
  right:16px;
  bottom:calc(16px + env(safe-area-inset-bottom, 0px));
  z-index:9999;
  display:grid;
  grid-template-columns:84px minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
  width:min(920px, calc(100vw - 32px));
  margin:0 auto;
  padding:12px;
  border:1px solid rgba(190,242,100,.32);
  border-radius:8px;
  background:linear-gradient(135deg,#0c3c3f 0%,#105e61 54%,#173f2a 100%);
  box-shadow:0 22px 52px rgba(6,35,40,.28),0 0 0 1px rgba(255,255,255,.08) inset;
  color:#fff;
  opacity:0;
  transform:translateY(22px);
  pointer-events:none;
  transition:opacity .28s ease,transform .28s ease;
}

.oy-floating-cta.is-visible{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.oy-floating-cta__thumb{
  width:84px;
  aspect-ratio:1;
  overflow:hidden;
  border-radius:8px;
  background:#f7fff4;
  box-shadow:0 12px 26px rgba(0,0,0,.2);
}

.oy-floating-cta__thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.oy-floating-cta__fallback{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  color:#0f5132;
  font-size:28px;
  font-weight:900;
}

.oy-floating-cta__eyebrow{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  min-height:24px;
  padding:0 10px;
  border-radius:999px;
  background:#dffdeb;
  color:#0f6f43;
  font-size:12px;
  font-weight:900;
}

.oy-floating-cta__title{
  margin:6px 0 2px;
  color:#fff;
  font-size:18px;
  line-height:1.25;
  font-weight:900;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient:vertical;
}

.oy-floating-cta__sub{
  margin:0;
  color:#d9f7ef;
  font-size:13px;
  line-height:1.45;
  font-weight:800;
}

.oy-floating-cta__actions{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  min-width:184px;
}

.oy-floating-cta__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  border-radius:8px;
  text-decoration:none;
  font-size:14px;
  font-weight:900;
  white-space:nowrap;
  transition:transform .16s ease,box-shadow .16s ease,background .16s ease;
}

.oy-floating-cta__btn::after{
  content:">";
  margin-left:8px;
  font-size:14px;
  line-height:1;
}

.oy-floating-cta__btn:hover{
  transform:translateY(-1px);
}

.oy-floating-cta__btn--buy{
  background:#21d4c7;
  color:#062f31;
  box-shadow:0 12px 26px rgba(33,212,199,.34);
}

.oy-floating-cta__btn--stock{
  background:#fff;
  color:#0b5147;
  box-shadow:0 10px 22px rgba(0,0,0,.16);
}

@media(max-width:720px){
  .oy-blog-floating-cta-ready{
    padding-bottom:210px;
  }

  .oy-floating-cta{
    grid-template-columns:68px minmax(0,1fr);
    gap:10px;
    padding:10px;
    width:calc(100vw - 20px);
    left:10px;
    right:10px;
    bottom:calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .oy-floating-cta__thumb{
    width:68px;
  }

  .oy-floating-cta__title{
    font-size:15px;
    -webkit-line-clamp:2;
  }

  .oy-floating-cta__sub{
    font-size:12px;
  }

  .oy-floating-cta__actions{
    grid-column:1 / -1;
    grid-template-columns:1fr 1fr;
    min-width:0;
  }

  .oy-floating-cta__btn{
    min-height:42px;
    padding:0 10px;
    font-size:13px;
  }
}

@media(max-width:380px){
  .oy-floating-cta__actions{
    grid-template-columns:1fr;
  }
}
