@charset "UTF-8";
/* CSS Document */

    /* -------------------------------------------
       APPLE GLASS / VISION PRO DESIGN SYSTEM
    --------------------------------------------- */

    :root {
      --glass-bg: rgba(255, 255, 255, 0.22);
      --glass-bg-strong: rgba(255, 255, 255, 0.32);
      --glass-border: rgba(255, 255, 255, 0.35);
      --accent: #ff87d6;
      --accent2: #87b4ff;
      --radius-big: 26px;
      --radius-mid: 18px;
      --radius-small: 12px;
      --shadow-deep: 0 25px 70px rgba(0, 0, 0, 0.25);
      --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.16);
      --shadow-tiny: 0 4px 12px rgba(0, 0, 0, 0.12);
      --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
		 --vp-bg-glass: rgba(255, 255, 255, 0.78);
  --vp-bg-glass-strong: rgba(255, 255, 255, 0.92);
  --vp-border: rgba(148, 163, 184, 0.45);
  --vp-shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.15);
  --vp-shadow-tiny: 0 6px 18px rgba(15, 23, 42, 0.12);

  --vp-text-main: #0f172a;
  --vp-text-sub: #64748b;

  --vp-accent: #6366f1;
  --vp-accent-soft: rgba(99, 102, 241, 0.12);
    }

    * {
      box-sizing: border-box;
    }
.terminal_label{
      display: none;
    }

    body {
      margin: 0;
      font-family: var(--font);
      background:
        radial-gradient(circle at 30% 20%, #ffe0f7 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, #d9e9ff 0%, transparent 45%),
        #f3f4f6;
      color: #111;
    }

    /* -------------------------------------------
       HEADER
    --------------------------------------------- */

    .h1 {
      padding: 22px 16px;
      text-align: center;
      margin: 0;
      font-size: 26px;
      backdrop-filter: blur(28px);
      -webkit-backdrop-filter: blur(28px);
      background: rgba(255, 255, 255, 0.18);
      border-bottom: 1px solid rgba(255, 255, 255, 0.25);
      box-shadow: var(--shadow-tiny);
      position: sticky;
      top: 0;
      z-index: 50;
      color: #111;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
 
  display: flex;
  align-items: center;
  gap: 24px;
}
	  
    .brand {
      display: flex;
      align-items: baseline;
      gap: 6px;
      text-decoration: none;
      width: 150px;
    }
    .brand img {
      display: flex;
      align-items: baseline;
      gap: 6px;
      text-decoration: none;
      width: 150px;
    }

    .brand-mark {
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-size: 13px;
      padding: 5px 12px;
      border-radius: 999px;
      background: linear-gradient(120deg, #a855f7, #6366f1, #22c1c3);
      color: white;
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.55);
    }

    .brand-sub {
      font-size: 13px;
      color: var(--vp-text-sub);
    }
/* ===========================
   NAVIGATION
   =========================== */

/* ---- Mega Layouts nach layout_choice ---- */

/* Grund-Grid für Dropdowns */
.mega-layout1 .layout1-inner,
.mega-layout2 .layout2-inner,
.mega-layout3 .layout3-inner,
.mega-layout4 .layout4-inner {
  width: 100%;
}

/* layout1: Spalten + Listen (B2B) */
.mega-layout1 .layout1-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.mega-col {
  padding: 12px 10px;
}

.mega-col-head {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 8px;
}

.mega-col-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.mega-col-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.mega-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-row {
  margin-bottom: 4px;
}

.mega-row-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: 3px 0;
  border-radius: 999px;
}

.mega-row-link:hover {
  background: rgba(255,255,255,0.06);
}

.mega-row-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* layout2: große Karten */
.mega-layout2 .layout2-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.mega-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.mega-card-large {
  min-height: 260px;
}

.mega-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.55);
}

.mega-card-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.mega-card-body {
  padding: 14px 14px 16px;
  color: #fff;
}

.mega-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.mega-card-slogan {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}

.mega-card-text {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}

/* layout3: kompaktere Karten (Infos) */
.mega-layout3 .layout3-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.mega-card-compact {
  min-height: 160px;
}

.mega-card-compact .mega-card-body {
  padding: 10px 12px 12px;
}

.mega-card-compact .mega-card-title {
  font-size: 14px;
}

.mega-card-compact .mega-card-text {
  font-size: 11px;
}

.mega-card-image.compact-image img {
  max-height: 120px;
  object-fit: contain;
}

/* layout4: aktuell wie layout2, ggf. später Speziallayouts */
.mega-layout4 .layout4-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

/* etwas hellerer Glas-Gradient für alle Mega-Dropdowns */
.mega-dropdown .dropdown-inner {
  background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 55%),
              radial-gradient(circle at bottom right, rgba(255,135,214,0.24), rgba(135,180,255,0.18));
}


.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--vp-text-main);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
  border: 1px solid transparent;
}

.nav-link:hover {
  background: var(--vp-accent-soft);
  border-color: rgba(148, 163, 184, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(148, 163, 184, 0.35);
}

.nav-thumb img {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(15,23,42,0.25);
}

.nav-icon {
  font-size: 16px;
  color: var(--vp-text-sub);
}

.nav-label {
  white-space: nowrap;
}

/* ===========================
   MEGA DROPDOWN
   =========================== */

.nav-item.has-children:hover .mega-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(4px);
}

.mega-dropdown {
  position: absolute;
  left: 0;
  top: 95%;
  margin-top: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.18s ease-out;
}

.dropdown-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  min-width: 460px;
  max-width: 720px;
  padding: 14px;
  border-radius: 22px;
  background: var(--vp-bg-glass-strong);
  border: 1px solid var(--vp-border);
  box-shadow: var(--vp-shadow-soft);
}

/* Dropdown-Karte */

.dropdown-card {
  display: flex;
  gap: 10px;
  text-decoration: none;
  padding: 10px 11px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.dropdown-card:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(148, 163, 184, 0.45);
}

.dropdown-image img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(15,23,42,0.35);
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--vp-text-main);
}

.dropdown-desc {
  font-size: 12px;
  color: var(--vp-text-sub);
}

/* ===========================
   ACTION BUTTONS (SEARCH / USER / CART)
   =========================== */

.header-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.icon-btn {
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 6px 9px;
  cursor: pointer;
  color: var(--vp-text-sub);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.icon-btn i {
  font-size: 16px;
}

.icon-btn:hover {
  background: #ffffff;
  border-color: var(--vp-accent);
  color: var(--vp-accent);
  box-shadow: 0 12px 30px rgba(129, 140, 248, 0.45);
  transform: translateY(-1px);
}

/* ===========================
   BURGER / MOBILE
   =========================== */

.burger {
  display: none;
  border: none;
  background: transparent;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  cursor: pointer;
  margin-left: 4px;
}

.burger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--vp-text-main);
}

/* Mobile Layout */

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .burger {
    display: flex;
    margin-left: auto;
  }

  .site-header.nav-open .main-nav {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 56px;
    padding: 8px 12px 14px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--vp-border);
    box-shadow: var(--vp-shadow-soft);
  }

  .site-header.nav-open .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-item.has-children:hover .mega-dropdown {
    position: static;
    margin-top: 4px;
    transform: none;
  }

  .mega-dropdown {
    position: static;
    opacity: 1 !important;
    pointer-events: auto;
    transform: none;
    margin-top: 4px;
  }

  .dropdown-inner {
    min-width: 0;
    max-width: 100%;
    grid-template-columns: 1fr;
  }
}
	  
    /* -------------------------------------------
       TOOLBAR
    --------------------------------------------- */

    .toolbar {
      padding: 18px 16px 8px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 1500px;
      margin: 0 auto;
    }

    .toolbar-row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      justify-content: center;
    }

    .toolbar label {
      display: block;
      font-size: 11px;
      margin-bottom: 4px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #444;
    }

    .toolbar input {
      padding: 9px 14px;
      border-radius: var(--radius-big);
      border: 1px solid rgba(255, 255, 255, 0.5);
      background: var(--glass-bg);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      color: #000;
      font-size: 14px;
      min-width: 190px;
      box-shadow: var(--shadow-tiny);
      transition: 0.2s;
    }

    .toolbar input::placeholder {
      color: #666;
    }

    .toolbar input:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 2px rgba(255, 135, 214, 0.35), var(--shadow-soft);
    }

    .filter-group {
      padding: 12px 18px;
      border-radius: var(--radius-big);
      background: var(--glass-bg-strong);
      border: 1px solid rgba(255, 255, 255, 0.35);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      box-shadow: var(--shadow-soft);
      min-width: 260px;
    }

    .filter-label {
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 10px;
      color: #333;
    }

    .filter-icons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 4px;
    }

    .filter-icons::-webkit-scrollbar {
      height: 4px;
    }

    .filter-icons::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.18);
      border-radius: 999px;
    }

    .filter-btn {
      min-width: 78px;
      height: 78px;
      border-radius: var(--radius-mid);
      border: 1px solid rgba(255, 255, 255, 0.45);
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: 0.25s;
      box-shadow: var(--shadow-tiny);
      flex-shrink: 0;
    }

    .filter-btn img {
      width: 28px;
      height: 28px;
      filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
    }

    .filter-btn span {
      font-size: 12px;
    }

    .filter-btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
      background: rgba(255, 255, 255, 0.24);
    }

    .filter-btn.active {
      border-color: var(--accent);
      background: rgba(255, 135, 214, 0.28);
      box-shadow: 0 0 18px rgba(255, 135, 214, 0.55), var(--shadow-soft);
    }

    /* -------------------------------------------
       PRODUCT GRID
    --------------------------------------------- */

    .page-wrap {
      max-width: 1500px;
      margin: 8px auto 40px;
      padding: 0 16px 40px;
    }

    .des_product-grid {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 24px;
      perspective: 1200px;
    }

    .designer-filter-panel {
      display: grid;
      gap: 14px;
      margin-bottom: 22px;
    }

    .designer-sub-filter[hidden],
    .product-card[hidden] {
      display: none;
    }

    .product-card {
      position: relative;
      padding: 18px 18px 16px;
      border-radius: var(--radius-big);
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.35);
      backdrop-filter: blur(26px);
      -webkit-backdrop-filter: blur(26px);
      box-shadow: var(--shadow-soft);
      transition:background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.25s ease, transform 0.25s ease;
      cursor: pointer;
    }

    .product-card::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.5), transparent 60%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: 0;
    }

    .product-card:hover {
      transform:translateY(-4px) scale(1.02);
      box-shadow:var(--shadow-deep);
      border-color:var(--accent);
    }
    .product-card:hover::before {
      opacity: 0;
    }

    .product-content {
      position: relative;
      z-index: 1;
    }
	  
    .product-image-wrapper {
      position: relative;
      width: 100%;
      border-radius: var(--radius-mid);
      background: white;
      transition: background-color 0.25s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-bottom: 8px;
      min-height: 150px;
    }

    .product-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      position: relative;
      z-index: 2;
    }

    .product-card h3 {
      margin: 4px 0 4px;
      font-size: 17px;
    }

    .product-meta {
      font-size: 13px;
      color: #555;
      margin-bottom: 6px;
    }

    .product-price {
      font-size: 19px;
      font-weight: 700;
      color: #e11d48;
      margin-bottom: 8px;
    }

    .product-desc {
      font-size: 13px;
      color: #333;
      min-height: 36px;
    }

    .status-text {
      text-align: center;
      padding: 16px;
      color: #333;
      font-size: 14px;
    }

    /* -------------------------------------------
       COLORS & SIZES
    --------------------------------------------- */

    .product-colors {
      margin-top: 10px;
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      align-items: center;
    }

    .color-dot {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
      border: 1px solid rgba(255, 255, 255, 0.7);
      cursor: pointer;
      transition: transform 0.2s ease;
      position: relative;
      background-clip: padding-box;
    }

    .color-dot:hover {
      transform: scale(1.22) translateZ(10px);
    }

    .color-dot:hover::after {
      content: attr(data-title);
      position: absolute;
      left: 50%;
      top: -34px;
      transform: translateX(-50%);
      padding: 6px 12px;
      background: rgba(255, 255, 255, 0.28);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.55);
      border-radius: 12px;
      color: #000;
      font-size: 12px;
      white-space: nowrap;
      z-index: 999;
      opacity: 0;
      animation: tooltipFade 0.18s ease-out forwards;
      pointer-events: none;
    }

    @keyframes tooltipFade {
      0% { opacity: 0; transform: translateX(-50%) translateY(4px); }
      100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    }

    .color-more {
      padding: 4px 10px;
      font-size: 12px;
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(18px);
      border-radius: 999px;
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.6);
      transition: 0.25s;
      white-space: nowrap;
    }

    .color-more:hover {
      background: rgba(255, 255, 255, 0.75);
      transform: scale(1.07);
    }

    .color-expand {
      width: 100%;
      margin-top: 8px;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.35s ease, opacity 0.25s ease;
    }

    .color-expand.open {
      max-height: 1000px;
      opacity: 1;
    }

    .color-expand-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(18px, 1fr));
      gap: 8px;
      margin-top: 6px;
    }

    .product-sizes {
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .size-chip {
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(10px);
      font-size: 12px;
      color: #111;
      position: relative;
      z-index: 3;
      white-space: nowrap;
    }

    /* -------------------------------------------
       NEU: Produkt-Actions (Warenkorb-Button)
    --------------------------------------------- */

    .product-actions {
      margin-top: 12px;
      display: flex;
      justify-content: flex-end;
    }

    .btn-add-cart {
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.8);
      background: linear-gradient(120deg, rgba(134, 239, 172,0.9), rgba(59, 130, 246,0.9));
      color: #fff;
      font-size: 13px;
      padding: 6px 12px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(34,197,94,0.45);
      transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    }

    .btn-add-cart i {
      font-size: 14px;
    }

    .btn-add-cart:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(34,197,94,0.55);
    }

	    .btn-add-cart:active {
	      transform: translateY(0);
	      box-shadow: var(--shadow-tiny);
	      opacity: 0.9;
	    }

	    .designer-card-link {
	      display: inline-flex;
	      align-items: center;
	      justify-content: center;
	      min-height: 34px;
	      padding: 0 14px;
	      border-radius: 8px;
	      background: linear-gradient(135deg, #ff55bd, #ec1684);
	      color: #fff;
	      font-size: 13px;
	      font-weight: 900;
	      text-decoration: none;
	      box-shadow: 0 12px 26px rgba(236, 22, 132, .22);
	    }

	    .designer-product-page {
	      max-width: 1180px;
	      margin: 36px auto 72px;
	      padding: 0 18px;
	      display: grid;
	      grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
	      gap: 32px;
	      align-items: start;
	    }

	    .designer-product-media,
	    .designer-product-config {
	      background: rgba(255, 255, 255, 0.86);
	      border: 1px solid rgba(148, 163, 184, 0.28);
	      border-radius: 8px;
	      box-shadow: 0 20px 55px rgba(15, 23, 42, 0.13);
	    }

	    .designer-product-media {
	      padding: 24px;
	    }

	    .designer-product-image {
	      min-height: 440px;
	      display: flex;
	      align-items: center;
	      justify-content: center;
	      background: #f8fafc;
	      border-radius: 8px;
	      overflow: hidden;
	    }

	    .designer-product-image img {
	      max-width: 100%;
	      max-height: 520px;
	      object-fit: contain;
	    }

	    .designer-product-thumbs {
	      display: grid;
	      grid-template-columns: repeat(4, minmax(0, 1fr));
	      gap: 10px;
	      margin-top: 14px;
	    }

	    .designer-product-thumbs img {
	      width: 100%;
	      aspect-ratio: 1;
	      object-fit: contain;
	      background: #fff;
	      border: 1px solid #e5e7eb;
	      border-radius: 8px;
	    }

	    .designer-product-config {
	      padding: 26px;
	    }

	    .designer-kicker {
	      margin: 0 0 8px;
	      font-size: 12px;
	      font-weight: 800;
	      text-transform: uppercase;
	      color: #6366f1;
	    }

	    .designer-product-config h1 {
	      margin: 0;
	      font-size: 32px;
	      line-height: 1.12;
	      letter-spacing: 0;
	      color: #0f172a;
	    }

	    .designer-product-lead {
	      margin: 12px 0 22px;
	      color: #475569;
	      line-height: 1.55;
	    }

	    .designer-buy-box {
	      display: grid;
	      gap: 20px;
	    }

	    .designer-option-block h2 {
	      margin: 0 0 10px;
	      font-size: 15px;
	      color: #111827;
	    }

	    .designer-color-options,
	    .designer-size-options,
	    .designer-print-options {
	      display: flex;
	      flex-wrap: wrap;
	      gap: 10px;
	    }

	    .designer-color-swatch {
	      position: relative;
	      width: 66px;
	      height: 58px;
	      overflow: hidden;
	      border-radius: 14px;
	      border: 2px solid #fff;
	      background: #fff;
	      box-shadow: 0 0 0 1px rgba(236, 22, 132, .24), 0 8px 18px rgba(236, 22, 132, .12);
	      cursor: pointer;
	      transition: transform .18s ease, box-shadow .18s ease;
	    }

	    .designer-color-swatch.active {
	      transform: translateY(-1px);
	      box-shadow: 0 0 0 3px #ec1684, 0 12px 28px rgba(236, 22, 132, .22);
	    }

	    .designer-color-swatch img {
	      width: 100%;
	      height: 100%;
	      object-fit: contain;
	      padding: 5px;
	      background: linear-gradient(180deg, #fff, #fff4fb);
	    }

	    .designer-color-swatch span {
	      position: absolute;
	      right: 5px;
	      bottom: 5px;
	      width: 15px;
	      height: 15px;
	      border: 2px solid #fff;
	      border-radius: 999px;
	      background: var(--swatch, #ddd);
	      box-shadow: 0 2px 7px rgba(17, 24, 39, .22);
	    }

	    .designer-size-chip input,
	    .designer-print-options input {
	      position: absolute;
	      opacity: 0;
	      pointer-events: none;
	    }

	    .designer-size-chip span,
	    .designer-print-options span {
	      display: inline-flex;
	      align-items: center;
	      justify-content: center;
	      min-height: 38px;
	      padding: 0 14px;
	      border: 1px solid #cbd5e1;
	      border-radius: 8px;
	      background: #fff;
	      color: #0f172a;
	      cursor: pointer;
	    }

	    .designer-size-chip.active span,
	    .designer-print-options input:checked + span {
	      border-color: #111827;
	      background: #111827;
	      color: #fff;
	    }

	    .designer-price-panel {
	      display: grid;
	      gap: 8px;
	      padding: 16px;
	      background: #f8fafc;
	      border: 1px solid #e2e8f0;
	      border-radius: 8px;
	    }

	    .designer-price-panel div {
	      display: flex;
	      align-items: center;
	      justify-content: space-between;
	      gap: 16px;
	    }

	    .designer-price-panel strong {
	      font-size: 20px;
	      color: #e11d48;
	    }

	    .designer-price-panel small {
	      min-height: 16px;
	      color: #16a34a;
	      font-weight: 700;
	    }

	    .designer-qty-row {
	      display: flex;
	      align-items: center;
	      justify-content: space-between;
	      gap: 12px;
	    }

	    .designer-qty-row input {
	      width: 110px;
	      min-height: 40px;
	      padding: 0 12px;
	      border: 1px solid #cbd5e1;
	      border-radius: 8px;
	    }

	    .designer-action-row {
	      display: grid;
	      grid-template-columns: 1fr 1fr;
	      gap: 10px;
	    }

	    .designer-primary-btn,
	    .designer-secondary-btn {
	      min-height: 46px;
	      border-radius: 8px;
	      display: inline-flex;
	      align-items: center;
	      justify-content: center;
	      font-weight: 800;
	      text-decoration: none;
	      cursor: pointer;
	    }

	    .designer-primary-btn {
	      border: 0;
	      background: #111827;
	      color: #fff;
	    }

	    .designer-secondary-btn {
	      border: 1px solid #111827;
	      background: #fff;
	      color: #111827;
	    }

	    /* -------------------------------------------
	       RESPONSIVE
	    --------------------------------------------- */

    @media (max-width: 900px) {
      .toolbar {
        padding-top: 14px;
      }

      .filter-group {
        min-width: 100%;
      }

	      .product-card {
	        padding: 16px;
	      }

	      .designer-product-page {
	        grid-template-columns: 1fr;
	      }
	    }

    @media (max-width: 600px) {
      h1 {
        font-size: 20px;
        padding: 16px 8px;
      }

      .product-grid {
        grid-template-columns: minmax(0, 1fr);
      }

	      .product-image-wrapper {
	        min-height: 130px;
	      }

	      .designer-product-page {
	        margin-top: 18px;
	        padding: 0 12px;
	      }

	      .designer-product-media,
	      .designer-product-config {
	        padding: 16px;
	      }

	      .designer-product-image {
	        min-height: 280px;
	      }

	      .designer-action-row {
	        grid-template-columns: 1fr;
	      }
	    }
	  
    .mini-product-popup {
      position: absolute;
      display: none;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 280px;
      padding: 0;
      border-radius: 20px;
      background: rgba(255,255,255,0.22);
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
      border: 1px solid rgba(255,255,255,0.4);
      box-shadow: 0 18px 40px rgba(0,0,0,0.25);
      opacity: 0;
      pointer-events: none;
      transition: 0.25s ease;
      z-index: 9999;
    }

    .product-card:hover .mini-product-popup {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(-12px);
      display:block;
    }

    .mini-popup-inner {
      padding: 16px;
    }

    .mini-popup-images {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 6px;
      margin-bottom: 12px;
    }

    .mini-popup-images img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.55);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .mini-popup-title {
      font-size: 16px;
      margin: 6px 0 2px;
    }

    .mini-popup-price {
      font-size: 15px;
      color: #e11d48;
      margin: 0 0 6px;
      font-weight: 600;
    }

    .mini-popup-desc {
      font-size: 13px;
      color: #222;
      margin: 0;
    }
