@charset "UTF-8";
/*!
 * 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;
}
/*# sourceMappingURL=shop.css.map */
