#recepten-shop {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.recepten-shop__inner {
  background: #fff;
  border: 1px solid rgba(150, 150, 150, 0.18);
  border-radius: 8px;
  padding: 1.25rem 1.25rem 1.5rem;
}

.recepten-shop__header {
  margin-bottom: 1rem;
}

.recepten-shop__title {
  margin: 0 0 0.35rem;
  font-size: 1.35em;
}

.recepten-shop__subtitle {
  margin: 0;
  opacity: 0.75;
  font-size: 0.95em;
}

.recepten-shop__loading {
  opacity: 0.7;
  padding: 1rem 0;
}

.recepten-shop__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.recepten-shop__item {
  display: grid;
  grid-template-columns: auto 65px minmax(0, 1fr) 70px auto;
  gap: 0.75rem 0.85rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid rgba(150, 150, 150, 0.16);
  border-radius: 6px;
  transition: opacity 0.15s ease, background-color 0.15s ease;
}

.recepten-shop__item.is-unchecked {
  opacity: 0.55;
  background: rgba(150, 150, 150, 0.04);
}

.recepten-shop__item.is-unavailable {
  opacity: 0.55;
}

.recepten-shop__check {
  position: relative;
  display: inline-flex;
  width: 22px;
  height: 22px;
  margin: 0;
  cursor: pointer;
}

.recepten-shop__checkbox {
  position: absolute;
  opacity: 0;
  width: 22px;
  height: 22px;
  margin: 0;
  cursor: pointer;
}

.recepten-shop__checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(120, 120, 120, 0.45);
  border-radius: 4px;
  background: #fff;
  display: inline-block;
  position: relative;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.recepten-shop__checkbox:checked + .recepten-shop__checkmark {
  background: var(--highlight-color, #7a9a3a);
  border-color: var(--highlight-color, #7a9a3a);
}

.recepten-shop__checkbox:checked + .recepten-shop__checkmark:after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.recepten-shop__checkbox:focus-visible + .recepten-shop__checkmark {
  outline: 2px solid var(--highlight-color, #7a9a3a);
  outline-offset: 2px;
}

.recepten-shop__image {
  display: block;
  width: 65px;
  height: 65px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(150, 150, 150, 0.08);
}

.recepten-shop__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recepten-shop__meta {
  min-width: 0;
}

.recepten-shop__name {
  display: block;
  font-weight: 600;
  line-height: 1.25;
  color: inherit;
  text-decoration: none;
}

.recepten-shop__name:hover {
  color: var(--highlight-color, #7a9a3a);
}

.recepten-shop__needed {
  margin-top: 0.25rem;
  font-size: 0.88em;
  opacity: 0.75;
}

.recepten-shop__oos {
  margin-top: 0.25rem;
  font-size: 0.88em;
  font-weight: 600;
}

.recepten-shop__qty {
  position: relative;
  width: 70px;
  height: 40px;
}

.recepten-shop__qty-btn {
  position: absolute;
  right: 0;
  width: 24px;
  height: 50%;
  text-align: center;
  cursor: pointer;
  font-size: 10px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recepten-shop__qty-btn[data-type="up"] {
  top: 0;
}

.recepten-shop__qty-btn[data-type="down"] {
  bottom: 0;
  top: auto;
}

.recepten-shop__price {
  min-width: 4.5rem;
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}

.recepten-shop__footer {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(150, 150, 150, 0.16);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.recepten-shop__total {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 140px;
}

.recepten-shop__total-label {
  font-size: 0.9em;
  opacity: 0.7;
}

.recepten-shop__total-price {
  font-size: 1.45em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--highlight-color, #7a9a3a);
}

.recepten-shop__total-note {
  font-size: 0.8em;
  opacity: 0.65;
}

.recepten-shop__cta {
  flex: 1 1 240px;
  max-width: 420px;
  min-height: 48px;
  padding: 0 !important;
}

.recepten-shop__cta .button-content {
  display: flex;
  width: 100%;
  min-height: 48px;
}

.recepten-shop__cta:disabled {
  opacity: 0.7;
  pointer-events: none;
}

.recepten-shop__status {
  flex: 1 0 100%;
  font-size: 0.95em;
  min-height: 1.2em;
}

.recepten-shop__status.is-success {
  color: var(--highlight-color, #7a9a3a);
}

.recepten-shop__status.is-error {
  color: #c0392b;
}

.recepten-shop__share {
  flex: 1 0 100%;
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(150, 150, 150, 0.16);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}

.recepten-shop__share-label {
  font-weight: 600;
  font-size: 0.95em;
}

.recepten-shop__share-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color:#fff;
}

.recepten-shop__share-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(150, 150, 150, 0.22);
  border-radius: 50%;
  background: #fff;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.recepten-shop__share-btn i,
.recepten-shop__share-btn .recepten-shop__icon-link {
  font-size: 1.05em;
}

.recepten-shop__share-btn:hover {
  border-color: var(--highlight-color, #7a9a3a);
  color: #fff;
}

.recepten-shop__icon-link {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M10.59 13.41a1.99 1.99 0 0 1 0-2.82l3.18-3.18a2 2 0 1 1 2.83 2.83l-1.06 1.06a1 1 0 0 0 1.41 1.41l1.06-1.06a4 4 0 0 0-5.66-5.66l-3.18 3.18a4 4 0 0 0 0 5.66 1 1 0 0 0 1.42-1.42Zm2.82-2.82a1.99 1.99 0 0 1 0 2.82l-3.18 3.18a2 2 0 1 1-2.83-2.83l1.06-1.06a1 1 0 1 0-1.41-1.41l-1.06 1.06a4 4 0 0 0 5.66 5.66l3.18-3.18a4 4 0 0 0 0-5.66 1 1 0 0 0-1.42 1.42Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M10.59 13.41a1.99 1.99 0 0 1 0-2.82l3.18-3.18a2 2 0 1 1 2.83 2.83l-1.06 1.06a1 1 0 0 0 1.41 1.41l1.06-1.06a4 4 0 0 0-5.66-5.66l-3.18 3.18a4 4 0 0 0 0 5.66 1 1 0 0 0 1.42-1.42Zm2.82-2.82a1.99 1.99 0 0 1 0 2.82l-3.18 3.18a2 2 0 1 1-2.83-2.83l1.06-1.06a1 1 0 1 0-1.41-1.41l-1.06 1.06a4 4 0 0 0 5.66 5.66l3.18-3.18a4 4 0 0 0 0-5.66 1 1 0 0 0-1.42 1.42Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

#blog-content .dynamic-products.dy-embedded-products {
	display:none;
}
@media (max-width: 575.98px) {
  .recepten-shop__inner {
    padding: 1rem;
  }

  .recepten-shop__item {
    grid-template-columns: auto 54px minmax(0, 1fr);
    grid-template-areas:
      'check image meta'
      'check qty price';
  }

  .recepten-shop__check {
    grid-area: check;
    align-self: start;
    margin-top: 0.35rem;
  }

  .recepten-shop__image {
    grid-area: image;
    width: 54px;
    height: 54px;
  }

  .recepten-shop__meta {
    grid-area: meta;
  }

  .recepten-shop__qty {
    grid-area: qty;
    justify-self: start;
  }

  .recepten-shop__price {
    grid-area: price;
    align-self: center;
  }

  .recepten-shop__cta {
    max-width: none;
    flex-basis: 100%;
  }

  .recepten-shop__share {
    justify-content: flex-start;
  }
}
