@charset "UTF-8";
/*!
 * BlechArt.shop - Category Usage Shared Styles
 * Gemeinsame Styles für Kategorie- und Einsatzbereich-Seiten
 * Verwendet von: views/category/show.php und views/usage-purposes/show.php
 */
/*!
 * BlechArt.shop - Design Tokens (SCSS Variables)
 * Basierend auf style-guide/tokens/
 */
/*!
 * BlechArt.shop - SCSS Mixins
 * Wiederverwendbare Mixins für Shop-Komponenten
 */
.shop-category-card {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  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 cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  will-change: transform, box-shadow, border-color;
}
@media (hover: hover) and (pointer: fine) {
  .shop-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
  }
  .shop-category-card:hover .shop-category-card__image {
    transform: scale(1.05);
  }
  .shop-category-card:hover .shop-category-card__icon {
    transform: scale(1.1);
    color: #fbbf24;
  }
  .shop-category-card:hover .shop-category-card__button {
    color: #fbbf24;
  }
  .shop-category-card:hover .shop-category-card__button i {
    transform: translateX(4px);
  }
}
.shop-category-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.shop-category-card__image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #374151;
}
.shop-category-card__image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
.shop-category-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-category-card__image-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #111827;
  z-index: 2;
  width: 100%;
  padding: clamp(0.8rem, 2vw, 1rem);
}
.shop-category-card__image-badge {
  background: rgba(17, 24, 39, 0.9);
  color: #f3f4f6;
  border-radius: 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;
  display: inline-block;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  backdrop-filter: blur(10px);
}
.shop-category-card__image-title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}
.shop-category-card__header {
  padding: clamp(1rem, 3vw, 1.5rem);
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop-category-card__icon {
  font-size: 2rem;
  color: #111827;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-category-card__badge {
  background: rgba(17, 24, 39, 0.2);
  border-radius: 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;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(17, 24, 39, 0.3);
}
.shop-category-card__content {
  padding: clamp(1rem, 3vw, 1.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.shop-category-card__title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  color: #f9fafb;
  margin: 0 0 clamp(0.6rem, 1.5vw, 0.75rem);
  line-height: 1.2;
}
.shop-category-card__description {
  color: #d1d5db;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.75;
  margin: 0 0 clamp(0.8rem, 2vw, 1rem);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-category-card__cta {
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  background: #374151;
  border-top: 1px solid #4b5563;
  margin-top: auto;
}
.shop-category-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  color: #f59e0b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-category-card__button i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .shop-category-card__header {
    padding: clamp(0.8rem, 2vw, 1rem);
    flex-direction: column;
    gap: clamp(0.4rem, 1vw, 0.5rem);
  }
  .shop-category-card__content {
    padding: clamp(0.8rem, 2vw, 1rem);
  }
  .shop-category-card__cta {
    padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  }
  .shop-category-card__title {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
  .shop-category-card__description {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
}

.usage-purpose-card {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  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 cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  will-change: transform, box-shadow, border-color;
}
@media (hover: hover) and (pointer: fine) {
  .usage-purpose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
  }
  .usage-purpose-card:hover .usage-purpose-card__icon {
    transform: scale(1.1);
    color: #fbbf24;
  }
  .usage-purpose-card:hover .usage-purpose-card__button {
    color: #fbbf24;
  }
  .usage-purpose-card:hover .usage-purpose-card__button i {
    transform: translateX(4px);
  }
}
.usage-purpose-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.usage-purpose-card__header {
  padding: clamp(1rem, 3vw, 1.5rem);
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.usage-purpose-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(17, 24, 39, 0.2);
  border-radius: 0.5rem;
  color: #111827;
  font-size: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.usage-purpose-card__badge {
  background: rgba(17, 24, 39, 0.2);
  border-radius: 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;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(17, 24, 39, 0.3);
}
.usage-purpose-card__content {
  padding: clamp(1rem, 3vw, 1.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.usage-purpose-card__title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  color: #f9fafb;
  margin: 0 0 clamp(0.6rem, 1.5vw, 0.75rem);
  line-height: 1.2;
}
.usage-purpose-card__description {
  color: #d1d5db;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.75;
  margin: 0 0 clamp(0.8rem, 2vw, 1rem);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.usage-purpose-card__cta {
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  background: #374151;
  border-top: 1px solid #4b5563;
  margin-top: auto;
}
.usage-purpose-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  color: #f59e0b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.usage-purpose-card__button i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .usage-purpose-card__header {
    padding: clamp(0.8rem, 2vw, 1rem);
    flex-direction: column;
    gap: clamp(0.4rem, 1vw, 0.5rem);
  }
  .usage-purpose-card__icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  .usage-purpose-card__content {
    padding: clamp(0.8rem, 2vw, 1rem);
  }
  .usage-purpose-card__cta {
    padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
  }
  .usage-purpose-card__title {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
  .usage-purpose-card__description {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
}

.shop-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(1.2rem, 4vw, 2rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #1f2937;
  border-radius: 0.5rem;
  border: 1px solid #374151;
}
.shop-pagination__info {
  color: #d1d5db;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  line-height: 1.5;
}
.shop-pagination__controls {
  display: flex;
  gap: clamp(0.6rem, 1.5vw, 0.75rem);
}
@media (max-width: 768px) {
  .shop-pagination {
    flex-direction: column;
    gap: clamp(0.8rem, 2vw, 1rem);
    text-align: center;
  }
  .shop-pagination__controls {
    justify-content: center;
  }
}

.shop-empty-state {
  text-align: center;
  padding: clamp(2.5rem, 8vw, 4rem) clamp(1.2rem, 4vw, 2rem);
  background: #1f2937;
  border-radius: 0.5rem;
  border: 1px solid #374151;
}
.shop-empty-state__icon {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.shop-empty-state__icon i {
  font-size: 4rem;
  color: #6b7280;
}
.shop-empty-state__title {
  font-size: clamp(2rem, 6vw, 2.5rem);
  font-weight: 700;
  color: #f3f4f6;
  margin: 0 0 clamp(0.8rem, 2vw, 1rem);
}
.shop-empty-state__description {
  color: #d1d5db;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  line-height: 1.75;
  margin: 0 0 clamp(1.2rem, 4vw, 2rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .shop-empty-state {
    padding: clamp(2rem, 6vw, 3rem) clamp(0.8rem, 2vw, 1rem);
  }
  .shop-empty-state__icon i {
    font-size: 3rem;
  }
  .shop-empty-state__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .shop-empty-state__description {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
}

.shop-product-card {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  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 cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  will-change: transform, box-shadow, border-color;
}
@media (hover: hover) and (pointer: fine) {
  .shop-product-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), 0 0 20px rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
  }
  .shop-product-card:hover .shop-product-card__image {
    transform: scale(1.05);
  }
}
.shop-product-card__image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #374151;
}
.shop-product-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}
.shop-product-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #374151;
  color: #6b7280;
  font-size: 2rem;
}
.shop-product-card__badges {
  position: absolute;
  top: clamp(0.4rem, 1vw, 0.5rem);
  left: clamp(0.4rem, 1vw, 0.5rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(0.2rem, 0.5vw, 0.25rem);
}
.shop-product-card__badge {
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.25rem;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.shop-product-card__badge--sale {
  background: rgba(248, 113, 113, 0.9);
  color: #111827;
}
.shop-product-card__badge--new {
  background: rgba(74, 222, 128, 0.9);
  color: #111827;
}
.shop-product-card__badge--trending {
  background: rgba(251, 191, 36, 0.9);
  color: #111827;
}
.shop-product-card__actions {
  position: absolute;
  top: clamp(0.4rem, 1vw, 0.5rem);
  right: clamp(0.4rem, 1vw, 0.5rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(0.2rem, 0.5vw, 0.25rem);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-product-card:hover .shop-product-card__actions {
  opacity: 1;
}
.shop-product-card__content {
  padding: clamp(0.8rem, 2vw, 1rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.shop-product-card__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;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-product-card__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-product-card__title-link:hover {
  color: #f59e0b;
}
.shop-product-card__description {
  color: #d1d5db;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  line-height: 1.75;
  margin: 0 0 clamp(0.6rem, 1.5vw, 0.75rem);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-product-card__meta {
  margin-top: auto;
  padding-top: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-product-card__price {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
}
.shop-product-card__price-current {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 700;
  color: #f59e0b;
}
.shop-product-card__price-original {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: #9ca3af;
  text-decoration: line-through;
}
.shop-product-card__stock {
  margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
}
.shop-product-card__footer {
  padding: clamp(0.8rem, 2vw, 1rem);
  padding-top: 0;
  margin-top: auto;
}
@media (max-width: 768px) {
  .shop-product-card__image-container {
    aspect-ratio: 3/2;
  }
  .shop-product-card__content {
    padding: clamp(0.6rem, 1.5vw, 0.75rem);
  }
  .shop-product-card__footer {
    padding: clamp(0.6rem, 1.5vw, 0.75rem);
    padding-top: 0;
  }
  .shop-product-card__title {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
  .shop-product-card__price-current {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
}
@media (max-width: 480px) {
  .shop-product-card__image-container {
    aspect-ratio: 16/9;
  }
  .shop-product-card__content {
    padding: clamp(0.4rem, 1vw, 0.5rem);
  }
  .shop-product-card__footer {
    padding: clamp(0.4rem, 1vw, 0.5rem);
    padding-top: 0;
  }
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-top: clamp(1rem, 3vw, 1.5rem);
}
@media (max-width: 1024px) {
  .shop-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: clamp(0.8rem, 2vw, 1rem);
  }
}
@media (max-width: 768px) {
  .shop-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(0.8rem, 2vw, 1rem);
  }
}
@media (max-width: 640px) {
  .shop-products-grid {
    grid-template-columns: 1fr;
    gap: clamp(0.8rem, 2vw, 1rem);
  }
}

.shop-stock-indicator {
  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;
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
  border-radius: 0.25rem;
}
.shop-stock-indicator--in-stock {
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
}
.shop-stock-indicator--out-of-stock {
  background: rgba(248, 113, 113, 0.1);
  color: #f87171;
}
.shop-stock-indicator--low-stock {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
}
.shop-stock-indicator i {
  font-size: 0.75rem;
}

.shop-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
}
.shop-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.shop-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.shop-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
@media (max-width: 1024px) {
  .shop-grid {
    gap: clamp(0.8rem, 2vw, 1rem);
  }
  .shop-grid--2, .shop-grid--3, .shop-grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media (max-width: 768px) {
  .shop-grid {
    gap: clamp(0.8rem, 2vw, 1rem);
  }
  .shop-grid--2, .shop-grid--3, .shop-grid--4 {
    grid-template-columns: 1fr;
  }
}

.shop-reveal {
  opacity: 1;
  transform: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-reveal--fade-up {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .shop-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .shop-category-card__header,
  .usage-purpose-card__header {
    padding: clamp(0.6rem, 1.5vw, 0.75rem);
  }
  .shop-category-card__content,
  .usage-purpose-card__content {
    padding: clamp(0.6rem, 1.5vw, 0.75rem);
  }
  .shop-category-card__cta,
  .usage-purpose-card__cta {
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
  }
  .shop-category-card__title,
  .usage-purpose-card__title {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }
  .shop-category-card__description,
  .usage-purpose-card__description {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
  .shop-pagination {
    padding: clamp(0.8rem, 2vw, 1rem);
  }
  .shop-pagination__info {
    font-size: 0.75rem;
  }
  .shop-empty-state {
    padding: clamp(1.2rem, 4vw, 2rem) clamp(0.6rem, 1.5vw, 0.75rem);
  }
  .shop-empty-state__icon i {
    font-size: 2.5rem;
  }
  .shop-empty-state__title {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
  .shop-empty-state__description {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
}
/*# sourceMappingURL=category-usage-shared.css.map */
