/* Shop – Aemisegger */

.shop-icon-btn {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: #fffdf8;
  color: #6f6a60;
  line-height: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(44, 40, 34, .08);
}

.shop-icon-btn i,
.shop-icon-btn .las,
.shop-wish i,
.mini-cart__close i,
.mini-cart__remove i {
  display: block;
  width: 1em;
  height: 1em;
  font-size: 16px;
  line-height: 1;
  speak: never;
}

.shop-icon-btn i::before,
.shop-wish i::before,
.mini-cart__close i::before,
.mini-cart__remove i::before {
  display: block;
  line-height: 1;
}

.shop-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.shop-cart-link i {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.shop-cart-link b {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #d4b853;
  color: #2c2822;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.shop-page {
  background:
    radial-gradient(1200px 420px at 8% -8%, rgba(212, 184, 83, .16), transparent 58%),
    #f6f1e6;
  color: #575756;
}

.shop-kicker {
  margin: 0 0 8px;
  color: #d4b853;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.shop-hero {
  min-height: 400px;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(44, 40, 34, .8) 0%, rgba(44, 40, 34, .3) 72%),
    url("/documents/header-image/1800_aemisegger_weinfelden_kosmetik_natur_seife-1.jpg") center/cover;
}

.shop-hero__inner {
  padding-top: 80px;
  padding-bottom: 56px;
  max-width: 680px;
}

.shop-hero .shop-kicker { color: #f3e7b8; }

.shop-hero .h1 {
  color: #f3e7b8;
  margin: 0 0 14px;
}

.shop-hero p {
  margin: 0;
  color: #fff;
  line-height: 1.65;
}

.shop-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -32px;
  position: relative;
  z-index: 2;
}

.shop-trust article {
  min-height: 118px;
  padding: 20px 18px;
  background: #fffdf8;
  border-radius: 4px 28px 4px 4px;
  box-shadow: 0 16px 40px rgba(44, 40, 34, .08);
}

.shop-trust b {
  display: block;
  margin-bottom: 8px;
  font-family: Alice, serif;
  font-size: 20px;
  line-height: 1.2;
  color: #d4b853;
}

.shop-trust span {
  display: block;
  font-size: 14px;
  line-height: 1.45;
}

.shop-section {
  padding-top: 64px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 36px;
  padding-top: 56px;
  padding-bottom: 88px;
}

.shop-side {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 22px 20px 18px;
  background: #fffdf8;
  border-radius: 4px 28px 4px 4px;
}

.shop-side .h2 {
  margin-bottom: 4px;
}

.shop-side a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #efe8d8;
  color: #575756;
  text-decoration: none;
  line-height: 1.3;
}

.shop-side a:last-of-type { border-bottom: 0; }

.shop-side a.is-on {
  color: #c4a43a;
  font-weight: 700;
}

.shop-side small {
  color: #9a9386;
  font-size: 12px;
}

.shop-search {
  width: 100%;
  margin: 14px 0 12px;
  padding: 11px 12px;
  border: 1px solid #e4dcc8;
  background: #fff;
  line-height: 1.3;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}

.shop-toolbar .h2 { margin: 0; }

.shop-toolbar select {
  height: 42px;
  padding: 0 12px;
  border: 1px solid #e4dcc8;
  background: #fff;
  color: #575756;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.shop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fffdf8;
  border-radius: 4px 32px 4px 4px;
  box-shadow: 0 10px 28px rgba(44, 40, 34, .05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(44, 40, 34, .1);
}

.shop-card__image {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #efe8d8;
}

.shop-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.shop-card:hover .shop-card__image img { transform: scale(1.04); }

.shop-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 18px 18px 20px;
}

.shop-card__body h3 {
  min-height: 2.5em;
  font-family: Alice, serif;
  font-size: 22px;
  line-height: 1.25;
  color: #2c2822;
}

.shop-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.shop-card__body .small {
  display: -webkit-box;
  overflow: hidden;
  min-height: 3.2em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.shop-price {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #2c2822;
  line-height: 1.2;
}

.shop-price s {
  margin-right: 8px;
  color: #9a9386;
  font-weight: 400;
}

.shop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 9px;
  background: #d4b853;
  color: #2c2822;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.shop-badge.is-static {
  position: static;
  display: inline-block;
  margin-bottom: 10px;
}

.shop-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 248, .96);
  color: #8a8478;
  line-height: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(44, 40, 34, .1);
}

.shop-wish.is-on { color: #c45c5c; }

.shop-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.shop-card .shop-actions .button {
  width: 100%;
  text-align: center;
}

.shop-buy .shop-actions {
  align-items: center;
}

.shop-buy .shop-actions .button {
  width: auto;
}

.shop-page .button--ghost,
.mini-cart .button--ghost {
  background: transparent !important;
  color: #2c2822 !important;
  border: 1px solid #d4b853 !important;
}

.shop-detail {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding: 36px 0 28px;
}

.shop-crumb {
  padding-top: 28px;
  font-size: 13px;
  color: #8a8478;
}

.shop-crumb a { color: #8a8478; }

.shop-detail__image {
  overflow: hidden;
  background: #fffdf8;
  border-radius: 4px 40px 4px 4px;
}

.shop-detail__image img {
  display: block;
  width: 100%;
}

.shop-buy .h1 { margin: 0 0 12px; }

.shop-buy .shop-price { font-size: 22px; margin: 0 0 16px; }

.shop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 22px;
  font-size: 13px;
  color: #8a8478;
}

.shop-stepper {
  display: inline-flex;
  align-items: stretch;
  height: 42px;
  overflow: hidden;
  border: 1px solid #e4dcc8;
  background: #fff;
}

.shop-stepper button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2c2822;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.shop-stepper button:disabled { opacity: .35; cursor: default; }

.shop-stepper span {
  display: grid;
  place-items: center;
  min-width: 36px;
  font-weight: 700;
  line-height: 1;
}

.shop-cross { padding: 20px 0 88px; }

.shop-cart-page { padding-top: 40px; padding-bottom: 88px; }

.shop-cart-list { display: grid; gap: 14px; }

.shop-cart-item {
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: #fffdf8;
  border-radius: 4px 24px 4px 4px;
}

.shop-cart-item img {
  width: 104px;
  height: 124px;
  object-fit: cover;
}

.shop-cart-item a {
  color: #2c2822;
  font-family: Alice, serif;
  font-size: 22px;
  text-decoration: none;
}

.shop-cart-item__price {
  text-align: right;
}

.shop-summary,
.shop-box {
  padding: 26px;
  background: #fffdf8;
  border-radius: 4px 28px 4px 4px;
}

.shop-summary {
  position: sticky;
  top: 24px;
}

.shop-summary h2,
.shop-box h2 {
  margin: 0 0 16px;
  font-family: Alice, serif;
  font-size: 28px;
  color: #d4b853;
}

.shop-summary p,
.mini-cart__totals p {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin: 10px 0;
}

.shop-summary .is-total,
.mini-cart__totals .is-total {
  padding-top: 8px;
  border-top: 1px solid #efe8d8;
  font-size: 18px;
}

.shop-checkout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  padding-top: 40px;
  padding-bottom: 88px;
}

.shop-box + .shop-box { margin-top: 18px; }

.shop-choice { display: grid; gap: 10px; }

.shop-choice label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid #efe8d8;
  cursor: pointer;
}

.shop-choice label.is-on {
  border-color: #d4b853;
  background: #fbf6e8;
}

.shop-form { display: grid; gap: 12px; }

.shop-form input,
.shop-form textarea,
.shop-coupon input {
  width: 100%;
  height: 44px;
  padding: 0 13px;
  border: 1px solid #e4dcc8;
  background: #fff;
  line-height: 1.3;
}

.shop-form textarea { height: auto; padding: 12px 13px; }

.shop-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shop-coupon {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  margin: 4px 0 14px;
}

.shop-coupon .button {
  height: 44px;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 1;
}

.shop-coupon__ok {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 14px;
  padding: 8px 8px 8px 12px;
  background: #f3ead2;
  color: #2c2822;
  font-size: 13px;
  font-weight: 700;
}

.shop-coupon__error {
  grid-column: 1 / -1;
  margin: 0;
  color: #931c1c;
  font-size: 13px;
}

.shop-shipbar { margin: 0 0 16px; }

.shop-shipbar span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.shop-shipbar__track {
  display: block;
  height: 4px;
  overflow: hidden;
  background: #efe8d8;
}

.shop-shipbar__fill {
  display: block;
  height: 100%;
  background: #d4b853;
}

.shop-success { padding: 48px 0 88px; }

.shop-success .h1 { color: #d4b853; }

.shop-success__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin: 22px 0 36px;
}

.shop-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #2c2822;
}

.shop-form-error { margin: 12px 0 0; color: #931c1c; }

.shop-check {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 400 !important;
}

.shop-check input { width: 18px; height: 18px; margin-top: 3px; }

.shop-checkout-login {
  margin: 0 0 16px;
  padding: 12px 14px;
  background: #fbf6e8;
  border: 1px solid #efe8d8;
}

.shop-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 22px;
}

.shop-steps [role="listitem"] {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 14px;
  background: #fffdf8;
  border: 1px solid #efe8d8;
  color: #8a8478;
  letter-spacing: 0;
}

.shop-steps [role="listitem"].is-on,
.shop-steps [role="listitem"].is-done {
  border-color: #d4b853;
  color: #2c2822;
}

.shop-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #efe8d8;
  color: #2c2822;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.shop-steps [role="listitem"].is-on .shop-steps__num,
.shop-steps [role="listitem"].is-done .shop-steps__num {
  background: #d4b853;
}

.shop-steps__label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.shop-step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.shop-step-nav .button { margin: 0; }

.shop-summary-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.shop-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 10px;
  font-size: 14px;
}

.shop-status {
  display: inline-block;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: #efe8d8;
  color: #2c2822;
}

.shop-status.is-ok { background: #e4efd8; }
.shop-status.is-warn { background: #f3ead2; }
.shop-status.is-info { background: #e8eef3; }
.shop-status.is-bad { background: #f3e0e0; color: #931c1c; }

.shop-receipt {
  margin-top: 8px;
  padding: 28px;
  background: #fffdf8;
  border: 1px solid #efe8d8;
}

.shop-receipt__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 2px solid #d4b853;
}

.shop-receipt__head h2 {
  margin: 6px 0 4px;
  font-family: Alice, serif;
  font-size: 28px;
  color: #2c2822;
}

.shop-receipt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}

.shop-receipt__grid h3 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.shop-receipt__table {
  width: 100%;
  margin: 0 0 18px;
  border-collapse: collapse;
}

.shop-receipt__table th,
.shop-receipt__table td {
  padding: 10px 0;
  border-bottom: 1px solid #efe8d8;
  text-align: left;
  vertical-align: top;
}

.shop-receipt__table th:not(:first-child),
.shop-receipt__table td:not(:first-child) { text-align: right; }

.shop-receipt__table small {
  display: block;
  color: #8a8478;
  font-size: 12px;
}

.shop-receipt__totals {
  max-width: 280px;
  margin-left: auto;
}

.shop-receipt__totals p,
.shop-summary p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.shop-receipt__note {
  margin-top: 18px;
  padding: 12px 14px;
  background: #fbf6e8;
}

.shop-receipt__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 22px;
}

.account-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 40px 0 88px;
}

.account-nav h2 {
  margin: 0 0 16px;
  font-family: Alice, serif;
  font-size: 26px;
}

.account-nav nav {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.account-nav a {
  display: block;
  padding: 10px 12px;
  color: #2c2822;
  text-decoration: none;
  border: 1px solid transparent;
}

.account-nav a.is-on {
  background: #fbf6e8;
  border-color: #d4b853;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.account-stats b {
  display: block;
  font-family: Alice, serif;
  font-size: 28px;
  color: #d4b853;
}

.account-orders {
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-orders li + li { margin-top: 10px; }

.account-orders a {
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  background: #fffdf8;
  border: 1px solid #efe8d8;
  color: inherit;
  text-decoration: none;
}

.shop-legal { padding: 48px 0 88px; max-width: 760px; }

.shop-legal h2 {
  margin: 28px 0 10px;
  font-family: Alice, serif;
  font-size: 22px;
  color: #2c2822;
}

button.link {
  padding: 0;
  border: 0;
  background: none;
  color: #d9b83b;
  font: inherit;
  cursor: pointer;
}

.shop-docs { padding: 48px 0 80px; }

.shop-docs pre {
  overflow: auto;
  padding: 16px;
  background: #2c2822;
  color: #f7f3ea;
  font-size: 13px;
}

.shop-docs table { width: 100%; background: #fff; margin: 16px 0 28px; }

.shop-docs td,
.shop-docs th {
  padding: 10px 12px;
  border-bottom: 1px solid #eee8da;
  text-align: left;
}

.mini-cart { position: fixed; inset: 0; z-index: 80; }

.mini-cart__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(44, 40, 34, .45);
}

.mini-cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(400px, 100%);
  height: 100%;
  padding: 22px 22px 28px;
  overflow: auto;
  background: #fffdf8;
  box-shadow: -18px 0 50px rgba(44, 40, 34, .18);
}

.mini-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.mini-cart__head h2 {
  margin: 0;
  font-family: Alice, serif;
  font-size: 28px;
  line-height: 1.15;
  color: #2c2822;
}

.mini-cart__close,
.mini-cart__remove {
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f3eee3;
  color: #6f6a60;
  line-height: 0;
  cursor: pointer;
}

.mini-cart__flash {
  margin: 0 0 14px;
  padding: 10px 12px;
  background: #f3ead2;
  color: #2c2822;
  font-size: 14px;
  line-height: 1.4;
}

.mini-cart__list {
  display: grid;
  gap: 16px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.mini-cart__list li {
  display: grid;
  grid-template-columns: 72px 1fr 36px;
  gap: 12px;
  align-items: start;
}

.mini-cart__list img {
  width: 72px;
  height: 88px;
  object-fit: cover;
}

.mini-cart__list a {
  color: #2c2822;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.3;
}

.mini-cart__list p {
  margin: 6px 0 8px;
  font-size: 13px;
  color: #8a8478;
}

.mini-cart__empty {
  padding: 48px 0;
  text-align: center;
}

.mini-cart__empty p { margin-bottom: 16px; }

.mini-cart__actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.mini-cart__actions .button,
.mini-cart__actions .link {
  text-align: center;
}

.cms-team-section { margin-bottom: 36px; }

@media (max-width: 980px) {
  .shop-trust,
  .shop-grid,
  .shop-layout,
  .shop-detail,
  .shop-checkout,
  .shop-form .row,
  .shop-cart-item,
  .shop-receipt__grid,
  .account-shell,
  .account-stats,
  .account-orders a,
  .shop-steps {
    grid-template-columns: 1fr;
  }

  .shop-cart-link span { display: none; }

  .shop-side { position: static; }

  .shop-card__body h3 { min-height: 0; }

  .shop-keydesk__grid,
  .shop-keydesk__reveal label {
    grid-template-columns: 1fr;
  }
}

.shop-keydesk { margin: 18px 0 8px; }

.shop-keydesk__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.shop-keydesk h3 {
  margin: 0 0 8px;
  font-family: Alice, serif;
  font-size: 24px;
  color: #2c2822;
}

.shop-keydesk__reveal {
  margin-top: 18px;
  padding: 22px;
  background: #fff6d8;
  border: 1px solid #d4b853;
}

.shop-keydesk__reveal label {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 12px 0;
  font-weight: 700;
}

.shop-keydesk__reveal input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #e4dcc8;
  background: #fff;
  font-family: ui-monospace, monospace;
}

.shop-keydesk__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.shop-keydesk__list li {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid #efe8d8;
}

.shop-keydesk__list small { color: #8a8478; }
