@charset "UTF-8";
/*!
 * BlechArt.shop - Main SCSS File
 * Kompiliert zu main.css - Basis-Styles für den gesamten Shop mit Darkmode-Support
 */
/*!
 * BlechArt.shop - Design Tokens (SCSS Variables)
 * Basierend auf style-guide/tokens/
 */
/*!
 * BlechArt.shop - SCSS Mixins
 * Wiederverwendbare Mixins für Shop-Komponenten
 */
:root {
  --color-primary: #f59e0b;
  --color-primary-light: #fbbf24;
  --color-primary-dark: #d97706;
  --color-primary-alpha: rgba(245, 158, 11, 0.2);
  --color-secondary: #4ade80;
  --color-accent: #a855f7;
  --color-warning: #fbbf24;
  --color-error: #f87171;
  --color-success: #4ade80;
  --color-info: #60a5fa;
  --color-white: #111827;
  --color-white-pure: #000000;
  --color-white-alpha: rgba(17, 24, 39, 0.95);
  --color-gray-50: #111827;
  --color-gray-100: #1f2937;
  --color-gray-200: #374151;
  --color-gray-300: #4b5563;
  --color-gray-400: #6b7280;
  --color-gray-500: #9ca3af;
  --color-gray-600: #d1d5db;
  --color-gray-700: #e5e7eb;
  --color-gray-800: #f3f4f6;
  --neutral-50: #111827;
  --neutral-100: #1f2937;
  --neutral-200: #374151;
  --neutral-300: #4b5563;
  --neutral-400: #6b7280;
  --neutral-500: #9ca3af;
  --neutral-600: #d1d5db;
  --neutral-700: #e5e7eb;
  --neutral-800: #f3f4f6;
  --neutral-900: #f9fafb;
  --color-text-primary: #f9fafb;
  --color-text-secondary: #d1d5db;
  --color-text-muted: #9ca3af;
  --commerce-price-original: #9ca3af;
  --commerce-price-current: #f87171;
  --commerce-price-discount: #4ade80;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px -1px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
}

:root {
  --color-primary: #f59e0b;
  --color-primary-light: #fbbf24;
  --color-primary-dark: #d97706;
  --color-primary-alpha: rgba(245, 158, 11, 0.2);
  --color-secondary: #4ade80;
  --color-accent: #a855f7;
  --color-warning: #fbbf24;
  --color-error: #f87171;
  --color-success: #4ade80;
  --color-info: #60a5fa;
  --color-white: #111827;
  --color-white-pure: #000000;
  --color-white-alpha: rgba(17, 24, 39, 0.95);
  --color-gray-50: #111827;
  --color-gray-100: #1f2937;
  --color-gray-200: #374151;
  --color-gray-300: #4b5563;
  --color-gray-400: #6b7280;
  --color-gray-500: #9ca3af;
  --color-gray-600: #d1d5db;
  --color-gray-700: #e5e7eb;
  --color-gray-800: #f3f4f6;
  --neutral-50: #111827;
  --neutral-100: #1f2937;
  --neutral-200: #374151;
  --neutral-300: #4b5563;
  --neutral-400: #6b7280;
  --neutral-500: #9ca3af;
  --neutral-600: #d1d5db;
  --neutral-700: #e5e7eb;
  --neutral-800: #f3f4f6;
  --neutral-900: #f9fafb;
  --color-text-primary: #f9fafb;
  --color-text-secondary: #d1d5db;
  --color-text-muted: #9ca3af;
  --commerce-price-original: #9ca3af;
  --commerce-price-current: #f87171;
  --commerce-price-discount: #4ade80;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.4), 0 1px 2px -1px rgb(0 0 0 / 0.4);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.4);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.4);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.4);
}

/*!
 * BlechArt.shop - CSS Reset & Base Styles
 * Moderne CSS Reset mit Box-Sizing und Accessibility
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  max-width: 100%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.5;
  color: var(--neutral-900);
  background-color: var(--color-white);
  overflow-x: hidden;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

main {
  display: block;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 clamp(0.8rem, 2vw, 1rem) 0;
  font-weight: 600;
  line-height: 1.2;
  color: var(--neutral-900);
}

h1 {
  font-size: clamp(2rem, 6vw, 2.5rem);
}

h2 {
  font-size: clamp(1.5rem, 5vw, 2rem);
}

h3 {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}

h4 {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}

h5 {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}

h6 {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}

p {
  margin: 0 0 clamp(0.8rem, 2vw, 1rem) 0;
  line-height: 1.5;
}

ul, ol {
  margin: 0 0 clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  padding: 0;
}

li {
  margin-bottom: clamp(0.2rem, 0.5vw, 0.25rem);
}

.shop-nav,
nav ul,
.shop-header__nav-list,
.shop-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.shop-nav li,
nav ul li,
.shop-header__nav-list li,
.shop-footer__nav li {
  margin: 0;
}

a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: all 0.1s ease-in-out;
}
a:hover, a:focus {
  color: var(--color-primary-dark);
}
a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.shop-header__nav-link,
.shop-footer__nav-link,
.shop-breadcrumbs a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}
img[loading=lazy] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
img[loading=lazy].loaded {
  opacity: 1;
  transform: translateY(0);
}
.no-js img[loading=lazy] {
  opacity: 1;
  transform: none;
}

figure {
  margin: 0 0 clamp(1rem, 3vw, 1.5rem) 0;
}

figcaption {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--neutral-600);
  margin-top: clamp(0.4rem, 1vw, 0.5rem);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

th, td {
  padding: clamp(0.6rem, 1.5vw, 0.75rem);
  text-align: left;
  border-bottom: 1px solid var(--neutral-200);
}

th {
  font-weight: 600;
  background-color: var(--neutral-50);
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: not-allowed;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #f59e0b;
  color: #111827;
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
  text-decoration: none;
  border-radius: 0.25rem;
  z-index: 1080;
}
.skip-link:focus {
  top: 6px;
}

:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (prefers-contrast: high) {
  * {
    border-color: currentColor !important;
  }
  a {
    text-decoration: underline !important;
  }
}
body {
  padding-top: 80px;
}

/*!
 * BlechArt.shop - Icon System
 * FontAwesome Integration mit Shop-spezifischen Icon-Klassen
 */
.shop-icon {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
  width: clamp(0.875rem, 2.5vw, 1rem);
  height: clamp(0.875rem, 2.5vw, 1rem);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}

.shop-icon--small {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  width: clamp(0.75rem, 2vw, 0.875rem);
  height: clamp(0.75rem, 2vw, 0.875rem);
}

.shop-icon--large {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  width: clamp(1.125rem, 4vw, 1.5rem);
  height: clamp(1.125rem, 4vw, 1.5rem);
}

.shop-icon--button {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  margin-right: clamp(0.4rem, 1vw, 0.5rem);
}

.shop-icon--feature {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1;
}

.shop-icon--home {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--home::before {
  content: "\f015";
}

.shop-icon--store {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--store::before {
  content: "\f54e";
}

.shop-icon--palette {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--palette::before {
  content: "\f53f";
}

.shop-icon--mail {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--mail::before {
  content: "\f0e0";
}

.shop-icon--menu {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--menu::before {
  content: "\f0c9";
}

.shop-icon--sun {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--sun::before {
  content: "\f185";
}

.shop-icon--moon {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--moon::before {
  content: "\f186";
}

.shop-icon--phone {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--phone::before {
  content: "\f095";
}

.shop-icon--map {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--map::before {
  content: "\f3c5";
}

.shop-icon--clock {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--clock::before {
  content: "\f017";
}

.shop-icon--location {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--location::before {
  content: "\f041";
}

.shop-icon--email {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--email::before {
  content: "\f0e0";
}

.shop-icon--check {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--check::before {
  content: "\f00c";
}

.shop-icon--star {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--star::before {
  content: "\f005";
}
.shop-icon--star-filled {
  color: #fcd34d;
}

.shop-icon--star-empty {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--star-empty::before {
  content: "\f006";
}

.shop-icon--shield {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--shield::before {
  content: "\f3ed";
}

.shop-icon--truck {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--truck::before {
  content: "\f0d1";
}

.shop-icon--heart {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--heart::before {
  content: "\f004";
}
.shop-icon--heart.filled {
  color: #f87171;
}

.shop-icon--heart-empty {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--heart-empty::before {
  content: "\f08a";
}

.shop-icon--cart {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--cart::before {
  content: "\f07a";
}

.shop-icon--bag {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--bag::before {
  content: "\f290";
}

.shop-icon--user {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--user::before {
  content: "\f007";
}

.shop-icon--users {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--users::before {
  content: "\f0c0";
}

.shop-icon--search {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--search::before {
  content: "\f002";
}

.shop-icon--filter {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--filter::before {
  content: "\f0b0";
}

.shop-icon--sort {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--sort::before {
  content: "\f0dc";
}

.shop-icon--grid {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--grid::before {
  content: "\f009";
}

.shop-icon--list {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--list::before {
  content: "\f00b";
}

.shop-icon--arrow-right {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--arrow-right::before {
  content: "\f061";
}

.shop-icon--arrow-left {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--arrow-left::before {
  content: "\f060";
}

.shop-icon--arrow-up {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--arrow-up::before {
  content: "\f062";
}

.shop-icon--arrow-down {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--arrow-down::before {
  content: "\f063";
}

.shop-icon--chevron-right {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--chevron-right::before {
  content: "\f054";
}

.shop-icon--chevron-left {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--chevron-left::before {
  content: "\f053";
}

.shop-icon--chevron-down {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--chevron-down::before {
  content: "\f078";
}

.shop-icon--chevron-up {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--chevron-up::before {
  content: "\f077";
}

.shop-icon--close {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--close::before {
  content: "\f00d";
}

.shop-icon--plus {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--plus::before {
  content: "\f067";
}

.shop-icon--minus {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--minus::before {
  content: "\f068";
}

.shop-icon--edit {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--edit::before {
  content: "\f044";
}

.shop-icon--trash {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--trash::before {
  content: "\f2ed";
}

.shop-icon--eye {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--eye::before {
  content: "\f06e";
}

.shop-icon--eye-slash {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--eye-slash::before {
  content: "\f070";
}

.shop-icon--download {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--download::before {
  content: "\f019";
}

.shop-icon--upload {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--upload::before {
  content: "\f093";
}

.shop-icon--share {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--share::before {
  content: "\f064";
}

.shop-icon--copy {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--copy::before {
  content: "\f0c5";
}

.shop-icon--link {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--link::before {
  content: "\f0c1";
}

.shop-icon--refresh {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--refresh::before {
  content: "\f021";
}

.shop-icon--send {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--send::before {
  content: "\f1d8";
}

.shop-icon--ruler {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--ruler::before {
  content: "\f545";
}

.shop-icon--help {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--help::before {
  content: "\f059";
}

.shop-icon--question {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--question::before {
  content: "\f128";
}

.shop-icon--info {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
  color: #60a5fa;
}
.shop-icon--info::before {
  content: "\f129";
}

.shop-icon--warning {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
  color: #fbbf24;
}
.shop-icon--warning::before {
  content: "\f071";
}

.shop-icon--success {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
  color: #4ade80;
}
.shop-icon--success::before {
  content: "\f00c";
}

.shop-icon--error {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
  color: #f87171;
}
.shop-icon--error::before {
  content: "\f06a";
}

.shop-icon--info-circle {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
  color: #60a5fa;
}
.shop-icon--info-circle::before {
  content: "\f05a";
}

.shop-icon--exclamation-triangle {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
  color: #fbbf24;
}
.shop-icon--exclamation-triangle::before {
  content: "\f071";
}

.shop-icon--spinner {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
  animation: spin 1s linear infinite;
}
.shop-icon--spinner::before {
  content: "\f110";
}

.shop-icon--facebook {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--facebook::before {
  content: "\f09a";
}

.shop-icon--twitter {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--twitter::before {
  content: "\f099";
}

.shop-icon--instagram {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--instagram::before {
  content: "\f16d";
}

.shop-icon--linkedin {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--linkedin::before {
  content: "\f0e1";
}

.shop-icon--youtube {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--youtube::before {
  content: "\f167";
}

.shop-icon--whatsapp {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--whatsapp::before {
  content: "\f232";
}

.shop-icon--pinterest {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--pinterest::before {
  content: "\f0d2";
}

.shop-icon--google {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--google::before {
  content: "\f1a0";
}

.shop-icon--amazon {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--amazon::before {
  content: "\f270";
}

.shop-icon--paypal {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--paypal::before {
  content: "\f1ed";
}

.shop-icon--apple {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--apple::before {
  content: "\f179";
}

.shop-icon--microsoft {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--microsoft::before {
  content: "\f3ca";
}

.shop-icon--credit-card {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--credit-card::before {
  content: "\f09d";
}

.shop-icon--money {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--money::before {
  content: "\f3d1";
}

.shop-icon--bank {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--bank::before {
  content: "\f19c";
}

.shop-icon--lock {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--lock::before {
  content: "\f023";
}

.shop-icon--unlock {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--unlock::before {
  content: "\f09c";
}

.shop-icon--key {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--key::before {
  content: "\f084";
}

.shop-icon--certificate {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--certificate::before {
  content: "\f0a3";
}

.shop-icon--shield-check {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--shield-check::before {
  content: "\f00c";
}

.shop-icon--user-check {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--user-check::before {
  content: "\f4fc";
}

.shop-icon--server {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--server::before {
  content: "\f233";
}

.shop-icon--cookie {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--cookie::before {
  content: "\f563";
}

.shop-icon--envelope {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--envelope::before {
  content: "\f0e0";
}

.shop-icon--globe {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--globe::before {
  content: "\f0ac";
}

.shop-icon--language {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--language::before {
  content: "\f1ab";
}

.shop-icon--tools {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--tools::before {
  content: "\f0ad";
}

.shop-icon--balance {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--balance::before {
  content: "\f24e";
}

.shop-icon--file-text {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--file-text::before {
  content: "\f15c";
}

.shop-icon--undo {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--undo::before {
  content: "\f0e2";
}

.shop-icon--laptop {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--laptop::before {
  content: "\f109";
}

.shop-icon--bath {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--bath::before {
  content: "\f2cd";
}

.shop-icon--wine-glass {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--wine-glass::before {
  content: "\f4e3";
}

.shop-icon--building {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--building::before {
  content: "\f1ad";
}

.shop-icon--chair {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--chair::before {
  content: "\f0d7";
}

.shop-icon--dumbbell {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--dumbbell::before {
  content: "\f44b";
}

.shop-icon--door-open {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--door-open::before {
  content: "\f52b";
}

.shop-icon--wrench {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--wrench::before {
  content: "\f0ad";
}

.shop-icon--seedling {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--seedling::before {
  content: "\f4d8";
}

.shop-icon--fire {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--fire::before {
  content: "\f06d";
}

.shop-icon--male {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--male::before {
  content: "\f183";
}

.shop-icon--female {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--female::before {
  content: "\f182";
}

.shop-icon--child {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--child::before {
  content: "\f1ae";
}

.shop-icon--utensils {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--utensils::before {
  content: "\f2e7";
}

.shop-icon--bed {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--bed::before {
  content: "\f236";
}

.shop-icon--couch {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--couch::before {
  content: "\f4b8";
}

.shop-icon--gamepad {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--gamepad::before {
  content: "\f11b";
}

.shop-icon--umbrella-beach {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--umbrella-beach::before {
  content: "\f5ca";
}

.shop-icon--swimmer {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--swimmer::before {
  content: "\f5c4";
}

.shop-icon--coffee {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--coffee::before {
  content: "\f0f4";
}

.shop-icon--music {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--music::before {
  content: "\f001";
}

.shop-icon--handshake {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--handshake::before {
  content: "\f2b5";
}

.shop-icon--store {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--store::before {
  content: "\f54e";
}

.shop-icon--glass-cheers {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--glass-cheers::before {
  content: "\f79f";
}

.shop-icon--tshirt {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--tshirt::before {
  content: "\f553";
}

.shop-icon--industry {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--industry::before {
  content: "\f275";
}

.shop-icon--thermometer-hot {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--thermometer-hot::before {
  content: "\f769";
}

.shop-icon--tag {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--tag::before {
  content: "\f02b";
}

.shop-icon--tags {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--tags::before {
  content: "\f02c";
}

.shop-icon--gift {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--gift::before {
  content: "\f06b";
}

.shop-icon--discount {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--discount::before {
  content: "\f295";
}

.shop-icon--coupon {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--coupon::before {
  content: "\f3e2";
}

.shop-icon--compare {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--compare::before {
  content: "\f0e7";
}

.shop-icon--wishlist {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--wishlist::before {
  content: "\f004";
}

.shop-icon--reviews {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--reviews::before {
  content: "\f086";
}

.shop-icon--rating {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--rating::before {
  content: "\f005";
}

.shop-icon--login {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--login::before {
  content: "\f2f6";
}

.shop-icon--logout {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--logout::before {
  content: "\f2f5";
}

.shop-icon--user-plus {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--user-plus::before {
  content: "\f234";
}

.shop-icon--package {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--package::before {
  content: "\f466";
}

.shop-icon--settings {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
}
.shop-icon--settings::before {
  content: "\f013";
}

.shop-icon--rotate-90 {
  transform: rotate(90deg);
}

.shop-icon--rotate-180 {
  transform: rotate(180deg);
}

.shop-icon--rotate-270 {
  transform: rotate(270deg);
}

.shop-icon--flip-horizontal {
  transform: scaleX(-1);
}

.shop-icon--flip-vertical {
  transform: scaleY(-1);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.shop-icon--spin {
  animation: spin 2s linear infinite;
}

.shop-icon--pulse {
  animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}
/*!
 * BlechArt.shop - Scroll-Animationen & Effekte
 * Dezente Animationen beim Scrollen
 */
.shop-reveal {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.shop-reveal.shop-reveal--visible {
  opacity: 1;
}
.no-js .shop-reveal {
  opacity: 1 !important;
  transform: none !important;
}

.shop-reveal--fade-up {
  transform: translateY(30px);
}
.shop-reveal--fade-up.shop-reveal--visible {
  transform: translateY(0);
}

.shop-reveal--fade-left {
  transform: translateX(-30px);
}
.shop-reveal--fade-left.shop-reveal--visible {
  transform: translateX(0);
}

.shop-reveal--fade-right {
  transform: translateX(30px);
}
.shop-reveal--fade-right.shop-reveal--visible {
  transform: translateX(0);
}

.shop-reveal--scale {
  transform: scale(0.9);
}
.shop-reveal--scale.shop-reveal--visible {
  transform: scale(1);
}

.shop-reveal--stagger .shop-reveal {
  transition-delay: 0s;
}
.shop-reveal--stagger .shop-reveal:nth-child(1) {
  transition-delay: 0.1s;
}
.shop-reveal--stagger .shop-reveal:nth-child(2) {
  transition-delay: 0.2s;
}
.shop-reveal--stagger .shop-reveal:nth-child(3) {
  transition-delay: 0.3s;
}
.shop-reveal--stagger .shop-reveal:nth-child(4) {
  transition-delay: 0.4s;
}
.shop-reveal--stagger .shop-reveal:nth-child(5) {
  transition-delay: 0.5s;
}
.shop-reveal--stagger .shop-reveal:nth-child(6) {
  transition-delay: 0.6s;
}

.shop-hover-lift {
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}
.shop-hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.shop-hover-scale {
  overflow: hidden;
}
.shop-hover-scale img {
  transition: transform 0.5s ease-out;
}
.shop-hover-scale:hover img {
  transform: scale(1.05);
}

.shop-hover-glow {
  position: relative;
}
.shop-hover-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(45deg, #f59e0b, #4ade80);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.shop-hover-glow:hover::before {
  opacity: 0.1;
}

.shop-skeleton {
  background: linear-gradient(90deg, #374151 25%, #1f2937 50%, #374151 75%);
  background-size: 200% 100%;
  animation: shop-skeleton-loading 1.5s infinite;
  border-radius: 0.25rem;
}

@keyframes shop-skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.shop-pulse {
  animation: shop-pulse 2s infinite;
}

@keyframes shop-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}
.shop-bounce-in {
  animation: shop-bounce-in 0.8s ease-out;
}

@keyframes shop-bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.shop-slide-in-right {
  animation: shop-slide-in-right 0.4s ease-out;
}

@keyframes shop-slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.shop-slide-in-left {
  animation: shop-slide-in-left 0.4s ease-out;
}

@keyframes shop-slide-in-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.shop-parallax {
  transform: translateZ(0);
}
.shop-parallax--slow {
  transform: translate3d(0, var(--scroll-offset, 0), 0);
}

.shop-gpu-accelerate {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000;
}

@media (prefers-reduced-motion: reduce) {
  .shop-reveal,
  .shop-hover-lift,
  .shop-hover-scale img,
  .shop-parallax {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
  .shop-reveal {
    opacity: 1 !important;
  }
}
body {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
body.shop-loaded {
  opacity: 1;
}

.shop-hero--animated .shop-hero__content > * {
  animation: shop-hero-content 1s ease-out both;
}
.shop-hero--animated .shop-hero__title {
  animation-delay: 0.3s;
}
.shop-hero--animated .shop-hero__subtitle {
  animation-delay: 0.5s;
}
.shop-hero--animated .shop-button {
  animation-delay: 0.7s;
}

@keyframes shop-hero-content {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.shop-reveal--blur {
  filter: blur(5px);
}
.shop-reveal--blur.shop-reveal--visible {
  filter: blur(0);
}

.shop-reveal--slide-rotate {
  transform: translateY(50px) rotate(5deg);
}
.shop-reveal--slide-rotate.shop-reveal--visible {
  transform: translateY(0) rotate(0deg);
}

.shop-reveal--wave .shop-reveal__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word {
  opacity: 1;
  transform: translateY(0);
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(1) {
  transition-delay: 0.1s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(2) {
  transition-delay: 0.2s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(3) {
  transition-delay: 0.3s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(4) {
  transition-delay: 0.4s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(5) {
  transition-delay: 0.5s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(6) {
  transition-delay: 0.6s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(7) {
  transition-delay: 0.7s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(8) {
  transition-delay: 0.8s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(9) {
  transition-delay: 0.9s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(10) {
  transition-delay: 1s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(11) {
  transition-delay: 1.1s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(12) {
  transition-delay: 1.2s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(13) {
  transition-delay: 1.3s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(14) {
  transition-delay: 1.4s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(15) {
  transition-delay: 1.5s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(16) {
  transition-delay: 1.6s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(17) {
  transition-delay: 1.7s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(18) {
  transition-delay: 1.8s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(19) {
  transition-delay: 1.9s;
}
.shop-reveal--wave.shop-reveal--visible .shop-reveal__word:nth-child(20) {
  transition-delay: 2s;
}

.shop-grid.shop-reveal--stagger .shop-card {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.shop-grid.shop-reveal--stagger .shop-card.shop-reveal--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.shop-card--floating {
  animation: shop-card-float 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .shop-card--floating {
    animation: none;
  }
}

@keyframes shop-card-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.shop-button--magnetic {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop-button--magnetic::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}
.shop-button--magnetic:hover {
  transform: translateY(-2px);
}
.shop-button--magnetic:hover::before {
  opacity: 1;
}

.shop-shimmer {
  position: relative;
  overflow: hidden;
}
.shop-shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(17, 24, 39, 0.3), transparent);
  animation: shop-shimmer 2s infinite;
}

@keyframes shop-shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.shop-button--premium-hover {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-button--premium-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.shop-button--premium-hover:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.shop-button--premium-hover:hover::before {
  left: 100%;
}
.shop-button--premium-hover:hover .shop-icon {
  transform: scale(1.1);
}
.shop-button--premium-hover .shop-icon {
  transition: transform 0.2s ease;
}

.shop-button--hero-style {
  border-radius: 12px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop-button--hero-style:hover {
  background-color: #374151 !important;
  color: #f3f4f6 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 114, 128, 0.25);
}

.shop-button--contact-style {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop-button--contact-style::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(245, 158, 11, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease-out;
  pointer-events: none;
}
.shop-button--contact-style:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  color: #111827 !important;
}
.shop-button--contact-style:hover::before {
  transform: translateX(100%);
}
.shop-button--contact-style:hover .shop-icon {
  transform: rotate(5deg) scale(1.15);
}
.shop-button--contact-style .shop-icon {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop-button--contact-style.shop-button--primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease-out, height 0.6s ease-out;
  pointer-events: none;
  z-index: -1;
}
.shop-button--contact-style.shop-button--primary:hover::after {
  width: 300%;
  height: 300%;
}

.shop-parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.shop-parallax-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(249, 250, 251, 0.4);
  transition: background 0.3s ease-out;
}
@media (max-width: 768px) {
  .shop-parallax-bg {
    background-attachment: scroll;
  }
}

.shop-header--scrolled {
  box-shadow: 0 2px 20px rgba(249, 250, 251, 0.1);
  backdrop-filter: blur(15px);
}

img.shop-lazy-load {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
img.shop-lazy-load.loaded {
  opacity: 1;
}

img:not(.shop-lazy-load) {
  opacity: 1;
}

.shop-skeleton-v2 {
  background: linear-gradient(110deg, rgba(55, 65, 81, 0.8) 8%, rgba(31, 41, 55, 0.9) 18%, rgba(55, 65, 81, 0.8) 33%);
  background-size: 200% 100%;
  animation: shop-skeleton-v2 1.8s infinite ease-in-out;
  border-radius: 0.375rem;
}

@keyframes shop-skeleton-v2 {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.shop-button {
  position: relative;
  overflow: hidden;
}
.shop-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease-out, height 0.6s ease-out;
}
.shop-button:active::before {
  width: 300px;
  height: 300px;
}

.shop-link--animated {
  position: relative;
  text-decoration: none;
}
.shop-link--animated::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f59e0b;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop-link--animated:hover::after {
  width: 100%;
}

.mobile-optimized .shop-reveal {
  transition-duration: 0.4s;
}
.mobile-optimized .shop-parallax--slow {
  transform: none !important;
}
.mobile-optimized .shop-card--floating {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .shop-reveal,
  .shop-hover-lift,
  .shop-hover-scale img,
  .shop-parallax,
  .shop-card--floating,
  .shop-button::before,
  .shop-shimmer::before {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
  .shop-reveal {
    opacity: 1 !important;
  }
  body {
    opacity: 1 !important;
  }
}
.no-js .shop-reveal,
.no-animations .shop-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/*!
 * 🔒 Auth Components SCSS - BEREINIGTE VERSION
 * 
 * Features:
 * - Konsolidierte Styles ohne Redundanzen
 * - Style-Guide konforme Variablen
 * - Responsive Design mit Accessibility
 * - Moderne Animationen und Effekte
 * 
 * @version 2.0.0 (Bereinigt)
 * @author Sprint 2 Implementation
 * @date 2025-01-15
 */
@keyframes backgroundPulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6), 0 0 30px rgba(245, 158, 11, 0.4);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.shop-main--auth {
  background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #374151 100%);
  min-height: 100vh;
  padding: clamp(1.2rem, 4vw, 2rem) 0;
  position: relative;
}
.shop-main--auth::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
  animation: backgroundPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}
.shop-main--auth .shop-container--narrow {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 clamp(0.8rem, 2vw, 1rem);
  position: relative;
  z-index: 1;
  animation: slideInUp 0.6s ease-out;
}
@media (min-width: 768px) {
  .shop-main--auth .shop-container--narrow {
    max-width: 600px;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

.shop-auth-header {
  text-align: center;
  margin-bottom: clamp(2rem, 6vw, 3rem);
}
.shop-auth-header__title {
  color: #f9fafb;
  font-size: clamp(2rem, 6vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-auth-header__title .shop-icon {
  color: #f59e0b;
  font-size: clamp(1.5rem, 5vw, 2rem);
}
.shop-auth-header__subtitle {
  color: #d1d5db;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  line-height: 1.75;
  max-width: 400px;
  margin: 0 auto;
}

.shop-auth-divider {
  display: flex;
  align-items: center;
  margin: clamp(1.2rem, 4vw, 2rem) 0;
  position: relative;
}
.shop-auth-divider::before, .shop-auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(75, 85, 99, 0.6), transparent);
}
.shop-auth-divider__text {
  padding: 0 clamp(0.8rem, 2vw, 1rem);
  background: rgba(31, 41, 55, 0.9);
  color: #d1d5db;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
  border-radius: 9999px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(75, 85, 99, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.shop-auth-divider__text:hover {
  background: #1f2937;
  color: #e5e7eb;
  border-color: rgba(245, 158, 11, 0.2);
  transform: scale(1.02);
}

.shop-auth-verification-warning {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.8rem, 2vw, 1rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  background: linear-gradient(135deg, rgba(120, 53, 15, 0.95), rgba(146, 64, 14, 0.9));
  border: 1px solid rgba(217, 119, 6, 0.6);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(251, 191, 36, 0.1), 0 2px 4px -1px rgba(251, 191, 36, 0.06);
  animation: fadeInScale 0.4s ease-out;
}
.shop-auth-verification-warning__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-auth-verification-warning__icon .shop-icon {
  color: #fcd34d;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}
.shop-auth-verification-warning__content {
  flex: 1;
}
.shop-auth-verification-warning__content h4 {
  color: #fef3c7;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  margin: 0 0 clamp(0.4rem, 1vw, 0.5rem) 0;
}
.shop-auth-verification-warning__content p {
  color: #fde68a;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  line-height: 1.75;
  margin: 0 0 clamp(0.6rem, 1.5vw, 0.75rem) 0;
}
.shop-auth-verification-warning__content .shop-button {
  margin-top: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-auth-verification-warning__rate-limit {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  color: #fcd34d;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-style: italic;
  margin-top: clamp(0.4rem, 1vw, 0.5rem) !important;
}
.shop-auth-verification-warning__rate-limit .shop-icon {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.shop-auth-section {
  background: rgba(31, 41, 55, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 158, 11, 0.1), inset 0 1px 0 rgba(229, 231, 235, 0.1);
  border: 1px solid rgba(75, 85, 99, 0.3);
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
  position: relative;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-auth-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 158, 11, 0.2), inset 0 1px 0 rgba(229, 231, 235, 0.15);
}
@media (min-width: 768px) {
  .shop-auth-section {
    padding: clamp(2rem, 6vw, 3rem);
  }
}

.shop-fieldset--consent {
  order: -1;
  margin-bottom: clamp(1.2rem, 4vw, 2rem) !important;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(251, 191, 36, 0.03) 100%);
  border: 2px solid rgba(245, 158, 11, 0.2) !important;
  border-radius: 0.75rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  position: relative;
  animation: fadeInScale 0.6s ease-out;
}
.shop-fieldset--consent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 30%), radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.08) 0%, transparent 30%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
.shop-fieldset--consent > * {
  position: relative;
  z-index: 1;
}
.shop-fieldset--consent:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(251, 191, 36, 0.05) 100%);
  border-color: rgba(245, 158, 11, 0.3) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}
.shop-fieldset--consent .shop-legend--important {
  color: #f59e0b;
  font-weight: 700;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
  text-align: center;
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
  background: rgba(245, 158, 11, 0.1);
  border-radius: 0.5rem;
}
.shop-fieldset--consent .shop-legend--important .shop-icon {
  color: #f59e0b;
  font-size: clamp(1.5rem, 5vw, 2rem);
}
@media (max-width: 768px) {
  .shop-fieldset--consent .shop-legend--important {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    flex-direction: column;
    gap: clamp(0.2rem, 0.5vw, 0.25rem);
  }
}

.shop-consent-notice {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.shop-consent-notice .shop-notice--info {
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 0.5rem;
  padding: clamp(0.8rem, 2vw, 1rem);
  display: flex;
  align-items: flex-start;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-consent-notice .shop-notice--info .shop-icon {
  color: #60a5fa;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  margin-top: 2px;
  flex-shrink: 0;
}
.shop-consent-notice .shop-notice--info .shop-notice__content {
  color: #f3f4f6;
  flex: 1;
}
.shop-consent-notice .shop-notice--info .shop-notice__content p {
  margin: 0 0 clamp(0.4rem, 1vw, 0.5rem) 0;
  line-height: 1.75;
}
.shop-consent-notice .shop-notice--info .shop-notice__content p:last-child {
  margin-bottom: 0;
}
.shop-consent-notice .shop-notice--info .shop-notice__content p strong {
  color: #f59e0b;
  font-weight: 700;
}

.shop-consent-status {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 0.5rem;
  padding: clamp(0.8rem, 2vw, 1rem);
  animation: pulseGlow 2s ease-in-out infinite;
  display: flex;
  align-items: flex-start;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-consent-status .shop-icon {
  color: #fbbf24;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  flex-shrink: 0;
  margin-top: 2px;
}
.shop-consent-status .shop-notice__content {
  color: #f3f4f6;
  flex: 1;
}
.shop-consent-status .shop-notice__content p {
  margin: 0;
  line-height: 1.75;
}
.shop-consent-status .shop-notice__content p strong {
  color: #fbbf24;
  font-weight: 700;
}

.shop-form__consent-controlled {
  opacity: 0.4;
  pointer-events: none;
  transition: all 0.4s ease;
  position: relative;
}
.shop-form__consent-controlled::before {
  content: "🔒 Zustimmung erforderlich";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(251, 191, 36, 0.9);
  color: #1f2937;
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  z-index: 10;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  animation: pulseGlow 2s ease-in-out infinite;
}
.shop-form__consent-controlled input:not([data-consent-required=true]),
.shop-form__consent-controlled select,
.shop-form__consent-controlled textarea,
.shop-form__consent-controlled button {
  opacity: 0.3;
  cursor: not-allowed;
}
.shop-form__consent-controlled.consent-given {
  opacity: 1;
  pointer-events: auto;
}
.shop-form__consent-controlled.consent-given::before {
  display: none;
}
.shop-form__consent-controlled.consent-given input,
.shop-form__consent-controlled.consent-given select,
.shop-form__consent-controlled.consent-given textarea,
.shop-form__consent-controlled.consent-given button {
  opacity: 1;
  cursor: auto;
}

[data-oauth-container=true] {
  transition: all 0.4s ease;
}
[data-oauth-container=true] .shop-button--oauth {
  position: relative;
  transition: all 0.3s ease;
}
[data-oauth-container=true] .shop-button--oauth[aria-disabled=true] {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
[data-oauth-container=true] .shop-button--oauth[aria-disabled=true]::after {
  content: "🔒";
  position: absolute;
  top: 50%;
  right: clamp(0.6rem, 1.5vw, 0.75rem);
  transform: translateY(-50%);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  background: rgba(251, 191, 36, 0.9);
  color: #1f2937;
  padding: 2px 6px;
  border-radius: 0.125rem;
  font-weight: 700;
}

.shop-form--auth .shop-fieldset {
  border: 1px solid rgba(75, 85, 99, 0.4);
  border-radius: 0.75rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  background: rgba(31, 41, 55, 0.6);
  backdrop-filter: blur(4px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-form--auth .shop-fieldset:hover {
  background: rgba(31, 41, 55, 0.8);
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.shop-form--auth .shop-fieldset:last-of-type {
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
}
.shop-form--auth .shop-legend {
  color: #f3f4f6;
  font-weight: 600;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  padding: 0 clamp(0.6rem, 1.5vw, 0.75rem);
  background: rgba(31, 41, 55, 0.8);
  border-radius: 0.375rem;
  position: relative;
}
.shop-form--auth .shop-legend::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: clamp(0.6rem, 1.5vw, 0.75rem);
  right: clamp(0.6rem, 1.5vw, 0.75rem);
  height: 2px;
  background: linear-gradient(90deg, #f59e0b, transparent);
  border-radius: 9999px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.shop-fieldset:hover .shop-form--auth .shop-legend::after {
  transform: scaleX(1);
}
.shop-form--auth .shop-field {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.shop-form--auth .shop-field:last-child {
  margin-bottom: 0;
}
.shop-form--auth .shop-label {
  display: block;
  color: #e5e7eb;
  font-weight: 500;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  transition: color 0.2s ease;
}
.shop-form--auth .shop-label__required {
  color: #ef4444;
  font-weight: 700;
  margin-left: clamp(0.2rem, 0.5vw, 0.25rem);
}
.shop-input:focus + .shop-form--auth .shop-label, .shop-input:focus ~ .shop-form--auth .shop-label {
  color: #f3f4f6;
}
.shop-form--auth .shop-input {
  width: 100%;
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  background: rgba(55, 65, 81, 0.8);
  border: 2px solid rgba(107, 114, 128, 0.5);
  border-radius: 0.5rem;
  color: #f3f4f6;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  position: relative;
}
.shop-form--auth .shop-input:focus {
  outline: none;
  border-color: #f59e0b;
  background: rgba(55, 65, 81, 0.95);
  color: #f9fafb;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15), 0 4px 12px rgba(245, 158, 11, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.shop-form--auth .shop-input:hover:not(:focus) {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(55, 65, 81, 0.9);
  transform: translateY(-0.5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.shop-form--auth .shop-input[aria-invalid=true] {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  color: #f3f4f6;
}
.shop-form--auth .shop-input[aria-invalid=true]:focus {
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15), 0 4px 12px rgba(248, 113, 113, 0.1);
}
.shop-form--auth .shop-input::-moz-placeholder {
  color: rgba(209, 213, 219, 0.8);
  font-weight: 400;
}
.shop-form--auth .shop-input::placeholder {
  color: rgba(209, 213, 219, 0.8);
  font-weight: 400;
}
.shop-form--auth .shop-input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.shop-form--auth .shop-input-group .shop-input--password {
  flex: 1;
  padding-right: clamp(2rem, 6vw, 3rem);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.shop-form--auth .shop-input-group .shop-input__toggle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 41, 55, 0.8);
  border: 1px solid #4b5563;
  border-left: none;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}
.shop-form--auth .shop-input-group .shop-input__toggle:hover {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-color: #f59e0b;
  transform: scale(1.05);
}
.shop-form--auth .shop-input-group .shop-input__toggle:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
  z-index: 2;
}
.shop-form--auth .shop-input-group .shop-input__toggle:active {
  transform: scale(0.98);
  background: rgba(245, 158, 11, 0.15);
}
.shop-form--auth .shop-input-group .shop-input__toggle[aria-pressed=true] {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-color: #f59e0b;
}
.shop-form--auth .shop-input-group .shop-input__toggle[aria-pressed=true] .shop-icon--eye::before {
  content: "\f070";
}
.shop-form--auth .shop-input-group .shop-input__toggle .shop-icon {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  transition: transform 0.2s ease;
}
.shop-form--auth .shop-input-group .shop-input__toggle:hover .shop-icon {
  transform: scale(1.1);
}
.shop-form--auth .shop-field__help {
  color: #d1d5db;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  margin-top: clamp(0.4rem, 1vw, 0.5rem);
  line-height: 1.5;
}
.shop-form--auth .shop-field__error {
  color: #f87171;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
  margin-top: clamp(0.4rem, 1vw, 0.5rem);
  line-height: 1.5;
}
.shop-form--auth .shop-field__error:empty {
  display: none;
}

.shop-captcha {
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(31, 41, 55, 0.8);
}
.shop-captcha__question {
  background: rgba(245, 158, 11, 0.1);
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  font-weight: 500;
  color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-captcha__input-group {
  display: flex;
  align-items: stretch;
}
.shop-captcha__input-group .shop-input {
  flex: 1;
  border-radius: 0;
  border-right: none;
  border-top: none;
  border-bottom: none;
  background: rgba(55, 65, 81, 0.9);
}
.shop-captcha__input-group .shop-button--captcha-refresh {
  border-radius: 0;
  border: 1px solid rgba(107, 114, 128, 0.5);
  border-left: none;
  border-top: none;
  border-bottom: none;
  background: rgba(55, 65, 81, 0.9);
  color: #d1d5db;
  padding: 0 clamp(0.6rem, 1.5vw, 0.75rem);
  min-width: 44px;
  transition: all 0.3s ease;
}
.shop-captcha__input-group .shop-button--captcha-refresh .shop-icon {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  transition: transform 0.3s ease;
}
.shop-captcha__input-group .shop-button--captcha-refresh:hover {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.shop-captcha__input-group .shop-button--captcha-refresh:hover .shop-icon {
  transform: rotate(180deg);
}
.shop-captcha__input-group .shop-button--captcha-refresh:active {
  transform: scale(0.95);
}
.shop-captcha__input-group .shop-button--captcha-refresh[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.shop-captcha__input-group .shop-button--captcha-refresh[disabled]:hover {
  background: rgba(55, 65, 81, 0.9);
  color: #d1d5db;
}
.shop-captcha__input-group .shop-button--captcha-refresh[disabled]:hover .shop-icon {
  transform: none;
}

.shop-field--checkbox .shop-checkbox__label {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  cursor: pointer;
  color: #f3f4f6;
  line-height: 1.5;
}
.shop-field--checkbox .shop-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.shop-field--checkbox .shop-checkbox__input:checked + .shop-checkbox__label .shop-checkbox__indicator {
  background: #f59e0b;
  border-color: #f59e0b;
}
.shop-field--checkbox .shop-checkbox__input:checked + .shop-checkbox__label .shop-checkbox__indicator::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.5);
}
.shop-field--checkbox .shop-checkbox__input:focus + .shop-checkbox__label .shop-checkbox__indicator {
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.shop-field--checkbox .shop-checkbox__input[aria-invalid=true] + .shop-checkbox__label .shop-checkbox__indicator {
  border-color: #f87171;
}
.shop-field--checkbox .shop-checkbox__indicator {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #6b7280;
  border-radius: 0.25rem;
  background: #1f2937;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 2px;
}
.shop-field--checkbox .shop-checkbox__indicator::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #f9fafb;
  font-size: 18px;
  font-weight: bold;
  opacity: 0;
  transition: all 0.2s ease;
}
.shop-field--checkbox .shop-checkbox__indicator:hover {
  border-color: #f59e0b;
}
.shop-field--checkbox .shop-checkbox__text {
  flex: 1;
}
.shop-field--checkbox .shop-checkbox__text .shop-link {
  color: #f59e0b;
  text-decoration: underline;
  font-weight: 500;
}
.shop-field--checkbox .shop-checkbox__text .shop-link:hover {
  color: #fbbf24;
}
.shop-field--checkbox .shop-checkbox__text .shop-link:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
  border-radius: 0.125rem;
}

.shop-field--consent {
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
.shop-field--consent .shop-checkbox__label--consent {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  color: #f3f4f6;
}
.shop-field--consent .shop-checkbox__label--consent:hover {
  color: #f9fafb;
}
.shop-field--consent .shop-checkbox__label--consent .shop-checkbox__text {
  line-height: 1.75;
}
.shop-field--consent .shop-checkbox__label--consent .shop-link--primary {
  color: #f59e0b;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.2s ease;
}
.shop-field--consent .shop-checkbox__label--consent .shop-link--primary:hover {
  color: #fbbf24;
  text-decoration: none;
  transform: scale(1.02);
}
.shop-field--consent .shop-checkbox__label--consent .shop-link--primary:focus {
  outline: 2px solid rgba(245, 158, 11, 0.5);
  outline-offset: 2px;
  border-radius: 0.125rem;
}
.shop-field--consent .shop-checkbox__indicator {
  border: 2px solid rgba(245, 158, 11, 0.3);
  background: rgba(31, 41, 55, 0.8);
  width: 20px;
  height: 20px;
  border-radius: 0.125rem;
  position: relative;
  transition: all 0.3s ease;
}
.shop-field--consent .shop-checkbox__indicator::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #f9fafb;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transition: all 0.2s ease;
}
.shop-field--consent .shop-checkbox__input:checked + .shop-checkbox__label .shop-checkbox__indicator {
  background: #f59e0b;
  border-color: #f59e0b;
  transform: scale(1.1);
}
.shop-field--consent .shop-checkbox__input:checked + .shop-checkbox__label .shop-checkbox__indicator::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.shop-field--consent .shop-checkbox__input:focus + .shop-checkbox__label .shop-checkbox__indicator {
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

.shop-form__actions {
  margin-top: clamp(1.2rem, 4vw, 2rem);
}
.shop-form__actions .shop-button--primary {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  border: 2px solid transparent;
  border-radius: 0.75rem;
  color: #f9fafb;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.shop-form__actions .shop-button--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}
.shop-form__actions .shop-button--primary:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4), 0 0 20px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.shop-form__actions .shop-button--primary:hover::before {
  left: 100%;
}
.shop-form__actions .shop-button--primary:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5), inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.shop-form__actions .shop-button--primary:focus {
  outline: 3px solid rgba(245, 158, 11, 0.4);
  outline-offset: 2px;
}
.shop-form__actions .shop-button--primary[data-loading=true] {
  animation: pulseGlow 1.5s ease-in-out infinite;
  pointer-events: none;
}
.shop-form__actions .shop-button--primary[data-loading=true] .shop-button__spinner {
  display: inline-block;
}
.shop-form__actions .shop-button--full {
  width: 100%;
  justify-content: center;
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.shop-form__actions .shop-button--full .shop-button__spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 9999px;
  animation: spin 1s linear infinite;
  margin-left: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-form__actions .shop-button--full[data-loading=true] .shop-button__spinner {
  display: inline-block;
}

.shop-form__help {
  text-align: center;
  color: #d1d5db;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  margin-top: clamp(0.6rem, 1.5vw, 0.75rem);
  line-height: 1.5;
}

.shop-form__alternatives {
  text-align: center;
  margin-top: clamp(1rem, 3vw, 1.5rem);
  padding-top: clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid #4b5563;
}
.shop-form__alternatives .shop-form__text {
  color: #e5e7eb;
  margin: 0;
}
.shop-form__alternatives .shop-form__text .shop-link--primary {
  color: #f59e0b;
  font-weight: 600;
  text-decoration: none;
}
.shop-form__alternatives .shop-form__text .shop-link--primary:hover {
  color: #fbbf24;
  text-decoration: underline;
}
.shop-form__alternatives .shop-form__text .shop-link--primary:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
  border-radius: 0.125rem;
}

.shop-auth-oauth {
  background: rgba(31, 41, 55, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 158, 11, 0.1), inset 0 1px 0 rgba(229, 231, 235, 0.1);
  border: 1px solid rgba(75, 85, 99, 0.3);
  position: relative;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInScale 0.5s ease-out 0.2s both;
  margin-bottom: 2rem;
}
.shop-auth-oauth::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(245, 158, 11, 0.03) 50%, transparent 70%);
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.shop-auth-oauth:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 158, 11, 0.2), inset 0 1px 0 rgba(229, 231, 235, 0.15);
}
.shop-auth-oauth:hover::before {
  opacity: 1;
}
@media (min-width: 768px) {
  .shop-auth-oauth {
    padding: clamp(1.2rem, 4vw, 2rem);
  }
}
.shop-auth-oauth__title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #f9fafb;
}
.shop-auth-oauth__terms-notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.shop-auth-oauth__terms-notice .shop-icon {
  color: #856404;
  margin-right: 0.5rem;
}
.shop-auth-oauth__terms-notice p {
  margin: 0;
  font-size: 0.875rem;
  color: #856404;
  line-height: 1.5;
}
.shop-auth-oauth__terms-notice p strong {
  font-weight: 600;
}
.shop-auth-oauth__terms-notice .shop-link {
  color: #856404;
  text-decoration: underline;
}
.shop-auth-oauth__terms-notice .shop-link:hover {
  color: #533402;
}
.shop-auth-oauth__providers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.shop-auth-oauth__notice {
  text-align: center;
  margin-bottom: 1rem;
}
.shop-auth-oauth__notice .shop-icon {
  color: #60a5fa;
  margin-right: 0.5rem;
}

.shop-button--oauth {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  text-decoration: none;
  color: inherit;
}
.shop-button--oauth::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.shop-button--oauth:hover::before {
  left: 100%;
}
.shop-button--oauth:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-button--oauth .shop-icon {
  margin-right: clamp(0.6rem, 1.5vw, 0.75rem);
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  transition: transform 0.2s ease;
}
.shop-button--oauth:hover .shop-icon {
  transform: scale(1.1);
}
.shop-button--oauth--google {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-color: #dadce0;
  color: #3c4043;
}
.shop-button--oauth--google:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eaed 100%);
  border-color: #dadce0;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.shop-button--oauth--facebook {
  background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
  color: #ffffff;
}
.shop-button--oauth--facebook:hover {
  background: linear-gradient(135deg, #166fe5 0%, #1464d6 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}
.shop-button--oauth--apple {
  background: linear-gradient(135deg, #000000 0%, #1c1c1e 100%);
  color: #ffffff;
}
.shop-button--oauth--apple:hover {
  background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.shop-button--oauth--amazon {
  background: linear-gradient(135deg, #ff9900 0%, #e88900 100%);
  color: #ffffff;
}
.shop-button--oauth--amazon:hover {
  background: linear-gradient(135deg, #e88900 0%, #d17800 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}
.shop-button--oauth--microsoft {
  background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
  color: #ffffff;
}
.shop-button--oauth--microsoft:hover {
  background: linear-gradient(135deg, #106ebe 0%, #005a9e 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}
.shop-button--oauth--paypal {
  background: linear-gradient(135deg, #009cde 0%, #0087cc 100%);
  color: #ffffff;
}
.shop-button--oauth--paypal:hover {
  background: linear-gradient(135deg, #0087cc 0%, #0070ba 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 156, 222, 0.3);
}

.shop-button:not(:disabled) {
  cursor: pointer;
}

.shop-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.shop-button[aria-disabled=true]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background: rgba(107, 114, 128, 0.6) !important;
  color: rgba(209, 213, 219, 0.8) !important;
  border-color: rgba(107, 114, 128, 0.6) !important;
  transform: none !important;
}
.shop-button[aria-disabled=true]:disabled:hover, .shop-button[aria-disabled=true]:disabled:focus {
  background: rgba(107, 114, 128, 0.6) !important;
  color: rgba(209, 213, 219, 0.8) !important;
  border-color: rgba(107, 114, 128, 0.6) !important;
  transform: none !important;
  box-shadow: none !important;
}
.shop-button[aria-disabled=true]:disabled .shop-button__spinner {
  display: none;
}

.shop-notice {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  border-radius: 0.5rem;
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
.shop-notice--info {
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  color: #f3f4f6;
}
.shop-notice--warning {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: #f3f4f6;
}
.shop-notice--success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: #f3f4f6;
}
.shop-notice--error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.2);
  color: #f3f4f6;
}

.shop-password-strength {
  margin-top: clamp(0.6rem, 1.5vw, 0.75rem);
  padding: clamp(0.6rem, 1.5vw, 0.75rem);
  background: rgba(31, 41, 55, 0.6);
  border-radius: 0.25rem;
  border: 1px solid rgba(75, 85, 99, 0.4);
  transition: all 0.3s ease;
}
.shop-password-strength__bar {
  height: 6px;
  background: rgba(75, 85, 99, 0.6);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  position: relative;
}
.shop-password-strength__bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shimmer 2s ease-in-out infinite;
}
.shop-password-strength__fill {
  height: 100%;
  width: 0%;
  border-radius: 9999px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.shop-password-strength__fill[data-strength="0"], .shop-password-strength__fill[data-strength="1"] {
  background: linear-gradient(90deg, #ef4444, #f87171);
  width: 20%;
}
.shop-password-strength__fill[data-strength="0"]::after, .shop-password-strength__fill[data-strength="1"]::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  width: 4px;
  background: #f87171;
  border-radius: 9999px;
  box-shadow: 0 0 8px rgba(248, 113, 113, 0.6);
  animation: pulse 1.5s ease-in-out infinite;
}
.shop-password-strength__fill[data-strength="2"] {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  width: 40%;
}
.shop-password-strength__fill[data-strength="3"] {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  width: 60%;
}
.shop-password-strength__fill[data-strength="4"] {
  background: linear-gradient(90deg, #fbbf24, #22c55e);
  width: 80%;
}
.shop-password-strength__fill[data-strength="4"]::after {
  content: "!";
  position: absolute;
  top: -2px;
  right: -8px;
  bottom: -2px;
  width: 20px;
  background: #fbbf24;
  border-radius: 9999px;
  color: white;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}
.shop-password-strength__fill[data-strength="5"] {
  background: linear-gradient(90deg, #22c55e, #4ade80);
  width: 100%;
}
.shop-password-strength__fill[data-strength="5"]::after {
  content: "✓";
  position: absolute;
  top: -2px;
  right: -8px;
  bottom: -2px;
  width: 20px;
  background: #4ade80;
  border-radius: 9999px;
  color: white;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
}
.shop-password-strength__text {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  color: #d1d5db;
}
.shop-password-strength__text [data-strength-text] {
  font-weight: 600;
  transition: color 0.3s ease;
}
.shop-password-strength__text [data-strength-text][data-strength-text="Keine Eingabe"], .shop-password-strength__text [data-strength-text][data-strength-text*=Keine] {
  color: #9ca3af;
}
.shop-password-strength__text [data-strength-text][data-strength-text*="Sehr schwach"], .shop-password-strength__text [data-strength-text][data-strength-text*=Schwach] {
  color: #f87171 !important;
  text-shadow: 0 0 4px rgba(248, 113, 113, 0.3);
  animation: pulse 2s ease-in-out infinite;
}
.shop-password-strength__text [data-strength-text][data-strength-text*=Mittel] {
  color: #fbbf24;
}
.shop-password-strength__text [data-strength-text][data-strength-text*=Gut] {
  color: #f59e0b;
  font-weight: 700;
}
.shop-password-strength__text [data-strength-text][data-strength-text*="Sehr stark"] {
  color: #4ade80;
  font-weight: 700;
}
.shop-password-strength__text:has([data-strength-text*=fehlt]) {
  padding: clamp(0.4rem, 1vw, 0.5rem);
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 0.25rem;
  animation: attention-pulse 3s ease-in-out infinite;
}
.shop-password-strength__text:has([data-strength-text*=fehlt]) [data-strength-text] {
  color: #f87171 !important;
  font-weight: 700 !important;
  text-shadow: 0 0 2px rgba(248, 113, 113, 0.4);
}
.shop-password-strength__text:has([data-strength-text*=fehlt]) [data-strength-text][data-strength-text*=fehlt] {
  background: rgba(248, 113, 113, 0.15);
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.125rem;
  border: 1px solid rgba(248, 113, 113, 0.4);
}
.shop-password-strength:has([data-strength="0"]), .shop-password-strength:has([data-strength="1"]) {
  background: rgba(248, 113, 113, 0.05);
  border-color: rgba(248, 113, 113, 0.2);
}
.shop-password-strength:has([data-strength="2"]) {
  background: rgba(251, 191, 36, 0.05);
  border-color: rgba(251, 191, 36, 0.15);
}
.shop-password-strength:has([data-strength="4"]) {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.2);
}
.shop-password-strength:has([data-strength="5"]) {
  background: rgba(74, 222, 128, 0.05);
  border-color: rgba(74, 222, 128, 0.2);
}

@keyframes attention-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(248, 113, 113, 0.1);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.shop-auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.8rem, 2vw, 1rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-auth-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.shop-auth-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.shop-auth-modal__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-auth-modal.is-active .shop-auth-modal__container {
  transform: scale(1) translateY(0);
}
@media (min-width: 768px) {
  .shop-auth-modal__container {
    max-width: 520px;
  }
}
.shop-auth-modal__content {
  background: rgba(31, 41, 55, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 158, 11, 0.1), inset 0 1px 0 rgba(229, 231, 235, 0.1);
  border: 1px solid rgba(75, 85, 99, 0.3);
  overflow: hidden;
}
.shop-auth-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1.2rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(75, 85, 99, 0.3);
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(8px);
}
.shop-auth-modal__title {
  color: #f9fafb;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  margin: 0;
}
.shop-auth-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: transparent;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-auth-modal__close:hover {
  background: rgba(75, 85, 99, 0.5);
  color: #f9fafb;
  transform: scale(1.05);
}
.shop-auth-modal__close:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-auth-modal__close .shop-icon {
  font-size: 18px;
}

.shop-auth-modal .shop-form {
  padding: clamp(1.2rem, 4vw, 2rem);
  margin-bottom: 0;
}

.shop-auth-modal .shop-field {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.shop-auth-modal .shop-form__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
@media (max-width: 480px) {
  .shop-auth-modal .shop-form__options {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}

.shop-auth-modal .shop-form__info {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 0.5rem;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.shop-auth-modal .shop-form__info .shop-icon {
  color: #60a5fa;
  font-size: 20px;
  flex-shrink: 0;
}
.shop-auth-modal .shop-form__info p {
  color: #93c5fd;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  margin: 0;
  line-height: 1.75;
}

.shop-input--center {
  text-align: center;
  font-family: monospace;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  letter-spacing: 0.1em;
}

.shop-auth-modal .shop-auth-oauth {
  margin-bottom: 0;
  padding: clamp(1rem, 3vw, 1.5rem) 0 0;
  border-top: 1px solid rgba(75, 85, 99, 0.3);
}

.shop-auth-modal .shop-form__messages {
  margin-top: clamp(0.8rem, 2vw, 1rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  border-radius: 0.5rem;
  font-weight: 500;
  text-align: center;
}
.shop-auth-modal .shop-form__messages:empty {
  display: none;
}
.shop-auth-modal .shop-form__messages[data-type=success] {
  background: rgba(74, 222, 128, 0.1);
  color: #86efac;
  border: 1px solid #4ade80;
}
.shop-auth-modal .shop-form__messages[data-type=error] {
  background: rgba(248, 113, 113, 0.1);
  color: #fca5a5;
  border: 1px solid #f87171;
}
.shop-auth-modal .shop-form__messages[data-type=warning] {
  background: rgba(251, 191, 36, 0.1);
  color: #fcd34d;
  border: 1px solid #fbbf24;
}
.shop-auth-modal .shop-form__messages[data-type=info] {
  background: rgba(96, 165, 250, 0.1);
  color: #93c5fd;
  border: 1px solid #60a5fa;
}

.shop-auth-modal .shop-form__alternatives {
  text-align: center;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1.2rem, 4vw, 2rem);
  border-top: 1px solid rgba(75, 85, 99, 0.3);
  background: rgba(17, 24, 39, 0.5);
}

@media (max-width: 480px) {
  .shop-auth-modal {
    padding: clamp(0.4rem, 1vw, 0.5rem);
    align-items: flex-end;
  }
  .shop-auth-modal__container {
    max-height: 95vh;
  }
  .shop-auth-modal__content {
    border-radius: 0.75rem 0.75rem 0 0;
  }
  .shop-auth-modal__header,
  .shop-auth-modal .shop-form,
  .shop-auth-modal .shop-form__alternatives {
    padding-left: clamp(1rem, 3vw, 1.5rem);
    padding-right: clamp(1rem, 3vw, 1.5rem);
  }
  .shop-auth-modal .shop-auth-oauth__providers {
    grid-template-columns: 1fr;
  }
}
.shop-auth-modal:focus-within .shop-auth-modal__content {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4), 0 0 0 2px #f59e0b, inset 0 1px 0 rgba(229, 231, 235, 0.1);
}

@media (max-width: 479px) {
  .shop-main--auth {
    padding: clamp(0.8rem, 2vw, 1rem) 0;
  }
  .shop-auth-section {
    padding: clamp(1rem, 3vw, 1.5rem);
    margin: 0 clamp(0.4rem, 1vw, 0.5rem);
  }
  .shop-auth-oauth {
    margin: 0 clamp(0.4rem, 1vw, 0.5rem);
  }
  .shop-auth-oauth__providers {
    grid-template-columns: 1fr;
  }
  .shop-auth-header__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}
.shop-auth-modal__container #login-form .shop-form__actions {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/*!
 * BlechArt.shop - Entstehung-Seite Komponenten
 * Spezielle Komponenten für die "So entstehen die Bilder" Seite
 */
.shop-hero--entstehung {
  position: relative;
  background-image: linear-gradient(135deg, rgba(245, 158, 11, 0.85) 0%, rgba(172.4330708661, 110.9507874016, 7.0669291339, 0.9) 50%, rgba(243, 244, 246, 0.8) 100%), url("/uploads/media/entstehung-hero.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
  background-color: #f59e0b;
}
.shop-hero--entstehung::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%, rgba(249, 250, 251, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}
.shop-hero--entstehung .shop-container,
.shop-hero--entstehung .shop-hero__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .shop-hero--entstehung {
    background-attachment: scroll;
    min-height: 50vh;
  }
}
.shop-hero--entstehung .shop-hero__content {
  text-align: center;
  color: #111827;
}
.shop-hero--entstehung .shop-hero__title,
.shop-hero--entstehung .shop-hero__subtitle {
  color: #111827 !important;
}
.shop-hero--entstehung .shop-button {
  margin-top: clamp(0.8rem, 2vw, 1rem);
}

.shop-hero--entstehung {
  position: relative;
  background-image: linear-gradient(135deg, rgba(245, 158, 11, 0.85) 0%, rgba(172.4330708661, 110.9507874016, 7.0669291339, 0.9) 50%, rgba(243, 244, 246, 0.8) 100%), url("/uploads/media/entstehung-hero.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
}
.shop-hero--entstehung::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%, rgba(249, 250, 251, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}
.shop-hero--entstehung .shop-container,
.shop-hero--entstehung .shop-hero__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .shop-hero--entstehung {
    background-attachment: scroll;
    min-height: 50vh;
  }
}
.shop-hero--entstehung:not([style*=background-image]) {
  position: relative;
  background-image: linear-gradient(135deg, rgba(245, 158, 11, 0.85) 0%, rgba(172.4330708661, 110.9507874016, 7.0669291339, 0.9) 50%, rgba(243, 244, 246, 0.8) 100%), url("/uploads/media/hero_image.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
}
.shop-hero--entstehung:not([style*=background-image])::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%, rgba(249, 250, 251, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}
.shop-hero--entstehung:not([style*=background-image]) .shop-container,
.shop-hero--entstehung:not([style*=background-image]) .shop-hero__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .shop-hero--entstehung:not([style*=background-image]) {
    background-attachment: scroll;
    min-height: 50vh;
  }
}

.shop-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-top: clamp(1.2rem, 4vw, 2rem);
}
@media (max-width: 768px) {
  .shop-stats-grid {
    grid-template-columns: 1fr;
    gap: clamp(0.8rem, 2vw, 1rem);
    margin-top: clamp(1rem, 3vw, 1.5rem);
  }
}

.shop-stat-item {
  text-align: center;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-white);
  border-radius: 0.5rem;
  border: 1px solid var(--neutral-200);
  transition: all 0.3s ease-out;
}
.shop-stat-item:hover {
  transform: translateY(-2px);
  border-color: var(--shop-primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .shop-stat-item {
    padding: clamp(0.8rem, 2vw, 1rem);
  }
}

.shop-stat-item__number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--shop-primary);
  line-height: 1;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-stat-item__number .shop-counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.shop-stat-item__label {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: clamp(0.2rem, 0.5vw, 0.25rem);
  line-height: 1.3;
}

.shop-stat-item__description {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--neutral-600);
  line-height: 1.5;
  margin: 0;
}

.shop-process-steps {
  margin-top: clamp(1.2rem, 4vw, 2rem);
  display: grid;
  gap: clamp(0.8rem, 2vw, 1rem);
}
@media (max-width: 768px) {
  .shop-process-steps {
    margin-top: clamp(1rem, 3vw, 1.5rem);
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}

.shop-process-step {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.8rem, 2vw, 1rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  background: var(--color-white);
  border: 1px solid var(--neutral-200);
  border-radius: 0.375rem;
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
}
.shop-process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--shop-primary);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.shop-process-step:hover {
  border-color: var(--shop-primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
}
.shop-process-step:hover::before {
  opacity: 1;
}
.shop-process-step:hover .shop-process-step__icon {
  transform: scale(1.1);
  color: var(--shop-primary);
}
@media (max-width: 768px) {
  .shop-process-step {
    flex-direction: column;
    text-align: center;
    padding: clamp(0.8rem, 2vw, 1rem);
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}

.shop-process-step__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--shop-primary-rgb), 0.1);
  color: var(--shop-primary);
  border-radius: 9999px;
  font-size: clamp(1.5rem, 5vw, 2rem);
  transition: all 0.3s ease-out;
}
@media (max-width: 768px) {
  .shop-process-step__icon {
    width: 56px;
    height: 56px;
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
}

.shop-process-step__content {
  flex: 1;
  min-width: 0;
}

.shop-process-step__title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: var(--neutral-900);
  margin: 0 0 clamp(0.2rem, 0.5vw, 0.25rem) 0;
  line-height: 1.4;
}

.shop-process-step__description {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--neutral-600);
  line-height: 1.6;
  margin: 0;
}

.shop-two-column-section .shop-feature-grid__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.8rem, 2vw, 1rem);
}
@media (max-width: 768px) {
  .shop-two-column-section .shop-feature-grid__items {
    grid-template-columns: 1fr;
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}

.shop-feature-item--compact {
  padding: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-feature-item--compact .shop-feature-item__icon {
  width: 32px;
  height: 32px;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}
.shop-feature-item--compact .shop-feature-item__title {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  margin-bottom: clamp(0.2rem, 0.5vw, 0.25rem);
}
.shop-feature-item--compact .shop-feature-item__description {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  line-height: 1.4;
}

.shop-media {
  position: relative;
  border-radius: 0.375rem;
  overflow: hidden;
  background: var(--neutral-100);
}
.shop-media__image, .shop-media__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.375rem;
}
.shop-media__video {
  background: var(--neutral-900);
  min-height: 200px;
}

.shop-media__caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--color-white);
  padding: clamp(0.8rem, 2vw, 1rem) clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.6rem, 1.5vw, 0.75rem);
  margin: 0;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  line-height: 1.4;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 0.375rem 0.375rem;
}
@media (max-width: 768px) {
  .shop-media__caption {
    position: relative;
    background: var(--neutral-800);
    color: var(--color-white);
    padding: clamp(0.4rem, 1vw, 0.5rem);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    border-radius: 0;
  }
}

.shop-cta-section {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #111827;
  padding: clamp(2.5rem, 8vw, 4rem) 0;
  margin-top: clamp(2.5rem, 8vw, 4rem);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.shop-cta-section .shop-container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.shop-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .shop-cta-section {
    padding: clamp(2rem, 6vw, 3rem) 0;
    margin-top: clamp(2rem, 6vw, 3rem);
    min-height: 300px;
  }
}

.shop-cta-section__content {
  text-align: center;
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.shop-cta-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 clamp(0.8rem, 2vw, 1rem) 0;
  color: #111827 !important;
}

.shop-cta-section__subtitle {
  font-size: clamp(1.5rem, 5vw, 2rem);
  line-height: 1.5;
  margin: 0 0 clamp(1.2rem, 4vw, 2rem) 0;
  opacity: 0.95;
  color: #111827 !important;
}
@media (max-width: 768px) {
  .shop-cta-section__subtitle {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }
}

.shop-cta-section .shop-button {
  position: relative;
  z-index: 4;
  min-width: 200px;
  font-weight: 600;
}
.shop-cta-section .shop-button--primary {
  background: #111827 !important;
  color: #f59e0b !important;
  border: 2px solid #111827 !important;
}
.shop-cta-section .shop-button--primary:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
}
.shop-cta-section .shop-button--outline {
  background: transparent !important;
  color: #111827 !important;
  border: 2px solid #111827 !important;
}
.shop-cta-section .shop-button--outline:hover {
  background: #111827 !important;
  color: #f59e0b !important;
  border-color: #111827 !important;
  transform: translateY(-2px);
}
.shop-cta-section .shop-button-group {
  gap: clamp(0.8rem, 2vw, 1rem);
  justify-content: center;
  display: flex;
}
@media (max-width: 768px) {
  .shop-cta-section .shop-button-group {
    flex-direction: column;
    align-items: center;
  }
}

.shop-text-intro {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--neutral-700);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.shop-text-intro strong {
  color: var(--neutral-900);
  font-weight: 600;
}
@media (max-width: 768px) {
  .shop-text-intro {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .shop-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.8rem, 2vw, 1rem);
  }
  .shop-stat-item__number {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .shop-process-step {
    padding: clamp(0.6rem, 1.5vw, 0.75rem);
  }
  .shop-process-step__icon {
    width: 40px;
    height: 40px;
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
  .shop-cta-section {
    padding: clamp(1.2rem, 4vw, 2rem) 0;
  }
}
.shop-hero--contact {
  position: relative;
  background-image: linear-gradient(135deg, rgba(245, 158, 11, 0.85) 0%, rgba(172.4330708661, 110.9507874016, 7.0669291339, 0.9) 50%, rgba(243, 244, 246, 0.8) 100%), url("/uploads/media/contact-hero.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
}
.shop-hero--contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%, rgba(249, 250, 251, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}
.shop-hero--contact .shop-container,
.shop-hero--contact .shop-hero__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .shop-hero--contact {
    background-attachment: scroll;
    min-height: 50vh;
  }
}
.shop-hero--contact:not([style*=background-image]) {
  position: relative;
  background-image: linear-gradient(135deg, rgba(245, 158, 11, 0.85) 0%, rgba(172.4330708661, 110.9507874016, 7.0669291339, 0.9) 50%, rgba(243, 244, 246, 0.8) 100%), url("/uploads/media/hero_image.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
}
.shop-hero--contact:not([style*=background-image])::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%, rgba(249, 250, 251, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}
.shop-hero--contact:not([style*=background-image]) .shop-container,
.shop-hero--contact:not([style*=background-image]) .shop-hero__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .shop-hero--contact:not([style*=background-image]) {
    background-attachment: scroll;
    min-height: 50vh;
  }
}
.shop-hero--contact .shop-hero__title,
.shop-hero--contact .shop-hero__subtitle {
  color: #111827 !important;
}

.shop-contact-email .shop-feature-item__description {
  position: relative;
}

.shop-email-protected .shop-email-reveal {
  transition: all 0.2s ease;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-email-protected .shop-email-reveal:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-email-protected .shop-email-reveal:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
}

.shop-email-revealed {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-email-revealed .shop-link {
  font-weight: 600;
  color: #f59e0b;
}
.shop-email-revealed .shop-link:hover {
  color: #d97706;
}
.shop-email-revealed .shop-email-copy {
  transition: all 0.2s ease;
}
.shop-email-revealed .shop-email-copy:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-email-revealed .shop-email-copy:hover {
  transform: scale(1.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.shop-contact-form .shop-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.8rem, 2vw, 1rem);
}
@media (max-width: 767px) {
  .shop-contact-form .shop-form__row {
    grid-template-columns: 1fr;
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}
.shop-contact-form .shop-field {
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
@media (max-width: 767px) {
  .shop-contact-form .shop-field {
    margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}
.shop-contact-form .shop-input,
.shop-contact-form .shop-textarea,
.shop-contact-form .shop-select {
  transition: all 0.2s ease;
}
.shop-contact-form .shop-input:focus,
.shop-contact-form .shop-textarea:focus,
.shop-contact-form .shop-select:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
  border-color: #f59e0b;
}
.shop-contact-form .shop-input.error,
.shop-contact-form .shop-textarea.error,
.shop-contact-form .shop-select.error {
  border-color: #f87171;
  background-color: rgba(248, 113, 113, 0.05);
}
.shop-contact-form .shop-input.error:focus,
.shop-contact-form .shop-textarea.error:focus,
.shop-contact-form .shop-select.error:focus {
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1);
}
.shop-contact-form .shop-field__error {
  display: none;
  color: #f87171;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
  margin-top: clamp(0.2rem, 0.5vw, 0.25rem);
}
.shop-contact-form .shop-field__error[style*=block] {
  display: block;
}
.shop-contact-form .shop-field__count {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #d1d5db;
  text-align: right;
  margin-top: clamp(0.2rem, 0.5vw, 0.25rem);
  font-variant-numeric: tabular-nums;
}

.shop-captcha-container {
  background: #111827;
  border: 2px solid #374151;
  border-radius: 0.5rem;
  padding: clamp(0.8rem, 2vw, 1rem);
  transition: all 0.2s ease;
}
.shop-captcha-container:focus-within {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.shop-captcha-container .shop-label {
  margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
}

.shop-captcha-content {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .shop-captcha-content {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(0.4rem, 1vw, 0.5rem);
  }
}

.shop-captcha-question {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  padding: clamp(0.6rem, 1.5vw, 0.75rem);
  background: #1f2937;
  border: 1px solid #4b5563;
  border-radius: 0.375rem;
  flex: 1;
  min-width: 200px;
  font-weight: 500;
  color: #f3f4f6;
}
.shop-captcha-question .shop-icon {
  color: #f59e0b;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}
@media (max-width: 767px) {
  .shop-captcha-question {
    min-width: auto;
    justify-content: center;
    text-align: center;
  }
}

.shop-captcha-input {
  width: 80px !important;
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}
@media (max-width: 767px) {
  .shop-captcha-input {
    width: 100px !important;
  }
}

.shop-captcha-refresh {
  transition: all 0.2s ease;
}
.shop-captcha-refresh:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-captcha-refresh:hover {
  transform: rotate(180deg);
  background-color: #f59e0b;
  color: #f9fafb;
}

.shop-contact-form .shop-button[type=submit] {
  position: relative;
  overflow: hidden;
}
.shop-contact-form .shop-button[type=submit]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(249, 250, 251, 0.2), transparent);
  transition: left 0.5s ease;
}
.shop-contact-form .shop-button[type=submit]:hover::before {
  left: 100%;
}
.shop-contact-form .shop-button[type=submit][aria-busy=true] {
  cursor: not-allowed;
}
.shop-contact-form .shop-button[type=submit][aria-busy=true] .shop-icon--spinner {
  animation: spin 1s linear infinite;
}

.shop-form__footer {
  margin-top: clamp(1rem, 3vw, 1.5rem);
}
.shop-form__footer .shop-message {
  border-radius: 0.5rem;
}
.shop-form__footer .shop-message .shop-link {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}
.shop-form__footer .shop-message .shop-link:hover {
  text-decoration: none;
}

.shop-two-column-section__grid {
  gap: clamp(1.2rem, 4vw, 2rem);
}
@media (max-width: 1023px) {
  .shop-two-column-section__grid {
    gap: clamp(1rem, 3vw, 1.5rem);
  }
}
@media (max-width: 767px) {
  .shop-two-column-section__grid {
    gap: clamp(0.8rem, 2vw, 1rem);
  }
}

.shop-feature-item {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 5px;
}
.shop-feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.05), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.shop-feature-item:hover::before {
  left: 100%;
}
.shop-feature-item:hover .shop-feature-item__icon {
  transform: scale(1.1);
}

.shop-recaptcha-field {
  margin-top: clamp(0.8rem, 2vw, 1rem);
}
.shop-recaptcha-field .g-recaptcha {
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.shop-notification {
  font-family: inherit;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.5;
}
.shop-notification--success {
  background: #4ade80 !important;
}
.shop-notification--error {
  background: #f87171 !important;
}
.shop-notification--warning {
  background: #fbbf24 !important;
}
.shop-notification--info {
  background: #60a5fa !important;
}

@media (max-width: 575px) {
  .shop-hero--contact {
    min-height: 35vh;
  }
  .shop-hero--contact .shop-hero__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .shop-hero--contact .shop-hero__subtitle {
    font-size: clamp(1rem, 4vw, 1.125rem);
  }
  .shop-captcha-content {
    flex-direction: column;
    align-items: stretch;
  }
  .shop-captcha-content .shop-captcha-question {
    min-width: auto;
  }
  .shop-captcha-content .shop-captcha-input {
    width: 100% !important;
    max-width: 120px;
    margin: 0 auto;
  }
  .shop-contact-form .shop-form__row {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .shop-captcha-refresh:hover {
    transform: none;
  }
  .shop-feature-item::before {
    display: none;
  }
  .shop-contact-form .shop-button[type=submit]::before {
    display: none;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
.shop-notification__content {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  flex: 1;
}

.shop-notification__close {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: clamp(0.2rem, 0.5vw, 0.25rem);
  border-radius: 0.25rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.shop-notification__close:hover {
  opacity: 1;
  background: rgba(249, 250, 251, 0.1);
}

.shop-email-revealed {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}

.shop-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}
.shop-honeypot input {
  width: 1px !important;
  height: 1px !important;
  border: none !important;
  background: transparent !important;
}

@media (prefers-contrast: high) {
  .shop-captcha-container {
    border-width: 3px;
  }
  .shop-captcha-question {
    border-width: 2px;
  }
  .shop-input,
  .shop-textarea,
  .shop-select {
    border-width: 2px;
  }
  .shop-input:focus,
  .shop-textarea:focus,
  .shop-select:focus {
    border-width: 3px;
  }
}
@media print {
  .shop-hero--contact {
    background: none;
    color: #f9fafb;
    min-height: auto;
    padding: clamp(0.8rem, 2vw, 1rem) 0;
  }
  .shop-captcha-container,
  .shop-recaptcha-field,
  .shop-button {
    display: none;
  }
  .shop-email-protected .shop-email-reveal {
    display: none;
  }
  .shop-email-protected::after {
    content: "Kontakt per E-Mail möglich";
    font-style: italic;
    color: #d1d5db;
  }
}
/**
 * Cookie-Consent-System - DSGVO-konformes Cookie-Management
 * 
 * Enthält alle Styles für:
 * - Cookie-Consent-Modal 
 * - Cookie-Settings-Button (floating)
 * - Toggle-Switches
 * - Responsive Design
 * 
 * Style-Guide konform mit shop-* BEM-Klassen und SCSS-Variablen
 */
/*!
 * Cookie-Consent Component - Premium Design
 * Verwendet Style-Guide Tokens für konsistentes Design
 */
.shop-cookie-consent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.8rem, 2vw, 1rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-cookie-consent.show {
  opacity: 1;
  visibility: visible;
}
.shop-cookie-consent--closing {
  opacity: 0;
  transform: scale(0.95);
}
.shop-cookie-consent__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(55, 65, 81, 0.9) 100%);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}
.shop-cookie-consent__container {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.98) 100%);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(31, 41, 55, 0.4), 0 0 0 1px rgba(245, 158, 11, 0.1), inset 0 1px 0 rgba(245, 158, 11, 0.1);
  animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center bottom;
}
@media (max-width: 640px) {
  .shop-cookie-consent__container {
    max-width: calc(100% - clamp(0.8rem, 2vw, 1rem));
    margin: clamp(0.4rem, 1vw, 0.5rem);
  }
}
.shop-cookie-consent__content {
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  pointer-events: auto;
}
.shop-cookie-consent__header {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.8rem, 2vw, 1rem);
  padding: clamp(1.2rem, 4vw, 2rem) clamp(1.2rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(251, 191, 36, 0.08) 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
  position: relative;
}
.shop-cookie-consent__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
}
.shop-cookie-consent__header-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  border-radius: 0.75rem;
  color: #111827;
  font-size: 20px;
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.2), 0 0 0 1px rgba(245, 158, 11, 0.1);
  animation: iconPulse 2s ease-in-out infinite;
}
.shop-cookie-consent__header-text {
  flex: 1;
  min-width: 0;
}
.shop-cookie-consent__title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: #f9fafb;
  margin: 0 0 clamp(0.4rem, 1vw, 0.5rem);
  line-height: 1.2;
}
.shop-cookie-consent__description {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: #d1d5db;
  margin: 0;
  line-height: 1.5;
}
.shop-cookie-consent__main {
  flex: 1;
  overflow-y: auto;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1.2rem, 4vw, 2rem);
  pointer-events: auto;
}
.shop-cookie-consent__categories {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2vw, 1rem);
}
.shop-cookie-consent .shop-cookie-category {
  padding: clamp(0.8rem, 2vw, 1rem);
  background: rgba(243, 244, 246, 0.3);
  border: 1px solid rgba(229, 231, 235, 0.2);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}
.shop-cookie-consent .shop-cookie-category:hover {
  background: rgba(243, 244, 246, 0.4);
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.1);
}
.shop-cookie-consent .shop-cookie-category__row {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.8rem, 2vw, 1rem);
}
.shop-cookie-consent .shop-cookie-category__info {
  flex: 1;
  min-width: 0;
}
.shop-cookie-consent .shop-cookie-category__title {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  color: #f9fafb;
  margin: 0 0 clamp(0.4rem, 1vw, 0.5rem);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-cookie-consent .shop-cookie-category__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px clamp(0.4rem, 1vw, 0.5rem);
  background: linear-gradient(135deg, #4ade80 0%, rgb(117.1355140187, 229.8644859813, 158.2663551402) 100%);
  color: #111827;
  font-size: 10px;
  font-weight: 500;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.shop-cookie-consent .shop-cookie-category__desc {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #d1d5db;
  margin: 0;
  line-height: 1.5;
}
.shop-cookie-consent .shop-cookie-category__toggle {
  flex-shrink: 0;
  pointer-events: auto;
}
.shop-cookie-consent .shop-toggle {
  position: relative;
  display: inline-block;
  pointer-events: auto;
}
.shop-cookie-consent .shop-toggle__input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  pointer-events: auto;
  z-index: 1;
}
.shop-cookie-consent .shop-toggle__label {
  display: block;
  cursor: pointer;
  pointer-events: auto;
}
.shop-cookie-consent .shop-toggle__track {
  width: 48px;
  height: 24px;
  background: #9ca3af;
  border-radius: 9999px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(31, 41, 55, 0.2);
  pointer-events: auto;
}
.shop-cookie-consent .shop-toggle__track--active {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  box-shadow: inset 0 2px 4px rgba(245, 158, 11, 0.3), 0 0 12px rgba(245, 158, 11, 0.2);
}
.shop-cookie-consent .shop-toggle__track--active .shop-toggle__thumb {
  transform: translateX(24px);
  background: #111827;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}
.shop-cookie-consent .shop-toggle__thumb {
  width: 20px;
  height: 20px;
  background: #111827;
  border-radius: 9999px;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(31, 41, 55, 0.3);
  pointer-events: none;
}
.shop-cookie-consent .shop-toggle--required .shop-toggle__track {
  background: linear-gradient(135deg, #4ade80 0%, rgb(117.1355140187, 229.8644859813, 158.2663551402) 100%);
  box-shadow: inset 0 2px 4px rgba(74, 222, 128, 0.3), 0 0 12px rgba(74, 222, 128, 0.2);
}
.shop-cookie-consent .shop-toggle--required .shop-toggle__track .shop-toggle__thumb {
  transform: translateX(24px);
  background: #111827;
  box-shadow: 0 2px 8px rgba(74, 222, 128, 0.3);
}
.shop-cookie-consent__footer {
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1.2rem, 4vw, 2rem) clamp(1.2rem, 4vw, 2rem);
  background: rgba(243, 244, 246, 0.2);
  border-top: 1px solid rgba(229, 231, 235, 0.2);
  pointer-events: auto;
}
.shop-cookie-consent__actions {
  display: flex;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
  pointer-events: auto;
}
@media (max-width: 480px) {
  .shop-cookie-consent__actions {
    flex-direction: column;
  }
}
.shop-cookie-consent__actions .shop-btn {
  flex: 1;
  min-height: 44px;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  pointer-events: auto;
}
.shop-cookie-consent__actions .shop-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}
.shop-cookie-consent__actions .shop-btn--primary {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  border: 1px solid #f59e0b;
  color: #111827;
}
.shop-cookie-consent__actions .shop-btn--primary:hover {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}
.shop-cookie-consent__actions .shop-btn--secondary {
  background: linear-gradient(135deg, #d1d5db 0%, rgb(237.6097560976, 239.1219512195, 241.3902439024) 100%);
  border: 1px solid #d1d5db;
  color: #111827;
}
.shop-cookie-consent__actions .shop-btn--secondary:hover {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  box-shadow: 0 6px 20px rgba(209, 213, 219, 0.3);
}
.shop-cookie-consent__actions .shop-btn--outline {
  background: transparent;
  border: 1px solid #d1d5db;
  color: #e5e7eb;
}
.shop-cookie-consent__actions .shop-btn--outline:hover {
  background: rgba(229, 231, 235, 0.1);
  border-color: #e5e7eb;
  color: #f9fafb;
}
.shop-cookie-consent__privacy {
  text-align: center;
  pointer-events: auto;
}
.shop-cookie-consent__privacy-link {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
  pointer-events: auto;
}
.shop-cookie-consent__privacy-link:hover {
  color: #f59e0b;
}
.shop-cookie-consent__privacy-link i {
  font-size: 12px;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.2), 0 0 0 1px rgba(245, 158, 11, 0.1), 0 0 20px rgba(245, 158, 11, 0.1);
  }
  50% {
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3), 0 0 0 1px rgba(245, 158, 11, 0.2), 0 0 30px rgba(245, 158, 11, 0.2);
  }
}
@media (max-width: 640px) {
  .shop-cookie-consent {
    padding: clamp(0.6rem, 1.5vw, 0.75rem);
  }
  .shop-cookie-consent__container {
    max-height: 90vh;
  }
  .shop-cookie-consent__header {
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) clamp(0.8rem, 2vw, 1rem);
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
  }
  .shop-cookie-consent__header-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .shop-cookie-consent__title {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
  .shop-cookie-consent__description {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
  .shop-cookie-consent__main {
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  }
  .shop-cookie-consent__footer {
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
  }
  .shop-cookie-consent .shop-cookie-category {
    padding: clamp(0.6rem, 1.5vw, 0.75rem);
  }
  .shop-cookie-consent .shop-cookie-category__row {
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}
.shop-cookie-consent__categories {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2vw, 1rem);
}

.shop-cookie-category {
  position: relative;
  border: 1px solid #4b5563;
  border-radius: 0.375rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
  z-index: 1;
}
.shop-cookie-category:hover {
  border-color: #fbbf24;
}
.shop-cookie-category__header {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.8rem, 2vw, 1rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #1f2937;
}
@media (max-width: 767px) {
  .shop-cookie-category__header {
    padding: clamp(0.8rem, 2vw, 1rem);
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}
.shop-cookie-category__main {
  flex: 1;
  min-width: 0;
}
.shop-cookie-category__title {
  margin: 0 0 clamp(0.4rem, 1vw, 0.5rem);
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: #f9fafb;
}
@media (max-width: 767px) {
  .shop-cookie-category__title {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
}
.shop-cookie-category__required {
  color: #9ca3af;
  font-weight: 400;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}
.shop-cookie-category__description {
  margin: 0;
  color: #d1d5db;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.5;
}
.shop-cookie-category__toggle {
  flex-shrink: 0;
}
.shop-cookie-category__expand {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 0.25rem;
  color: #9ca3af;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.shop-cookie-category__expand:hover, .shop-cookie-category__expand:focus {
  color: #f9fafb;
  background-color: #374151;
}
.shop-cookie-category__expand:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-cookie-category__expand[aria-expanded=true] .shop-icon {
  transform: rotate(180deg);
}
.shop-cookie-category__expand .shop-icon {
  transition: transform 0.2s ease;
}
.shop-cookie-category__details {
  padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid #4b5563;
  background: #111827;
  display: none;
}
@media (max-width: 767px) {
  .shop-cookie-category__details {
    padding: 0 clamp(0.8rem, 2vw, 1rem) clamp(0.8rem, 2vw, 1rem);
  }
}
.shop-cookie-category__details[aria-hidden=false] {
  display: block;
  animation: slideDown 0.3s ease;
}
.shop-cookie-category__examples {
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
.shop-cookie-category__examples-title {
  margin: 0 0 clamp(0.6rem, 1.5vw, 0.75rem);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  color: #f9fafb;
}
.shop-cookie-category__examples-list {
  margin: 0;
  padding-left: clamp(0.8rem, 2vw, 1rem);
  color: #d1d5db;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}
.shop-cookie-category__examples-list li {
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-cookie-category__cookies {
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
.shop-cookie-category__cookies-title {
  margin: 0 0 clamp(0.6rem, 1.5vw, 0.75rem);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  color: #f9fafb;
}
.shop-cookie-category__third-parties-title {
  margin: 0 0 clamp(0.6rem, 1.5vw, 0.75rem);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  color: #f9fafb;
}
.shop-cookie-category__third-parties-list {
  margin: 0;
  padding-left: clamp(0.8rem, 2vw, 1rem);
  color: #d1d5db;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}
.shop-cookie-category__third-parties-list li {
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-cookie-category__privacy-link {
  color: #f59e0b;
  text-decoration: none;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-cookie-category__privacy-link:hover, .shop-cookie-category__privacy-link:focus {
  color: #d97706;
  text-decoration: underline;
}

.shop-cookie-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}

.shop-cookie-item {
  padding: clamp(0.6rem, 1.5vw, 0.75rem);
  background: #374151;
  border-radius: 0.25rem;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}
.shop-cookie-item__name {
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-cookie-item__purpose {
  color: #d1d5db;
  line-height: 1.4;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-cookie-item__duration {
  color: #9ca3af;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.shop-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  cursor: pointer;
  z-index: 10;
}
.shop-toggle--disabled {
  cursor: default;
  opacity: 0.7;
}
.shop-toggle__input {
  position: absolute;
  opacity: 0;
  z-index: 15;
  width: 48px;
  height: 24px;
  margin: 0;
  cursor: pointer;
}
.shop-toggle__label {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  cursor: pointer;
  z-index: 12;
}
.shop-toggle--disabled .shop-toggle__label {
  cursor: default;
}
.shop-toggle__track {
  position: relative;
  width: 48px;
  height: 24px;
  background: #4b5563;
  border-radius: 12px;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
}
.shop-toggle--disabled .shop-toggle__track {
  background: #fbbf24;
}
.shop-toggle__thumb {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #111827;
  border-radius: 50%;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  transform: translateX(2px);
}
.shop-toggle__thumb--active {
  transform: translateX(26px);
}
.shop-toggle__input:checked + .shop-toggle__label .shop-toggle__track {
  background: #f59e0b;
}
.shop-toggle__input:checked + .shop-toggle__label .shop-toggle__thumb {
  transform: translateX(26px);
}
.shop-toggle__input:focus + .shop-toggle__label .shop-toggle__track {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-toggle__text {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: #d1d5db;
}
.shop-toggle--disabled .shop-toggle__text {
  color: #9ca3af;
}

.shop-cookie-settings {
  position: fixed;
  bottom: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  z-index: 1030;
}
@media (max-width: 767px) {
  .shop-cookie-settings {
    bottom: clamp(0.8rem, 2vw, 1rem);
    right: clamp(0.8rem, 2vw, 1rem);
  }
}
.shop-cookie-settings__button {
  position: relative;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #111827;
  border: none;
  border-radius: 9999px;
  padding: clamp(0.8rem, 2vw, 1rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(245, 158, 11, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 48px;
  min-height: 48px;
  backdrop-filter: blur(8px);
}
@media (max-width: 767px) {
  .shop-cookie-settings__button {
    border-radius: 0.5rem;
    padding: clamp(0.6rem, 1.5vw, 0.75rem);
    min-width: 44px;
    min-height: 44px;
  }
}
.shop-cookie-settings__button:hover {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.shop-cookie-settings__button:focus {
  outline: 2px solid #111827;
  outline-offset: 2px;
}
.shop-cookie-settings__button:active {
  transform: translateY(0);
}
.shop-cookie-settings__icon {
  font-size: 1.2em;
  flex-shrink: 0;
}
.shop-cookie-settings__text {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .shop-cookie-settings__text {
    display: none;
  }
}
.shop-cookie-settings__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  background: #f87171;
  border: 2px solid #111827;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.shop-cookie-settings__tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  background: #1f2937;
  color: #f9fafb;
  border: 1px solid #4b5563;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s ease;
  z-index: 1070;
}
@media (max-width: 767px) {
  .shop-cookie-settings__tooltip {
    display: none;
  }
}
.shop-cookie-settings__button:hover + .shop-cookie-settings__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.shop-cookie-settings__tooltip-arrow {
  position: absolute;
  top: 100%;
  right: clamp(0.8rem, 2vw, 1rem);
  border: 4px solid transparent;
  border-top-color: #4b5563;
}
.shop-cookie-settings__tooltip-arrow::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -4px;
  border: 4px solid transparent;
  border-top-color: #1f2937;
}

.shop-cookie-debug {
  position: fixed;
  top: clamp(1rem, 3vw, 1.5rem);
  left: clamp(1rem, 3vw, 1.5rem);
  background: #1f2937;
  border: 1px solid #4b5563;
  border-radius: 0.375rem;
  padding: clamp(0.6rem, 1.5vw, 0.75rem);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  z-index: 1070;
  max-width: 300px;
}
@media (max-width: 767px) {
  .shop-cookie-debug {
    display: none;
  }
}
.shop-cookie-debug__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-cookie-debug__header h4 {
  margin: 0;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: #f9fafb;
}
.shop-cookie-debug__toggle {
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
}
.shop-cookie-debug__toggle:hover {
  color: #f9fafb;
}
.shop-cookie-debug__content {
  color: #d1d5db;
  line-height: 1.4;
}
.shop-cookie-debug__content strong {
  color: #f9fafb;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.4);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(248, 113, 113, 0);
  }
}
@keyframes buttonGlow {
  0%, 100% {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(245, 158, 11, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 20px rgba(245, 158, 11, 0.2);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #f59e0b;
  color: #111827;
  padding: 8px;
  text-decoration: none;
  border-radius: 0.25rem;
  z-index: 1070;
}
.skip-link:focus {
  top: 6px;
}

@media (prefers-contrast: high) {
  .shop-cookie-consent__backdrop {
    background: rgba(0, 0, 0, 0.9);
  }
  .shop-toggle__track {
    border: 2px solid currentColor;
  }
  .shop-cookie-settings__button {
    border: 2px solid currentColor;
  }
}
@media (prefers-reduced-motion: reduce) {
  .shop-cookie-consent,
  .shop-cookie-consent__container,
  .shop-toggle__thumb,
  .shop-cookie-settings__button {
    transition: none;
  }
  .shop-cookie-settings__badge {
    animation: none;
  }
}
/*!
 * BlechArt.shop - Email Validation Component
 * CSP-konforme E-Mail-Validierung Styles
 * Migriert aus JavaScript createStyles() für korrekte SCSS-Architektur
 */
/*!
 * BlechArt.shop - Design Tokens (SCSS Variables)
 * Basierend auf style-guide/tokens/
 */
.email-validation-container {
  margin-top: clamp(0.4rem, 1vw, 0.5rem);
}
@media (max-width: 768px) {
  .email-validation-container {
    margin-top: clamp(0.2rem, 0.5vw, 0.25rem);
  }
}

.email-validation-message {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.email-validation-message--success {
  color: #22c55e;
}
html[data-theme=dark] .email-validation-message--success {
  color: #4ade80;
}
.email-validation-message--error {
  color: #ef4444;
}
html[data-theme=dark] .email-validation-message--error {
  color: #f87171;
}

.email-validation-loading {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.email-validation-loading--hidden {
  display: none;
}
.email-validation-loading--visible {
  display: flex;
}
html[data-theme=dark] .email-validation-loading {
  color: #6b7280;
}

.email-validation-suggestions {
  margin-top: clamp(0.2rem, 0.5vw, 0.25rem);
}

.email-validation-suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #111827;
  border: 1px solid #374151;
  border-radius: 0.375rem;
  overflow: hidden;
}
html[data-theme=dark] .email-validation-suggestions-list {
  background: #e5e7eb;
  border-color: #d1d5db;
}

.email-validation-suggestion {
  border-bottom: 1px solid #374151;
}
.email-validation-suggestion:last-child {
  border-bottom: none;
}
html[data-theme=dark] .email-validation-suggestion {
  border-bottom-color: #d1d5db;
}

.email-validation-suggestion-btn {
  width: 100%;
  padding: clamp(0.8rem, 2vw, 1rem);
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s;
}
.email-validation-suggestion-btn:hover {
  background-color: #1f2937;
}
.email-validation-suggestion-btn:focus {
  outline: 2px solid #d97706;
  outline-offset: -2px;
}
html[data-theme=dark] .email-validation-suggestion-btn:hover {
  background-color: #d1d5db;
}

.suggestion-email {
  display: block;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: clamp(0.2rem, 0.5vw, 0.25rem);
}
html[data-theme=dark] .suggestion-email {
  color: #1f2937;
}

.suggestion-reason {
  display: block;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #d1d5db;
}
html[data-theme=dark] .suggestion-reason {
  color: #6b7280;
}

.shop-input.email-valid {
  border-color: #22c55e;
}
.shop-input.email-valid:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}
.shop-input.email-invalid {
  border-color: #ef4444;
}
.shop-input.email-invalid:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}
.shop-input.email-loading {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%239ca3af' stroke-width='2'/%3E%3Cpath fill='%239ca3af' d='M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right clamp(0.8rem, 2vw, 1rem) center;
  background-size: 1rem;
  animation: spin 1s linear infinite;
}
html[data-theme=dark] .shop-input.email-loading {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%236b7280' stroke-width='2'/%3E%3Cpath fill='%236b7280' d='M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z'/%3E%3C/svg%3E");
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
button[type=submit].disabled,
input[type=submit].disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #6b7280 !important;
  border-color: #6b7280 !important;
}
html[data-theme=dark] button[type=submit].disabled,
html[data-theme=dark] input[type=submit].disabled {
  background-color: #d1d5db !important;
  border-color: #d1d5db !important;
}

.has-invalid-email button[type=submit],
.has-invalid-email input[type=submit] {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .email-validation-suggestion-btn {
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
  }
  .suggestion-email {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
  .suggestion-reason {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
}
@media (prefers-contrast: high) {
  .email-validation-message--error {
    color: #cc0000;
  }
  .email-validation-message--success {
    color: #006600;
  }
}
@media (prefers-reduced-motion: reduce) {
  .email-validation-suggestion-btn {
    transition: none;
  }
  .shop-input.email-loading {
    animation: none;
  }
}
.shop-header__actions {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1rem);
}

.shop-header__mobile-actions {
  padding: clamp(0.8rem, 2vw, 1rem) 0;
  border-top: 1px solid var(--color-gray-200);
  margin-top: clamp(0.8rem, 2vw, 1rem);
}

.shop-header {
  background: rgba(31, 41, 55, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(31, 41, 55, 0.15);
  border-bottom: 1px solid var(--color-gray-200);
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  transition: transform 0.3s ease-out;
}
.shop-header--hidden {
  transform: translateY(-80%);
}
.shop-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.8rem, 2vw, 1rem) 0;
  min-height: 80px;
}
.shop-header__logo {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  text-decoration: none;
  color: #fefcf9;
  font-weight: 700;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}
.shop-header__logo:hover {
  color: var(--color-primary);
}
.shop-header__logo-image {
  height: 40px;
  width: auto;
}
.shop-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
}
@media (max-width: 1023px) {
  .shop-header__nav {
    display: none;
  }
}
.shop-header__nav-list {
  display: flex;
  gap: clamp(1rem, 3vw, 1.5rem);
}
.shop-header__nav-link {
  color: rgba(254, 252, 249, 0.9);
  text-decoration: none;
  font-weight: 500;
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  min-height: 44px;
}
.shop-header__nav-link:hover, .shop-header__nav-link:focus, .shop-header__nav-link--active {
  color: #fefcf9;
  background-color: var(--color-primary-alpha);
}
.shop-header__nav-link:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-header__actions {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-header__action-btn {
  position: relative;
  background: transparent;
  border: 2px solid rgba(254, 252, 249, 0.3);
  border-radius: 0.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(254, 252, 249, 0.9);
  transition: all 0.3s ease;
}
.shop-header__action-btn:hover {
  background: rgba(var(--color-primary-rgb), 0.1);
  border-color: var(--color-primary);
  color: #fefcf9;
  transform: translateY(-1px);
}
.shop-header__action-btn .shop-icon {
  font-size: 1.2rem;
}
.shop-header__action-btn:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-header__action-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid rgba(31, 41, 55, 0.95);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.shop-header__action-count:not(:empty) {
  opacity: 1;
  transform: scale(1);
}
.shop-header__auth {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
@media (max-width: 1023px) {
  .shop-header__auth {
    display: none;
  }
}
.shop-header__auth-buttons {
  display: flex;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-header__auth-btn {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 44px;
}
.shop-header__auth-btn .shop-icon {
  font-size: 1rem;
}
.shop-header__auth-btn--login {
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}
.shop-header__auth-btn--login:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}
.shop-header__auth-btn--register {
  background: var(--color-primary);
  color: white;
  border: 1px solid var(--color-primary);
}
.shop-header__auth-btn--register:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: white;
  transform: translateY(-1px);
}
.shop-header__auth-btn:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-header__user-dropdown {
  position: relative;
}
.shop-header__user-btn {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
  background: transparent;
  border: 1px solid rgba(254, 252, 249, 0.3);
  border-radius: 0.375rem;
  color: rgba(254, 252, 249, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}
.shop-header__user-btn:hover {
  color: #fefcf9;
  background: rgba(var(--color-primary-rgb), 0.1);
  border-color: var(--color-primary);
}
.shop-header__user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: white;
}
.shop-header__user-name {
  font-weight: 500;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.shop-header__dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: clamp(0.4rem, 1vw, 0.5rem);
  background: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--color-border);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1040;
}
.shop-header__user-dropdown:hover .shop-header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.shop-header__dropdown-item {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}
.shop-header__dropdown-item:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}
.shop-header__dropdown-item:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}
.shop-header__dropdown-item:hover {
  background: var(--color-background);
  color: var(--color-text-primary);
}
.shop-header__dropdown-item--danger {
  color: var(--color-error);
}
.shop-header__dropdown-item--danger:hover {
  background: var(--color-error-50);
  color: var(--color-error);
}
.shop-header__dropdown-item .shop-icon {
  font-size: 1rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.shop-header__dropdown-item:hover .shop-icon {
  opacity: 1;
}
.shop-header__dropdown-divider {
  margin: clamp(0.4rem, 1vw, 0.5rem) 0;
  border: none;
  border-top: 1px solid var(--color-border);
  opacity: 0.6;
}
.shop-header__mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(254, 252, 249, 0.3);
  padding: clamp(0.4rem, 1vw, 0.5rem);
  cursor: pointer;
  color: #fefcf9;
  border-radius: 0.375rem;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  transition: all 0.3s ease;
}
@media (max-width: 1023px) {
  .shop-header__mobile-toggle {
    display: flex;
  }
}
.shop-header__mobile-toggle:hover {
  background: rgba(var(--color-primary-rgb), 0.1);
  border-color: var(--color-primary);
}
.shop-header__mobile-toggle:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-header__burger {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.shop-header__burger span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.shop-header__mobile-toggle[aria-expanded=true] .shop-header__burger span:first-child {
  transform: rotate(45deg) translate(6px, 6px);
}
.shop-header__mobile-toggle[aria-expanded=true] .shop-header__burger span:nth-child(2) {
  opacity: 0;
}
.shop-header__mobile-toggle[aria-expanded=true] .shop-header__burger span:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
}
.shop-header__mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--color-gray-200);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  z-index: 1030;
}
.shop-header__mobile-menu[aria-hidden=false] {
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.shop-header__mobile-menu--open {
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.shop-header__mobile-content {
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-white);
}
.shop-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.shop-header__mobile-link {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  color: var(--color-gray-800);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
}
.shop-header__mobile-link:hover {
  background: var(--color-gray-50);
  color: var(--color-gray-900);
  border-color: var(--color-gray-300);
}
.shop-header__mobile-link--active {
  background: var(--color-primary-50);
  color: var(--color-primary);
  border-color: var(--color-primary-200);
}
.shop-header__mobile-link--danger {
  color: var(--color-error);
}
.shop-header__mobile-link--danger:hover {
  background: var(--color-error-50);
  color: var(--color-error-dark);
  border-color: var(--color-error-200);
}
.shop-header__mobile-link .shop-icon {
  font-size: 1.3rem;
  min-width: 24px;
}
.shop-header__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  padding-top: clamp(0.8rem, 2vw, 1rem);
  border-top: 1px solid var(--color-gray-200);
}
.shop-header__mobile-action {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: 0.5rem;
  color: var(--color-gray-800);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}
.shop-header__mobile-action:hover {
  background: var(--color-gray-50);
  color: var(--color-gray-900);
  border-color: var(--color-gray-300);
  transform: translateY(-1px);
}
.shop-header__mobile-action .shop-icon {
  font-size: 1.3rem;
  min-width: 24px;
}
.shop-header__mobile-auth {
  padding-top: clamp(0.8rem, 2vw, 1rem);
  border-top: 1px solid var(--color-gray-200);
}
.shop-header__mobile-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-header__mobile-auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}
.shop-header__mobile-auth-btn .shop-icon {
  font-size: 1.2rem;
}
.shop-header__mobile-auth-btn--login {
  background: var(--color-white);
  color: var(--color-gray-800);
  border: 2px solid var(--color-gray-300);
}
.shop-header__mobile-auth-btn--login:hover {
  background: var(--color-gray-50);
  color: var(--color-gray-900);
  border-color: var(--color-gray-400);
  transform: translateY(-1px);
}
.shop-header__mobile-auth-btn--register {
  background: var(--color-primary);
  color: white;
  border: 2px solid var(--color-primary);
}
.shop-header__mobile-auth-btn--register:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.3);
}
.shop-header__mobile-user {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2vw, 1rem);
}
.shop-header__mobile-user-info {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  background: var(--color-gray-50);
  border-radius: 0.5rem;
  border: 1px solid var(--color-gray-200);
}
.shop-header__mobile-user-info span {
  font-weight: 600;
  color: var(--color-gray-900);
}
.shop-header__mobile-user-links {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}

@media (max-width: 575px) {
  .shop-header__content {
    padding: clamp(0.6rem, 1.5vw, 0.75rem) 0;
    min-height: 60px;
  }
  .shop-header__logo {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
  .shop-header__logo-image {
    height: 32px;
  }
}
.shop-header {
  position: relative;
  z-index: 999;
}

.shop-header-hidden {
  display: none !important;
}

.shop-header-visible {
  display: flex !important;
}

.shop-header-block {
  display: block !important;
}

.shop-compare-btn--hidden {
  display: none;
}
.shop-compare-btn--visible {
  display: flex;
}

.shop-avatar-fallback--hidden {
  display: none;
}
.shop-avatar-fallback--visible {
  display: block;
}

.shop-flash-message--hidden {
  display: none;
}
.shop-flash-message--visible {
  display: block;
}

.shop-mobile-compare--hidden {
  display: none;
}
.shop-mobile-compare--visible {
  display: block;
}

.shop-body--no-scroll {
  overflow: hidden !important;
}
.shop-body--scroll {
  overflow: auto;
}

.shop-message-animation {
  transition: all 0.3s ease;
}
.shop-message-animation--fade-out {
  opacity: 0;
  transform: translateY(-10px);
}
.shop-message-animation--fade-in {
  opacity: 1;
  transform: translateY(0);
}

.shop-cookie-banner--hidden {
  display: none;
}
.shop-cookie-banner--visible {
  display: block;
}

.shop-free-shipping-teaser--rotation-1 {
  --base-rotation: -1deg;
}
.shop-free-shipping-teaser--rotation-2 {
  --base-rotation: -2deg;
}

body.mobile-menu-open {
  overflow: hidden;
}

/*!
 * BlechArt.shop - Product & Cart System
 * SCSS für Produktdetailseiten und Warenkorb-System
 */
/*!
 * BlechArt.shop - Design Tokens (SCSS Variables)
 * Basierend auf style-guide/tokens/
 */
/*!
 * BlechArt.shop - SCSS Mixins
 * Wiederverwendbare Mixins für Shop-Komponenten
 */
.product-detail {
  padding: clamp(1.2rem, 4vw, 2rem) 0;
  background: #111827;
}
.product-detail__layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(0.8rem, 2vw, 1rem);
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 4vw, 2rem);
}
@media (min-width: 1024px) {
  .product-detail__layout {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 3rem);
  }
}

.product-detail__gallery {
  position: relative;
}

.product-gallery__main {
  position: relative;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.product-gallery__main-image {
  position: relative;
  aspect-ratio: 1;
  background: #111827;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #374151;
}
.product-gallery__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.product-gallery__image:hover {
  transform: scale(1.05);
}
.product-gallery__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  color: #6b7280;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.product-gallery__placeholder i {
  font-size: 3rem;
}
.product-gallery__zoom-btn {
  position: absolute;
  top: clamp(0.8rem, 2vw, 1rem);
  right: clamp(0.8rem, 2vw, 1rem);
  background: rgba(17, 24, 39, 0.9);
  border: none;
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.product-gallery__zoom-btn:hover {
  background: #111827;
  color: #f59e0b;
  transform: scale(1.1);
}
.product-gallery__badges {
  position: absolute;
  top: clamp(0.8rem, 2vw, 1rem);
  left: clamp(0.8rem, 2vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.product-gallery__thumbnails {
  overflow-x: auto;
  padding-bottom: clamp(0.4rem, 1vw, 0.5rem);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.2rem, 0.5vw, 0.25rem);
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.6rem, 1.5vw, 0.75rem);
  border-radius: 9999px;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
}
.product-badge--out-of-stock {
  background: #991b1b;
  color: #fecaca;
}
.product-badge--low-stock {
  background: #92400e;
  color: #fde68a;
}
.product-badge--featured {
  background: #78350f;
  color: #fcd34d;
}
.product-badge--quality {
  background: #166534;
  color: #bbf7d0;
}

.product-thumbnails {
  display: flex;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.product-thumbnails__item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 0.25rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background: none;
  padding: 0;
}
.product-thumbnails__item:hover {
  border-color: #fbbf24;
}
.product-thumbnails__item--active {
  border-color: #f59e0b;
}
.product-thumbnails__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-info__header {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.product-info__title {
  font-size: clamp(2rem, 6vw, 2.5rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
  line-height: 1.2;
}
.product-info__rating {
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.product-info__sku {
  color: #d1d5db;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.product-info__pricing {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #111827;
  border-radius: 0.5rem;
  border: 1px solid #374151;
}
.product-info__summary {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.product-info__availability {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.product-rating__stars {
  display: flex;
  gap: clamp(0.2rem, 0.5vw, 0.25rem);
}
.product-rating__stars i {
  color: #fcd34d;
}
.product-rating__stars i.fa-star-o {
  color: #4b5563;
}
.product-rating__text {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #d1d5db;
}
.product-rating__count {
  color: #f59e0b;
  text-decoration: none;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.product-rating__count:hover {
  text-decoration: underline;
}

.product-pricing__main {
  display: flex;
  align-items: baseline;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.product-pricing__current {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: #f87171;
}
.product-pricing__original {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  color: #9ca3af;
  text-decoration: line-through;
}
.product-pricing__discount {
  color: #4ade80;
  font-weight: 500;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.product-pricing__tax {
  color: #d1d5db;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
.product-pricing__tax a {
  color: #f59e0b;
  text-decoration: none;
}
.product-pricing__tax a:hover {
  text-decoration: underline;
}
.product-pricing__benefits {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}

.product-benefit {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  color: #e5e7eb;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.product-benefit i {
  color: #4ade80;
  width: 16px;
  text-align: center;
}

.product-availability__status {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  border-radius: 0.25rem;
  font-weight: 500;
}
.product-availability__status.product-availability--in-stock {
  background: #166534;
  color: #bbf7d0;
  border: 1px solid #15803d;
}
.product-availability__status.product-availability--low-stock {
  background: #92400e;
  color: #fde68a;
  border: 1px solid #b45309;
}
.product-availability__status.product-availability--out-of-stock {
  background: #991b1b;
  color: #fecaca;
  border: 1px solid #b91c1c;
}

.header-cart {
  position: relative;
}
.header-cart__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
  border: 1px solid transparent;
  border-radius: 0.25rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  min-height: 44px;
  background: transparent;
  border: 1px solid #4b5563;
  color: #e5e7eb;
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
  min-height: 40px;
}
.header-cart__button:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.header-cart__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.header-cart__button:hover {
  background: #111827;
  color: #f59e0b;
}
.header-cart__button:focus {
  outline-color: #f59e0b;
}
.header-cart__icon {
  font-size: 1.1rem;
}
.header-cart__badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 9999px;
  min-width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--color-white);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
}
.header-cart__badge--visible {
  transform: scale(1);
}
.header-cart__badge--pulse {
  animation: cart-badge-pulse 0.6s ease-in-out;
}
@media (min-width: 768px) {
  .header-cart__badge {
    min-width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
}

@keyframes cart-badge-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cart-layer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: var(--color-white);
  border-left: 1px solid var(--color-gray-200);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}
.cart-layer--open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .cart-layer {
    width: 400px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  }
}
@media (max-width: 767px) {
  .cart-layer {
    top: auto;
    left: 0;
    right: 0;
    height: 80vh;
    border-left: none;
    border-top: 1px solid var(--color-gray-200);
    border-radius: 0.75rem 0.75rem 0 0;
    transform: translateY(100%);
  }
  .cart-layer--open {
    transform: translateY(0);
  }
}

.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(249, 250, 251, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.cart-backdrop--open {
  opacity: 1;
  visibility: visible;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid var(--color-gray-200);
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 1020;
}
.cart-header__title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 700;
  color: var(--neutral-900);
  margin: 0;
}
.cart-header__close {
  background: none;
  border: none;
  color: var(--neutral-600);
  font-size: 1.5rem;
  cursor: pointer;
  padding: clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
}
.cart-header__close:hover {
  background: var(--color-gray-100);
  color: var(--neutral-900);
}

.cart-content {
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  flex: 1;
  overflow-y: auto;
}
.cart-content__empty {
  text-align: center;
  padding: clamp(2rem, 6vw, 3rem) clamp(0.8rem, 2vw, 1rem);
  color: var(--color-gray-600);
}
.cart-content__empty .empty-icon {
  font-size: 3rem;
  color: var(--color-gray-400);
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
.cart-content__empty h3 {
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  color: var(--color-gray-700);
}
.cart-content__empty p {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.cart-item {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1rem);
  padding: clamp(0.8rem, 2vw, 1rem) 0;
  border-bottom: 1px solid var(--color-gray-200);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item__image {
  flex: 0 0 80px;
  width: 80px;
  height: 120px;
  border-radius: 0.25rem;
  overflow: hidden;
  background: var(--color-gray-100);
}
.cart-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cart-item:hover .cart-item__image img {
  transform: translateY(-5px);
}
.cart-item__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  color: var(--color-gray-400);
  border-radius: 0.25rem;
}
.cart-item__placeholder i {
  font-size: 1.5rem;
}
.cart-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.cart-item__title {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.4;
}
.cart-item__meta {
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  margin-top: auto;
}
.cart-item__price-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.2rem, 0.5vw, 0.25rem);
}
.cart-item__unit-price {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--color-gray-600);
}
.cart-item__total-price {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  color: var(--color-primary);
}
.cart-item__quantity {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.cart-item__quantity-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-gray-300);
  background: var(--color-white);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-gray-600);
  transition: all all 0.2s ease-in-out ease-in-out;
}
.cart-item__quantity-btn:hover:not(:disabled) {
  background: var(--color-gray-50);
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.cart-item__quantity-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cart-item__quantity-btn i {
  font-size: 0.75rem;
}
.cart-item__quantity-value {
  min-width: 40px;
  text-align: center;
  font-weight: 500;
  color: var(--color-text-primary);
}
.cart-item__remove {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  color: var(--color-gray-500);
  cursor: pointer;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all all 0.2s ease-in-out ease-in-out;
}
.cart-item__remove:hover {
  background: var(--color-error-50);
  color: var(--color-error);
}
.cart-item__remove i {
  font-size: 0.875rem;
}

.cart-summary {
  padding: clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
}
.cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}
.cart-summary__total .total-price {
  color: var(--color-primary);
}
.cart-summary__actions {
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.cart-summary__actions .cart-button {
  width: 100%;
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  border-radius: 0.25rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all all 0.2s ease-in-out ease-in-out;
}
.cart-summary__actions .cart-button--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}
.cart-summary__actions .cart-button--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}
.cart-summary__actions .cart-button--secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cart-summary__actions .cart-button--secondary:hover {
  background: var(--color-primary-50);
}

.cart-content {
  flex: 1;
  padding: clamp(1rem, 3vw, 1.5rem);
}
.cart-content--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--neutral-600);
  gap: clamp(0.8rem, 2vw, 1rem);
}
.cart-content--empty i {
  font-size: 3rem;
  color: var(--neutral-400);
}

.cart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 3vw, 1.5rem);
  min-height: 400px;
}
.cart-empty__icon {
  position: relative;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.cart-empty__icon i {
  font-size: 4rem;
  color: #4b5563;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.2s ease-in-out;
}
@supports not (-webkit-background-clip: text) {
  .cart-empty__icon i {
    color: #f59e0b;
  }
}
.cart-empty__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, transparent 30%, rgba(217, 119, 6, 0.1) 50%, transparent 70%);
  border-radius: 9999px;
  animation: cart-empty-pulse 3s ease-in-out infinite;
  z-index: -1;
}
.cart-empty__title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
  line-height: 1.2;
}
.cart-empty__text {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: #d1d5db;
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
  line-height: 1.75;
  max-width: 300px;
}
.cart-empty .shop-button {
  transition: transform box-shadow ease-in-out;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.cart-empty .shop-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
}
.cart-empty .shop-button--primary {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  border-color: #d97706;
  color: #f9fafb;
}
.cart-empty .shop-button--primary:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  border-color: #d97706;
  color: #f9fafb;
}

@keyframes cart-empty-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.9);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2vw, 1rem);
}

.cart-item {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  background: var(--color-gray-50);
  border-radius: 0.5rem;
  border: 1px solid var(--color-gray-200);
}
.cart-item__image {
  width: 80px;
  height: 80px;
  border-radius: 0.25rem;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cart-item:hover .cart-item__image img {
  transform: translateY(-5px);
}
.cart-item__info {
  flex: 1;
  min-width: 0;
}
.cart-item__title {
  font-weight: 500;
  color: var(--neutral-900);
  margin-bottom: clamp(0.2rem, 0.5vw, 0.25rem);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item__price {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
}
.cart-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}
.cart-item__quantity {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.cart-item__quantity button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-gray-300);
  background: var(--color-white);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.cart-item__quantity button:hover {
  background: var(--color-gray-50);
  border-color: var(--color-primary);
}
.cart-item__quantity button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cart-item__quantity span {
  min-width: 32px;
  text-align: center;
  font-weight: 500;
}
.cart-item__remove {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
}
.cart-item__remove:hover {
  background: #991b1b;
  color: #fca5a5;
}

.cart-footer {
  padding: clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid #374151;
  background: #111827;
  position: sticky;
  bottom: 0;
}

.cart-summary {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.cart-summary__row--total {
  font-weight: 700;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  color: #f9fafb;
  padding-top: clamp(0.4rem, 1vw, 0.5rem);
  border-top: 1px solid #374151;
}
.cart-summary__label {
  color: #d1d5db;
}
.cart-summary__value {
  color: #f9fafb;
  font-weight: 500;
}
.cart-summary__value--discount {
  color: #86efac;
  font-weight: 700;
}
.cart-summary__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.cart-summary__line--hidden {
  display: none;
}
.cart-summary__line--discount {
  color: #86efac;
}
.cart-summary__line--discount .cart-summary__label {
  color: #86efac;
  font-weight: 500;
}
.cart-summary__line--discount .cart-summary__label i {
  margin-right: clamp(0.2rem, 0.5vw, 0.25rem);
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.cart-actions__checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
  border: 1px solid transparent;
  border-radius: 0.25rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  min-height: 44px;
  background-color: #f59e0b;
  color: #111827;
  border-color: #f59e0b;
  font-weight: 700;
  width: 100%;
}
.cart-actions__checkout:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.cart-actions__checkout:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cart-actions__checkout:hover:not(:disabled) {
  background-color: rgb(196.9291338583, 126.7125984252, 8.0708661417);
  border-color: rgb(196.9291338583, 126.7125984252, 8.0708661417);
}
.cart-actions__checkout:active:not(:disabled) {
  background-color: rgb(172.4330708661, 110.9507874016, 7.0669291339);
  transform: translateY(1px);
}
.cart-actions__continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
  border: 1px solid transparent;
  border-radius: 0.25rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  min-height: 44px;
  background-color: transparent;
  color: #d1d5db;
  border-color: #d1d5db;
  width: 100%;
}
.cart-actions__continue:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.cart-actions__continue:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cart-actions__continue:hover:not(:disabled) {
  background-color: #d1d5db;
  color: #111827;
}

.shop-add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
  border: 1px solid transparent;
  border-radius: 0.25rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  min-height: 44px;
  background-color: #f59e0b;
  color: #111827;
  border-color: #f59e0b;
  position: relative;
  overflow: hidden;
}
.shop-add-to-cart:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-add-to-cart:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.shop-add-to-cart:hover:not(:disabled) {
  background-color: rgb(196.9291338583, 126.7125984252, 8.0708661417);
  border-color: rgb(196.9291338583, 126.7125984252, 8.0708661417);
}
.shop-add-to-cart:active:not(:disabled) {
  background-color: rgb(172.4330708661, 110.9507874016, 7.0669291339);
  transform: translateY(1px);
}
.shop-add-to-cart:disabled {
  background-color: #6b7280;
  color: #111827;
  border-color: #6b7280;
}
.shop-add-to-cart:disabled:hover:not(:disabled) {
  background-color: rgb(83.7787234043, 89.2595744681, 100.2212765957);
  border-color: rgb(83.7787234043, 89.2595744681, 100.2212765957);
}
.shop-add-to-cart:disabled:active:not(:disabled) {
  background-color: rgb(72.1680851064, 76.8893617021, 86.3319148936);
  transform: translateY(1px);
}
.shop-add-to-cart--loading {
  color: transparent;
}
.shop-add-to-cart--loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid #111827;
  border-radius: 9999px;
  animation: spin 1s linear infinite;
}
.shop-add-to-cart--success {
  background-color: #4ade80;
  color: #111827;
  border-color: #4ade80;
}
.shop-add-to-cart--success:hover:not(:disabled) {
  background-color: rgb(37.7803738318, 207.2196261682, 99.6028037383);
  border-color: rgb(37.7803738318, 207.2196261682, 99.6028037383);
}
.shop-add-to-cart--success:active:not(:disabled) {
  background-color: rgb(33.8481308411, 185.6518691589, 89.2359813084);
  transform: translateY(1px);
}
.shop-add-to-cart--success::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2em;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.toast-container {
  position: fixed;
  top: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  z-index: 1080;
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
@media (max-width: 767px) {
  .toast-container {
    top: clamp(0.8rem, 2vw, 1rem);
    right: clamp(0.8rem, 2vw, 1rem);
    left: clamp(0.8rem, 2vw, 1rem);
  }
}

.toast {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: clamp(0.8rem, 2vw, 1rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  max-width: 400px;
}
.toast--show {
  transform: translateX(0);
}
.toast--success {
  border-left: 4px solid #4ade80;
}
.toast--success .toast__icon {
  color: #4ade80;
}
.toast--error {
  border-left: 4px solid #f87171;
}
.toast--error .toast__icon {
  color: #f87171;
}
.toast__content {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.toast__icon {
  font-size: 1.2rem;
  margin-top: 2px;
}
.toast__text {
  flex: 1;
}
.toast__text strong {
  display: block;
  margin-bottom: clamp(0.2rem, 0.5vw, 0.25rem);
  color: #f9fafb;
}
.toast__text span {
  color: #d1d5db;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.toast__close {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: clamp(0.2rem, 0.5vw, 0.25rem);
}
.toast__close:hover {
  color: #d1d5db;
}

@media (max-width: 767px) {
  .product-detail {
    padding: clamp(1rem, 3vw, 1.5rem) 0;
  }
  .product-detail__layout {
    gap: clamp(1rem, 3vw, 1.5rem);
  }
  .product-info__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .product-info__pricing {
    padding: clamp(0.8rem, 2vw, 1rem);
  }
  .product-pricing__main {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.4rem, 1vw, 0.5rem);
  }
  .product-pricing__current {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
  .cart-item {
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
    padding: clamp(0.6rem, 1.5vw, 0.75rem);
  }
  .cart-item__image {
    width: 60px;
    height: 60px;
  }
  .cart-item__controls {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.4rem, 1vw, 0.5rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cart-layer,
  .cart-backdrop,
  .toast,
  .product-gallery__image {
    transition: none;
  }
  .cart-badge--pulse {
    animation: none;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
}
.cart-layer:focus-within,
.cart-item:focus-within,
.toast:focus-within {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

.shop-product-info-section {
  padding: clamp(2.5rem, 8vw, 4rem) 0;
  background: var(--color-background, #111827);
}
.shop-product-info-section .shop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(0.8rem, 2vw, 1rem);
  width: 100%;
  box-sizing: border-box;
}

.shop-product-care__content {
  padding: clamp(1.2rem, 4vw, 2rem) 0;
}

.shop-card--info {
  background: var(--color-surface, #1f2937);
  border: 1px solid var(--color-border, #374151);
  border-radius: 0.5rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  height: 100%;
  transition: all all 0.2s ease-in-out ease-in-out;
}
.shop-card--info:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
  border-color: var(--color-primary, #fbbf24);
}
.shop-card--info .shop-card__content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.shop-card--info .shop-card__header {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
  padding-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
  border-bottom: 1px solid var(--color-border, #374151);
}
.shop-card--info .shop-card__header .shop-icon {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  color: var(--color-primary, #f59e0b);
  flex-shrink: 0;
}
.shop-card--info .shop-card__title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary, #f9fafb);
  margin: 0;
  line-height: 1.2;
}
.shop-card--info .shop-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.shop-card--info .shop-card__list li {
  padding: clamp(0.4rem, 1vw, 0.5rem) 0;
  border-bottom: 1px solid var(--color-border-light, #1f2937);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.5;
  color: var(--color-text-secondary, #e5e7eb);
}
.shop-card--info .shop-card__list li:last-child {
  border-bottom: none;
}
.shop-card--info .shop-card__list li strong {
  color: var(--color-text-primary, #f9fafb);
  font-weight: 500;
  margin-right: clamp(0.2rem, 0.5vw, 0.25rem);
}

.shop-card-grid--auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
}
@media (min-width: 1024px) {
  .shop-card-grid--auto {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1440px) {
  .shop-card-grid--auto {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .shop-card--info {
    padding: clamp(0.8rem, 2vw, 1rem);
  }
  .shop-card--info .shop-card__header {
    margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
  }
  .shop-card--info .shop-card__header .shop-icon {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
  .shop-card--info .shop-card__title {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
  .shop-card--info .shop-card__list li {
    padding: clamp(0.2rem, 0.5vw, 0.25rem) 0;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
  .shop-card-grid--auto {
    grid-template-columns: 1fr;
    gap: clamp(0.8rem, 2vw, 1rem);
  }
}
[data-theme=dark] .shop-card--info {
  background: var(--color-surface-dark, #f3f4f6);
  border-color: var(--color-border-dark, #e5e7eb);
}
[data-theme=dark] .shop-card--info .shop-card__header {
  border-color: var(--color-border-dark, #e5e7eb);
}
[data-theme=dark] .shop-card--info .shop-card__title {
  color: var(--color-text-primary-dark, #1f2937);
}
[data-theme=dark] .shop-card--info .shop-card__list li {
  color: var(--color-text-secondary-dark, #4b5563);
  border-color: var(--color-border-light-dark, #e5e7eb);
}
[data-theme=dark] .shop-card--info .shop-card__list li strong {
  color: var(--color-text-primary-dark, #1f2937);
}

/*!
 * BlechArt.shop - Legal Pages Components
 * Impressum, Datenschutz, AGB
 * Komplett responsive Design nach Style Guide
 */
@media (max-width: 1023px) {
  .shop-section--legal .shop-container {
    padding: 0 clamp(0.6rem, 1.5vw, 0.75rem);
  }
}
@media (max-width: 767px) {
  .shop-section--legal .shop-container {
    padding: 0 clamp(0.4rem, 1vw, 0.5rem);
  }
}
@media (max-width: 431px) {
  .shop-section--legal .shop-container {
    padding: 0;
  }
}
@media (max-width: 375px) {
  .shop-section--legal .shop-container {
    padding: 0;
  }
}

.shop-hero--legal {
  position: relative;
  background-image: linear-gradient(135deg, rgba(245, 158, 11, 0.85) 0%, rgba(172.4330708661, 110.9507874016, 7.0669291339, 0.9) 50%, rgba(243, 244, 246, 0.8) 100%), url("/uploads/media/hero_image.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
}
.shop-hero--legal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%, rgba(249, 250, 251, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}
.shop-hero--legal .shop-container,
.shop-hero--legal .shop-hero__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .shop-hero--legal {
    background-attachment: scroll;
    min-height: 50vh;
  }
}
@media (max-width: 431px) {
  .shop-hero--legal .shop-container {
    padding: 0 clamp(0.4rem, 1vw, 0.5rem);
  }
}
@media (max-width: 375px) {
  .shop-hero--legal .shop-container {
    padding: 0 clamp(0.2rem, 0.5vw, 0.25rem);
  }
}
@media (max-width: 767px) {
  .shop-hero--legal {
    background-attachment: scroll !important;
    min-height: 40vh;
    padding: clamp(1.2rem, 4vw, 2rem) 0;
  }
}
@media (max-width: 431px) {
  .shop-hero--legal {
    min-height: 35vh;
    padding: clamp(1rem, 3vw, 1.5rem) 0;
    background-position: center center;
    background-size: cover;
  }
}
@media (max-width: 375px) {
  .shop-hero--legal {
    min-height: 30vh;
    padding: clamp(0.8rem, 2vw, 1rem) 0;
  }
}

.shop-legal {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(1.2rem, 4vw, 2rem);
}
@media (max-width: 1023px) {
  .shop-legal {
    grid-template-columns: 250px 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
  }
}
@media (max-width: 767px) {
  .shop-legal {
    display: block;
    grid-template-columns: none;
    gap: 0;
  }
}
.shop-legal__sidebar {
  position: sticky;
  top: clamp(1.2rem, 4vw, 2rem);
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 767px) {
  .shop-legal__sidebar {
    position: static;
    width: 100%;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    padding: 0 clamp(0.8rem, 2vw, 1rem);
  }
}
@media (max-width: 431px) {
  .shop-legal__sidebar {
    padding: 0 clamp(0.6rem, 1.5vw, 0.75rem);
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
  }
}
@media (max-width: 375px) {
  .shop-legal__sidebar {
    padding: 0 clamp(0.4rem, 1vw, 0.5rem);
    margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}
.shop-legal__content {
  min-width: 0;
}
@media (max-width: 767px) {
  .shop-legal__content {
    width: 100%;
    padding: 0 clamp(0.8rem, 2vw, 1rem);
    margin: 0;
  }
}
@media (max-width: 431px) {
  .shop-legal__content {
    padding: 0 clamp(0.6rem, 1.5vw, 0.75rem);
  }
}
@media (max-width: 375px) {
  .shop-legal__content {
    padding: 0 clamp(0.4rem, 1vw, 0.5rem);
  }
}
.shop-legal__nav {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
@media (max-width: 767px) {
  .shop-legal__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(0.4rem, 1vw, 0.5rem);
    justify-content: center;
  }
}
@media (max-width: 431px) {
  .shop-legal__nav {
    gap: clamp(0.2rem, 0.5vw, 0.25rem);
  }
}
.shop-legal__nav-link {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  word-break: break-word;
}
@media (max-width: 767px) {
  .shop-legal__nav-link {
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    text-align: center;
  }
}
@media (max-width: 431px) {
  .shop-legal__nav-link {
    padding: clamp(0.4rem, 1vw, 0.5rem);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    gap: clamp(0.2rem, 0.5vw, 0.25rem);
  }
}
.shop-legal__nav-link:hover, .shop-legal__nav-link--active {
  background-color: var(--color-primary-alpha);
  color: var(--color-primary);
}
.shop-legal__nav-link .shop-icon {
  font-size: 1.2rem;
}
@media (max-width: 431px) {
  .shop-legal__nav-link .shop-icon {
    font-size: 1rem;
  }
}
.shop-legal__toc {
  display: flex;
  flex-direction: column;
  gap: clamp(0.2rem, 0.5vw, 0.25rem);
}
@media (max-width: 767px) {
  .shop-legal__toc {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(0.2rem, 0.5vw, 0.25rem);
    justify-content: center;
  }
}
.shop-legal__toc-link {
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  line-height: 1.2;
  word-break: break-word;
}
@media (max-width: 767px) {
  .shop-legal__toc-link {
    padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
    font-size: 0.8rem;
    text-align: center;
  }
}
@media (max-width: 431px) {
  .shop-legal__toc-link {
    padding: clamp(0.2rem, 0.5vw, 0.25rem);
    font-size: 0.75rem;
  }
}
.shop-legal__toc-link:hover {
  background-color: var(--color-gray-100);
  color: var(--color-text-primary);
}
.shop-legal__section {
  margin-bottom: clamp(2rem, 6vw, 3rem);
}
@media (max-width: 767px) {
  .shop-legal__section {
    margin-bottom: clamp(1.2rem, 4vw, 2rem);
  }
}
@media (max-width: 431px) {
  .shop-legal__section {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }
}
.shop-legal__section-title {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  padding-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
  border-bottom: 2px solid var(--color-primary-alpha);
}
@media (max-width: 767px) {
  .shop-legal__section-title {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    gap: clamp(0.4rem, 1vw, 0.5rem);
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
    padding-bottom: clamp(0.4rem, 1vw, 0.5rem);
  }
}
@media (max-width: 431px) {
  .shop-legal__section-title {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    gap: clamp(0.4rem, 1vw, 0.5rem);
    margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
    flex-wrap: wrap;
  }
}
.shop-legal__section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 9999px;
  font-weight: 700;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .shop-legal__section-number {
    width: 2rem;
    height: 2rem;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
}
@media (max-width: 431px) {
  .shop-legal__section-number {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.8rem;
  }
}
.shop-legal__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  margin: clamp(1rem, 3vw, 1.5rem) 0;
}
@media (max-width: 767px) {
  .shop-legal__info-grid {
    grid-template-columns: 1fr;
    gap: clamp(0.8rem, 2vw, 1rem);
    margin: clamp(0.8rem, 2vw, 1rem) 0;
  }
}
@media (max-width: 431px) {
  .shop-legal__info-grid {
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
    margin: clamp(0.6rem, 1.5vw, 0.75rem) 0;
  }
}
.shop-legal__info-card {
  background: var(--color-white);
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--color-gray-200);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 767px) {
  .shop-legal__info-card {
    padding: clamp(0.8rem, 2vw, 1rem);
    border-radius: 0.375rem;
  }
}
@media (max-width: 431px) {
  .shop-legal__info-card {
    padding: clamp(0.6rem, 1.5vw, 0.75rem);
    border-radius: 0.25rem;
  }
}
@media (max-width: 375px) {
  .shop-legal__info-card {
    padding: clamp(0.4rem, 1vw, 0.5rem);
  }
}
.shop-legal__info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  border-color: var(--color-primary-light);
}
@media (max-width: 767px) {
  .shop-legal__info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
  }
}
.shop-legal__info-card--full {
  grid-column: 1/-1;
}
.shop-legal__info-card--warning {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #fcd34d;
  color: #78350f;
}
.shop-legal__info-card--warning .shop-legal__info-value {
  color: #92400e;
}
.shop-legal__info-label {
  color: var(--color-text-secondary);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  line-height: 1.2;
}
@media (max-width: 431px) {
  .shop-legal__info-label {
    font-size: 0.8rem;
    margin-bottom: clamp(0.2rem, 0.5vw, 0.25rem);
  }
}
.shop-legal__info-value {
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
@media (max-width: 767px) {
  .shop-legal__info-value {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    line-height: 1.75;
  }
}
@media (max-width: 431px) {
  .shop-legal__info-value {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}
.shop-legal__info-value strong {
  color: var(--color-primary);
  font-weight: 700;
}
.shop-legal__info-value a {
  color: var(--color-primary);
  text-decoration: underline;
  word-break: break-all;
}
.shop-legal__info-value a:hover {
  color: var(--color-primary-light);
}
.shop-legal__address {
  font-style: normal;
}
.shop-legal__subsection {
  margin: clamp(1.2rem, 4vw, 2rem) 0;
}
@media (max-width: 767px) {
  .shop-legal__subsection {
    margin: clamp(1rem, 3vw, 1.5rem) 0;
  }
}
@media (max-width: 431px) {
  .shop-legal__subsection {
    margin: clamp(0.8rem, 2vw, 1rem) 0;
  }
}
.shop-legal__subsection-title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
@media (max-width: 767px) {
  .shop-legal__subsection-title {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}
@media (max-width: 431px) {
  .shop-legal__subsection-title {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  }
}
.shop-legal__list {
  margin: clamp(0.8rem, 2vw, 1rem) 0;
  padding-left: clamp(1rem, 3vw, 1.5rem);
}
@media (max-width: 767px) {
  .shop-legal__list {
    padding-left: clamp(0.8rem, 2vw, 1rem);
    margin: clamp(0.6rem, 1.5vw, 0.75rem) 0;
  }
}
@media (max-width: 431px) {
  .shop-legal__list {
    padding-left: clamp(0.6rem, 1.5vw, 0.75rem);
    margin: clamp(0.4rem, 1vw, 0.5rem) 0;
  }
}
.shop-legal__list li {
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  color: #4b5563;
  line-height: 1.75;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 767px) {
  .shop-legal__list li {
    margin-bottom: clamp(0.2rem, 0.5vw, 0.25rem);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    line-height: 1.5;
  }
}
@media (max-width: 431px) {
  .shop-legal__list li {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}
.shop-legal__list li::marker {
  color: var(--color-primary);
}
.shop-legal__list--rights li {
  padding: clamp(0.6rem, 1.5vw, 0.75rem) 0;
  border-bottom: 1px solid var(--color-gray-200);
}
@media (max-width: 767px) {
  .shop-legal__list--rights li {
    padding: clamp(0.4rem, 1vw, 0.5rem) 0;
  }
}
@media (max-width: 431px) {
  .shop-legal__list--rights li {
    padding: clamp(0.2rem, 0.5vw, 0.25rem) 0;
  }
}
.shop-legal__list--rights li:last-child {
  border-bottom: none;
}
.shop-legal__list--rights li strong {
  color: var(--color-primary);
  font-weight: 700;
}
.shop-legal__actions {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1rem);
  flex-wrap: wrap;
  margin-top: clamp(1rem, 3vw, 1.5rem);
}
@media (max-width: 767px) {
  .shop-legal__actions {
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
    margin-top: clamp(0.8rem, 2vw, 1rem);
    justify-content: center;
  }
}
@media (max-width: 431px) {
  .shop-legal__actions {
    gap: clamp(0.4rem, 1vw, 0.5rem);
    margin-top: clamp(0.6rem, 1.5vw, 0.75rem);
    flex-direction: column;
  }
}
.shop-legal__footer {
  margin-top: clamp(2rem, 6vw, 3rem);
  padding-top: clamp(1.2rem, 4vw, 2rem);
  border-top: 2px solid var(--color-gray-200);
}
@media (max-width: 767px) {
  .shop-legal__footer {
    margin-top: clamp(1.2rem, 4vw, 2rem);
    padding-top: clamp(1rem, 3vw, 1.5rem);
  }
}
@media (max-width: 431px) {
  .shop-legal__footer {
    margin-top: clamp(1rem, 3vw, 1.5rem);
    padding-top: clamp(0.8rem, 2vw, 1rem);
  }
}
.shop-legal__update {
  margin-top: clamp(0.8rem, 2vw, 1rem);
  text-align: center;
  color: var(--color-text-muted);
}
@media (max-width: 431px) {
  .shop-legal__update {
    margin-top: clamp(0.6rem, 1.5vw, 0.75rem);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
}
.shop-legal__update .shop-icon {
  margin-right: clamp(0.2rem, 0.5vw, 0.25rem);
  color: var(--color-primary);
}

.shop-email-revealed,
.shop-phone-revealed {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  flex-wrap: wrap;
}
@media (max-width: 431px) {
  .shop-email-revealed,
  .shop-phone-revealed {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.2rem, 0.5vw, 0.25rem);
  }
}
.shop-email-revealed .shop-link,
.shop-phone-revealed .shop-link {
  word-break: break-all;
  flex: 1;
  min-width: 0;
}
.shop-email-revealed .shop-button,
.shop-phone-revealed .shop-button {
  flex-shrink: 0;
}
@media (max-width: 431px) {
  .shop-email-revealed .shop-button,
  .shop-phone-revealed .shop-button {
    width: 100%;
    justify-content: center;
  }
}

.shop-notification {
  position: fixed;
  top: clamp(0.8rem, 2vw, 1rem);
  right: clamp(0.8rem, 2vw, 1rem);
  z-index: 1080;
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  border-radius: 0.375rem;
  color: var(--color-white);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
  max-width: 320px;
  word-wrap: break-word;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
}
@media (max-width: 431px) {
  .shop-notification {
    top: clamp(0.4rem, 1vw, 0.5rem);
    right: clamp(0.4rem, 1vw, 0.5rem);
    left: clamp(0.4rem, 1vw, 0.5rem);
    max-width: none;
    width: auto;
  }
}
.shop-notification--success {
  background-color: var(--color-success);
}
.shop-notification--error {
  background-color: var(--color-error);
}
.shop-notification--info {
  background-color: var(--color-info);
}
.shop-notification--slide-in {
  animation: slideInRight 0.3s ease-out;
}
@media (max-width: 431px) {
  .shop-notification--slide-in {
    animation: slideInDown 0.3s ease-out;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media print {
  .shop-legal__sidebar {
    display: none;
  }
  .shop-legal__content {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
  }
  .shop-legal__actions, .shop-legal__footer {
    display: none;
  }
  .shop-legal__info-card {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
/*!
 * BlechArt.shop - Applications/Einsatzbereiche Komponenten
 * Styles für die Einsatzbereiche-Seite nach Style-Guide
 */
.shop-applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-top: clamp(1.2rem, 4vw, 2rem);
}
.shop-applications-grid .shop-reveal {
  opacity: 1 !important;
  transform: none !important;
}
@media (max-width: 767px) {
  .shop-applications-grid .shop-reveal,
  .shop-applications-grid .shop-application-card,
  .shop-applications-grid .shop-product-preview,
  .shop-applications-grid .shop-product-preview__item,
  .shop-applications-grid .shop-product-preview__image {
    transform: none !important;
  }
}
@media (max-width: 1023px) {
  .shop-applications-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(0.8rem, 2vw, 1rem);
    margin-top: clamp(1rem, 3vw, 1.5rem);
  }
}
@media (max-width: 767px) {
  .shop-applications-grid {
    grid-template-columns: 1fr;
    gap: clamp(0.8rem, 2vw, 1rem);
    margin-top: clamp(0.8rem, 2vw, 1rem);
  }
}
@media (max-width: 431px) {
  .shop-applications-grid {
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
    margin-top: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}

.shop-application-card {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow, border-color;
}
@media (hover: hover) and (pointer: fine) {
  .shop-application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
    border-color: #f59e0b;
  }
  .shop-application-card:hover .shop-application-card__icon {
    transform: scale(1.1);
    color: #f59e0b;
  }
  .shop-application-card:hover .shop-product-preview__image {
    transform: scale(1.05);
  }
  .shop-application-card:hover .shop-application-card__cta {
    color: #f59e0b;
  }
  .shop-application-card:hover .shop-application-card__cta .shop-icon {
    transform: translateX(4px);
  }
}
.shop-application-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.shop-application-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.8rem, 2vw, 1rem) clamp(0.8rem, 2vw, 1rem) clamp(0.4rem, 1vw, 0.5rem);
}
@media (max-width: 431px) {
  .shop-application-card__header {
    padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.4rem, 1vw, 0.5rem);
  }
}
.shop-application-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 0.5rem;
  color: #f59e0b;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
@media (max-width: 431px) {
  .shop-application-card__icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}
.shop-application-card__badge .shop-badge {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 700;
}
@media (max-width: 431px) {
  .shop-application-card__badge .shop-badge {
    font-size: 0.75rem;
    padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
  }
}
.shop-application-card__content {
  padding: 0 clamp(0.8rem, 2vw, 1rem) clamp(0.6rem, 1.5vw, 0.75rem);
}
@media (max-width: 431px) {
  .shop-application-card__content {
    padding: 0 clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.4rem, 1vw, 0.5rem);
  }
}
.shop-application-card__title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  line-height: 1.2;
}
@media (max-width: 767px) {
  .shop-application-card__title {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    margin-bottom: clamp(0.2rem, 0.5vw, 0.25rem);
  }
}
@media (max-width: 431px) {
  .shop-application-card__title {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
}
.shop-application-card__description {
  color: #d1d5db;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  line-height: 1.75;
  margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 431px) {
  .shop-application-card__description {
    font-size: 0.8rem;
    margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
    -webkit-line-clamp: 3;
  }
}
.shop-application-card__gallery {
  padding: 0 clamp(0.8rem, 2vw, 1rem) clamp(0.6rem, 1.5vw, 0.75rem);
}
@media (max-width: 431px) {
  .shop-application-card__gallery {
    padding: 0 clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.4rem, 1vw, 0.5rem);
  }
}
.shop-application-card__footer {
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem) clamp(0.8rem, 2vw, 1rem);
  border-top: 1px solid #374151;
}
@media (max-width: 431px) {
  .shop-application-card__footer {
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.6rem, 1.5vw, 0.75rem);
  }
}
.shop-application-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e5e7eb;
  font-weight: 500;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  transition: color 0.3s ease;
}
.shop-application-card__cta .shop-icon {
  transition: transform 0.3s ease;
  font-size: 1rem;
}
@media (max-width: 431px) {
  .shop-application-card__cta {
    font-size: 0.8rem;
  }
  .shop-application-card__cta .shop-icon {
    font-size: 0.9rem;
  }
}

.shop-product-preview {
  display: grid;
  gap: clamp(0.2rem, 0.5vw, 0.25rem);
  border-radius: 0.375rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 431px) {
  .shop-product-preview {
    gap: 2px;
  }
}
.shop-product-preview--1 {
  grid-template-columns: 1fr;
  height: 160px;
  justify-items: center;
}
@media (max-width: 768px) {
  .shop-product-preview--1 {
    height: 140px;
  }
}
@media (max-width: 431px) {
  .shop-product-preview--1 {
    height: 120px;
  }
}
.shop-product-preview--2 {
  grid-template-columns: 1fr 1fr;
  height: 120px;
  gap: 0;
  justify-content: center;
}
@media (max-width: 768px) {
  .shop-product-preview--2 {
    height: 100px;
  }
}
@media (max-width: 431px) {
  .shop-product-preview--2 {
    height: 90px;
  }
}
.shop-product-preview--3 {
  grid-template-columns: 1fr 1fr 1fr;
  height: 120px;
  gap: 0;
  justify-content: center;
}
@media (max-width: 768px) {
  .shop-product-preview--3 {
    height: 100px;
  }
}
@media (max-width: 431px) {
  .shop-product-preview--3 {
    height: 90px;
  }
}
.shop-product-preview--many {
  grid-template-columns: 1fr 1fr 1fr;
  height: 120px;
  gap: 0;
  justify-content: center;
}
@media (max-width: 768px) {
  .shop-product-preview--many {
    height: 100px;
  }
}
@media (max-width: 431px) {
  .shop-product-preview--many {
    height: 90px;
  }
}
.shop-product-preview__item {
  position: relative;
  overflow: hidden;
  background: #374151;
  border-radius: 0.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.2rem, 0.5vw, 0.25rem);
}
@media (max-width: 767px) {
  .shop-product-preview__item {
    align-items: center;
    justify-content: center;
  }
}
.shop-product-preview__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 0.125rem;
}
@media (max-width: 767px) {
  .shop-product-preview__image {
    -o-object-position: center center;
    object-position: center center;
  }
}
.shop-product-preview__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #6b7280;
  font-size: 1.5rem;
}
@media (max-width: 431px) {
  .shop-product-preview__placeholder {
    font-size: 1.25rem;
  }
}
.shop-product-preview__more {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 66.67%;
  background: rgba(249, 250, 251, 0.85);
  color: #1f2937;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  backdrop-filter: blur(2px);
  border-radius: 0.125rem;
}
.shop-product-preview__more-count {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  margin-bottom: clamp(0.2rem, 0.5vw, 0.25rem);
}
@media (max-width: 431px) {
  .shop-product-preview__more-count {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
}
.shop-product-preview__more-text {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  opacity: 0.9;
}
@media (max-width: 431px) {
  .shop-product-preview__more-text {
    font-size: 0.75rem;
  }
}

.shop-filter-buttons {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}

.shop-filter-button {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  width: 100%;
  padding: clamp(0.6rem, 1.5vw, 0.75rem);
  background: transparent;
  border: 1px solid #4b5563;
  border-radius: 0.375rem;
  color: #e5e7eb;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .shop-filter-button:hover {
    background: rgba(245, 158, 11, 0.05);
    border-color: #f59e0b;
    color: #f59e0b;
  }
}
.shop-filter-button--active {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
  color: #f59e0b;
}
.shop-filter-button--active .shop-icon {
  color: #f59e0b;
}
.shop-filter-button .shop-icon {
  font-size: 1rem;
  color: #9ca3af;
  transition: color 0.3s ease;
}
.shop-filter-button span {
  flex: 1;
}
@media (max-width: 431px) {
  .shop-filter-button {
    padding: clamp(0.4rem, 1vw, 0.5rem);
    font-size: 0.85rem;
  }
  .shop-filter-button .shop-icon {
    font-size: 0.9rem;
  }
}

.shop-sidebar__search-results {
  margin-top: clamp(0.4rem, 1vw, 0.5rem);
  color: #d1d5db;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-style: italic;
}
@media (max-width: 431px) {
  .shop-sidebar__search-results {
    font-size: 0.8rem;
  }
}

.shop-section--cta {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(74, 222, 128, 0.05) 100%);
  border-top: 1px solid #374151;
  border-bottom: 1px solid #374151;
}

.shop-cta {
  text-align: center;
  padding: clamp(2rem, 6vw, 3rem) 0;
}
@media (max-width: 767px) {
  .shop-cta {
    padding: clamp(1.2rem, 4vw, 2rem) 0;
  }
}
@media (max-width: 431px) {
  .shop-cta {
    padding: clamp(1rem, 3vw, 1.5rem) 0;
  }
}
.shop-cta__content {
  max-width: 600px;
  margin: 0 auto;
}
.shop-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 9999px;
  color: #f59e0b;
  font-size: 2rem;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
@media (max-width: 767px) {
  .shop-cta__icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
  }
}
@media (max-width: 431px) {
  .shop-cta__icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}
.shop-cta__title {
  font-size: clamp(2rem, 6vw, 2.5rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
  line-height: 1.2;
}
@media (max-width: 767px) {
  .shop-cta__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}
@media (max-width: 431px) {
  .shop-cta__title {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  }
}
.shop-cta__description {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  color: #d1d5db;
  line-height: 1.75;
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
}
@media (max-width: 767px) {
  .shop-cta__description {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }
}
@media (max-width: 431px) {
  .shop-cta__description {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
  }
}
.shop-cta__actions {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1rem);
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .shop-cta__actions {
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}
@media (max-width: 431px) {
  .shop-cta__actions {
    flex-direction: column;
    gap: clamp(0.4rem, 1vw, 0.5rem);
    align-items: center;
  }
  .shop-cta__actions .shop-button {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 431px) {
  .shop-applications-grid .shop-application-card {
    min-height: auto;
  }
  .shop-applications-grid .shop-application-card__gallery .shop-product-preview {
    height: 80px;
  }
  .shop-application-card,
  .shop-product-preview,
  .shop-product-preview__item,
  .shop-product-preview__image,
  .shop-reveal {
    transform: none !important;
    transition: opacity 0.3s ease !important;
  }
  .shop-layout__sidebar .shop-sidebar__section-title {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    padding: clamp(0.4rem, 1vw, 0.5rem) 0;
  }
  .shop-layout__sidebar .shop-sidebar__content {
    padding: clamp(0.4rem, 1vw, 0.5rem) 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .shop-application-card {
    transition: none !important;
  }
  .shop-application-card:hover {
    transform: none !important;
  }
  .shop-application-card .shop-product-preview__image {
    transition: none !important;
  }
  .shop-application-card .shop-product-preview__image:hover {
    transform: none !important;
  }
  .shop-filter-button {
    transition: none !important;
  }
}
@media (prefers-contrast: high) {
  .shop-application-card {
    border-width: 2px;
  }
  .shop-application-card:hover {
    border-width: 3px;
  }
  .shop-filter-button {
    border-width: 2px;
  }
  .shop-filter-button--active {
    border-width: 3px;
  }
}
/* ====================================
   USER PROFILE STYLES
   Styling für das erweiterte Benutzerprofil mit Tabs
   ==================================== */
/*!
 * BlechArt.shop - Design Tokens (SCSS Variables)
 * Basierend auf style-guide/tokens/
 */
.user-profile {
  background: var(--color-white);
  min-height: 100vh;
  padding: clamp(2.5rem, 8vw, 4rem) 0;
}
.user-profile__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2rem);
  margin-top: clamp(3rem, 12vw, 6rem);
}
.user-profile__section {
  margin-bottom: clamp(3rem, 12vw, 6rem);
}
.user-profile__section--full {
  grid-column: 1/-1;
}

/* ====================================
   PROFIL-VOLLSTÄNDIGKEIT
   ==================================== */
.profile-completion {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 0.5rem;
  padding: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: clamp(3rem, 12vw, 6rem);
}
.profile-completion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
}
.profile-completion__header h3 {
  margin: 0;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: #f9fafb;
}
.profile-completion__percentage {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: #f59e0b;
}

.progress-bar {
  background: rgba(156, 163, 175, 0.1);
  border-radius: 9999px;
  height: 12px;
  overflow: hidden;
  position: relative;
}
.progress-bar__fill {
  background: linear-gradient(90deg, #f59e0b, rgb(247.0078740157, 177.4763779528, 59.9921259843));
  height: 100%;
  border-radius: 9999px;
  transition: width 0.8s ease;
  position: relative;
  width: var(--progress-width, 0%);
}
.progress-bar__fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progress-shimmer 2s infinite;
}

@keyframes progress-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* ====================================
   COMPLETION DETAILS PANEL
   ==================================== */
.profile-completion {
  position: relative;
}
.profile-completion__header {
  cursor: pointer;
  transition: all 0.2s ease;
}
.profile-completion__header:hover {
  background: rgba(245, 158, 11, 0.02);
  border-radius: 0.375rem;
  margin: -clamp(0.8rem, 2vw, 1rem);
  padding: clamp(0.8rem, 2vw, 1rem);
}
.profile-completion__header:hover .profile-completion__info-icon {
  opacity: 1;
  color: #f59e0b;
}
.profile-completion__header h3 {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1rem);
}
.profile-completion__header h3 .fa-chart-pie {
  color: #f59e0b;
}
.profile-completion__info-icon {
  color: #6b7280;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  opacity: 0.7;
  transition: all 0.2s ease;
}
.profile-completion__details {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  margin-top: clamp(1.2rem, 4vw, 2rem);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.profile-completion__details--visible {
  opacity: 1 !important;
  transform: translateY(0);
  pointer-events: auto;
}

.completion-details {
  background: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(156, 163, 175, 0.1);
  overflow: hidden;
}
.completion-details__header {
  background: linear-gradient(135deg, #f59e0b, rgb(246.0039370079, 167.7381889764, 35.4960629921));
  color: white;
  padding: clamp(2.5rem, 8vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.completion-details__header h4 {
  margin: 0;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1rem);
}
.completion-details__close {
  background: none;
  border: none;
  color: white;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  cursor: pointer;
  padding: clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}
.completion-details__close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}
.completion-details__sections {
  padding: clamp(2.5rem, 8vw, 4rem);
  max-height: 400px;
  overflow-y: auto;
}
.completion-details__footer {
  background: rgba(245, 158, 11, 0.05);
  padding: clamp(2.5rem, 8vw, 4rem);
  border-top: 1px solid rgba(156, 163, 175, 0.1);
}

.completion-section:not(:last-child) {
  margin-bottom: clamp(2.5rem, 8vw, 4rem);
  padding-bottom: clamp(2.5rem, 8vw, 4rem);
  border-bottom: 1px solid rgba(156, 163, 175, 0.1);
}
.completion-section__header {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 2rem);
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
}
.completion-section__header i {
  color: #f59e0b;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}
.completion-section__header span {
  font-weight: 600;
  color: #f9fafb;
  flex: 1;
}
.completion-section__percentage {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 700;
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
  border-radius: 9999px;
  background: rgba(156, 163, 175, 0.1);
  color: #d1d5db;
  min-width: 50px;
  text-align: center;
}
.completion-section__percentage.complete {
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
}

.completion-fields {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2vw, 1rem);
}

.completion-field {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 2rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}
.completion-field:hover {
  background: rgba(245, 158, 11, 0.02);
}
.completion-field.complete .fas {
  color: #4ade80;
}
.completion-field.complete span {
  color: #d1d5db;
  text-decoration: line-through;
}
.completion-field.incomplete .fas {
  color: #4b5563;
}
.completion-field.incomplete span {
  color: #f9fafb;
  font-weight: 500;
}
.completion-field span {
  flex: 1;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}
.completion-field__action {
  background: #f59e0b;
  color: white;
  border: none;
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
  border-radius: 0.375rem;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  transition: all 0.2s ease;
}
.completion-field__action:hover {
  background: rgb(221.4251968504, 142.4744094488, 9.0748031496);
  transform: translateX(2px);
}

.completion-motivation {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 6vw, 3rem);
  padding: clamp(2.5rem, 8vw, 4rem);
  border-radius: 0.375rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(245, 158, 11, 0.02));
  border: 1px solid rgba(245, 158, 11, 0.1);
}
.completion-motivation .motivation-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.completion-motivation .motivation-icon i {
  font-size: clamp(1.5rem, 5vw, 2rem);
}
.completion-motivation .motivation-icon i.text-gold {
  color: #fbbf24;
}
.completion-motivation .motivation-icon i.text-success {
  color: #4ade80;
}
.completion-motivation .motivation-icon i.text-info {
  color: #60a5fa;
}
.completion-motivation .motivation-icon i.text-primary {
  color: #f59e0b;
}
.completion-motivation .motivation-content {
  flex: 1;
}
.completion-motivation .motivation-content h5 {
  margin: 0 0 clamp(0.8rem, 2vw, 1rem) 0;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: #f9fafb;
  line-height: 1.3;
}
.completion-motivation .motivation-content p {
  margin: 0;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: #d1d5db;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .completion-motivation {
    flex-direction: column;
    text-align: center;
    gap: clamp(1.2rem, 4vw, 2rem);
  }
  .completion-motivation .motivation-icon {
    width: 50px;
    height: 50px;
  }
  .completion-motivation .motivation-icon i {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
  .completion-motivation .motivation-content h5 {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
  .completion-motivation .motivation-content p {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
}

.completion-notification {
  background: var(--color-white);
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  border-left: 4px solid #f59e0b;
  padding: clamp(2rem, 6vw, 3rem);
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: slideInDown 0.3s ease;
}
.completion-notification--info {
  border-left-color: #60a5fa;
}
.completion-notification--info .fas {
  color: #60a5fa;
}
.completion-notification--success {
  border-left-color: #4ade80;
}
.completion-notification--success .fas {
  color: #4ade80;
}
.completion-notification__content {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 2rem);
}
.completion-notification__content span {
  color: #f9fafb;
  font-weight: 500;
}
.completion-notification__close {
  background: none;
  border: none;
  color: #6b7280;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  cursor: pointer;
  padding: clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.125rem;
  transition: all 0.2s ease;
}
.completion-notification__close:hover {
  background: rgba(156, 163, 175, 0.1);
  color: #d1d5db;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.field-highlight {
  animation: fieldHighlight 2s ease;
}

@keyframes fieldHighlight {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.2);
    transform: scale(1.02);
  }
}
/* ====================================
   TAB NAVIGATION
   ==================================== */
.profile-tabs {
  background: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.profile-tabs__nav {
  display: flex;
  background: rgba(156, 163, 175, 0.05);
  border-bottom: 1px solid rgba(156, 163, 175, 0.1);
}
@media (max-width: 768px) {
  .profile-tabs__nav {
    flex-direction: column;
  }
}
.profile-tabs__tab {
  flex: 1;
  background: none;
  border: none;
  padding: clamp(2.5rem, 8vw, 4rem) clamp(2rem, 6vw, 3rem);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1rem);
  color: #9ca3af;
  font-weight: 500;
}
.profile-tabs__tab:hover {
  background: rgba(245, 158, 11, 0.05);
  color: #f59e0b;
  transform: translateY(-2px);
}
.profile-tabs__tab--active {
  background: var(--color-white);
  color: #f59e0b;
  box-shadow: 0 -2px 8px rgba(245, 158, 11, 0.1);
}
.profile-tabs__tab--active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, rgb(247.0078740157, 177.4763779528, 59.9921259843));
}
.profile-tabs__tab i {
  font-size: clamp(1.5rem, 5vw, 2rem);
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.profile-tabs__tab span {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}
@media (max-width: 640px) {
  .profile-tabs__tab span {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
}
@media (max-width: 768px) {
  .profile-tabs__tab {
    padding-right: calc(clamp(2rem, 6vw, 3rem) + 60px);
    align-items: flex-start;
    text-align: left;
  }
}
.profile-tabs__completion {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.6rem, 1.5vw, 0.75rem);
  border-radius: 9999px;
  background: rgba(156, 163, 175, 0.1);
  color: #d1d5db;
  min-width: 40px;
  text-align: center;
}
.profile-tabs__completion[data-completion="100"] {
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
}
.profile-tabs__completion[data-completion^="7"], .profile-tabs__completion[data-completion^="8"], .profile-tabs__completion[data-completion^="9"] {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
}
@media (max-width: 768px) {
  .profile-tabs__completion {
    position: absolute;
    right: clamp(0.8rem, 2vw, 1rem);
    top: 50%;
    transform: translateY(-50%);
  }
}
.profile-tabs__content {
  display: none;
  padding: clamp(3rem, 12vw, 6rem);
}
.profile-tabs__content--active {
  display: block;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ====================================
   FORM STYLING
   ==================================== */
.profile-form .shop-fieldset {
  border: 2px solid rgba(245, 158, 11, 0.1);
  border-radius: 0.5rem;
  padding: clamp(3rem, 12vw, 6rem);
  margin-bottom: 0;
  background: rgba(245, 158, 11, 0.01);
}
.profile-form .shop-fieldset:hover {
  border-color: rgba(245, 158, 11, 0.2);
  background: rgba(245, 158, 11, 0.02);
}
.profile-form .shop-legend {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: #f9fafb;
  padding: 0 clamp(1.2rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1rem);
}
.profile-form .shop-legend i {
  color: #f59e0b;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.shop-form__grid {
  display: grid;
  gap: clamp(2.5rem, 8vw, 4rem);
}
.shop-form__grid--2-cols {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .shop-form__grid--2-cols {
    grid-template-columns: 1fr;
  }
}
.shop-form__actions {
  display: flex;
  gap: clamp(1.2rem, 4vw, 2rem);
  justify-content: flex-start;
  margin-top: clamp(3rem, 12vw, 6rem);
  padding-top: clamp(2.5rem, 8vw, 4rem);
  border-top: 1px solid rgba(156, 163, 175, 0.1);
}
@media (max-width: 640px) {
  .shop-form__actions {
    flex-direction: column;
  }
}

.shop-field {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-field__help {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #9ca3af;
  line-height: 1.4;
}
.shop-field__help .text-success {
  color: #4ade80;
  font-weight: 500;
}
.shop-field__help .text-warning {
  color: #fbbf24;
  font-weight: 500;
}
.shop-field__error {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #f87171;
  font-weight: 500;
  display: none;
}
.shop-field__error[style*=block] {
  display: block !important;
}
.shop-field__count {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #9ca3af;
  text-align: right;
}
.shop-field__count--warning {
  color: #fbbf24;
  font-weight: 500;
}

.shop-label {
  font-weight: 500;
  color: #f9fafb;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}
.shop-label--small {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 400;
  color: #d1d5db;
}
.shop-label__required {
  color: #f87171;
  margin-left: clamp(0.4rem, 1vw, 0.5rem);
}

.shop-input,
.shop-select,
.shop-textarea {
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 2px solid rgba(156, 163, 175, 0.2);
  border-radius: 0.375rem;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--color-white);
  color: var(--color-text-primary);
  transition: all 0.3s ease;
  width: 100%;
}
.shop-input:focus,
.shop-select:focus,
.shop-textarea:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
  background: var(--color-white);
  transform: translateY(-1px);
}
.shop-input:hover:not(:focus),
.shop-select:hover:not(:focus),
.shop-textarea:hover:not(:focus) {
  border-color: rgba(156, 163, 175, 0.3);
}
.shop-input--readonly,
.shop-select--readonly,
.shop-textarea--readonly {
  background: rgba(156, 163, 175, 0.05);
  color: #9ca3af;
  cursor: not-allowed;
}
.shop-input--readonly:hover, .shop-input--readonly:focus,
.shop-select--readonly:hover,
.shop-select--readonly:focus,
.shop-textarea--readonly:hover,
.shop-textarea--readonly:focus {
  border-color: rgba(156, 163, 175, 0.2);
  box-shadow: none;
  transform: none;
}
.shop-input--error,
.shop-select--error,
.shop-textarea--error {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1) !important;
  background: rgba(248, 113, 113, 0.02);
}

.shop-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.shop-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right clamp(1.2rem, 4vw, 2rem) center;
  background-size: 20px;
  padding-right: calc(clamp(1.2rem, 4vw, 2rem) + 30px);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ====================================
   BIRTHDAY SELECTOR
   ==================================== */
.birthday-selector {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: clamp(1.2rem, 4vw, 2rem);
}
@media (max-width: 640px) {
  .birthday-selector {
    grid-template-columns: 1fr;
    gap: clamp(0.8rem, 2vw, 1rem);
  }
}
.birthday-selector__field {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}

/* ====================================
   CHECKBOX STYLING
   ==================================== */
.shop-checkbox {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.8rem, 2vw, 1rem);
}
.shop-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(156, 163, 175, 0.3);
  border-radius: 0.125rem;
  background: var(--color-white);
  cursor: pointer;
  position: relative;
  margin: 0;
  flex-shrink: 0;
}
.shop-checkbox input[type=checkbox]:checked {
  background: #f59e0b;
  border-color: #f59e0b;
}
.shop-checkbox input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}
.shop-checkbox input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.shop-checkbox__label {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: #f9fafb;
  cursor: pointer;
  line-height: 1.4;
}

/* ====================================
   ALERT MESSAGES
   ==================================== */
.shop-alert {
  padding: clamp(2rem, 6vw, 3rem);
  border-radius: 0.375rem;
  margin-bottom: clamp(2.5rem, 8vw, 4rem);
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1rem);
  font-weight: 500;
  border: 1px solid;
}
.shop-alert i {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  flex-shrink: 0;
}
.shop-alert--error {
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.2);
  color: rgb(245.6040268456, 64.3959731544, 64.3959731544);
}
.shop-alert--success {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.2);
  color: rgb(37.7803738318, 207.2196261682, 99.6028037383);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
  .user-profile__wrapper {
    padding: 0 clamp(0.8rem, 2vw, 1rem);
    margin-top: clamp(2.5rem, 8vw, 4rem);
  }
  .profile-tabs__content {
    padding: clamp(2.5rem, 8vw, 4rem);
  }
  .profile-form .shop-fieldset {
    padding: clamp(2.5rem, 8vw, 4rem);
  }
}
@media (max-width: 768px) {
  .user-profile {
    padding: clamp(1.2rem, 4vw, 2rem) 0;
  }
  .user-profile__wrapper {
    margin-top: clamp(2rem, 6vw, 3rem);
  }
  .user-profile__section {
    margin-bottom: clamp(2.5rem, 8vw, 4rem);
  }
  .profile-completion {
    padding: clamp(2rem, 6vw, 3rem);
  }
  .profile-completion__header {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.8rem, 2vw, 1rem);
  }
  .profile-tabs__nav {
    flex-direction: column;
  }
  .profile-tabs__tab {
    padding: clamp(2rem, 6vw, 3rem);
    flex-direction: row;
    justify-content: flex-start;
  }
  .profile-tabs__tab i {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    margin-bottom: 0;
    margin-right: clamp(0.8rem, 2vw, 1rem);
  }
  .profile-tabs__content {
    padding: clamp(2rem, 6vw, 3rem);
  }
  .shop-form__grid--2-cols {
    grid-template-columns: 1fr;
    gap: clamp(1.2rem, 4vw, 2rem);
  }
  .profile-form .shop-fieldset {
    padding: clamp(2rem, 6vw, 3rem);
  }
}
@media (max-width: 640px) {
  .user-profile {
    padding: clamp(0.8rem, 2vw, 1rem) 0;
  }
  .user-profile__wrapper {
    margin-top: clamp(1.2rem, 4vw, 2rem);
  }
  .profile-completion {
    padding: clamp(1.2rem, 4vw, 2rem);
    margin-bottom: clamp(2.5rem, 8vw, 4rem);
  }
  .profile-tabs__tab {
    padding: clamp(1.2rem, 4vw, 2rem);
  }
  .profile-tabs__tab span {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
  .profile-tabs__content {
    padding: clamp(1.2rem, 4vw, 2rem);
  }
  .shop-input,
  .shop-select,
  .shop-textarea {
    padding: clamp(1rem, 3vw, 1.5rem);
  }
  .shop-form__actions {
    flex-direction: column;
    gap: clamp(0.8rem, 2vw, 1rem);
  }
  .birthday-selector {
    grid-template-columns: 1fr;
    gap: clamp(0.8rem, 2vw, 1rem);
  }
}
/* ====================================
   ACCESSIBILITY ENHANCEMENTS
   ==================================== */
@media (prefers-reduced-motion: reduce) {
  .shop-input,
  .shop-select,
  .shop-textarea,
  .profile-tabs__tab,
  .progress-bar__fill {
    transition: none;
  }
  .progress-bar__fill::after {
    animation: none;
  }
  .profile-tabs__content--active {
    animation: none;
  }
}
@media (prefers-contrast: high) {
  .shop-input,
  .shop-select,
  .shop-textarea {
    border-width: 3px;
  }
  .profile-form .shop-fieldset {
    border-width: 3px;
  }
  .profile-tabs__nav {
    border-bottom-width: 2px;
  }
}
/* ====================================
   PRINT STYLES
   ==================================== */
@media print {
  .user-profile {
    background: none !important;
    color: black !important;
  }
  .profile-tabs__nav {
    display: none;
  }
  .profile-tabs__content {
    display: block !important;
    page-break-inside: avoid;
  }
  .shop-form__actions {
    display: none;
  }
  .shop-alert {
    border: 2px solid black;
    background: none;
  }
}
/**
 * OAuth Avatar Component für Header
 * Zeigt Profilbilder von OAuth-Providern an
 * Befolgt Style-Guide-Vorgaben aus /style-guide/
 */
/*!
 * BlechArt.shop - Design Tokens (SCSS Variables)
 * Basierend auf style-guide/tokens/
 */
.shop-header__user-avatar {
  position: relative;
  overflow: hidden;
}
.shop-header__user-avatar-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.shop-header__user-avatar-img:hover {
  border-color: var(--color-primary);
  transform: scale(1.05);
}
.shop-header__user-avatar-img[alt]:empty::before {
  content: attr(alt);
  display: none;
}
.shop-header__user-avatar-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: white;
  background: var(--color-primary);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .shop-header__mobile-user .shop-header__user-avatar {
    width: 40px;
    height: 40px;
  }
  .shop-header__mobile-user .shop-header__user-avatar-img {
    border-width: 1px;
  }
}
.shop-header__user-dropdown[data-oauth-provider=google] .shop-header__user-avatar-img {
  border-color: rgba(60, 64, 67, 0.3);
}
.shop-header__user-dropdown[data-oauth-provider=google] .shop-header__user-avatar-img:hover {
  border-color: #3c4043;
}

.shop-header__user-dropdown[data-oauth-provider=facebook] .shop-header__user-avatar-img {
  border-color: rgba(24, 119, 242, 0.3);
}
.shop-header__user-dropdown[data-oauth-provider=facebook] .shop-header__user-avatar-img:hover {
  border-color: #1877f2;
}

.shop-header__user-dropdown[data-oauth-provider=apple] .shop-header__user-avatar-img {
  border-color: rgba(0, 0, 0, 0.3);
}
.shop-header__user-dropdown[data-oauth-provider=apple] .shop-header__user-avatar-img:hover {
  border-color: #000000;
}

.shop-header__user-dropdown[data-oauth-provider=amazon] .shop-header__user-avatar-img {
  border-color: rgba(255, 153, 0, 0.3);
}
.shop-header__user-dropdown[data-oauth-provider=amazon] .shop-header__user-avatar-img:hover {
  border-color: #ff9900;
}

.shop-header__user-dropdown[data-oauth-provider=microsoft] .shop-header__user-avatar-img {
  border-color: rgba(0, 120, 212, 0.3);
}
.shop-header__user-dropdown[data-oauth-provider=microsoft] .shop-header__user-avatar-img:hover {
  border-color: #0078d4;
}

.shop-header__user-dropdown[data-oauth-provider=paypal] .shop-header__user-avatar-img {
  border-color: rgba(0, 156, 222, 0.3);
}
.shop-header__user-dropdown[data-oauth-provider=paypal] .shop-header__user-avatar-img:hover {
  border-color: #009cde;
}

@media (prefers-reduced-motion: reduce) {
  .shop-header__user-avatar-img {
    transition: none;
    transform: none !important;
  }
}
.shop-toast-container {
  position: fixed;
  top: clamp(1.2rem, 4vw, 2rem);
  right: clamp(1.2rem, 4vw, 2rem);
  z-index: 15000;
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  pointer-events: none;
}
@media (max-width: 767px) {
  .shop-toast-container {
    top: clamp(1rem, 3vw, 1.5rem);
    right: clamp(1rem, 3vw, 1.5rem);
    left: clamp(1rem, 3vw, 1.5rem);
  }
}

.shop-message {
  background: #111827;
  color: #f9fafb;
  border-radius: 0.375rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  padding: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 300px;
  max-width: 400px;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  border-left: 4px solid #60a5fa;
  position: relative;
  margin-bottom: 0;
  pointer-events: auto;
  backdrop-filter: blur(2px);
}
.shop-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.375rem;
  z-index: -1;
}
@media (max-width: 767px) {
  .shop-message {
    min-width: auto;
    max-width: none;
  }
}
.shop-message.show {
  transform: translateX(0);
  opacity: 1;
}
.shop-message--success {
  border-left-color: #4ade80;
}
.shop-message--success .shop-message__icon {
  color: #4ade80;
}
.shop-message--error {
  border-left-color: #f87171;
}
.shop-message--error .shop-message__icon {
  color: #f87171;
}
.shop-message--warning {
  border-left-color: #fbbf24;
}
.shop-message--warning .shop-message__icon {
  color: #fbbf24;
}
.shop-message--info {
  border-left-color: #60a5fa;
}
.shop-message--info .shop-message__icon {
  color: #60a5fa;
}

.shop-message__content {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  flex: 1;
}

.shop-message__icon {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  flex-shrink: 0;
}

.shop-message__text {
  margin: 0;
  line-height: 1.4;
}

.shop-message__close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.125rem;
  transition: all 0.2s ease;
  margin-left: clamp(0.6rem, 1.5vw, 0.75rem);
  flex-shrink: 0;
}
.shop-message__close:hover {
  background: #374151;
  color: #f9fafb;
}

.shop-confirm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.2rem, 4vw, 2rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.shop-confirm-overlay.show {
  opacity: 1;
  visibility: visible;
}
.shop-confirm-overlay.closing {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .shop-confirm-overlay {
    padding: clamp(1rem, 3vw, 1.5rem);
  }
}

.shop-confirm {
  background: #111827;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}
.shop-confirm-overlay.show .shop-confirm {
  transform: scale(1) translateY(0);
}
@media (max-width: 767px) {
  .shop-confirm {
    max-width: none;
    margin: clamp(1rem, 3vw, 1.5rem);
  }
}

.shop-confirm__header {
  padding: clamp(1.2rem, 4vw, 2rem) clamp(1.2rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid #374151;
}

.shop-confirm__icon {
  font-size: clamp(1.5rem, 5vw, 2rem);
  flex-shrink: 0;
}
.shop-confirm__icon--success {
  color: #4ade80;
}
.shop-confirm__icon--error {
  color: #f87171;
}
.shop-confirm__icon--warning {
  color: #fbbf24;
}
.shop-confirm__icon--info {
  color: #60a5fa;
}

.shop-confirm__title {
  margin: 0;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: #f9fafb;
}

.shop-confirm__body {
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1.2rem, 4vw, 2rem);
}

.shop-confirm__message {
  margin: 0;
  line-height: 1.6;
  color: #d1d5db;
}

.shop-confirm__footer {
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1.2rem, 4vw, 2rem) clamp(1.2rem, 4vw, 2rem);
  display: flex;
  gap: clamp(1rem, 3vw, 1.5rem);
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .shop-confirm__footer {
    flex-direction: column;
    gap: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}

.shop-confirm__btn {
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  cursor: pointer;
  min-width: 100px;
  border: none;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
@media (max-width: 767px) {
  .shop-confirm__btn {
    width: 100%;
  }
}
.shop-confirm__btn--cancel {
  background: #374151;
  color: #f9fafb;
  border: 1px solid #4b5563;
}
.shop-confirm__btn--cancel:hover {
  background: #4b5563;
  border-color: #6b7280;
}
.shop-confirm__btn--cancel:active {
  background: #6b7280;
}
.shop-confirm__btn--confirm {
  color: #111827;
  font-weight: 600;
}
.shop-confirm__btn--confirm--success {
  background: #4ade80;
  border: 1px solid #4ade80;
}
.shop-confirm__btn--confirm--success:hover {
  background: rgb(39.491588785, 215.708411215, 103.7869158879);
  border-color: rgb(39.491588785, 215.708411215, 103.7869158879);
}
.shop-confirm__btn--confirm--error {
  background: #f87171;
  border: 1px solid #f87171;
}
.shop-confirm__btn--confirm--error:hover {
  background: rgb(246.0832214765, 74.1167785235, 74.1167785235);
  border-color: rgb(246.0832214765, 74.1167785235, 74.1167785235);
}
.shop-confirm__btn--confirm--warning {
  background: #fbbf24;
  border: 1px solid #fbbf24;
  color: #f3f4f6;
}
.shop-confirm__btn--confirm--warning:hover {
  background: rgb(241.7838565022, 175.5417040359, 4.4161434978);
  border-color: rgb(241.7838565022, 175.5417040359, 4.4161434978);
}
.shop-confirm__btn--confirm--info {
  background: #60a5fa;
  border: 1px solid #60a5fa;
}
.shop-confirm__btn--confirm--info:hover {
  background: rgb(56.443902439, 142.6097560976, 248.756097561);
  border-color: rgb(56.443902439, 142.6097560976, 248.756097561);
}

@media (prefers-reduced-motion: reduce) {
  .shop-message,
  .shop-confirm-overlay,
  .shop-confirm {
    transition: none;
  }
}
@media (prefers-color-scheme: dark) {
  .shop-message {
    background: #f3f4f6;
    color: #1f2937;
  }
  .shop-confirm {
    background: #f3f4f6;
    color: #1f2937;
  }
  .shop-confirm__header {
    border-bottom-color: #e5e7eb;
  }
  .shop-confirm__btn--cancel {
    background: #e5e7eb;
    color: #1f2937;
    border-color: #d1d5db;
  }
  .shop-confirm__btn--cancel:hover {
    background: #d1d5db;
    border-color: #9ca3af;
  }
}
.shop-marketing-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95) 0%, rgba(180, 83, 9, 0.85) 50%, rgba(243, 244, 246, 0.9) 100%);
  color: var(--color-white, #111827);
  padding: clamp(1.2rem, 4vw, 2rem) 0;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  overflow: hidden;
}
.shop-marketing-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
  z-index: 1;
}
.shop-marketing-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  text-align: center;
}
@media (max-width: 767px) {
  .shop-marketing-banner__content {
    flex-direction: column;
    gap: clamp(0.8rem, 2vw, 1rem);
    text-align: center;
  }
}
.shop-marketing-banner__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  animation: pulse 2s ease-in-out infinite;
}
@media (max-width: 767px) {
  .shop-marketing-banner__icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
.shop-marketing-banner__text {
  flex: 1;
}
@media (max-width: 767px) {
  .shop-marketing-banner__text {
    text-align: center;
  }
}
.shop-marketing-banner__title {
  font-size: clamp(2rem, 6vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 clamp(0.4rem, 1vw, 0.5rem) 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .shop-marketing-banner__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}
.shop-marketing-banner__discounts {
  margin: clamp(0.6rem, 1.5vw, 0.75rem) 0;
}
.shop-marketing-banner__discount {
  display: inline-block;
  margin: clamp(0.2rem, 0.5vw, 0.25rem);
}
.shop-marketing-banner__discount-text {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
  border-radius: 9999px;
  font-weight: 600;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .shop-marketing-banner__discount-text {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.6rem, 1.5vw, 0.75rem);
  }
}
.shop-marketing-banner__subtitle {
  margin: clamp(0.4rem, 1vw, 0.5rem) 0 0 0;
  opacity: 0.9;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.shop-marketing-banner__actions {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .shop-marketing-banner__actions {
    width: 100%;
  }
}
.shop-marketing-banner__actions .shop-button {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.shop-marketing-banner__actions .shop-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.shop-header__discount-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #4ade80 0%, #f59e0b 100%);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 700;
  z-index: 10;
  animation: discountPulse 2s ease-in-out infinite;
  border: 2px solid var(--color-white, #111827);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.shop-header__discount-badge i {
  font-size: 10px;
}
.shop-header__discount-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(74, 222, 128, 0.4);
  animation: discountRipple 2s ease-out infinite;
}

.shop-cart__discount-hints {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 0.25rem;
  padding: clamp(0.6rem, 1.5vw, 0.75rem);
  margin: clamp(0.8rem, 2vw, 1rem) 0;
}
.shop-cart__discount-hints__title {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  color: var(--color-success, #4ade80);
  margin: 0 0 clamp(0.4rem, 1vw, 0.5rem) 0;
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-cart__discount-hints__title i {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.shop-cart__discount-hints__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.shop-cart__discount-hints__item {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  margin: clamp(0.2rem, 0.5vw, 0.25rem) 0;
  padding-left: clamp(0.8rem, 2vw, 1rem);
  position: relative;
}
.shop-cart__discount-hints__item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-success, #4ade80);
  font-weight: 700;
}
.shop-cart__discount-hints__progress {
  margin-top: clamp(0.6rem, 1.5vw, 0.75rem);
  background: rgba(75, 85, 99, 0.3);
  border-radius: 9999px;
  height: 6px;
  overflow: hidden;
  position: relative;
}
.shop-cart__discount-hints__progress-bar {
  background: linear-gradient(90deg, #4ade80 0%, #f59e0b 100%);
  height: 100%;
  border-radius: 9999px;
  transition: width 0.5s ease;
  position: relative;
}
.shop-cart__discount-hints__progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes discountPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
@keyframes discountRipple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@media (max-width: 767px) {
  .shop-marketing-banner {
    padding: clamp(1rem, 3vw, 1.5rem) 0;
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
  }
  .shop-marketing-banner__content {
    padding: 0 clamp(0.8rem, 2vw, 1rem);
  }
  .shop-marketing-banner__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .shop-marketing-banner__discount-text {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.6rem, 1.5vw, 0.75rem);
  }
  .shop-header__discount-badge {
    width: 20px;
    height: 20px;
    top: -6px;
    right: -6px;
  }
  .shop-header__discount-badge i {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .shop-marketing-banner::before,
  .shop-header__discount-badge,
  .shop-header__discount-badge::after,
  .shop-marketing-banner__icon,
  .shop-cart__discount-hints__progress-bar::after {
    animation: none;
  }
}
@media (prefers-color-scheme: dark) {
  .shop-marketing-banner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.8) 0%, rgba(180, 83, 9, 0.7) 50%, rgba(249, 250, 251, 0.95) 100%);
  }
  .shop-cart__discount-hints {
    background: rgba(74, 222, 128, 0.05);
    border-color: rgba(74, 222, 128, 0.2);
  }
}
/**
 * Free Shipping Teaser Component
 * 
 * Oval, schräg geschriebener Teaser für kostenlosen Versand nach Deutschland
 * Folgt den Style-Guide-Vorgaben: zentrale Variablen, BEM-Naming, dunkles Design
 */
.shop-free-shipping-teaser {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 999;
  --base-rotation: -2deg;
  --scroll-y: 0px;
  transform: rotate(var(--base-rotation)) translateY(var(--scroll-y));
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #111827;
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  cursor: default;
  animation: freeShippingSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}
.shop-free-shipping-teaser--scrolled {
  --scroll-y: -10px;
  opacity: 0.9;
}
.shop-free-shipping-teaser--hidden {
  --scroll-y: -100px;
  opacity: 0;
  pointer-events: none;
}
.shop-free-shipping-teaser i {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  opacity: 0.9;
}
.shop-free-shipping-teaser__text {
  white-space: nowrap;
  line-height: 1.2;
}
.shop-free-shipping-teaser--oval {
  border-radius: 25px;
}
@media (max-width: 768px) {
  .shop-free-shipping-teaser--oval {
    transform: rotate(-1deg);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
  }
}
@media (hover: hover) {
  .shop-free-shipping-teaser:hover {
    --scroll-y: -2px;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35), 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  .shop-free-shipping-teaser--scrolled:hover {
    --scroll-y: -12px;
  }
  .shop-free-shipping-teaser--oval:hover {
    --scroll-y: -2px;
  }
}
.shop-free-shipping-teaser:focus, .shop-free-shipping-teaser:focus-visible {
  outline: 2px solid #fbbf24;
  outline-offset: 2px;
}
.shop-free-shipping-teaser--express {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}
.shop-free-shipping-teaser--express i {
  animation: pulse 2s infinite;
}
.shop-free-shipping-teaser--limited-time {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}
.shop-free-shipping-teaser--limited-time::after {
  content: "🔥";
  margin-left: clamp(0.2rem, 0.5vw, 0.25rem);
  animation: pulse 1.5s infinite;
}

@keyframes freeShippingSlideIn {
  from {
    opacity: 0;
    transform: rotate(var(--base-rotation)) translateX(-30px) translateY(var(--scroll-y));
  }
  to {
    opacity: 1;
    transform: rotate(var(--base-rotation)) translateX(0) translateY(var(--scroll-y));
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
@media (max-width: 480px) {
  .shop-free-shipping-teaser {
    top: 55px;
    left: 75px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
    gap: clamp(0.2rem, 0.5vw, 0.25rem);
    z-index: 999;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
  }
  .shop-free-shipping-teaser__text {
    max-width: 340px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .shop-free-shipping-teaser {
    top: 60px;
    right: 10px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.6rem, 1.5vw, 0.75rem);
    gap: clamp(0.2rem, 0.5vw, 0.25rem);
    z-index: 999;
  }
  .shop-free-shipping-teaser__text {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .shop-free-shipping-teaser {
    top: 70px;
    right: 15px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
    z-index: 999;
  }
}
@media (min-width: 1025px) {
  .shop-free-shipping-teaser {
    top: 80px;
    right: 20px;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    z-index: 999;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.3), 0 2px 6px rgba(0, 0, 0, 0.1);
  }
}
/*!
 * BlechArt.shop - Tooltips Component
 * CSP-konforme Tooltip-Styles für bessere Maintainability
 */
.custom-tooltip {
  position: fixed;
  background: rgba(17, 24, 39, 0.9);
  color: #f9fafb;
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
  border-radius: 0.375rem;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  white-space: nowrap;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  max-width: 250px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(249, 250, 251, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
}
.custom-tooltip--visible {
  opacity: 1;
}
.custom-tooltip--dark {
  background: rgba(17, 24, 39, 0.95);
  border-color: rgba(249, 250, 251, 0.05);
}
.custom-tooltip--light {
  background: rgba(249, 250, 251, 0.95);
  color: #111827;
  border-color: rgba(17, 24, 39, 0.1);
}
.custom-tooltip--small {
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.custom-tooltip--large {
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  max-width: 320px;
  white-space: normal;
}
.custom-tooltip::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  display: none;
}
@media (max-width: 575px) {
  .custom-tooltip {
    max-width: 200px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
  }
}

[data-tooltip] {
  position: relative;
  cursor: help;
}
[data-tooltip]:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Zentrale Premium Hover-Effekte für Karten */
.category-card,
.shop-product-card {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow, border-color;
}
.category-card:hover,
.shop-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
  border-color: #f59e0b;
}
.category-card .category-card__img,
.category-card .shop-product-card__image,
.shop-product-card .category-card__img,
.shop-product-card .shop-product-card__image {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.category-card:hover .category-card__img,
.category-card:hover .shop-product-card__image,
.shop-product-card:hover .category-card__img,
.shop-product-card:hover .shop-product-card__image {
  transform: scale(1.05);
}
.category-card .category-card__overlay,
.shop-product-card .category-card__overlay {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.category-card:hover .category-card__overlay,
.shop-product-card:hover .category-card__overlay {
  transform: translateY(0);
}

/* Produktkarten-Layout: Meta und Footer immer am Ende */
.shop-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.shop-product-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.shop-product-card__meta {
  margin-top: auto;
  padding-top: clamp(0.8rem, 2vw, 1rem);
}
.shop-product-card__footer {
  margin-top: clamp(0.8rem, 2vw, 1rem);
}

/*!
 * BlechArt.shop - Shop Styles
 * Gothic & Fantasy E-Commerce - Vollständig nach Style Guide implementiert
 * Dark Mode Support mit CSS Custom Properties
 */
/*!
 * BlechArt.shop - Design Tokens (SCSS Variables)
 * Basierend auf style-guide/tokens/
 */
/*!
 * BlechArt.shop - SCSS Mixins
 * Wiederverwendbare Mixins für Shop-Komponenten
 */
/**
 * Shop Messages - Frontend-Komponenten
 * Für 'general' (sticky teaser) und 'urgent' (modal) Nachrichten
 * 
 * STYLE-GUIDE KONFORM: Nur SCSS-Variablen verwenden!
 */
.shop-message-general {
  position: fixed;
  bottom: clamp(1.2rem, 4vw, 2rem);
  left: clamp(1.2rem, 4vw, 2rem);
  right: clamp(1.2rem, 4vw, 2rem);
  z-index: 1020;
}
@media (max-width: 768px) {
  .shop-message-general {
    left: clamp(1rem, 3vw, 1.5rem);
    right: clamp(1rem, 3vw, 1.5rem);
    bottom: clamp(1rem, 3vw, 1.5rem);
  }
}
.shop-message-general .message-container {
  background: rgba(31, 41, 55, 0.95);
  border: 3px solid rgba(217, 119, 6, 0.5);
  border-radius: 0.5rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  box-shadow: 0 10px 25px -5px rgba(17, 24, 39, 0.4), 0 10px 10px -5px rgba(17, 24, 39, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  will-change: transform, opacity, box-shadow, border-color;
  cursor: pointer;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
}
.shop-message-general .message-container:hover {
  transform: translate3d(0, -2px, 0);
  -webkit-transform: translate3d(0, -2px, 0);
  box-shadow: 0 15px 35px -5px rgba(17, 24, 39, 0.5), 0 15px 15px -5px rgba(17, 24, 39, 0.08);
  border-color: rgba(217, 119, 6, 0.7);
}
@media (max-width: 768px) {
  .shop-message-general .message-container {
    padding: clamp(1rem, 3vw, 1.5rem);
  }
}
.shop-message-general .message-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #111827;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  margin-right: clamp(1rem, 3vw, 1.5rem);
  flex-shrink: 0;
}
.shop-message-general .message-content {
  flex: 1;
}
.shop-message-general .message-content .message-title {
  font-weight: 600;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: #e5e7eb;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  line-height: 1.2;
}
.shop-message-general .message-content .message-text {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #d1d5db;
  line-height: 1.75;
  margin: 0;
}
.shop-message-general .message-inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 3vw, 1.5rem);
}
.shop-message-general .message-close {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  cursor: pointer;
  padding: clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.25rem;
  transition: all 0.1s ease-in-out;
  flex-shrink: 0;
}
.shop-message-general .message-close:hover {
  color: #e5e7eb;
  background: rgba(209, 213, 219, 0.1);
}
.shop-message-general.hidden {
  transform: translate3d(0, calc(100% + clamp(1.2rem, 4vw, 2rem)), 0);
  -webkit-transform: translate3d(0, calc(100% + clamp(1.2rem, 4vw, 2rem)), 0);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.shop-message-general.entering {
  animation: messageSlideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation: messageSlideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-message-general.exiting {
  animation: messageSlideDown 0.4s ease-in-out;
  -webkit-animation: messageSlideDown 0.4s ease-in-out;
}
.shop-message-general.style-success .message-container {
  border-color: rgba(34, 197, 94, 0.6);
}
.shop-message-general.style-success .message-container:hover {
  border-color: rgba(34, 197, 94, 0.8);
  transform: translate3d(0, -2px, 0);
  -webkit-transform: translate3d(0, -2px, 0);
}
.shop-message-general.style-success .message-icon {
  background: linear-gradient(135deg, #22c55e, #4ade80);
}
.shop-message-general.style-warning .message-container {
  border-color: rgba(245, 158, 11, 0.6);
}
.shop-message-general.style-warning .message-container:hover {
  border-color: rgba(245, 158, 11, 0.8);
  transform: translate3d(0, -2px, 0);
  -webkit-transform: translate3d(0, -2px, 0);
}
.shop-message-general.style-warning .message-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}
.shop-message-general.style-error .message-container {
  border-color: rgba(239, 68, 68, 0.6);
}
.shop-message-general.style-error .message-container:hover {
  border-color: rgba(239, 68, 68, 0.8);
  transform: translate3d(0, -2px, 0);
  -webkit-transform: translate3d(0, -2px, 0);
}
.shop-message-general.style-error .message-icon {
  background: linear-gradient(135deg, #ef4444, #f87171);
}
.shop-message-general.style-info .message-container {
  border-color: rgba(59, 130, 246, 0.6);
}
.shop-message-general.style-info .message-container:hover {
  border-color: rgba(59, 130, 246, 0.8);
  transform: translate3d(0, -2px, 0);
  -webkit-transform: translate3d(0, -2px, 0);
}
.shop-message-general.style-info .message-icon {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.confirm-modal.urgent-message .modal-content {
  border: 3px solid #dc2626;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.3), 0 10px 10px -5px rgba(220, 38, 38, 0.04), 0 0 0 1px rgba(220, 38, 38, 0.05);
  animation: urgentPulse 2s infinite;
}
.confirm-modal.urgent-message .modal-header {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #111827;
  border-bottom: 1px solid rgba(185, 28, 28, 0.3);
}
.confirm-modal.urgent-message .modal-header .modal-title {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.confirm-modal.urgent-message .modal-header .modal-title::before {
  content: "⚠️";
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}
.confirm-modal.urgent-message .modal-body {
  background: #1f2937;
  color: #e5e7eb;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.75;
  padding: clamp(1.2rem, 4vw, 2rem);
}
.confirm-modal.urgent-message .modal-footer {
  background: #1f2937;
  border-top: 1px solid rgba(75, 85, 99, 0.3);
}
.confirm-modal.urgent-message .modal-footer .btn-primary {
  background: #dc2626;
  border-color: #dc2626;
}
.confirm-modal.urgent-message .modal-footer .btn-primary:hover {
  background: #ef4444;
  border-color: #ef4444;
}

@keyframes messageSlideUp {
  0% {
    transform: translate3d(0, 100%, 0) scale3d(0.95, 0.95, 1);
    opacity: 0;
  }
  50% {
    transform: translate3d(0, 10%, 0) scale3d(0.98, 0.98, 1);
    opacity: 0.8;
  }
  100% {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes messageSlideDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, calc(100% + clamp(1.2rem, 4vw, 2rem)), 0);
    opacity: 0;
  }
}
@keyframes urgentPulse {
  0%, 100% {
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.3), 0 10px 10px -5px rgba(220, 38, 38, 0.04), 0 0 0 1px rgba(220, 38, 38, 0.05);
  }
  50% {
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.4), 0 10px 10px -5px rgba(220, 38, 38, 0.08), 0 0 0 1px rgba(220, 38, 38, 0.1);
  }
}
@media (max-width: 1024px) {
  .shop-message-general .message-container .message-title {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
  .shop-message-general .message-container .message-text {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
}
@media (max-width: 576px) {
  .shop-message-general {
    left: clamp(0.6rem, 1.5vw, 0.75rem);
    right: clamp(0.6rem, 1.5vw, 0.75rem);
    bottom: clamp(0.6rem, 1.5vw, 0.75rem);
  }
  .shop-message-general .message-container {
    padding: clamp(1rem, 3vw, 1.5rem);
  }
  .shop-message-general .message-icon {
    width: 1.5rem;
    height: 1.5rem;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
}
.shop-hero {
  position: relative;
  min-height: clamp(500px, 60vh, 700px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white, #ffffff);
  overflow: hidden;
}
.shop-hero--shop {
  background-image: linear-gradient(135deg, rgba(217, 119, 6, 0.85) 0%, rgba(180, 83, 9, 0.9) 50%, rgba(31, 41, 55, 0.8) 100%), url("/uploads/media/hero_image.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 767px) {
  .shop-hero--shop {
    background-attachment: scroll;
  }
}
.shop-hero .shop-container {
  position: relative;
  z-index: 3;
}
.shop-hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 4rem) 0;
}
.shop-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 clamp(1rem, 3vw, 1.5rem) 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.shop-hero__subtitle {
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  line-height: 1.75;
  margin: 0 0 clamp(1.2rem, 4vw, 2rem) 0;
  opacity: 0.9;
}
.shop-hero__actions,
.shop-hero .shop-button-group {
  display: flex;
  gap: clamp(1rem, 3vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(1.2rem, 4vw, 2rem);
}

.shop-hero .shop-breadcrumbs {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.shop-hero .shop-breadcrumbs .shop-breadcrumbs__link,
.shop-hero .shop-breadcrumbs .shop-breadcrumbs__current {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.shop-hero .shop-breadcrumbs .shop-breadcrumbs__link:hover {
  color: rgb(255, 255, 255);
}
.shop-hero .shop-breadcrumbs .shop-breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.7);
}
.shop-breadcrumbs:not(.shop-hero *) {
  background: var(--color-background-paper, #111827);
  border-bottom: 1px solid var(--color-border-light, #374151);
  padding: clamp(0.8rem, 2vw, 1rem) 0;
}
.shop-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.shop-breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-breadcrumbs__link {
  color: var(--color-text-secondary, #9ca3af);
  text-decoration: none;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  transition: color all 0.1s ease-in-out;
}
.shop-breadcrumbs__link:hover {
  color: var(--color-primary, #f59e0b);
  text-decoration: underline;
}
.shop-breadcrumbs__current {
  color: var(--color-text-primary, #f3f4f6);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
}
.shop-breadcrumbs__separator {
  color: var(--color-text-muted, #6b7280);
  font-size: 0.75rem;
}

.shop-section {
  padding: clamp(2.5rem, 8vw, 4rem) 0;
}
.shop-section--gray {
  background: var(--color-background-gray, #111827);
}

.shop-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(0.8rem, 2vw, 1rem);
}
@media (min-width: 768px) {
  .shop-container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}
@media (min-width: 1024px) {
  .shop-container {
    padding: 0 clamp(1.2rem, 4vw, 2rem);
  }
}

.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 4vw, 2rem);
}
@media (min-width: 900px) {
  .shop-layout {
    grid-template-columns: 280px 1fr;
    gap: clamp(1.2rem, 4vw, 2rem);
  }
}
@media (min-width: 1024px) {
  .shop-layout {
    gap: clamp(2rem, 6vw, 3rem);
  }
}
@media (min-width: 1280px) {
  .shop-layout {
    grid-template-columns: 320px 1fr;
  }
}
.shop-layout__sidebar {
  order: 2;
}
@media (min-width: 900px) {
  .shop-layout__sidebar {
    order: 1;
    position: sticky;
    top: clamp(1.2rem, 4vw, 2rem);
    align-self: start;
    max-height: calc(100vh - clamp(2.5rem, 8vw, 4rem));
    overflow-y: auto;
  }
}
.shop-layout__main {
  order: 1;
}
@media (min-width: 900px) {
  .shop-layout__main {
    order: 2;
  }
}

.shop-sidebar {
  background: var(--color-background-paper, #111827);
  border-radius: 0.5rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  height: -moz-fit-content;
  height: fit-content;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border-light, #4b5563) transparent;
}
.shop-sidebar::-webkit-scrollbar {
  width: 6px;
}
.shop-sidebar::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}
.shop-sidebar::-webkit-scrollbar-thumb {
  background: var(--color-border-light, #4b5563);
  border-radius: 3px;
}
.shop-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--color-border, #6b7280);
}
.shop-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  padding-bottom: clamp(0.8rem, 2vw, 1rem);
  border-bottom: 1px solid var(--color-border-light, #374151);
}
.shop-sidebar__title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary, #f3f4f6);
  margin: 0;
}
[data-theme=dark] .shop-sidebar__title {
  color: var(--color-text-primary-dark, #1f2937);
}
.shop-sidebar__section {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.shop-sidebar__section:last-child {
  margin-bottom: 0;
}
.shop-sidebar__section--expanded .shop-sidebar__content {
  display: block !important;
}
.shop-sidebar__section--expanded .shop-sidebar__content [aria-hidden=true] {
  display: block !important;
}
.shop-sidebar__section--expanded .shop-sidebar__section-title .shop-sidebar__toggle-icon {
  transform: rotate(180deg);
}
.shop-sidebar__section-title {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  color: var(--color-text-primary, #f3f4f6);
  margin: 0 0 clamp(0.8rem, 2vw, 1rem) 0;
  cursor: pointer;
  padding: clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.25rem;
  transition: background-color all 0.1s ease-in-out;
}
.shop-sidebar__section-title:hover {
  background: var(--color-background-hover, #111827);
}
[data-theme=dark] .shop-sidebar__section-title {
  color: var(--color-text-primary-dark, #1f2937);
}
[data-theme=dark] .shop-sidebar__section-title:hover {
  background: var(--color-background-hover-dark, #e5e7eb);
}
.shop-sidebar__toggle-icon {
  margin-left: auto;
  transition: transform all 0.1s ease-in-out;
  color: var(--color-text-muted, #6b7280);
}
[data-theme=dark] .shop-sidebar__toggle-icon {
  color: var(--color-text-muted-dark, #9ca3af);
}
.shop-sidebar__content {
  display: none;
}
.shop-sidebar__content[aria-hidden=false] {
  display: block;
}

.shop-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.shop-filter-list__item {
  margin-bottom: clamp(0.2rem, 0.5vw, 0.25rem);
}
.shop-filter-list__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  color: var(--color-text-secondary, #d1d5db);
  text-decoration: none;
  border-radius: 0.25rem;
  transition: all all 0.1s ease-in-out;
}
.shop-filter-list__link:hover {
  background: var(--color-background-hover, #111827);
  color: var(--color-text-primary, #f3f4f6);
}
.shop-filter-list__link--active {
  background: var(--color-primary-alpha, rgba(245, 158, 11, 0.2));
  color: var(--color-primary, #f59e0b);
  font-weight: 500;
}
[data-theme=dark] .shop-filter-list__link {
  color: var(--color-text-secondary-dark, #6b7280);
}
[data-theme=dark] .shop-filter-list__link:hover {
  background: var(--color-background-hover-dark, #e5e7eb);
  color: var(--color-text-primary-dark, #1f2937);
}
[data-theme=dark] .shop-filter-list__link--active {
  background: var(--color-primary-alpha-dark, rgba(245, 158, 11, 0.1));
  color: var(--color-primary, #fbbf24);
}
.shop-filter-list__count {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--color-text-muted, #6b7280);
  background: var(--color-background-subtle, #1f2937);
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.125rem;
}
[data-theme=dark] .shop-filter-list__count {
  color: var(--color-text-muted-dark, #9ca3af);
  background: var(--color-background-subtle-dark, #e5e7eb);
}

.shop-active-filters {
  background: var(--color-background-paper, #111827);
  border: 1px solid var(--color-border-light, #374151);
  border-radius: 0.5rem;
  padding: clamp(0.8rem, 2vw, 1rem);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
[data-theme=dark] .shop-active-filters {
  background: var(--color-background-paper-dark, #f3f4f6);
  border-color: var(--color-border-dark, #e5e7eb);
}
.shop-active-filters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-active-filters__title {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  color: var(--color-text-primary, #f3f4f6);
  margin: 0;
}
[data-theme=dark] .shop-active-filters__title {
  color: var(--color-text-primary-dark, #1f2937);
}
.shop-active-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}

.shop-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  background: var(--color-primary-alpha, rgba(245, 158, 11, 0.2));
  color: var(--color-primary, #f59e0b);
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
  border-radius: 9999px;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
}
[data-theme=dark] .shop-filter-tag {
  background: var(--color-primary-alpha-dark, rgba(245, 158, 11, 0.1));
  color: var(--color-primary, #fbbf24);
}
.shop-filter-tag__remove {
  color: inherit;
  text-decoration: none;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background-color all 0.1s ease-in-out;
}
.shop-filter-tag__remove:hover {
  background: rgba(255, 255, 255, 0.3);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  background: var(--color-background-paper, #111827);
  border: 1px solid var(--color-border-light, #374151);
  border-radius: 0.5rem;
}
[data-theme=dark] .shop-toolbar {
  background: var(--color-background-paper-dark, #f3f4f6);
  border-color: var(--color-border-dark, #e5e7eb);
}
@media (max-width: 767px) {
  .shop-toolbar {
    flex-direction: column;
    gap: clamp(0.8rem, 2vw, 1rem);
    align-items: stretch;
  }
}
.shop-toolbar__results {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--color-text-secondary, #d1d5db);
}
[data-theme=dark] .shop-toolbar__results {
  color: var(--color-text-secondary-dark, #6b7280);
}
.shop-toolbar__actions {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1rem);
}
@media (max-width: 767px) {
  .shop-toolbar__actions {
    justify-content: space-between;
  }
}

.shop-view-toggle {
  display: flex;
  border: 1px solid var(--color-border-light, #374151);
  border-radius: 0.25rem;
  overflow: hidden;
}
[data-theme=dark] .shop-view-toggle {
  border-color: var(--color-border-dark, #e5e7eb);
}
.shop-view-toggle__btn {
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
  background: var(--color-background-paper, #111827);
  border: none;
  color: var(--color-text-secondary, #d1d5db);
  cursor: pointer;
  transition: all all 0.1s ease-in-out;
}
.shop-view-toggle__btn:hover {
  background: var(--color-background-hover, #111827);
  color: var(--color-text-primary, #f3f4f6);
}
.shop-view-toggle__btn--active {
  background: var(--color-primary, #f59e0b);
  color: white;
}
[data-theme=dark] .shop-view-toggle__btn {
  background: var(--color-background-paper-dark, #f3f4f6);
  color: var(--color-text-secondary-dark, #6b7280);
}
[data-theme=dark] .shop-view-toggle__btn:hover {
  background: var(--color-background-hover-dark, #e5e7eb);
  color: var(--color-text-primary-dark, #1f2937);
}
[data-theme=dark] .shop-view-toggle__btn--active {
  background: var(--color-primary, #fbbf24);
  color: var(--color-gray-900, #f9fafb);
}

.shop-mobile-filter-toggle {
  display: inline-flex;
}
@media (min-width: 900px) {
  .shop-mobile-filter-toggle {
    display: none;
  }
}

.shop-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
}
@media (min-width: 640px) {
  .shop-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .shop-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .shop-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.shop-product-grid[data-view=list] {
  grid-template-columns: 1fr;
}
.shop-product-grid[data-view=list] .shop-card--product {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(0.8rem, 2vw, 1rem);
}
@media (max-width: 639px) {
  .shop-product-grid[data-view=list] .shop-card--product {
    grid-template-columns: 1fr;
  }
}
.shop-product-grid[data-view=list] .shop-card--product .shop-card__media {
  width: 100%;
  aspect-ratio: 1;
}
.shop-product-grid[data-view=list] .shop-card--product .shop-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shop-card {
  background: var(--color-background-paper, #111827);
  border: 1px solid var(--color-border-light, #374151);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all all 0.1s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.shop-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}
[data-theme=dark] .shop-card {
  background: var(--color-background-paper-dark, #f3f4f6);
  border-color: var(--color-border-dark, #e5e7eb);
}
.shop-card--product {
  position: relative;
}
.shop-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-background-subtle, #1f2937);
  backface-visibility: hidden;
  transform: translateZ(0);
}
@supports not (aspect-ratio: 3/4) {
  .shop-card__media {
    height: 0;
    padding-bottom: 133.33%;
  }
}
[data-theme=dark] .shop-card__media {
  background: var(--color-background-subtle-dark, #e5e7eb);
}
.shop-card__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.shop-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform all 0.1s ease-in-out, opacity 0.3s ease-in-out;
  background: var(--color-background-subtle, #111827);
  opacity: 0;
}
@supports not ((-o-object-fit: cover) or (object-fit: cover)) {
  .shop-card__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .shop-card__image {
    transform: translateZ(0);
  }
}
@supports (-webkit-appearance: none) {
  .shop-card__image {
    backface-visibility: hidden;
    perspective: 1000px;
  }
}
[data-theme=dark] .shop-card__image {
  background: var(--color-background-subtle-dark, #f3f4f6);
}
.shop-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-text-muted, #6b7280);
  font-size: 2rem;
}
[data-theme=dark] .shop-card__placeholder {
  color: var(--color-text-muted-dark, #9ca3af);
}
.shop-card__badges {
  position: absolute;
  top: clamp(0.6rem, 1.5vw, 0.75rem);
  left: clamp(0.6rem, 1.5vw, 0.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  z-index: 2;
}
.shop-card__quick-actions {
  position: absolute;
  top: clamp(0.6rem, 1.5vw, 0.75rem);
  right: clamp(0.6rem, 1.5vw, 0.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  opacity: 0;
  transform: translateX(10px);
  transition: all all 0.1s ease-in-out;
  z-index: 2;
}
.shop-card:hover .shop-card__quick-actions {
  opacity: 1;
  transform: translateX(0);
}
.shop-card__content {
  padding: clamp(0.8rem, 2vw, 1rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-card__title {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}
.shop-card__title-link {
  color: var(--color-text-primary, #f3f4f6);
  text-decoration: none;
  transition: color all 0.1s ease-in-out;
}
.shop-card__title-link:hover {
  color: var(--color-primary, #f59e0b);
}
[data-theme=dark] .shop-card__title-link {
  color: var(--color-text-primary-dark, #1f2937);
}
[data-theme=dark] .shop-card__title-link:hover {
  color: var(--color-primary, #fbbf24);
}
.shop-card__description {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--color-text-secondary, #d1d5db);
  line-height: 1.5;
  margin: 0;
}
[data-theme=dark] .shop-card__description {
  color: var(--color-text-secondary-dark, #6b7280);
}
.shop-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-card__category-tag {
  font-size: 0.75rem;
  color: var(--color-text-muted, #9ca3af);
  background: var(--color-background-subtle, #1f2937);
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.125rem;
}
[data-theme=dark] .shop-card__category-tag {
  color: var(--color-text-muted-dark, #6b7280);
  background: var(--color-background-subtle-dark, #e5e7eb);
}
.shop-card__price {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  margin-top: auto;
}
.shop-card__stock {
  margin-top: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-card__actions {
  display: flex;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  margin-top: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-card__actions .shop-button {
  flex: 1;
}
.shop-card__actions .shop-button:first-child {
  flex: 2;
}

.shop-badge {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.2rem, 0.5vw, 0.25rem);
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.shop-badge--featured {
  background: var(--color-primary, #f59e0b);
  color: white;
}
.shop-badge--out-of-stock {
  background: var(--color-error, #f87171);
  color: white;
}
.shop-badge--low-stock {
  background: var(--color-warning, #fbbf24);
  color: white;
}
.shop-badge--new {
  background: var(--color-success, #4ade80);
  color: white;
}

.shop-price {
  font-weight: 600;
}
.shop-price--current {
  color: var(--color-primary, #f59e0b);
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}
[data-theme=dark] .shop-price--current {
  color: var(--color-primary, #fbbf24);
}
.shop-price--original {
  color: var(--color-text-muted, #6b7280);
  text-decoration: line-through;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.shop-price--discount {
  color: var(--color-success, #4ade80);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  background: var(--color-success-alpha, rgba(34, 197, 94, 0.1));
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.125rem;
}

.shop-stock-status {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.2rem, 0.5vw, 0.25rem);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
}
.shop-stock-status--available {
  color: var(--color-success, #4ade80);
}
.shop-stock-status--unavailable {
  color: var(--color-error, #f87171);
}

.shop-pagination {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2vw, 1rem);
  align-items: center;
  margin-top: clamp(2rem, 6vw, 3rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-background-paper, #111827);
  border: 1px solid var(--color-border-light, #374151);
  border-radius: 0.5rem;
}
[data-theme=dark] .shop-pagination {
  background: var(--color-background-paper-dark, #f3f4f6);
  border-color: var(--color-border-dark, #e5e7eb);
}
.shop-pagination__info {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--color-text-secondary, #d1d5db);
}
[data-theme=dark] .shop-pagination__info {
  color: var(--color-text-secondary-dark, #6b7280);
}
.shop-pagination__controls {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1rem);
  flex-wrap: wrap;
  justify-content: center;
}
.shop-pagination__pages {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border-light, #374151);
  border-radius: 0.25rem;
  color: var(--color-text-secondary, #d1d5db);
  text-decoration: none;
  transition: all all 0.1s ease-in-out;
}
.shop-pagination__page:hover {
  background: var(--color-background-hover, #111827);
  color: var(--color-text-primary, #f3f4f6);
}
.shop-pagination__page--current {
  background: var(--color-primary, #f59e0b);
  border-color: var(--color-primary, #f59e0b);
  color: white;
}
[data-theme=dark] .shop-pagination__page {
  border-color: var(--color-border-dark, #e5e7eb);
  color: var(--color-text-secondary-dark, #6b7280);
}
[data-theme=dark] .shop-pagination__page:hover {
  background: var(--color-background-hover-dark, #e5e7eb);
  color: var(--color-text-primary-dark, #1f2937);
}
[data-theme=dark] .shop-pagination__page--current {
  background: var(--color-primary, #fbbf24);
  border-color: var(--color-primary, #fbbf24);
  color: var(--color-gray-900, #f9fafb);
}
.shop-pagination__ellipsis {
  color: var(--color-text-muted, #6b7280);
  padding: 0 clamp(0.4rem, 1vw, 0.5rem);
}
[data-theme=dark] .shop-pagination__ellipsis {
  color: var(--color-text-muted-dark, #9ca3af);
}

.shop-empty-state {
  text-align: center;
  padding: clamp(3rem, 12vw, 6rem) clamp(0.8rem, 2vw, 1rem);
}
.shop-empty-state__content {
  max-width: 500px;
  margin: 0 auto;
}
.shop-empty-state__icon {
  font-size: 4rem;
  color: var(--color-text-muted, #6b7280);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
[data-theme=dark] .shop-empty-state__icon {
  color: var(--color-text-muted-dark, #9ca3af);
}
.shop-empty-state__title {
  font-size: clamp(2rem, 6vw, 2.5rem);
  font-weight: 600;
  color: var(--color-text-primary, #f3f4f6);
  margin: 0 0 clamp(0.8rem, 2vw, 1rem) 0;
}
[data-theme=dark] .shop-empty-state__title {
  color: var(--color-text-primary-dark, #1f2937);
}
.shop-empty-state__text {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--color-text-secondary, #d1d5db);
  line-height: 1.75;
  margin: 0 0 clamp(1.2rem, 4vw, 2rem) 0;
}
[data-theme=dark] .shop-empty-state__text {
  color: var(--color-text-secondary-dark, #6b7280);
}

.shop-mobile-filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}
.shop-mobile-filter-overlay[aria-hidden=false] {
  display: flex;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .shop-mobile-filter-overlay[aria-hidden=false] {
    align-items: center;
    justify-content: center;
  }
}

.shop-mobile-filter {
  background: var(--color-background-paper, #111827);
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 0.5rem 0.5rem 0 0;
}
@media (min-width: 768px) {
  .shop-mobile-filter {
    width: 500px;
    max-height: 600px;
    border-radius: 0.5rem;
  }
}
[data-theme=dark] .shop-mobile-filter {
  background: var(--color-background-paper-dark, #f3f4f6);
}
.shop-mobile-filter__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid var(--color-border-light, #374151);
}
[data-theme=dark] .shop-mobile-filter__header {
  border-bottom-color: var(--color-border-dark, #e5e7eb);
}
.shop-mobile-filter__title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  margin: 0;
}
.shop-mobile-filter__close {
  background: none;
  border: none;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  color: var(--color-text-secondary, #d1d5db);
  cursor: pointer;
}
[data-theme=dark] .shop-mobile-filter__close {
  color: var(--color-text-secondary-dark, #6b7280);
}
.shop-mobile-filter__content {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.shop-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.shop-loading-overlay[aria-hidden=false] {
  display: flex;
}
[data-theme=dark] .shop-loading-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.shop-loading-spinner {
  text-align: center;
}
.shop-loading-spinner__circle {
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-border-light, #374151);
  border-top: 4px solid var(--color-primary, #f59e0b);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto clamp(0.8rem, 2vw, 1rem);
}
[data-theme=dark] .shop-loading-spinner__circle {
  border-color: var(--color-border-dark, #e5e7eb);
  border-top-color: var(--color-primary, #fbbf24);
}
.shop-loading-spinner__text {
  color: var(--color-text-primary, #f3f4f6);
  font-weight: 500;
}
[data-theme=dark] .shop-loading-spinner__text {
  color: var(--color-text-primary-dark, #1f2937);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.shop-notifications {
  position: fixed;
  top: clamp(0.8rem, 2vw, 1rem);
  right: clamp(0.8rem, 2vw, 1rem);
  z-index: 1050;
  max-width: 400px;
}

@media (hover: hover) and (pointer: fine) {
  .shop-hover-lift:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  }
}
@media (hover: none) and (pointer: coarse) {
  .shop-hover-lift:active {
    transform: translateY(1px) translateZ(0);
    opacity: 0.9;
  }
}

.shop-hover-scale {
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .shop-hover-scale:hover {
    transform: scale(1.02) translateZ(0);
  }
}
@media (hover: none) and (pointer: coarse) {
  .shop-hover-scale:active {
    opacity: 0.95;
  }
}

@media (hover: hover) and (pointer: fine) {
  .shop-card:hover {
    transform: translateY(-1px) translateZ(0);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
  }
}
@media (hover: none) and (pointer: coarse) {
  .shop-card:active {
    transform: translateY(1px) translateZ(0);
    opacity: 0.98;
  }
}

.shop-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.shop-reveal.shop-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.shop-reveal--fade-up {
  transform: translateY(30px);
}
.shop-reveal--fade-down {
  transform: translateY(-30px);
}
.shop-reveal--fade-left {
  transform: translateX(-30px);
}
.shop-reveal--fade-right {
  transform: translateX(30px);
}
.shop-reveal--stagger .shop-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.shop-reveal--stagger .shop-card:nth-child(1) {
  transition-delay: 0.1s;
}
.shop-reveal--stagger .shop-card:nth-child(2) {
  transition-delay: 0.2s;
}
.shop-reveal--stagger .shop-card:nth-child(3) {
  transition-delay: 0.3s;
}
.shop-reveal--stagger .shop-card:nth-child(4) {
  transition-delay: 0.4s;
}
.shop-reveal--stagger .shop-card:nth-child(5) {
  transition-delay: 0.5s;
}
.shop-reveal--stagger .shop-card:nth-child(6) {
  transition-delay: 0.6s;
}
.shop-reveal--stagger.shop-reveal--visible .shop-card {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 899px) {
  .shop-layout__sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-background-paper, #111827);
    z-index: 1001;
    transition: left all 0.1s ease-in-out;
    overflow-y: auto;
  }
  .shop-layout__sidebar.shop-sidebar--open {
    left: 0;
  }
  [data-theme=dark] .shop-layout__sidebar {
    background: var(--color-background-paper-dark, #f3f4f6);
  }
  .shop-sidebar {
    height: 100%;
    border-radius: 0;
    box-shadow: none;
  }
}
.shop-button--magnetic {
  transition: transform all 0.1s ease-in-out;
}
.shop-button--magnetic:hover {
  transform: translateY(-1px);
}
.shop-button--magnetic:active {
  transform: translateY(0);
}

.shop-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-surface-secondary, #374151);
}
@supports not (aspect-ratio: 3/4) {
  .shop-card__media {
    height: 0;
    padding-bottom: 133.33%;
  }
  .shop-card__media .shop-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.shop-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  opacity: 1;
  display: block;
  visibility: visible;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (hover: hover) and (pointer: fine) {
  .shop-card:hover .shop-card__image {
    transform: scale(1.01) translateZ(0);
  }
}
@media (hover: none) and (pointer: coarse) {
  .shop-card {
    min-height: 44px;
  }
  .shop-card__quick-actions {
    opacity: 1;
    transform: translateX(0);
  }
  .shop-card:active {
    transform: translateY(1px) translateZ(0);
    opacity: 0.98;
  }
}

.shop-animation-base, .shop-hover-lift, .shop-hover-scale, .shop-card, .shop-card__image {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .shop-animation-base, .shop-hover-lift, .shop-hover-scale, .shop-card, .shop-card__image {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

.shop-image-loading {
  opacity: 0.7;
  background-color: var(--color-background-subtle, #1f2937);
}
[data-theme=dark] .shop-image-loading {
  background-color: var(--color-background-subtle-dark, #e5e7eb);
}

.shop-image-loaded {
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-image-error {
  display: none;
}

.shop-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-secondary, #374151);
  color: var(--color-text-tertiary, #6b7280);
  font-size: 2rem;
}

.shop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(0.8rem, 2vw, 1rem);
  width: 100%;
  box-sizing: border-box;
}
.shop-container--wide {
  max-width: 1400px;
}
.shop-container--narrow {
  max-width: 800px;
}

.shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
  border: 1px solid transparent;
  border-radius: 0.25rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  min-height: 44px;
}
.shop-button:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.shop-button--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop-button--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(253, 230, 138, 0.4), transparent);
  transition: left 0.6s ease-out;
  pointer-events: none;
  z-index: 1;
}
.shop-button--primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease-out, height 0.5s ease-out;
  pointer-events: none;
  z-index: 0;
}
.shop-button--primary span, .shop-button--primary .shop-icon {
  position: relative;
  z-index: 2;
}
.shop-button--primary:hover:not(:disabled) {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.4);
}
.shop-button--primary:hover:not(:disabled)::before {
  left: 100%;
}
.shop-button--primary:hover:not(:disabled)::after {
  width: 200%;
  height: 200%;
}
.shop-button--primary:hover:not(:disabled) .shop-icon {
  transform: rotate(5deg) scale(1.1);
}
.shop-button--primary:active {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease-out;
}
.shop-button--primary .shop-icon {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop-button--secondary {
  background-color: var(--color-gray-100);
  color: var(--color-gray-800);
  border-color: var(--color-gray-300);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.shop-button--secondary::before {
  content: "";
  position: absolute;
  top: 120%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.3) 0%, rgba(245, 158, 11, 0.5) 70%);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  opacity: 0;
}
.shop-button--secondary:hover:not(:disabled) {
  color: #d97706;
  border-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
}
.shop-button--secondary:hover:not(:disabled)::before {
  top: -50%;
  opacity: 1;
}
.shop-button--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.shop-button--outline:hover:not(:disabled) {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.shop-button--ghost {
  background-color: transparent;
  color: var(--color-primary);
  border-color: transparent;
}
.shop-button--ghost:hover:not(:disabled) {
  background-color: var(--color-primary-alpha);
}
.shop-button--danger {
  background-color: var(--color-error);
  color: var(--color-white);
  border-color: var(--color-error);
}
.shop-button--danger:hover:not(:disabled) {
  background-color: #dc2626;
  border-color: #dc2626;
}
.shop-button--sm {
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  min-height: 36px;
}
.shop-button--lg {
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1.2rem, 4vw, 2rem);
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  min-height: 52px;
}
.shop-button--loading {
  position: relative;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.shop-button--loading::after::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-top-color: #f59e0b;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: clamp(0.4rem, 1vw, 0.5rem);
}

.shop-button-group {
  display: flex;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-button-group--vertical {
  flex-direction: column;
}
.shop-button-group--segmented .shop-button {
  border-radius: 0;
  border-right-width: 0;
}
.shop-button-group--segmented .shop-button:first-child {
  border-radius: 0.25rem 0 0 0.25rem;
}
.shop-button-group--segmented .shop-button:last-child {
  border-radius: 0 0.25rem 0.25rem 0;
  border-right-width: 1px;
}

.shop-form {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.shop-field {
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}

.shop-label {
  display: block;
  font-weight: 500;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  color: #f3f4f6;
}
.shop-label__required {
  color: #f87171;
}

.shop-input,
.shop-textarea,
.shop-select {
  width: 100%;
  padding: clamp(0.6rem, 1.5vw, 0.75rem);
  border: 1px solid #4b5563;
  border-radius: 0.25rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.5;
  background-color: #111827;
  transition: all 0.2s ease-in-out;
}
.shop-input:focus,
.shop-textarea:focus,
.shop-select:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.shop-input::-moz-placeholder, .shop-textarea::-moz-placeholder, .shop-select::-moz-placeholder {
  color: #9ca3af;
}
.shop-input::placeholder,
.shop-textarea::placeholder,
.shop-select::placeholder {
  color: #9ca3af;
}
.shop-input:disabled,
.shop-textarea:disabled,
.shop-select:disabled {
  background-color: #1f2937;
  cursor: not-allowed;
}
.shop-input.error,
.shop-textarea.error,
.shop-select.error {
  border-color: #f87171;
}
.shop-input.error:focus,
.shop-textarea.error:focus,
.shop-select.error:focus {
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1);
}

.shop-textarea {
  min-height: 120px;
  resize: vertical;
}

.shop-field__help {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #d1d5db;
  margin-top: clamp(0.2rem, 0.5vw, 0.25rem);
}

.shop-field__error {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #f87171;
  margin-top: clamp(0.2rem, 0.5vw, 0.25rem);
}

.shop-input-group {
  position: relative;
}
.shop-input-group .shop-input {
  width: 100%;
  padding-right: 50px;
}
.shop-input-group .shop-input--password {
  padding-right: 50px;
}
.shop-input-group .shop-input__toggle {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(31, 41, 55, 0.9) 100%);
  border: 1px solid rgba(75, 85, 99, 0.6);
  border-radius: calc(0.25rem - 2px);
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.shop-input-group .shop-input__toggle:hover {
  background: linear-gradient(135deg, rgba(var(--color-primary), 0.1) 0%, rgba(var(--color-primary), 0.15) 100%);
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 8px rgba(var(--color-primary), 0.2);
}
.shop-input-group .shop-input__toggle:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  z-index: 3;
}
.shop-input-group .shop-input__toggle:active {
  transform: translateY(0) scale(0.98);
  background: linear-gradient(135deg, rgba(var(--color-primary), 0.15) 0%, rgba(var(--color-primary), 0.2) 100%);
}
.shop-input-group .shop-input__toggle[aria-pressed=true] {
  background: linear-gradient(135deg, rgba(var(--color-primary), 0.1) 0%, rgba(var(--color-primary), 0.15) 100%);
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(var(--color-primary), 0.15);
}
.shop-input-group .shop-input__toggle .shop-icon {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  transition: transform 0.2s ease;
}
.shop-input-group .shop-input__toggle:hover .shop-icon {
  transform: scale(1.1) rotate(5deg);
}

.shop-field--checkbox,
.shop-field--radio {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-field--checkbox input,
.shop-field--radio input {
  width: auto;
  margin: 0;
}

.shop-section {
  padding: clamp(2.5rem, 8vw, 4rem) 0;
  background-color: var(--color-white);
  color: var(--neutral-900);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.shop-section--gray {
  background-color: var(--neutral-50);
}
.shop-section--dark {
  background: linear-gradient(135deg, var(--neutral-700) 0%, var(--neutral-800) 100%);
  color: var(--color-white);
}
.shop-section--dark .shop-button--primary {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-50) 100%);
  color: var(--neutral-800);
  border-color: var(--color-white);
}
.shop-section--dark .shop-button--primary:hover {
  background: var(--color-white);
  color: var(--neutral-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(254, 252, 249, 0.3);
}
.shop-section--dark .shop-button--outline {
  border-color: var(--color-white);
  color: var(--color-white);
}
.shop-section--dark .shop-button--outline:hover {
  background: var(--color-white);
  color: var(--neutral-800);
}

.shop-hero {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #111827;
  padding: clamp(3rem, 12vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.shop-hero--home {
  background-image: linear-gradient(135deg, rgba(217, 119, 6, 0.85) 0%, rgba(180, 83, 9, 0.9) 50%, rgba(31, 41, 55, 0.8) 100%), url("/uploads/media/hero_image.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
}
@media (max-width: 767px) {
  .shop-hero--home {
    background-attachment: scroll;
    min-height: 50vh;
  }
}
.shop-hero--auth {
  background-image: linear-gradient(135deg, rgba(217, 119, 6, 0.85) 0%, rgba(180, 83, 9, 0.9) 50%, rgba(31, 41, 55, 0.8) 100%), url("/uploads/media/hero_image.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 50vh;
}
@media (max-width: 767px) {
  .shop-hero--auth {
    background-attachment: scroll;
    min-height: 40vh;
  }
}
.shop-hero--contact {
  position: relative;
  background-image: linear-gradient(135deg, rgba(245, 158, 11, 0.85) 0%, rgba(172.4330708661, 110.9507874016, 7.0669291339, 0.9) 50%, rgba(243, 244, 246, 0.8) 100%), url("/uploads/media/hero_image.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
  min-height: 50vh;
}
.shop-hero--contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%, rgba(249, 250, 251, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}
.shop-hero--contact .shop-container,
.shop-hero--contact .shop-hero__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .shop-hero--contact {
    background-attachment: scroll;
    min-height: 50vh;
  }
}
.shop-hero--entstehung {
  position: relative;
  background-image: linear-gradient(135deg, rgba(245, 158, 11, 0.85) 0%, rgba(172.4330708661, 110.9507874016, 7.0669291339, 0.9) 50%, rgba(243, 244, 246, 0.8) 100%), url("/uploads/media/hero_image.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
  min-height: 55vh;
}
.shop-hero--entstehung::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%, rgba(249, 250, 251, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}
.shop-hero--entstehung .shop-container,
.shop-hero--entstehung .shop-hero__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .shop-hero--entstehung {
    background-attachment: scroll;
    min-height: 50vh;
  }
}
.shop-hero--product {
  position: relative;
  background-image: linear-gradient(135deg, rgba(245, 158, 11, 0.85) 0%, rgba(172.4330708661, 110.9507874016, 7.0669291339, 0.9) 50%, rgba(243, 244, 246, 0.8) 100%), url("/uploads/media/hero_image.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
  min-height: 45vh;
  padding: clamp(2.5rem, 8vw, 4rem) 0;
  text-align: left;
  text-align: center;
}
.shop-hero--product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%, rgba(249, 250, 251, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}
.shop-hero--product .shop-container,
.shop-hero--product .shop-hero__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .shop-hero--product {
    background-attachment: scroll;
    min-height: 50vh;
  }
}
.shop-hero.shop-hero--product .hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  margin: clamp(0.8rem, 2vw, 1rem) 0;
}
@media (max-width: 1023px) {
  .shop-hero.shop-hero--product .hero__badges {
    justify-content: center;
  }
}
.shop-hero.shop-hero--product .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.2rem, 0.5vw, 0.25rem);
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.6rem, 1.5vw, 0.75rem);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}
.shop-hero.shop-hero--product .hero__badge--warning {
  background: rgba(245, 158, 11, 0.9);
  color: var(--color-white);
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.shop-hero.shop-hero--product .hero__badge--danger {
  background: rgba(239, 68, 68, 0.9);
  color: var(--color-white);
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.shop-hero.shop-hero--product .hero__badge--success {
  background: rgba(34, 197, 94, 0.9);
  color: var(--color-white);
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.shop-hero.shop-hero--product .hero__badge--info {
  background: rgba(59, 130, 246, 0.9);
  color: var(--color-white);
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.shop-hero__content {
  position: relative;
  z-index: 1;
}
.shop-hero__title {
  font-size: clamp(2rem, 6vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 clamp(1rem, 3vw, 1.5rem) 0;
  line-height: 1.2;
}
.shop-hero__subtitle {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  margin: 0;
  opacity: 0.9;
}
.shop-hero__subheader {
  color: var(--color-white);
  margin: 0;
  opacity: 0.9;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

.shop-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.shop-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.shop-card--elevated {
  box-shadow: var(--shadow-md);
}
.shop-card--elevated:hover {
  box-shadow: var(--shadow-xl);
}
.shop-card__image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.shop-card__content {
  padding: clamp(1rem, 3vw, 1.5rem);
}
.shop-card__title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  margin: 0 0 clamp(0.6rem, 1.5vw, 0.75rem) 0;
  color: var(--neutral-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop-card__description {
  color: var(--neutral-600);
  margin: 0 0 clamp(0.8rem, 2vw, 1rem) 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-card__footer {
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  border-top: 1px solid var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-card__price {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 700;
  color: var(--commerce-price-current);
}

.shop-grid {
  display: grid;
  gap: clamp(1.2rem, 4vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.shop-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.shop-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.shop-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1023px) {
  .shop-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .shop-grid--3, .shop-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .shop-grid--2, .shop-grid--3, .shop-grid--4 {
    grid-template-columns: 1fr;
  }
}

.shop-two-column-section {
  margin: clamp(2.5rem, 8vw, 4rem) 0;
}
.shop-two-column-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 3rem);
  align-items: start;
}
@media (max-width: 768px) {
  .shop-two-column-section__content {
    grid-template-columns: 1fr;
    gap: clamp(1.2rem, 4vw, 2rem);
  }
}
.shop-two-column-section__text {
  order: 1;
}
.shop-two-column-section__image {
  order: 2;
}
.shop-two-column-section__image img {
  width: 70%;
  height: auto;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease-in-out;
}
.shop-two-column-section__image img:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.25);
}
.shop-two-column-section__secondary {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2vw, 1rem);
}
.shop-two-column-section__secondary .shop-text-section__subtitle {
  margin-top: clamp(0.8rem, 2vw, 1rem);
}
.shop-two-column-section--image-left .shop-two-column-section__text {
  order: 2;
}
.shop-two-column-section--image-left .shop-two-column-section__image {
  order: 1;
}
.shop-two-column-section .shop-text-section__title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
  line-height: 1.2;
}
.shop-two-column-section .shop-text-section__subtitle {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--color-gray-600);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.6;
}
.shop-two-column-section .shop-feature-grid {
  gap: clamp(0.8rem, 2vw, 1rem);
  margin: clamp(1rem, 3vw, 1.5rem) 0;
}
@media (max-width: 768px) {
  .shop-two-column-section .shop-feature-grid {
    gap: clamp(0.4rem, 1vw, 0.5rem);
  }
}
.shop-two-column-section .shop-feature-item {
  background: none;
  border: none;
  padding: clamp(0.6rem, 1.5vw, 0.75rem) 0;
  text-align: left;
}
.shop-two-column-section .shop-feature-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 0 clamp(0.6rem, 1.5vw, 0.75rem) 0;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.shop-two-column-section .shop-feature-item__icon .shop-icon {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}
.shop-two-column-section .shop-feature-item__title {
  color: #f59e0b;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-two-column-section .shop-feature-item__description {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  line-height: 1.5;
  color: #e5e7eb;
}
.shop-two-column-section .shop-feature-item:hover {
  transform: none;
}
@media (max-width: 768px) {
  .shop-two-column-section .shop-feature-item {
    padding: clamp(0.2rem, 0.5vw, 0.25rem) 0;
  }
  .shop-two-column-section .shop-feature-item__icon {
    display: none;
  }
  .shop-two-column-section .shop-feature-item__title {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    margin-bottom: clamp(0.2rem, 0.5vw, 0.25rem);
  }
  .shop-two-column-section .shop-feature-item__description {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
}

#kategorien .shop-card__image {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  height: auto;
  border-radius: 0.375rem;
}
#kategorien .shop-card:hover #kategorien .shop-card__image {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.3);
}
#kategorien .shop-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#kategorien .shop-card__title {
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  line-height: 1.2;
}
#kategorien .shop-card__description {
  color: #d1d5db;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
  flex: 1;
}
#kategorien .shop-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
#kategorien .shop-card__count {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #9ca3af;
  font-weight: 500;
  white-space: nowrap;
  min-width: -moz-max-content;
  min-width: max-content;
}

.shop-feature-grid .shop-card__image,
.featured-products .shop-card__image {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  height: auto;
}

.shop-fantasy-showcase__image {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 70%;
  height: auto;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease-in-out;
}
.shop-fantasy-showcase__image:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.25);
}

@media (min-width: 768px) and (max-width: 1023px) {
  #kategorien .shop-card {
    flex-direction: row;
    align-items: stretch;
    gap: clamp(1rem, 3vw, 1.5rem);
    padding: clamp(1rem, 3vw, 1.5rem);
  }
  #kategorien .shop-card__content {
    flex: 1;
    order: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #kategorien .shop-card__image {
    flex-shrink: 0;
    order: 2;
    width: 140px;
    height: 140px;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0;
    border-radius: 0.375rem;
  }
  #kategorien .shop-card__title {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
    line-height: 1.3;
  }
  #kategorien .shop-card__description {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
    flex: 1;
    line-height: 1.6;
    color: #e5e7eb;
  }
}
@media (min-width: 768px) and (max-width: 820px) {
  #kategorien .shop-card__content {
    padding-top: clamp(0.8rem, 2vw, 1rem);
  }
  #kategorien .shop-card__content .shop-card__title {
    margin-top: clamp(0.4rem, 1vw, 0.5rem);
  }
}
.shop-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.2rem, 4vw, 2rem);
  margin: clamp(2.5rem, 8vw, 4rem) 0;
}

.shop-feature-item {
  text-align: center;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-white);
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
  border: 1px solid var(--color-gray-200);
}
.shop-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.shop-feature-item__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(0.8rem, 2vw, 1rem) auto;
  color: var(--color-white);
}
.shop-feature-item__icon .shop-icon {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}
.shop-feature-item__title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  margin: 0 0 clamp(0.6rem, 1.5vw, 0.75rem) 0;
  color: var(--neutral-900);
}
.shop-feature-item__description {
  color: var(--neutral-600);
  line-height: 1.75;
}

.shop-message {
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: 0.25rem;
  border: 1px solid transparent;
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
.shop-message--success {
  background-color: rgba(74, 222, 128, 0.1);
  border-color: #4ade80;
  color: rgb(29.9158878505, 164.0841121495, 78.8691588785);
}
.shop-message--error {
  background-color: rgba(248, 113, 113, 0.1);
  border-color: #f87171;
  color: rgb(243.2080536913, 15.7919463087, 15.7919463087);
}
.shop-message--warning {
  background-color: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
  color: rgb(181.6816143498, 131.9058295964, 3.3183856502);
}
.shop-message--info {
  background-color: rgba(96, 165, 250, 0.1);
  border-color: #60a5fa;
  color: rgb(7.4390243902, 110.0975609756, 236.5609756098);
}

.shop-section--dark .shop-message--info {
  background-color: rgba(96, 165, 250, 0.15);
  border-color: rgb(194.8902439024, 220.9756097561, 253.1097560976);
  color: rgb(170.1676829268, 206.9817073171, 252.3323170732);
}
.shop-section--dark .shop-message--info .shop-link {
  color: rgb(219.612804878, 234.9695121951, 253.887195122);
}
.shop-section--dark .shop-message--info .shop-link:hover {
  color: white;
}
.shop-section--dark .shop-message--success {
  background-color: rgba(74, 222, 128, 0.15);
  border-color: rgb(160.2710280374, 237.7289719626, 188.5327102804);
  color: rgb(138.703271028, 233.796728972, 173.3995327103);
}
.shop-section--dark .shop-message--error {
  background-color: rgba(248, 113, 113, 0.15);
  border-color: rgb(252.7919463087, 210.2080536913, 210.2080536913);
  color: rgb(251.5939597315, 185.9060402685, 185.9060402685);
}
.shop-section--dark .shop-message--warning {
  background-color: rgba(251, 191, 36, 0.15);
  border-color: rgb(252.8295964126, 220.2735426009, 136.1704035874);
  color: rgb(252.3721973094, 212.9551569507, 111.1278026906);
}

.shop-footer {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #9ca3af;
  padding: clamp(3rem, 12vw, 6rem) 0 clamp(1.2rem, 4vw, 2rem) 0;
  margin-top: clamp(3rem, 12vw, 6rem);
  position: relative;
}
.shop-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.shop-footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: clamp(2rem, 6vw, 3rem);
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .shop-footer__content {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 3rem);
  }
}
@media (max-width: 768px) {
  .shop-footer__content {
    grid-template-columns: 1fr;
    gap: clamp(1.2rem, 4vw, 2rem);
    text-align: center;
  }
}
.shop-footer__section {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2vw, 1rem);
}
.shop-footer__section--brand {
  max-width: 400px;
}
.shop-footer__logo {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.shop-footer__logo-image {
  max-height: 60px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.2));
}
.shop-footer__logo-image:hover {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(245, 158, 11, 0.3)) brightness(1.1);
}
.shop-footer__title {
  color: #f3f4f6;
  font-weight: 600;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  margin: 0 0 clamp(0.8rem, 2vw, 1rem) 0;
  position: relative;
}
.shop-footer__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .shop-footer__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.shop-footer__description {
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.shop-footer__nav {
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-footer__nav-link {
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: clamp(0.4rem, 1vw, 0.5rem) 0;
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  border-radius: 0.25rem;
}
@media (max-width: 768px) {
  .shop-footer__nav-link {
    justify-content: center;
  }
}
.shop-footer__nav-link .shop-icon {
  font-size: 16px;
  color: #f59e0b;
  transition: all 0.3s ease;
}
.shop-footer__nav-link:hover, .shop-footer__nav-link:focus {
  color: #f3f4f6;
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .shop-footer__nav-link:hover, .shop-footer__nav-link:focus {
    transform: translateY(-2px);
  }
}
.shop-footer__nav-link:hover .shop-icon, .shop-footer__nav-link:focus .shop-icon {
  color: #fbbf24;
  transform: scale(1.1);
}
.shop-footer__nav-link:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-footer__social {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1rem);
  margin-top: clamp(0.8rem, 2vw, 1rem);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .shop-footer__social {
    justify-content: center;
  }
}
.shop-footer__social-link {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  background: rgba(243, 244, 246, 0.05);
  color: #6b7280;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(243, 244, 246, 0.1);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  min-width: 44px;
  justify-content: center;
}
.shop-footer__social-link .shop-icon {
  font-size: 18px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .shop-footer__social-link span {
    display: none;
  }
}
.shop-footer__social-link:hover, .shop-footer__social-link:focus {
  color: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.3);
}
.shop-footer__social-link:hover .shop-icon, .shop-footer__social-link:focus .shop-icon {
  transform: scale(1.2);
}
.shop-footer__social-link--instagram:hover {
  background: linear-gradient(135deg, #e4405f 0%, #833ab4 100%);
  border-color: #e4405f;
  color: white;
}
.shop-footer__social-link--pinterest:hover {
  background: #bd081c;
  border-color: #bd081c;
  color: white;
}
.shop-footer__social-link--facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: white;
}
.shop-footer__social-link--twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  color: white;
}
.shop-footer__social-link:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-footer__badges {
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  margin-top: clamp(1rem, 3vw, 1.5rem);
}
@media (max-width: 768px) {
  .shop-footer__badges {
    align-items: center;
  }
}
.shop-footer__badge {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  color: #6b7280;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.shop-footer__badge .shop-icon {
  color: #f59e0b;
  font-size: 16px;
}
.shop-footer__bottom {
  border-top: 1px solid rgba(243, 244, 246, 0.1);
  padding-top: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 2vw, 1rem);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .shop-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.shop-footer__copyright {
  color: #6b7280;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
@media (max-width: 480px) {
  .shop-footer__copyright {
    flex-direction: column;
    gap: clamp(0.2rem, 0.5vw, 0.25rem);
  }
}
.shop-footer__version {
  color: #4b5563;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
  opacity: 0.8;
  background: rgba(243, 244, 246, 0.05);
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}
.shop-footer__version:hover {
  color: #6b7280;
  background: rgba(243, 244, 246, 0.1);
  opacity: 1;
}
.shop-footer__legal {
  display: flex;
  gap: clamp(1rem, 3vw, 1.5rem);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .shop-footer__legal {
    justify-content: center;
  }
}
.shop-footer__legal-link {
  color: #6b7280;
  text-decoration: none;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  transition: all 0.3s ease;
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
  border-radius: 0.25rem;
}
.shop-footer__legal-link:hover, .shop-footer__legal-link:focus {
  color: #d1d5db;
  background: rgba(243, 244, 246, 0.05);
}
.shop-footer__legal-link:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .shop-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 3vw, 1.5rem);
  }
  .shop-feature-item {
    padding: clamp(0.8rem, 2vw, 1rem);
  }
  .shop-feature-item__icon {
    width: 48px;
    height: 48px;
  }
  .shop-feature-item__title {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
  .shop-feature-item__description {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
}
@media (max-width: 767px) {
  .shop-hero {
    padding: clamp(2.5rem, 8vw, 4rem) 0;
  }
  .shop-hero--home {
    min-height: 50vh;
  }
  .shop-hero__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .shop-hero__subtitle {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
  .shop-feature-grid {
    grid-template-columns: 1fr;
  }
  .shop-button-group {
    flex-direction: column;
  }
  .shop-button-group--segmented {
    flex-direction: row;
  }
  .shop-footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .shop-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .shop-footer__legal {
    justify-content: center;
  }
}
.shop-cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.8rem, 2vw, 1rem);
  box-sizing: border-box;
}

.shop-cookie-container {
  width: 100%;
  max-width: 900px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  background: #111827;
}

.shop-simple-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f3f4f6;
  color: #111827;
  padding: clamp(0.8rem, 2vw, 1rem);
  z-index: 1050;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
}
.shop-simple-cookie-banner .shop-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(0.8rem, 2vw, 1rem);
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1rem);
}
@media (max-width: 767px) {
  .shop-simple-cookie-banner .shop-cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
.shop-simple-cookie-banner .shop-cookie-buttons {
  display: flex;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .shop-simple-cookie-banner .shop-cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
}

.cookie-modal-open {
  overflow: hidden;
}

.shop-retro-showcase {
  padding: clamp(3rem, 12vw, 6rem) 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
}
.shop-retro-showcase__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}
.shop-retro-showcase__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 3rem);
  align-items: start;
}
@media (max-width: 768px) {
  .shop-retro-showcase__content {
    grid-template-columns: 1fr;
    gap: clamp(1.2rem, 4vw, 2rem);
  }
}
.shop-retro-showcase__image {
  order: 1;
}
.shop-retro-showcase__image img {
  width: 70%;
  height: auto;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease-in-out;
}
.shop-retro-showcase__image img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .shop-retro-showcase__image {
    order: 2;
  }
}
.shop-retro-showcase__text {
  order: 2;
}
@media (max-width: 768px) {
  .shop-retro-showcase__text {
    order: 1;
  }
}
.shop-retro-showcase__title {
  font-size: clamp(1.875rem, 7vw, 3rem);
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.2;
}
@media (max-width: 768px) {
  .shop-retro-showcase__title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    text-align: center;
  }
}
.shop-retro-showcase__description {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
}
.shop-retro-showcase__description p {
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
.shop-retro-showcase__description p:last-child {
  margin-bottom: 0;
}
.shop-retro-showcase__features {
  list-style: none;
  padding: 0;
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
}
.shop-retro-showcase__features li {
  display: flex;
  align-items: center;
  margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: #e5e7eb;
}
.shop-retro-showcase__features li:before {
  content: "🎨";
  margin-right: clamp(0.6rem, 1.5vw, 0.75rem);
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}
.shop-retro-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
}
.shop-retro-showcase__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  color: white;
}
.shop-retro-showcase__cta i {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.touch-device .shop-hover-lift:hover,
.touch-device .shop-hover-scale:hover img {
  transform: none !important;
}

.performance-mode * {
  animation-duration: 0.1s !important;
  transition-duration: 0.1s !important;
}

.reduced-motion *,
.reduced-motion *::before,
.reduced-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

/* ====================================
   PAYMENT-BANNER - TEST/KRITISCH HINWEISE
   ==================================== */
.shop-message--banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: none;
  margin: 0;
  color: white;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.shop-sandbox-banner {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}
.shop-sandbox-banner .shop-message__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .shop-sandbox-banner .shop-message__content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
.shop-sandbox-banner .shop-message__icon {
  flex-shrink: 0;
}
.shop-sandbox-banner .shop-message__icon .shop-icon {
  font-size: 1.25rem;
  animation: pulse 2s infinite;
}
.shop-sandbox-banner .shop-message__text {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}
.shop-sandbox-banner .shop-message__text strong {
  font-weight: 700;
}
@media (max-width: 480px) {
  .shop-sandbox-banner .shop-message__text {
    font-size: 0.9rem;
  }
}
.shop-sandbox-banner .shop-message__badge {
  flex-shrink: 0;
}
.shop-sandbox-banner .shop-message__badge .shop-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  letter-spacing: 0.5px;
  animation: blink 1.5s infinite alternate;
}

.shop-critical-banner {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  animation: critical-pulse 1.5s infinite;
}
.shop-critical-banner .shop-message__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .shop-critical-banner .shop-message__content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
.shop-critical-banner .shop-message__icon {
  flex-shrink: 0;
}
.shop-critical-banner .shop-message__icon .shop-icon {
  font-size: 1.5rem;
  animation: critical-shake 2s infinite;
}
.shop-critical-banner .shop-message__text {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.shop-critical-banner .shop-message__text strong {
  font-weight: 700;
}
.shop-critical-banner .shop-message__text small {
  display: block;
  margin-top: 0.25rem;
  font-weight: 400;
  opacity: 0.9;
}
.shop-critical-banner .shop-message__details {
  flex-basis: 100%;
  margin-top: 0.5rem;
  text-align: center;
}
.shop-critical-banner .shop-message__details .shop-provider-status {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}
.shop-critical-banner .shop-message__details .shop-provider-status.test {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.shop-critical-banner .shop-message__details .shop-provider-status.live {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.shop-critical-banner .shop-message__badge {
  flex-shrink: 0;
}
.shop-critical-banner .shop-message__badge .shop-badge {
  background: rgba(255, 255, 255, 0.9);
  color: #e74c3c;
  border: 2px solid white;
  font-weight: 800;
  letter-spacing: 0.5px;
  animation: critical-blink 1s infinite alternate;
  text-shadow: none;
}

.shop-info-banner {
  background: linear-gradient(135deg, #3498db, #2980b9);
}
.shop-info-banner .shop-message__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .shop-info-banner .shop-message__content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
.shop-info-banner .shop-message__icon {
  flex-shrink: 0;
}
.shop-info-banner .shop-message__icon .shop-icon {
  font-size: 1.25rem;
}
.shop-info-banner .shop-message__text {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}
.shop-info-banner .shop-message__text strong {
  font-weight: 700;
}
.shop-info-banner .shop-message__badge {
  flex-shrink: 0;
}
.shop-info-banner .shop-message__badge .shop-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  letter-spacing: 0.5px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
@keyframes blink {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@keyframes critical-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}
@keyframes critical-shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}
@keyframes critical-blink {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}
.shop-tooltip {
  position: relative;
}
.shop-tooltip[data-tooltip]:before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
  background: var(--color-background-inverse, #f9fafb);
  color: var(--color-text-inverse, #111827);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  border-radius: 0.125rem;
  z-index: 1070;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all all 0.1s ease-in-out;
}
.shop-tooltip[data-tooltip]:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-2px);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--color-background-inverse, #f9fafb);
  z-index: 1070;
  opacity: 0;
  visibility: hidden;
  transition: all all 0.1s ease-in-out;
}
.shop-tooltip[data-tooltip]:hover:before, .shop-tooltip[data-tooltip]:hover:after, .shop-tooltip[data-tooltip]:focus-visible:before, .shop-tooltip[data-tooltip]:focus-visible:after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.shop-card__quick-actions .shop-tooltip[data-tooltip]:before {
  bottom: auto;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
}
.shop-card__quick-actions .shop-tooltip[data-tooltip]:after {
  bottom: auto;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(2px);
  border-top: none;
  border-bottom: 4px solid var(--color-background-inverse, #f9fafb);
}
.shop-card__quick-actions .shop-tooltip[data-tooltip]:hover:before, .shop-card__quick-actions .shop-tooltip[data-tooltip]:hover:after, .shop-card__quick-actions .shop-tooltip[data-tooltip]:focus-visible:before, .shop-card__quick-actions .shop-tooltip[data-tooltip]:focus-visible:after {
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 767px) {
  .shop-card__quick-actions {
    opacity: 1;
    transform: translateX(0);
  }
  .shop-card__quick-actions .shop-tooltip[data-tooltip]:before, .shop-card__quick-actions .shop-tooltip[data-tooltip]:after {
    display: none;
  }
}

.shop-card:hover .shop-card__quick-actions .shop-tooltip[data-tooltip]:hover:before, .shop-card:hover .shop-card__quick-actions .shop-tooltip[data-tooltip]:hover:after, .shop-card:hover .shop-card__quick-actions .shop-tooltip[data-tooltip]:focus-visible:before, .shop-card:hover .shop-card__quick-actions .shop-tooltip[data-tooltip]:focus-visible:after,
.shop-card__quick-actions .shop-tooltip[data-tooltip]:hover:before,
.shop-card__quick-actions .shop-tooltip[data-tooltip]:hover:after,
.shop-card__quick-actions .shop-tooltip[data-tooltip]:focus-visible:before,
.shop-card__quick-actions .shop-tooltip[data-tooltip]:focus-visible:after {
  opacity: 1 !important;
  visibility: visible !important;
}

/**
 * Premium Card Hover-Effekt
 * 
 * Verwendung: Füge die Klasse .shop-card-premium-hover zu jedem Container hinzu,
 * der den beeindruckenden Hover-Effekt erhalten soll.
 * 
 * Komponenten:
 * - Card-Transform mit Lift-Effekt
 * - Bild-Zoom mit sanfter Skalierung  
 * - Overlay-Slide-Animation
 * - Dynamischer Schatten mit Primärfarbe
 * - Dark Mode Support
 * 
 * Struktur:
 * .shop-card-premium-hover
 *   .shop-card-premium-hover__image (Container)
 *     .shop-card-premium-hover__img (Bild)
 *     .shop-card-premium-hover__overlay (Optional)
 */
.shop-card-premium-hover {
  background: var(--shop-card-bg, white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px -1px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  border: 1px solid var(--shop-border-color, #374151);
  position: relative;
}
.shop-card-premium-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
  border-color: #f59e0b;
}
.shop-card-premium-hover__image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  background: var(--shop-bg-secondary, #1f2937);
}
.shop-card-premium-hover__image--wide {
  padding-bottom: 56.25%;
}
.shop-card-premium-hover__image--portrait {
  padding-bottom: 133.33%;
}
.shop-card-premium-hover__image--landscape {
  padding-bottom: 66.67%;
}
.shop-card-premium-hover__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.shop-card-premium-hover:hover .shop-card-premium-hover__img {
  transform: scale(1.05);
}
.shop-card-premium-hover__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: clamp(0.8rem, 2vw, 1rem);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  color: white;
}
.shop-card-premium-hover:hover .shop-card-premium-hover__overlay {
  transform: translateY(0);
}
.shop-card-premium-hover__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shop-text-tertiary, #6b7280);
  font-size: 3rem;
}
.shop-card-premium-hover__content {
  padding: clamp(1rem, 3vw, 1.5rem);
}
.shop-card-premium-hover__title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: var(--shop-text-primary, #f9fafb);
  margin: 0 0 clamp(0.6rem, 1.5vw, 0.75rem);
  line-height: 1.2;
}
.shop-card-premium-hover__description {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--shop-text-secondary, #d1d5db);
  margin: 0 0 clamp(0.8rem, 2vw, 1rem);
  line-height: 1.5;
}
.shop-card-premium-hover__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.shop-card-premium-hover:focus-within, .shop-card-premium-hover__link:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.shop-card-premium-hover, .shop-card-premium-hover__img, .shop-card-premium-hover__overlay {
  will-change: transform;
}
.shop-card-premium-hover .product-tabs {
  margin-top: clamp(2rem, 6vw, 3rem);
}
.shop-card-premium-hover .product-tabs__navigation {
  display: flex;
  border-bottom: 1px solid var(--color-gray-200);
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
  overflow-x: auto;
}
.shop-card-premium-hover .product-tabs__navigation::-webkit-scrollbar {
  height: 2px;
}
.shop-card-premium-hover .product-tabs__navigation::-webkit-scrollbar-track {
  background: var(--color-gray-100);
}
.shop-card-premium-hover .product-tabs__navigation::-webkit-scrollbar-thumb {
  background: var(--color-gray-300);
}
.shop-card-premium-hover .product-tabs__tab {
  background: none;
  border: none;
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.shop-card-premium-hover .product-tabs__tab:hover {
  color: var(--color-text-primary);
}
.shop-card-premium-hover .product-tabs__tab--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.shop-card-premium-hover .product-tabs__content {
  min-height: 400px;
}
.shop-card-premium-hover .product-tabs__panel {
  display: none;
}
.shop-card-premium-hover .product-tabs__panel--active {
  display: block;
}
.shop-card-premium-hover .share-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.8rem, 2vw, 1rem);
}
.shop-card-premium-hover .share-modal {
  background: var(--color-white);
  border-radius: 0.5rem;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-2xl);
}
.shop-card-premium-hover .share-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid var(--color-gray-200);
}
.shop-card-premium-hover .share-modal__header h3 {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}
.shop-card-premium-hover .share-modal__close {
  background: none;
  border: none;
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}
.shop-card-premium-hover .share-modal__close:hover {
  color: var(--color-text-primary);
  background: var(--color-gray-100);
}
.shop-card-premium-hover .share-modal__content {
  padding: clamp(1rem, 3vw, 1.5rem);
}
.shop-card-premium-hover .share-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(0.8rem, 2vw, 1rem);
}
.shop-card-premium-hover .share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  border: 1px solid var(--color-gray-200);
  border-radius: 0.375rem;
  text-decoration: none;
  color: var(--color-text-primary);
  transition: all 0.2s ease;
  background: none;
  cursor: pointer;
}
.shop-card-premium-hover .share-option:hover {
  border-color: var(--color-primary);
  background: var(--color-gray-50);
  transform: translateY(-2px);
}
.shop-card-premium-hover .share-option i {
  font-size: clamp(1.5rem, 5vw, 2rem);
}
.shop-card-premium-hover .share-option span {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
}
.shop-card-premium-hover .share-option--facebook:hover {
  color: #1877f2;
  border-color: #1877f2;
}
.shop-card-premium-hover .share-option--twitter:hover {
  color: #1da1f2;
  border-color: #1da1f2;
}
.shop-card-premium-hover .share-option--pinterest:hover {
  color: #bd081c;
  border-color: #bd081c;
}
.shop-card-premium-hover .share-option--whatsapp:hover {
  color: #25d366;
  border-color: #25d366;
}
.shop-card-premium-hover .share-option--copy:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.shop-card-premium-hover .copy-toast {
  position: fixed;
  bottom: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-gray-900);
  color: var(--color-white);
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  border-radius: 0.375rem;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  z-index: 10001;
  animation: slideInUp 0.3s ease-out;
}
@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.shop-mini-cart {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}
@media (max-width: 575px) {
  .shop-mini-cart {
    width: 100vw;
    right: -100vw;
  }
}
.shop-mini-cart--open {
  right: 0;
}
.shop-mini-cart__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.shop-mini-cart__overlay--visible {
  opacity: 1;
  visibility: visible;
}
.shop-mini-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-200);
}
.shop-mini-cart__title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: var(--neutral-900);
  margin: 0;
}
.shop-mini-cart__close {
  background: none;
  border: none;
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--neutral-600);
  cursor: pointer;
  padding: clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-mini-cart__close:hover {
  color: var(--neutral-900);
  background: var(--color-gray-100);
}
.shop-mini-cart__close .shop-icon {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}
.shop-mini-cart__content {
  padding: clamp(1rem, 3vw, 1.5rem);
}
.shop-mini-cart__empty {
  text-align: center;
  padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 3vw, 1.5rem);
  color: var(--neutral-600);
}
.shop-mini-cart__empty i {
  font-size: 3rem;
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
  color: var(--neutral-400);
}
.shop-mini-cart__empty p {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  margin: 0;
}
.shop-mini-cart__items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-mini-cart__summary {
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-gray-50);
  border-top: 1px solid var(--color-gray-200);
}
.shop-mini-cart__actions {
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  padding: clamp(1rem, 3vw, 1.5rem);
}
.shop-mini-cart__actions .shop-button {
  width: 100%;
  justify-content: center;
}

.shop-breadcrumb {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  padding: clamp(0.8rem, 2vw, 1rem) 0;
}
.shop-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.shop-breadcrumb__item {
  display: flex;
  align-items: center;
}
.shop-breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: var(--neutral-400);
  margin-left: clamp(0.4rem, 1vw, 0.5rem);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.shop-breadcrumb__link {
  color: var(--neutral-600);
  text-decoration: none;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  transition: color 0.2s ease;
}
.shop-breadcrumb__link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.shop-breadcrumb__current {
  color: var(--neutral-900);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
}

.shop-product-media__main {
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
}
.shop-product-media__image {
  position: relative;
  background: var(--color-gray-50);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  max-width: 450px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .shop-product-media__image {
    max-width: 380px;
  }
}
@media (max-width: 575px) {
  .shop-product-media__image {
    max-width: 100%;
    margin: 0;
  }
}
.shop-product-media__image:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}
.shop-product-media__img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 2/3;
  transition: transform 0.3s ease;
  display: block;
}
.shop-product-media__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 500px;
  color: var(--neutral-400);
  background: var(--color-gray-100);
  aspect-ratio: 2/3;
}
.shop-product-media__placeholder .shop-icon {
  font-size: 4rem;
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
  opacity: 0.5;
}
.shop-product-media__placeholder span {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
}
.shop-product-media__zoom {
  position: absolute;
  top: clamp(0.8rem, 2vw, 1rem);
  right: clamp(0.8rem, 2vw, 1rem);
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-gray-200);
  color: var(--neutral-700);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.shop-product-media__zoom:hover {
  background: var(--color-white);
  transform: scale(1.1);
  color: var(--color-primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
}
.shop-product-media__image:hover .shop-product-media__zoom {
  opacity: 1;
}
.shop-product-media__badges {
  position: absolute;
  top: clamp(0.8rem, 2vw, 1rem);
  left: clamp(0.8rem, 2vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  z-index: 2;
}
.shop-product-media__thumbnails {
  margin-top: clamp(1rem, 3vw, 1.5rem);
}

.shop-product-thumbnails {
  display: flex;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  flex-wrap: wrap;
  justify-content: center;
  padding: clamp(0.8rem, 2vw, 1rem);
  background: var(--color-gray-50);
  border-radius: 0.5rem;
}
@media (max-width: 575px) {
  .shop-product-thumbnails {
    gap: clamp(0.4rem, 1vw, 0.5rem);
    padding: clamp(0.6rem, 1.5vw, 0.75rem);
  }
}
.shop-product-thumbnails__item {
  width: 90px;
  height: 90px;
  border: 2px solid var(--color-gray-200);
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--color-white);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.shop-product-thumbnails__item:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
}
.shop-product-thumbnails__item--active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}
.shop-product-thumbnails__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.shop-product-thumbnails__item:hover img {
  transform: scale(1.05);
}
@media (max-width: 575px) {
  .shop-product-thumbnails__item {
    width: 70px;
    height: 70px;
  }
}

.shop-product-info__header {
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
  padding-bottom: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid #374151;
}
.shop-product-info__pricing {
  margin: clamp(1.2rem, 4vw, 2rem) 0;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: linear-gradient(135deg, #111827, rgba(245, 158, 11, 0.05));
  border-radius: 0.75rem;
  border: 1px solid #374151;
}
.shop-product-info__summary {
  margin: clamp(1rem, 3vw, 1.5rem) 0;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #111827;
  border-radius: 0.5rem;
  border-left: 4px solid #f59e0b;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.shop-product-info__availability {
  margin: clamp(1rem, 3vw, 1.5rem) 0;
  padding: clamp(0.8rem, 2vw, 1rem);
  background: #111827;
  border-radius: 0.5rem;
}

.shop-product-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #f9fafb;
  line-height: 1.2;
  margin: 0 0 clamp(0.8rem, 2vw, 1rem) 0;
  letter-spacing: -0.02em;
}

.product-pricing__main {
  display: flex;
  align-items: baseline;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
.product-pricing__current {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #f59e0b;
  letter-spacing: -0.01em;
}
.product-pricing__original {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}
.product-pricing__discount {
  background: linear-gradient(135deg, #4ade80, rgb(117.1355140187, 229.8644859813, 158.2663551402));
  color: white;
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.6rem, 1.5vw, 0.75rem);
  border-radius: 9999px;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  margin-left: clamp(0.4rem, 1vw, 0.5rem);
}
.product-pricing__tax {
  color: #d1d5db;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  margin-bottom: clamp(0.8rem, 2vw, 1rem);
}
.product-pricing__tax a {
  color: #f59e0b;
  text-decoration: underline;
}
.product-pricing__tax a:hover {
  color: #d97706;
}
.product-pricing__benefits {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}

.product-benefit {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  color: #e5e7eb;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
}
.product-benefit i {
  color: #4ade80;
  width: 16px;
  text-align: center;
}

.shop-badge {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.2rem, 0.5vw, 0.25rem);
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
  border-radius: 9999px;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.shop-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
}
.shop-badge--primary {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.shop-badge--success {
  background: linear-gradient(135deg, #4ade80, rgb(117.1355140187, 229.8644859813, 158.2663551402));
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.shop-badge--warning {
  background: linear-gradient(135deg, #fbbf24, rgb(251.9147982063, 205.6367713004, 86.0852017937));
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.shop-badge--error {
  background: linear-gradient(135deg, #f87171, rgb(250.3959731544, 161.6040268456, 161.6040268456));
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.shop-badge--secondary {
  background: rgba(31, 41, 55, 0.8);
  color: #e5e7eb;
  border: 1px solid #374151;
}

.product-availability__status {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
  font-weight: 600;
}
.product-availability__status i {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}
.product-availability__status.product-availability--in-stock {
  color: #4ade80;
}
.product-availability__status.product-availability--low-stock {
  color: #fbbf24;
}
.product-availability__status.product-availability--out-of-stock {
  color: #f87171;
}
.product-availability__quantity {
  color: #d1d5db;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.product-availability__shipping {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  color: #4ade80;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
}
.product-availability__shipping i {
  color: #4ade80;
}

.cart-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: clamp(0.2rem, 0.5vw, 0.25rem);
  border: 1px solid var(--color-white);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}
.cart-counter.active {
  transform: scale(1);
}
.cart-counter--pulse {
  animation: cart-counter-pulse 0.6s ease-in-out;
}
@media (min-width: 768px) {
  .cart-counter {
    min-width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }
}

@keyframes cart-counter-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cart-header__title {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}
.cart-header__close {
  background: none;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
}
.cart-header__close:hover {
  background: var(--color-gray-100);
  color: var(--color-text-primary);
}

.cart-item__title {
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}
.cart-item__quantity-value {
  color: var(--color-text-primary);
  font-weight: 500;
  min-width: 40px;
  text-align: center;
}

.cart-summary__total {
  color: var(--color-text-primary);
}
.cart-summary__total span {
  color: var(--color-text-primary);
}
.cart-summary__total span.total-price {
  color: var(--color-primary);
}

.product-cart__quantity {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.product-cart__quantity-label {
  display: block;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
}
.product-cart__actions {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2vw, 1rem);
}
.product-cart__secondary {
  display: flex;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
  justify-content: center;
  margin-top: clamp(0.8rem, 2vw, 1rem);
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid #4b5563;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.quantity-selector:hover {
  border-color: #f59e0b;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
}
.quantity-selector__btn {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.quantity-selector__btn:hover {
  background: #f59e0b;
  color: white;
}
.quantity-selector__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.quantity-selector__btn:disabled:hover {
  background: none;
  color: #e5e7eb;
}
.quantity-selector__btn--minus {
  border-right: 1px solid #4b5563;
}
.quantity-selector__btn--plus {
  border-left: 1px solid #4b5563;
}
.quantity-selector__input {
  border: none;
  width: 60px;
  height: 44px;
  text-align: center;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  color: #f9fafb;
  background: transparent;
}
.quantity-selector__input:focus {
  outline: none;
  background: rgba(245, 158, 11, 0.05);
}
.quantity-selector__input::-webkit-outer-spin-button, .quantity-selector__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-selector__input[type=number] {
  -moz-appearance: textfield;
}

.shop-cart-item {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  border-bottom: 1px solid var(--color-gray-100);
}
.shop-cart-item:last-child {
  border-bottom: none;
}
.shop-cart-item__image {
  width: 60px;
  height: 60px;
  border-radius: 0.375rem;
  overflow: hidden;
  flex-shrink: 0;
}
.shop-cart-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.shop-cart-item__content {
  flex: 1;
  min-width: 0;
}
.shop-cart-item__name {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
  color: var(--neutral-900);
  margin: 0 0 clamp(0.2rem, 0.5vw, 0.25rem) 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-cart-item__name a {
  color: inherit;
  text-decoration: none;
}
.shop-cart-item__name a:hover {
  color: var(--color-primary);
}
.shop-cart-item__details {
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-cart-item__sku {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--neutral-600);
}
.shop-cart-item__controls {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  margin-top: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-cart-item__price {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--neutral-900);
  font-weight: 600;
}
.shop-cart-item__remove {
  background: none;
  border: 1px solid var(--color-gray-300);
  color: var(--color-error);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  cursor: pointer;
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.125rem;
  transition: all 0.2s ease;
}
.shop-cart-item__remove:hover {
  background: rgba(248, 113, 113, 0.1);
  color: var(--color-error);
  border-color: var(--color-error);
}

.shop-cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-cart-summary__row--total {
  margin-top: clamp(0.8rem, 2vw, 1rem);
  padding-top: clamp(0.8rem, 2vw, 1rem);
  border-top: 1px solid var(--color-gray-200);
  font-weight: 700;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}

.shop-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-gray-300);
  border-radius: 0.375rem;
  overflow: hidden;
}
.shop-quantity--sm .shop-quantity__btn {
  width: 28px;
  height: 28px;
}
.shop-quantity--sm .shop-quantity__input {
  width: 40px;
  height: 28px;
}
.shop-quantity__btn {
  background: var(--color-white);
  border: none;
  border-radius: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  color: var(--neutral-700);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-quantity__btn:hover {
  background: var(--color-gray-100);
  color: var(--neutral-900);
}
.shop-quantity__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.shop-quantity__btn--minus {
  border-right: 1px solid var(--color-gray-300);
}
.shop-quantity__btn--plus {
  border-left: 1px solid var(--color-gray-300);
}
.shop-quantity__input {
  border: none;
  text-align: center;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  width: 50px;
  height: 32px;
  padding: 0;
  background: var(--color-white);
  color: var(--neutral-900);
}
.shop-quantity__input:focus {
  outline: none;
  background: var(--color-gray-50);
}
.shop-quantity__input::-webkit-outer-spin-button, .shop-quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.shop-quantity__input[type=number] {
  -moz-appearance: textfield;
}

.shop-toast {
  position: fixed;
  top: 100px;
  right: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-white);
  color: var(--neutral-900);
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--color-green-500);
  z-index: 10000;
  transform: translateX(400px);
  transition: transform 0.3s ease-in-out;
  max-width: 350px;
}
@media (max-width: 575px) {
  .shop-toast {
    right: clamp(0.8rem, 2vw, 1rem);
    left: clamp(0.8rem, 2vw, 1rem);
    max-width: none;
    transform: translateX(0) translateY(-100px);
  }
  .shop-toast--visible {
    transform: translateX(0) translateY(0);
  }
}
.shop-toast--visible {
  transform: translateX(0);
}
.shop-toast--error {
  border-left-color: var(--color-red-500);
}
.shop-toast--warning {
  border-left-color: var(--color-amber-500);
}
.shop-toast__content {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-toast__icon {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  color: var(--color-green-500);
  margin-top: 2px;
}
.shop-toast--error .shop-toast__icon {
  color: var(--color-red-500);
}
.shop-toast--warning .shop-toast__icon {
  color: var(--color-amber-500);
}
.shop-toast__text {
  flex: 1;
}
.shop-toast__text h4 {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  margin: 0 0 clamp(0.2rem, 0.5vw, 0.25rem) 0;
  color: var(--neutral-900);
}
.shop-toast__text p {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--neutral-600);
  margin: 0;
  line-height: 1.4;
}
.shop-toast__close {
  background: none;
  border: none;
  color: var(--neutral-400);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  cursor: pointer;
  padding: clamp(0.2rem, 0.5vw, 0.25rem);
  border-radius: 0.125rem;
  margin-left: clamp(0.4rem, 1vw, 0.5rem);
  transition: color 0.2s ease;
}
.shop-toast__close:hover {
  color: var(--neutral-600);
}

.share-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.share-modal {
  background: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-2xl);
  max-width: 400px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}
.share-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid var(--color-gray-200);
}
.share-modal__header h3 {
  margin: 0;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  color: var(--neutral-900);
}
.share-modal__close {
  background: none;
  border: none;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  color: var(--neutral-600);
  cursor: pointer;
  padding: clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}
.share-modal__close:hover {
  color: var(--neutral-900);
  background: var(--color-gray-100);
}
.share-modal__content {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.share-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(0.8rem, 2vw, 1rem);
}

.share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  border-radius: 0.375rem;
  text-decoration: none;
  color: var(--neutral-700);
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  transition: all 0.2s ease;
  cursor: pointer;
}
.share-option:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.share-option i {
  font-size: clamp(1.5rem, 5vw, 2rem);
}
.share-option span {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
}
.share-option--facebook:hover {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}
.share-option--twitter:hover {
  background: #1da1f2;
  color: white;
  border-color: #1da1f2;
}
.share-option--pinterest:hover {
  background: #bd081c;
  color: white;
  border-color: #bd081c;
}
.share-option--whatsapp:hover {
  background: #25d366;
  color: white;
  border-color: #25d366;
}
.share-option--copy:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.copy-toast {
  position: fixed;
  bottom: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-green-500);
  color: white;
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  border-radius: 0.375rem;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
  z-index: 10001;
  animation: slideInRight 0.3s ease;
}
@media (max-width: 575px) {
  .copy-toast {
    bottom: clamp(0.8rem, 2vw, 1rem);
    right: clamp(0.8rem, 2vw, 1rem);
    left: clamp(0.8rem, 2vw, 1rem);
    text-align: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*# sourceMappingURL=main.css.map */
