/* Opto Zero v3.66 — back-to-top button only */
.oc-scroll-top{
  position:fixed;
  right:18px;
  bottom:82px;
  z-index:9400;
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:1px solid rgba(255,255,255,.72);
  border-radius:15px;
  background:#0d5de6;
  color:#fff;
  box-shadow:0 12px 30px rgba(13,93,230,.24),0 3px 8px rgba(31,47,73,.12);
  font-size:24px;
  line-height:1;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(10px);
  transition:opacity .18s ease,transform .18s ease,visibility .18s ease,background .18s ease;
  -webkit-tap-highlight-color:transparent;
}
.oc-scroll-top.is-visible{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}
.oc-scroll-top:hover{background:#0b52ca;color:#fff;}
.oc-scroll-top:focus{outline:0;box-shadow:0 0 0 3px rgba(13,93,230,.18),0 12px 30px rgba(13,93,230,.24);}
.oc-scroll-top:active{transform:scale(.96);}
@media(max-width:767px){
  .oc-scroll-top{
    right:9px;
    bottom:calc(70px + env(safe-area-inset-bottom, 0px));
    width:45px;
    height:45px;
    border-radius:14px;
    font-size:21px;
  }
}
@media(max-width:380px){
  .oc-scroll-top{right:7px;}
}


/* v3.67: upper price blocks are the unit/box selector in product cards. */
.oc-product-card .oc-price-mode {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  border: 1px solid #dce4f0 !important;
  background: #f7f9fc !important;
  border-radius: 12px !important;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease, color .15s ease, transform .08s ease;
}
.oc-product-card .oc-price-mode:hover { border-color: #b9d2ff !important; }
.oc-product-card .oc-price-mode:active { transform: translateY(1px); }
.oc-product-card .oc-price-mode.active {
  border-color: #63a0ff !important;
  background: #eef5ff !important;
  box-shadow: 0 0 0 1px rgba(13,93,230,.10), 0 4px 12px rgba(13,93,230,.10) !important;
}
.oc-product-card .oc-price-mode:focus-visible {
  box-shadow: 0 0 0 3px rgba(13,93,230,.18) !important;
}
.oc-product-card .oc-main-price.oc-price-mode,
.oc-product-card .oc-second-price.oc-price-mode {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.oc-wish-card .oc-wish-price.oc-price-mode { width: 100%; text-align: left; }
.oc-wish-card .oc-wish-price.oc-price-mode.active {
  border-color: #63a0ff !important;
  background: #eef5ff !important;
}

/* With the old lower mode row removed, keep list cards compact. */
.oc-products-grid.oc-list-view .oc-product-actions,
.oc-home-products.oc-list-view .oc-product-actions,
.search-grid-fix.oc-list-view .oc-product-actions {
  grid-row: 3 !important;
}
