/** Shopify CDN: Minification failed

Line 686:0 Unexpected "}"

**/
/* BADDIEZ Theme - Base Styles */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
img, video { max-width: 100%; height: auto; display: block; }
svg { display: block; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* === TYPOGRAPHY === */
.h1 { font-size: clamp(2.5rem, 5vw, 5rem); }
.h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.h4 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }
.h5 { font-size: 1.1rem; }

.section-title {
  font-family: var(--font-heading-family);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25em;
}
.section-subtitle {
  font-size: 0.875rem;
  color: rgba(17,17,17,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading-family);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition-speed) var(--transition-ease);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--color-secondary);
  color: #fff;
  border-radius: var(--border-radius-sm);
}
.btn-primary:hover { background: #222; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

.btn-secondary {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  border-radius: var(--border-radius-sm);
}
.btn-secondary:hover { background: var(--color-secondary); color: #fff; }

.btn-primary-pink {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-radius: var(--border-radius-sm);
}
.btn-primary-pink:hover { background: #f0a0be; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(246,179,204,0.4); }

.btn-white {
  background: #fff;
  color: var(--color-secondary);
  border-radius: var(--border-radius-sm);
}
.btn-white:hover { background: #f5f5f5; transform: translateY(-2px); }

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; }
.btn-icon { padding: 0.7rem; border-radius: 50%; }

/* === FORMS === */
.form-field { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #f9f9f9;
  border: 1.5px solid #e5e5e5;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body-family);
  font-size: 0.875rem;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  background: #fff;
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-error {
  font-size: 0.8rem;
  color: #e53e3e;
  margin-top: 0.4rem;
}

/* === BADGES === */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
}
.badge-new { background: var(--color-primary); color: var(--color-secondary); }
.badge-sale { background: var(--color-secondary); color: #fff; }
.badge-sold-out { background: #999; color: #fff; }
.badge-bestseller { background: #FADDE7; color: var(--color-secondary); }

/* === OVERLAY === */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.overlay.active { opacity: 1; visibility: visible; }

/* === LOADING SPINNER === */
.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(0,0,0,0.15);
  border-top-color: var(--color-secondary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === SECTION PADDING === */
.section-padding {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

/* === GRID SYSTEMS === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* === PRODUCT CARD === */
.product-card {
  position: relative;
  overflow: hidden;
}
.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 3/4;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-ease);
}
.product-card__image-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s;
}
.product-card:hover .product-card__image { transform: scale(1.05); }
.product-card:hover .product-card__image-hover { opacity: 1; }

.product-card__badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 2;
}
.product-card__actions {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  display: flex;
  gap: 0.5rem;
  transition: bottom 0.35s var(--transition-ease);
}
.product-card:hover .product-card__actions { bottom: 0; }

.product-card__wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.product-card__wishlist:hover { background: var(--color-primary); color: #fff; }
.product-card__wishlist.active { background: var(--color-primary); color: #fff; }

.product-card__info { padding: 1rem 0.25rem 0.25rem; }
.product-card__vendor {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.45);
  margin-bottom: 0.25rem;
}
.product-card__title {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.product-card__price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.product-card__price--sale { color: #e53e3e; }
.product-card__price--compare {
  color: rgba(17,17,17,0.4);
  text-decoration: line-through;
  font-weight: 400;
  font-size: 0.8rem;
}
.product-card__swatches {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.product-card__swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  outline-offset: 2px;
}
.product-card__swatch:hover,
.product-card__swatch.active { outline: 2px solid var(--color-text); }

/* === RATING STARS === */
.rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #f5a623;
}
.rating__count { color: rgba(17,17,17,0.5); }

/* === PAGINATION === */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2.5rem 0;
}
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid #e5e5e5;
  border-radius: var(--border-radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}
.pagination__link:hover,
.pagination__link.active {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(17,17,17,0.5);
  padding: 1rem 0;
}
.breadcrumb a:hover { color: var(--color-text); }
.breadcrumb__separator { opacity: 0.4; }

/* === TABS === */
.tabs { border-bottom: 1px solid #e5e5e5; display: flex; gap: 0; }
.tab-btn {
  padding: 0.85rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  color: rgba(17,17,17,0.5);
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab-btn:hover { color: var(--color-text); }
.tab-btn.active { color: var(--color-text); border-bottom-color: var(--color-secondary); }
.tab-panel { display: none; padding: 1.5rem 0; }
.tab-panel.active { display: block; }

/* === ACCORDION === */
.accordion__item { border-bottom: 1px solid #e5e5e5; }
.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-text);
  transition: color 0.2s;
}
.accordion__trigger:hover { color: rgba(17,17,17,0.6); }
.accordion__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.accordion__item.open .accordion__icon { transform: rotate(45deg); }
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-ease);
}
.accordion__body {
  padding: 0 0 1.25rem;
  font-size: 0.875rem;
  color: rgba(17,17,17,0.65);
  line-height: 1.7;
}

/* === TOAST NOTIFICATIONS === */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--color-secondary);
  color: #fff;
  border-radius: var(--border-radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s var(--transition-ease);
  max-width: 320px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast--success { background: #22c55e; }
.toast--error { background: #e53e3e; }
.toast--pink { background: var(--color-primary); color: var(--color-secondary); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section-padding {
    padding-top: calc(var(--section-padding-top) * 0.65);
    padding-bottom: calc(var(--section-padding-bottom) * 0.65);
  }
  .btn-lg { padding: 0.85rem 1.75rem; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
/* === SCROLL REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
/* === PRODUKT SEITE FIXES === */
.product-page {
  padding: 2rem 0 4rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Varianten-Buttons */
.size-btn {
  min-width: 50px;
  height: 44px;
  padding: 0 1rem;
  border: 1.5px solid #e5e5e5;
  border-radius: var(--border-radius-sm, 4px);
  background: #fff;
  color: #111;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.size-btn:hover {
  border-color: #111;
}

.size-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.size-btn.sold-out {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
}

.size-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.variant-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: flex;
  gap: 0.4rem;
}

.variant-selected-value {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(17,17,17,0.6);
}

/* Add to Cart Button */
.product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}

.btn-atc {
  flex: 1;
  height: 52px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: var(--border-radius-sm, 4px);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-atc:hover {
  background: #333;
}

.btn-atc:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Wunschliste Button */
.btn-wishlist {
  width: 52px;
  height: 52px;
  border: 1.5px solid #e5e5e5;
  border-radius: var(--border-radius-sm, 4px);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  color: #111;
}

.btn-wishlist:hover,
.btn-wishlist.active {
  background: #111;
  border-color: #111;
  color: #fff;
}

/* Mengenauswahl */
.qty-wrapper {
  display: flex;
  align-items: center;
  border: 1.5px solid #e5e5e5;
  border-radius: var(--border-radius-sm, 4px);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 1rem;
}

.qty-wrapper button {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-wrapper button:hover {
  background: #f5f5f5;
}

.qty-wrapper input {
  width: 50px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1.5px solid #e5e5e5;
  border-right: 1.5px solid #e5e5e5;
  font-size: 0.9rem;
  font-family: inherit;
}

/* Responsive */
@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
/* Footer Überschriften in Pink */
footer .footer__heading,
footer h2,
footer h3 {
  color: #f6b3cc !important;
}

/* Footer Links und Text in Weiß */
footer a,
footer p,
footer li,
footer span {
  color: #ffffff !important;
}
/* Kategorie-Grid Bilder verkleinern */
.category-grid img,
.category-grid .category__image {
  max-height: 300px;
  object-fit: cover;
}
/* Klick auf Produktbilder deaktivieren */
.product__media img {
  pointer-events: none !important;
}
/* Produktbild Transition deaktivieren */
.product-gallery__featured,
.product-gallery__featured img {
  transition: none !important;
  transform: none !important;
}
}



