.ocia-shop-bag-button{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:9990;
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 18px;
  background:#ffa700;
  color:#fff;
  border-radius:999px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  text-decoration:none;
  font-weight:600;
}

.ocia-shop-bag-button:hover,
.ocia-shop-bag-button:focus{
  color:#fff;
  text-decoration:none;
}

.ocia-shop-bag-button strong{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:24px;
  height:24px;
  padding:0 6px;
  background:#222;
  color:#fff;
  border-radius:999px;
  font-size:12px;
}

.ocia-shop-cart-item{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto auto auto;
  align-items:center;
  gap:20px;
  padding:22px 0;
  border-bottom:1px solid #e5e5e5;
}

.ocia-shop-cart-item__copy h4{
  margin:0 0 8px;
}

.ocia-shop-cart-item__copy p{
  margin:4px 0;
}

.ocia-shop-cart-item__quantity{
  display:flex;
  align-items:center;
  gap:12px;
}

.ocia-shop-cart-item__quantity button{
  width:34px;
  height:34px;
  padding:0;
  border:1px solid #ddd;
  background:#fff;
  font-size:20px;
}

.ocia-shop-cart-item__total{
  min-width:110px;
  text-align:right;
  font-weight:700;
}

.ocia-shop-cart-remove{
  border:0;
  background:transparent;
  color:#c0392b;
}

.ocia-shop-cart-summary{
  padding:25px;
}

.ocia-shop-summary-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:12px 0;
  border-bottom:1px solid #eee;
}

@media(max-width:767px){
  .ocia-shop-cart-item{
    grid-template-columns:1fr;
  }

  .ocia-shop-cart-item__total{
    text-align:left;
  }
}
