/* =========================================================
   Base / Utilities
   ========================================================= */

[hidden] {
  display: none !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.aa-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.aa-container {
  width: min(100% - 2rem, 1240px);
  margin-inline: auto;
}

.aa-main {
  padding-block: 1rem 0;
}

.aa-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.aa-skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 10050;
  background: #ffffff;
  color: #0f172a;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   Global buttons
   ========================================================= */

.aa-button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 12px;
  min-height: 46px;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.aa-button--primary {
  background: var(--shop-color-red, #b51b26);
  color: #fff;
}

.aa-button--secondary {
  background: #fff;
  color: #0f172a;
  border-color: #cbd5e1;
}

.aa-button--full {
  width: 100%;
}

/* =========================================================
   Top iframe cart bar
   ========================================================= */

#warenkorbiframe {
  display: block;
  width: 100%;
  height: 55px;
  border: 0;
  background: transparent;
}

/* =========================================================
   Header / Navigation
   ========================================================= */

.aa-topbar {
  background: var(--shop-color-gold, #ae8648);
  color: #fff;
}

.aa-topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--shop-color-gold, #ae8648);
}

.aa-topbar__phone {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.aa-topbar__social {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-left: auto;
}

.aa-topbar__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.aa-topbar__social-link svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.aa-topbar__social-link:hover {
  opacity: 0.85;
}

.aa-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.aa-site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 96px;
  padding-block: 0.75rem;
}

.aa-logo {
  display: block;
  max-width: 185px;
  width: 100%;
  height: auto;
}

.aa-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.aa-header-button {
  min-height: 44px;
  border: 1px solid var(--shop-color-gold, #ae8648);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  background: #fff;
  color: var(--shop-color-red, #b51b26);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   Search
   ========================================================= */

.aa-search-wrap {
  width: 100%;
  max-width: 650px;
  position: relative;
  z-index: 10020;
}

.aa-search {
  position: relative;
  width: 100%;
}

.search-input,
.aa-search__input {
  width: 100%;
  min-height: 46px;
  padding: 16px 18px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #ffffff;
  font-size: 16px;
  outline: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus,
.aa-search__input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

.dropdown,
.aa-search__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  max-width: 650px;
  display: none;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  z-index: 10021;
}

.dropdown.visible,
.aa-search__dropdown.visible {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  color: inherit;
  background: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s ease;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item.active {
  background: #eff6ff;
}

.dropdown-title {
  font-size: 15px;
  font-weight: 400;
  color: #111827;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-state {
  padding: 14px 16px;
  font-size: 14px;
  color: #6b7280;
}

.dropdown-state.error {
  color: #b91c1c;
}

/* =========================================================
   Navigation lists
   ========================================================= */

.aa-site-nav {
  border-top: 1px solid #ede7db;
}

.aa-site-nav__inner {
  display: grid;
  gap: 0.5rem;
  padding-block: 0.65rem 1rem;
}

.aa-utility-nav,
.aa-primary-nav,
.aa-sub-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aa-utility-nav,
.aa-primary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.aa-utility-nav a {
  color: var(--shop-color-gold, #ae8648);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
}

.aa-primary-nav > li > a {
  color: var(--shop-color-red, #b51b26);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
}

.aa-has-children {
  position: relative;
}

/*
.aa-sub-nav {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 0.35rem);
  min-width: 220px;
  background: #fff;
  border: 1px solid #eadfcf;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  z-index: 20;
}
*/

.aa-sub-nav {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background: #fff;
  border: 1px solid #eadfcf;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  padding: .5rem 0;
  z-index: 2000;
}

.aa-has-children:hover .aa-sub-nav,
.aa-has-children:focus-within .aa-sub-nav {
  display: block;
}

.aa-sub-nav a {
  display: block;
  padding: 0.55rem 0.9rem;
  color: #7c5b24;
  text-decoration: none;
}

.aa-sub-nav a:hover {
  background: #f9f4eb;
}

/* =========================================================
   Product tabs / content
   ========================================================= */

.aa-tab-content-inner {
  padding: 25px;
}

.aa-product-content h2,
.aa-tab-content-inner h2 {
  color: var(--shop-color-red, #b51b26);
}


/* =========================================================
   Recommendations (4 columns desktop)
   ========================================================= */

.aa-recommendations {
  padding-block: 32px 12px;
}

.aa-section-header {
  margin-bottom: 20px;
}

.aa-section-title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #0f172a;
}

.aa-recommendations__grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.aa-recommendation-card {
  display: flex !important;
  flex-direction: column !important;
  width: auto !important;
  min-width: 0 !important;
  height: 100% !important;
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.aa-recommendation-card__image-link {
  display: block;
}

.aa-recommendation-card__image-link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.aa-recommendation-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  flex: 1 1 auto;
}

.aa-recommendation-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.aa-recommendation-card__title a {
  color: #0f172a;
  text-decoration: none;
}

.aa-recommendation-card__price {
  margin-top: auto;
}

.aa-recommendation-card__meta,
.aa-recommendation-card__sku {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}

/* =========================================================
   Footer
   ========================================================= */

.aa-footer-newsletter {
  position: relative;
  margin-top: 56px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.aa-footer-newsletter__overlay {
  width: 100%;
  padding: 56px 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.46) 0%, rgba(0,0,0,0.20) 55%, rgba(0,0,0,0.08) 100%);
}

.aa-footer-newsletter__box {
  max-width: 620px;
  color: #fff;
}

.aa-footer-newsletter__box h3 {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
}

.aa-footer-newsletter__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.aa-footer {
  position: relative;
  background: #29292c;
  color: #fff;
  overflow: hidden;
}

.aa-footer__inner {
  position: relative;
  z-index: 2;
  padding: 70px 0 36px;
}

.aa-footer__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.aa-footer__col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.05rem;
}

.aa-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aa-footer__col li + li {
  margin-top: 8px;
}

.aa-footer__col a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.aa-footer__col p {
  margin: 0 0 8px;
  line-height: 1.7;
}

.aa-footer__spice {
  position: absolute;
  right: 0;
  bottom: 88px;
  width: min(520px, 45vw);
  height: 220px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}

.aa-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  background: #29292c;
}

.aa-footer__bottom-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  padding-block: 18px;
}

.aa-footer__bottom a {
  color: #fff;
}

.aa-footer__payments img {
  display: block;
  max-width: 330px;
  width: 100%;
  height: auto;
}

/* =========================================================
   Warenkorb Info (center only as short confirmation)
   ========================================================= */

#overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9998 !important;
  background: rgba(0, 0, 0, 0.5) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .24s ease, visibility .24s ease !important;
}

#overlay.show {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

#drawer.aa-cart-confirmation-modal {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: min(520px, calc(100vw - 32px)) !important;
  max-width: 520px !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 9999 !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 20px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28) !important;
  transform: translate(-50%, -50%) scale(0.96) !important;
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease !important;
  visibility: hidden !important;
  opacity: 0 !important;
  overflow: hidden !important;
}

#drawer.aa-cart-confirmation-modal.open,
#drawer.aa-cart-confirmation-modal[aria-hidden="false"] {
  transform: translate(-50%, -50%) scale(1) !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#drawer.aa-cart-confirmation-modal[aria-hidden="true"] {
  transform: translate(-50%, -50%) scale(0.96) !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

#drawer.aa-cart-confirmation-modal .close {
  position: absolute !important;
  top: 12px !important;
  right: 14px !important;
  z-index: 2 !important;
  border: 0 !important;
  background: transparent !important;
  font-size: 1.8rem !important;
  line-height: 1 !important;
  cursor: pointer !important;
  color: #64748b !important;
}

.aa-cart-confirmation__inner {
  padding: 30px 24px 24px;
  display: grid;
  gap: 14px;
  text-align: center;
}

.aa-cart-confirmation__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #dcfce7;
  color: #15803d;
  font-size: 1.6rem;
  font-weight: 700;
}

.aa-cart-confirmation__title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #0f172a;
}

.aa-cart-confirmation__text {
  margin: 0;
  color: #475569;
  line-height: 1.5;
}

.aa-cart-confirmation__actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.aa-cart-confirmation__actions .aa-button {
  width: 100%;
  text-align: center;
  justify-content: center;
}

body.no-scroll {
  overflow: hidden;
}

@media (max-width: 640px) {
  #drawer.aa-cart-confirmation-modal {
    width: calc(100vw - 24px) !important;
  }

  .aa-cart-confirmation__inner {
    padding: 24px 18px 18px;
  }
}







/* =========================================================
   Full cart page (article 2)
   ========================================================= */

.aa-cart-page {
  padding-block: 24px 48px;
}

.aa-cart-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.aa-cart-step {
  appearance: none;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #475569;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}

.aa-cart-step--active {
  background: var(--shop-color-red, #b51b26);
  border-color: var(--shop-color-red, #b51b26);
  color: #fff;
}

.aa-cart-list {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.aa-cart-list__head {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 120px 140px 140px;
  gap: 16px;
  padding: 16px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 700;
  color: #475569;
}

.aa-cart-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 120px 140px 140px;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.aa-cart-item:last-of-type {
  border-bottom: 0;
}

.aa-cart-item__image img {
  width: 100%;
  max-width: 120px;
  border-radius: 12px;
  display: block;
}

.aa-cart-item__caption {
  margin: 0 0 6px;
  font-size: 0.85rem;
  color: #64748b;
}

.aa-cart-item__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #0f172a;
}

.aa-cart-item__meta,
.aa-cart-item__services p {
  margin: 0 0 8px;
  color: #475569;
  font-size: 0.95rem;
}

.aa-cart-qty-input {
  width: 90px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
}

.aa-cart-item__price,
.aa-cart-item__sum {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #0f172a;
}

.aa-cart-item__label {
  font-size: 0.82rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.aa-cart-item__unit {
  color: #64748b;
  font-size: 0.9rem;
}

.aa-cart-summary {
  padding: 20px;
  background: #fcfcfd;
  border-top: 1px solid #e5e7eb;
}

.aa-cart-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  color: #0f172a;
}

.aa-cart-summary__row--total {
  font-size: 1.1rem;
  font-weight: 700;
  padding-top: 16px;
}

.aa-cart-summary__hint {
  margin: 12px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.aa-cart-summary__shipping {
  margin-top: 8px;
  text-align: right;
}

.aa-cart-summary__shipping a {
  color: var(--shop-color-red, #b51b26);
  text-decoration: underline;
}

.aa-cart-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  padding: 20px;
  border-top: 1px solid #e5e7eb;
}

.aa-cart-actions__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aa-cart-actions__note {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
}

.aa-cart-empty {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.aa-cart-empty__actions {
  margin-bottom: 16px;
}

.aa-cart-empty__title {
  margin: 0 0 10px;
}

.aa-cart-empty__text {
  margin: 0;
  color: #475569;
}

/* =========================================================
   Checkout: address + payment
   ========================================================= */

.aa-checkout-page {
  padding-block: 24px 48px;
}

.aa-checkout-form {
  display: grid;
  gap: 24px;
}

.aa-checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aa-checkout-step {
  appearance: none;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #475569;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}

.aa-checkout-step--active {
  background: var(--shop-color-red, #b51b26);
  border-color: var(--shop-color-red, #b51b26);
  color: #fff;
}

.aa-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
}

.aa-checkout-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.aa-checkout-card__header {
  padding: 22px 22px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.aa-checkout-card__header h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.aa-checkout-card__header p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

.aa-checkout-card--form {
  grid-column: 1;
  padding-bottom: 22px;
}

.aa-checkout-card--payment {
  grid-column: 2;
  position: sticky;
  top: 90px;
}

.aa-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
}

.aa-form-field {
  display: grid;
  gap: 8px;
}

.aa-form-field--full {
  grid-column: 1 / -1;
}

.aa-form-field--zip {
  max-width: 180px;
}

.aa-form-field label {
  font-weight: 700;
  color: #334155;
}

.aa-input,
.aa-select {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font: inherit;
}

.aa-input:focus,
.aa-select:focus {
  outline: 0;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.aa-input:required:invalid {
  border: 1px solid #e2001a;
}

.aa-input:required:valid {
  border: 1px solid #759f4c;
}

.mandatory {
  color: var(--shop-color-red, #b51b26);
}

.aa-payment-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}

.aa-payment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 22px 22px;
}

.aa-payment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f8fafc;
  cursor: pointer;
  width: 100%;
}

.aa-payment-option input {
  margin-top: 3px;
}

.aa-payment-option span {
  display: block;
  width: 100%;
  color: #0f172a;
  font-weight: 600;
}

.aa-checkout-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* =========================================================
   Lightbox safeguard
   ========================================================= */

.aa-lightbox[hidden] {
  display: none !important;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1200px) {
  .aa-recommendations__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .aa-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .aa-site-header__inner {
    grid-template-columns: 1fr;
  }

  .aa-header-actions {
    justify-content: space-between;
  }

  .aa-site-nav {
    display: none;
  }

  .aa-site-header.is-nav-open .aa-site-nav {
    display: block;
  }

  .aa-utility-nav,
  .aa-primary-nav {
    flex-direction: column;
    gap: 0.35rem;
  }

  .aa-sub-nav {
    position: static;
    display: block;
    border: 0;
    box-shadow: none;
    padding-left: 0.75rem;
  }

  .aa-recommendations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .aa-cart-list__head {
    display: none;
  }

  .aa-cart-item {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .aa-cart-item__qty,
  .aa-cart-item__price,
  .aa-cart-item__sum {
    grid-column: 2;
  }

  .aa-cart-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .aa-cart-actions__right {
    width: 100%;
  }

  .aa-cart-actions__right .aa-button {
    width: 100%;
  }

  .aa-checkout-grid {
    grid-template-columns: 1fr;
  }

  .aa-checkout-card--form,
  .aa-checkout-card--payment {
    grid-column: auto;
  }

  .aa-checkout-card--payment {
    position: static;
  }

  .aa-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aa-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .aa-form-grid {
    grid-template-columns: 1fr;
  }

  .aa-form-field--zip {
    max-width: none;
  }

  .aa-checkout-actions {
    flex-direction: column;
  }

  .aa-checkout-actions .aa-button {
    width: 100%;
  }

  .aa-checkout-steps,
  .aa-cart-steps {
    flex-direction: column;
  }

  .aa-checkout-step,
  .aa-cart-step {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .aa-recommendations__grid {
    grid-template-columns: 1fr !important;
  }

  .aa-cart-item {
    grid-template-columns: 1fr;
  }

  .aa-cart-item__image img {
    max-width: 100%;
  }

  .aa-cart-item__qty,
  .aa-cart-item__price,
  .aa-cart-item__sum {
    grid-column: auto;
  }

  #drawer.aa-cart-confirmation {
    top: 65px !important;
    right: 12px !important;
    width: calc(100vw - 24px) !important;
  }

  .aa-footer-newsletter {
    min-height: 320px;
  }

  .aa-footer-newsletter__box h3 {
    font-size: 1.55rem;
  }

  .aa-footer__grid {
    grid-template-columns: 1fr;
  }

  .aa-footer__spice {
    width: 70vw;
    height: 140px;
  }
}




/* =========================================================
   Lieferung
   ========================================================= */


.aa-delivery-list {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.aa-delivery-option {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 26px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f8fafc;
  cursor: pointer;
}

.aa-delivery-option input {
  margin-top: 4px;
}

.aa-delivery-option__content {
  min-width: 0;
}

.aa-delivery-option__media {
  margin-bottom: 10px;
}

.aa-delivery-option__media img {
  display: block;
  max-width: 90px;
  height: auto;
}

.aa-delivery-option__title {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.35;
}

.aa-delivery-option__text {
  margin: 0;
  color: #475569;
  line-height: 1.5;
  font-size: 0.95rem;
}

.aa-delivery-info {
  padding: 22px;
  display: grid;
  gap: 12px;
  color: #475569;
  line-height: 1.6;
}

.aa-delivery-info p {
  margin: 0;
}




/* =========================================================
   Promotion Code
   ========================================================= */

.aa-promo-card {
  max-width: 760px;
}

.aa-promo-card__body {
  padding: 22px;
}




/* =========================================================
   Zusammenfassung
   ========================================================= */


.aa-checkout-grid--summary {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.aa-summary-address,
.aa-summary-meta,
.aa-summary-totals__body {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.aa-summary-address__row,
.aa-summary-totals__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #eef2f7;
}

.aa-summary-address__row:last-child,
.aa-summary-totals__row:last-child {
  border-bottom: 0;
}

.aa-summary-address__row span,
.aa-summary-totals__row span {
  color: #64748b;
}

.aa-summary-meta__group + .aa-summary-meta__group {
  padding-top: 12px;
  border-top: 1px solid #eef2f7;
}

.aa-summary-meta__group h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.aa-summary-meta__group p {
  margin: 0 0 6px;
  color: #475569;
}

.aa-summary-cart-list {
  display: grid;
  gap: 0;
}

.aa-summary-cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 100px 140px 140px;
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  border-top: 1px solid #e5e7eb;
}

.aa-summary-cart-item:first-child {
  border-top: 0;
}

.aa-summary-cart-item__image img {
  width: 100%;
  max-width: 96px;
  border-radius: 12px;
  display: block;
}

.aa-summary-cart-item__body h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.aa-summary-cart-item__services p {
  margin: 0 0 8px;
  color: #475569;
  font-size: 0.92rem;
}

.aa-summary-cart-item__qty,
.aa-summary-cart-item__price,
.aa-summary-cart-item__sum {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aa-summary-cart-item__qty span,
.aa-summary-cart-item__price span,
.aa-summary-cart-item__sum span {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.aa-summary-totals__row--total {
  font-size: 1.08rem;
  font-weight: 700;
}

.aa-summary-finish {
  margin-top: 24px;
  padding: 22px;
}

.aa-summary-finish__terms {
  margin-bottom: 18px;
}

.aa-summary-finish__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
  color: #334155;
}

.aa-summary-finish__checkbox input {
  margin-top: 4px;
}

.aa-summary-finish__checkbox a {
  font-weight: 700;
}

.aa-summary-finish__form {
  margin: 0;
}

@media (max-width: 980px) {
  .aa-checkout-grid--summary {
    grid-template-columns: 1fr;
  }

  .aa-summary-cart-item {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .aa-summary-cart-item__qty,
  .aa-summary-cart-item__price,
  .aa-summary-cart-item__sum {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .aa-summary-address__row,
  .aa-summary-totals__row {
    flex-direction: column;
    gap: 4px;
  }

  .aa-summary-cart-item {
    grid-template-columns: 1fr;
  }

  .aa-summary-cart-item__image img {
    max-width: 100%;
  }

  .aa-summary-cart-item__qty,
  .aa-summary-cart-item__price,
  .aa-summary-cart-item__sum {
    grid-column: auto;
  }

  .aa-summary-finish__checkbox {
    flex-direction: row;
  }
}




/* =========================================================
   Bestellung erfolgreich
   ========================================================= */


.aa-success-card {
  max-width: 760px;
  margin: 32px auto 0;
}

.aa-success-card__inner {
  padding: 40px 28px;
  display: grid;
  gap: 16px;
  text-align: center;
}

.aa-success-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #dcfce7;
  color: #15803d;
  font-size: 2rem;
  font-weight: 700;
}

.aa-success-card__title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
  color: #0f172a;
}

.aa-success-card__subtitle {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--shop-color-red, #b51b26);
}

.aa-success-card__text {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.aa-success-card__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .aa-success-card__inner {
    padding: 28px 18px;
  }

  .aa-success-card__title {
    font-size: 1.6rem;
  }

  .aa-success-card__subtitle {
    font-size: 1.1rem;
  }

  .aa-success-card__actions {
    flex-direction: column;
  }

  .aa-success-card__actions .aa-button {
    width: 100%;
  }
}





/* =========================================================
   Produkte Kategorie Teaser
   ========================================================= */

.aa-product-teasers {
  padding-block: 24px 36px;
}

.aa-product-teasers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.aa-product-teaser-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.aa-product-teaser-card__image-link {
  display: block;
}

.aa-product-teaser-card__image-link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.aa-product-teaser-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  flex: 1 1 auto;
}

.aa-product-teaser-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  color: #0f172a;
}

.aa-product-teaser-card__title a {
  color: inherit;
  text-decoration: none;
}



/* ==========   Schriftgröße Preise ===================================== */

.aa-product-teaser-card__price {
  position: static;
  font-size: 150%;
}

.aa-product-teaser-card__price .js-coupon-price,
.aa-product-teaser-card__price .js-coupon-price * {
  font-size: 1em !important;
}

.aa-product-teaser-card__meta {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: #64748b;
}




.js-coupon-box {
  position: static;
}

.product-hero-frame,
.teaser-image-link,
.aa-product-teaser-card__image-link {
  position: relative;
}

.offer-bubble,
.aa-product-teaser-card__badge,
.aa-product-teaser-card .onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: var(--shop-color-red, #b51b26);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  line-height: 1.2;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.aa-product-teaser-card__meta {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: #64748b;
}

.aa-product-teaser-card__sku {
  margin: 0;
  font-size: 0.75rem;
  color: #94a3b8;
}

.aa-product-teaser-card__button {
  margin-top: auto;
  width: 100%;
}

.button-mehr {
  color: var(--shop-color-red, #b51b26);
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .aa-product-teasers__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .aa-product-teasers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .aa-product-teasers__grid {
    grid-template-columns: 1fr;
  }
}





/* =========================================================
   Produktempfehlungen
   ========================================================= */


.aa-recommendation-card {
  position: relative;
}

.aa-recommendation-card__price {
  position: static;
}

.aa-recommendation-card .onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: var(--shop-color-red, #b51b26);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  line-height: 1.2;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.aa-recommendation-card__price {
  position: static;
  font-size: 100%;
}

.aa-recommendation-card__price .js-coupon-price,
.aa-recommendation-card__price .js-coupon-price * {
  font-size: 1em !important;
}



/* =========================================================
   Video in Produkte Kategorie
   ========================================================= */

.aa-video-feature {
  padding-block: 24px 36px;
}

.aa-video-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 40vw);
  gap: 16px;
  align-items: stretch;
}

.aa-video-feature__left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 0;
}

.aa-video-feature__top,
.aa-video-feature__text-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.aa-video-feature__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.aa-video-feature__image-tile,
.aa-video-feature__text-tile {
  min-height: 220px;
}

.aa-video-feature__image-tile {
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background-color: var(--shop-color-red, #b51b26);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.aa-video-feature__text-tile {
  background: var(--shop-color-red, #b51b26);
  color: #ffffff;
}

.aa-video-feature__right {
  aspect-ratio: 10 / 7;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #f1f5f9;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.aa-video-feature__video-shell {
  width: 100%;
  height: 100%;
}

.aa-video-feature__video-trigger {
  width: 100%;
  height: 100%;
  border: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  display: grid;
  place-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 24px;
  text-align: center;
}

.aa-video-feature__video-play {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--shop-color-red, #b51b26);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.aa-video-feature__video-label {
  font-weight: 700;
  color: #0f172a;
}

.aa-video-feature__right iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .aa-video-feature__grid {
    grid-template-columns: 1fr;
  }

  .aa-video-feature__right {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 640px) {
  .aa-video-feature__left {
    grid-template-rows: auto auto;
  }

  .aa-video-feature__bottom {
    grid-template-columns: 1fr;
  }

  .aa-video-feature__top,
  .aa-video-feature__text-tile {
    padding: 18px;
  }

  .aa-video-feature__image-tile,
  .aa-video-feature__text-tile {
    min-height: 180px;
  }
}

.aa-video-feature__left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 0;
  max-height: 100%;
}



/* =========================================================
   HTML Textabsatz
   ========================================================= */


.aa-content-section--spaced {
  padding-top: 60px;
  padding-bottom: 15px;




/* =========================================================
   Bannerbid Home
   ========================================================= *

.aa-banner-split-simple {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 0;
  align-items: stretch;
}

.aa-banner-split-simple__image {
  min-height: 340px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.aa-banner-split-simple__text {
  background: var(--shop-color-red, #b51b26);
  color: #ffffff;
  display: flex;
}

.aa-banner-split-simple__text-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  width: 100%;
}

.aa-banner-split-simple__text-inner h1,
.aa-banner-split-simple__text-inner h2,
.aa-banner-split-simple__text-inner h3,
.aa-banner-split-simple__text-inner p,
.aa-banner-split-simple__text-inner a,
.aa-banner-split-simple__text-inner li {
  color: inherit;
}

@media (max-width: 900px) {
  .aa-banner-split-simple {
    grid-template-columns: 1fr;
  }

  .aa-banner-split-simple__image,
  .aa-banner-split-simple__text {
    min-height: 220px;
  }
}
