    /* =============================================
       WEBSHOP
       ============================================= */
    .shop-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 280px));
      gap: 1.2rem;
      margin-top: 0;
      justify-content: start;
    }
    @media (max-width: 600px) {
      .shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      }
    }

    .shop-card {
      background: #fff;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .shop-card:hover {
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transform: translateY(-2px);
    }

    .shop-card-img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      background: var(--body-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 0.75rem;
      letter-spacing: 1px;
      overflow: hidden;
      position: relative;
    }
    
    .gallery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      cursor: zoom-in;
      transition: opacity 0.2s;
    }
    
    .gallery-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      background: rgba(0,0,0,0.45);
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s;
      z-index: 2;
      opacity: 0;
    }
    .shop-card-img:hover .gallery-arrow { opacity: 1; }
    .gallery-arrow:hover { background: rgba(0,0,0,0.7); }
    .gallery-arrow.prev { left: 8px; }
    .gallery-arrow.next { right: 8px; }
    
    /* På mobil altid synlig — ingen hover */
    @media (hover: none) {
      .gallery-arrow { opacity: 0.85; }
    }
    
    .gallery-dots {
      position: absolute;
      bottom: 8px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 5px;
      z-index: 2;
    }
    .gallery-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      border: 1px solid rgba(0,0,0,0.3);
      cursor: pointer;
      transition: background 0.15s;
      padding: 0;
    }
    .gallery-dot.active { background: white; }
    
    /* Lightbox */
    .lightbox-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 10000;
      padding: 1rem;
    }
    .lightbox-overlay.open { display: flex; }
    
    .lightbox-content {
      position: relative;
      max-width: 95vw;
      max-height: 95vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .lightbox-img {
      max-width: 95vw;
      max-height: 90vh;
      object-fit: contain;
      display: block;
    }
    .lightbox-close, .lightbox-nav {
      position: absolute;
      background: rgba(255,255,255,0.15);
      color: white;
      border: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s;
    }
    .lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.3); }
    .lightbox-close { top: -56px; right: 0; }
    .lightbox-nav.prev { left: -56px; top: 50%; transform: translateY(-50%); }
    .lightbox-nav.next { right: -56px; top: 50%; transform: translateY(-50%); }
    
    @media (max-width: 768px) {
      .lightbox-close { top: 16px; right: 16px; }
      .lightbox-nav.prev { left: 8px; }
      .lightbox-nav.next { right: 8px; }
    }
    
    .lightbox-counter {
      position: absolute;
      bottom: -36px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.7);
      font-size: 0.85rem;
    }
    
    /* === PRODUKT-DETALJE-SIDE === */
    .pd-wrapper {
      max-width: 1100px;
      margin: 0 auto;
      padding: 1.5rem;
    }
    .pd-breadcrumb {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 1.2rem;
    }
    .pd-breadcrumb a {
      color: var(--muted);
      text-decoration: none;
    }
    .pd-breadcrumb a:hover { color: var(--accent); }
    .pd-breadcrumb .sep { margin: 0 0.4rem; opacity: 0.5; }
    .pd-breadcrumb .current { color: var(--text); }
    
    .pd-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 2.5rem;
      align-items: start;
    }
    @media (max-width: 768px) {
      .pd-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    }
    
    .pd-gallery {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .pd-main-img {
      width: 100%;
      aspect-ratio: 4/3;
      background: var(--body-bg, #f5f5f5);
      border-radius: 6px;
      overflow: hidden;
      cursor: zoom-in;
      position: relative;
    }
    .pd-main-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .pd-thumbs {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    .pd-thumb {
      width: 70px;
      height: 70px;
      border-radius: 4px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      background: var(--body-bg);
    }
    .pd-thumb.active { border-color: var(--accent); }
    .pd-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    
    .pd-info { padding: 0; }
    .pd-info h1 {
      font-size: 2rem;
      margin: 0 0 0.5rem;
      font-weight: 600;
      line-height: 1.2;
    }
    .pd-tag {
      display: inline-block;
      padding: 0.25rem 0.6rem;
      background: var(--body-bg);
      color: var(--muted);
      border-radius: 4px;
      font-size: 0.72rem;
      letter-spacing: 0.5px;
      margin-bottom: 0.8rem;
      text-transform: uppercase;
    }
    .pd-price {
      font-size: 2rem;
      font-weight: 600;
      color: var(--text);
      margin: 1rem 0 0.4rem;
    }
    .pd-price .fra-prefix {
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 400;
      margin-right: 0.3rem;
    }
    .pd-desc {
      color: var(--text);
      line-height: 1.65;
      margin: 1.2rem 0;
      white-space: pre-wrap;
    }
    
    .pd-variants {
      margin: 1.5rem 0;
    }
    .pd-variants-label {
      display: block;
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 0.5rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .pd-variant-btns {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    .pd-variant-btn {
      padding: 0.55rem 1rem;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 6px;
      cursor: pointer;
      font-family: inherit;
      font-size: 0.88rem;
      color: var(--text);
      transition: all 0.15s;
      position: relative;
    }
    .pd-variant-btn:hover:not(.udsolgt) {
      border-color: var(--accent);
    }
    .pd-variant-btn.active {
      background: var(--accent);
      color: white;
      border-color: var(--accent);
    }
    .pd-variant-btn.udsolgt {
      opacity: 0.4;
      cursor: not-allowed;
      text-decoration: line-through;
    }
    .pd-variant-btn-pris {
      display: block;
      font-size: 0.72rem;
      opacity: 0.75;
      margin-top: 0.1rem;
    }
    
    .pd-buy-row {
      display: flex;
      gap: 0.6rem;
      align-items: center;
      margin: 1.5rem 0 1rem;
      flex-wrap: wrap;
    }
    .pd-qty {
      display: flex;
      align-items: center;
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
    }
    .pd-qty button {
      background: transparent;
      border: none;
      width: 38px;
      height: 42px;
      cursor: pointer;
      font-size: 1.1rem;
      color: var(--text);
    }
    .pd-qty button:hover { background: var(--body-bg); }
    .pd-qty span {
      padding: 0 0.9rem;
      min-width: 36px;
      text-align: center;
      font-weight: 500;
    }
    .pd-add-btn {
      flex: 1;
      min-width: 180px;
      padding: 0.75rem 1.5rem;
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 6px;
      font-family: inherit;
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.15s;
    }
    .pd-add-btn:hover:not(:disabled) { background: #c9520a; }
    .pd-add-btn:disabled {
      background: var(--muted);
      cursor: not-allowed;
      opacity: 0.5;
    }
    
    .pd-meta {
      margin-top: 2rem;
      padding-top: 1.2rem;
      border-top: 1px solid var(--border);
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.7;
    }
    .pd-meta strong { color: var(--text); }
    
    .pd-back {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--muted);
      text-decoration: none;
      font-size: 0.88rem;
      margin-bottom: 1rem;
    }
    .pd-back:hover { color: var(--accent); }
    
    .pd-lager {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin: 0.1rem 0 0.9rem;
      font-size: 0.9rem;
      min-height: 1.2em;
    }
    .pd-lager-ikon { font-size: 0.95em; line-height: 1; }
    .pd-lager-in   { color: var(--muted); }
    .pd-lager-low  { color: #E8630A; font-weight: 600; }
    .pd-lager-prod { color: var(--muted); }
    .pd-udsolgt-badge {
      display: inline-block;
      padding: 0.3rem 0.7rem;
      background: rgba(196,30,58,0.12);
      color: #c41e3a;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
      letter-spacing: 0.5px;
    }
    
    /* === SHOP TOOLBAR (søg + sort) === */
    .shop-toolbar {
      display: flex;
      gap: 0.7rem;
      margin: 0 0 1.5rem;
      flex-wrap: wrap;
      align-items: center;
    }
    .shop-search {
      flex: 1;
      min-width: 200px;
      padding: 0.65rem 1rem;
      border: 1px solid var(--border);
      border-radius: 6px;
      background: var(--surface, #fff);
      color: var(--text);
      font-family: inherit;
      font-size: 0.9rem;
    }
    .shop-search:focus {
      outline: 2px solid var(--accent);
      outline-offset: -1px;
    }
    .shop-sort {
      padding: 0.65rem 1rem;
      border: 1px solid var(--border);
      border-radius: 6px;
      background: var(--surface, #fff);
      color: var(--text);
      font-family: inherit;
      font-size: 0.88rem;
      cursor: pointer;
      min-width: 200px;
    }
    .shop-cat-toggle {
      padding: 0.65rem 1.1rem;
      border: 1px solid var(--border);
      border-radius: 6px;
      background: transparent;
      color: var(--text);
      cursor: pointer;
      font-family: inherit;
      font-size: 0.88rem;
      font-weight: 500;
      display: none;
      align-items: center;
      gap: 0.4rem;
    }
    @media (max-width: 900px) {
      .shop-cat-toggle { display: inline-flex; }
    }
    
    /* === SHOP LAYOUT (sidebar + grid) === */
    .shop-layout {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 2.5rem;
      align-items: start;
      margin-top: 2rem;
    }
    .shop-content {
      min-width: 0;  /* tillader grid at krympe korrekt */
    }
    @media (max-width: 900px) {
      .shop-layout { grid-template-columns: 1fr; gap: 0; margin-top: 1.5rem; }
      .shop-sidebar {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--surface, #fff);
        z-index: 200;
        overflow-y: auto;
        padding: 1.2rem;
      }
      .shop-sidebar.open { display: block; }
    }
    
    .shop-sidebar {
      padding: 0.2rem 0;
      position: sticky;
      top: 1rem;
    }
    @media (max-width: 900px) {
      .shop-sidebar { position: static; }
    }
    .shop-sidebar-close {
      display: none;
      background: transparent;
      border: 1px solid var(--border);
      padding: 0.5rem 1rem;
      border-radius: 6px;
      cursor: pointer;
      margin-bottom: 1rem;
      width: 100%;
      font-family: inherit;
      font-size: 0.88rem;
      color: var(--text);
    }
    @media (max-width: 900px) {
      .shop-sidebar.open .shop-sidebar-close { display: block; }
    }
    .shop-sidebar-title {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.7rem;
      padding: 0.5rem 0.8rem;
    }
    
    /* === KATEGORI-LISTE I SIDEBAR === */
    .shop-cat-list {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }
    .shop-cat-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.6rem 0.85rem;
      background: transparent;
      border: none;
      border-left: 3px solid transparent;
      border-radius: 4px;
      cursor: pointer;
      font-family: inherit;
      font-size: 0.92rem;
      color: var(--text);
      text-align: left;
      transition: all 0.15s ease;
      width: 100%;
      line-height: 1.3;
    }
    .shop-cat-item:hover {
      background: rgba(232,99,10,0.06);
      color: var(--accent);
    }
    .shop-cat-item.active {
      background: rgba(232,99,10,0.08);
      color: var(--accent);
      border-left-color: var(--accent);
      font-weight: 500;
    }
    .shop-cat-count {
      font-size: 0.78rem;
      color: var(--muted);
      font-weight: 400;
      flex-shrink: 0;
      margin-left: 0.5rem;
    }
    .shop-cat-item.active .shop-cat-count {
      color: var(--accent);
      opacity: 0.7;
    }

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

    .shop-card-body {
      padding: 1.25rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .shop-card-tag {
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 600;
    }

    .shop-card-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.2;
    }

    .shop-card-desc {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.6;
      flex: 1;
    }

    .shop-card-price {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text);
    }

    .shop-card-price span {
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--muted);
      font-family: 'DM Sans', sans-serif;
    }

    .shop-select {
      width: 100%;
      padding: 0.5rem 0.75rem;
      border: 1px solid var(--border);
      background: var(--body-bg);
      font-size: 0.85rem;
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      cursor: pointer;
    }

    .shop-input {
      width: 100%;
      padding: 0.5rem 0.75rem;
      border: 1px solid var(--border);
      background: var(--body-bg);
      font-size: 0.85rem;
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      box-sizing: border-box;
    }

    .shop-input:focus, .shop-select:focus {
      outline: none;
      border-color: var(--accent);
    }

    .shop-input-note {
      font-size: 0.72rem;
      color: var(--muted);
      margin-top: -0.3rem;
    }

    .shop-qty-row {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }

    .shop-qty-btn {
      width: 32px;
      height: 32px;
      border: 1px solid var(--border);
      background: var(--body-bg);
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
      flex-shrink: 0;
      transition: background 0.15s;
    }

    .shop-qty-btn:hover { background: var(--border); }

    .shop-qty-num {
      font-size: 0.9rem;
      font-weight: 600;
      min-width: 24px;
      text-align: center;
    }

    .shop-add-btn {
      width: 100%;
      padding: 0.65rem;
      background: var(--accent);
      color: #fff;
      border: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      margin-top: 0.5rem;
    }

    .shop-add-btn:hover { background: #c9520a; }
    .shop-add-btn:active { transform: scale(0.98); }
    .shop-add-btn:disabled { background: var(--muted); cursor: not-allowed; }

    /* CUSTOM BOX KONFIGURATOR */
    .shop-card-box-custom {
      grid-column: span 2;
    }
    @media (max-width: 700px) {
      .shop-card-box-custom { grid-column: span 1; }
    }
    .box-config {
      padding: 1.25rem 1.1rem 1.1rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .box-config-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }
    @media (max-width: 600px) {
      .box-config-top { grid-template-columns: 1fr; }
    }
    .box-dim-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .box-dim-row {
      display: grid;
      grid-template-columns: 70px 1fr 40px;
      gap: 0.5rem;
      align-items: center;
    }
    .box-dim-row label {
      font-size: 0.85rem;
      color: var(--text);
      font-weight: 500;
    }
    .box-dim-row input {
      width: 100%;
      padding: 0.5rem 0.6rem;
      border: 1px solid var(--border);
      background: #fff;
      font-family: inherit;
      font-size: 0.9rem;
      color: var(--text);
    }
    .box-dim-row input:focus {
      outline: none;
      border-color: var(--accent);
    }
    .box-dim-row .box-dim-unit {
      font-size: 0.85rem;
      color: var(--muted);
    }
    .box-note {
      font-size: 0.75rem;
      color: var(--muted);
      font-style: italic;
      line-height: 1.4;
    }
    .box-option-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .box-option-label {
      font-size: 0.85rem;
      color: var(--text);
      font-weight: 500;
    }
    .box-thickness-options {
      display: flex;
      gap: 0.5rem;
    }
    .box-thickness-options label {
      flex: 1;
      padding: 0.5rem;
      border: 1px solid var(--border);
      background: #fff;
      text-align: center;
      cursor: pointer;
      font-size: 0.85rem;
      transition: all 0.15s;
    }
    .box-thickness-options label:has(input:checked) {
      border-color: var(--accent);
      background: var(--accent);
      color: #fff;
    }
    .box-thickness-options input { display: none; }
    .box-preview-wrap {
      background: var(--body-bg);
      padding: 1rem;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 180px;
    }
    .box-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      font-size: 0.8rem;
      color: var(--muted);
    }
    .box-stats > div {
      display: flex;
      justify-content: space-between;
      padding: 0.35rem 0;
      border-bottom: 1px dashed var(--border);
    }
    .box-stats > div span:last-child { color: var(--text); font-weight: 500; }
    .box-lead-badge {
      display: inline-block;
      padding: 0.3rem 0.6rem;
      background: rgba(232, 99, 10, 0.12);
      color: var(--accent);
      font-size: 0.75rem;
      font-weight: 600;
      border-radius: 3px;
    }
    .box-lead-badge.hidden { display: none; }
    .box-bottom-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding-top: 0.5rem;
      border-top: 1px solid var(--border);
    }
    .box-price-big {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--accent);
    }
    .box-price-big small {
      font-size: 0.7rem;
      color: var(--muted);
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .box-error {
      color: #c41e3a;
      font-size: 0.8rem;
      padding: 0.5rem;
      background: rgba(196,30,58,0.08);
      border-radius: 4px;
      display: none;
    }
    .box-error.show { display: block; }

    /* KURV */
    .cart-btn {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      background: var(--accent);
      color: #fff;
      border: none;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      font-size: 1.3rem;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(232,99,10,0.4);
      z-index: 900;
      display: none;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s;
    }

    .cart-btn:hover { transform: scale(1.08); }

    .cart-btn-badge {
      position: absolute;
      top: -4px;
      right: -4px;
      background: #fff;
      color: var(--accent);
      font-size: 0.65rem;
      font-weight: 700;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--accent);
    }

    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s;
    }

    .cart-overlay.open { opacity: 1; pointer-events: all; }

    .cart-panel {
      position: fixed;
      top: 0;
      right: 0;
      width: 400px;
      max-width: 100vw;
      height: 100vh;
      background: #fff;
      z-index: 1001;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    }

    .cart-panel.open { transform: translateX(0); }

    .cart-header {
      padding: 1.25rem 1.5rem;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .cart-header h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .cart-close {
      background: none;
      border: none;
      font-size: 1.3rem;
      cursor: pointer;
      color: var(--muted);
      line-height: 1;
    }

    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 1rem 1.5rem;
    }

    .cart-item {
      display: flex;
      gap: 0.75rem;
      padding: 0.85rem 0;
      border-bottom: 1px solid var(--border);
      align-items: flex-start;
    }

    .cart-item-info { flex: 1; }

    .cart-item-name {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text);
    }

    .cart-item-sub {
      font-size: 0.75rem;
      color: var(--muted);
      margin-top: 0.15rem;
    }

    .cart-item-price {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text);
      white-space: nowrap;
    }

    .cart-item-remove {
      background: none;
      border: none;
      color: var(--muted);
      cursor: pointer;
      font-size: 1rem;
      padding: 0;
      line-height: 1;
      margin-top: 0.1rem;
    }

    .cart-item-remove:hover { color: #c00; }

    .cart-qty-row {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }

    .cart-qty-btn {
      width: 26px;
      height: 26px;
      border: 1px solid var(--border);
      background: var(--body-bg);
      font-size: 0.95rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
      transition: background 0.15s;
    }

    .cart-qty-btn:hover { background: var(--border); }

    .cart-qty-num {
      font-size: 0.82rem;
      font-weight: 600;
      min-width: 20px;
      text-align: center;
    }

    .cart-empty {
      text-align: center;
      color: var(--muted);
      font-size: 0.85rem;
      padding: 3rem 0;
    }

    .cart-footer {
      padding: 1.25rem 1.5rem;
      border-top: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .cart-delivery-label {
      font-size: 0.72rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .cart-delivery-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
    }

    .cart-delivery-opt {
      border: 1px solid var(--border);
      padding: 0.6rem 0.75rem;
      cursor: pointer;
      font-size: 0.78rem;
      transition: border-color 0.15s, background 0.15s;
      text-align: center;
      user-select: none;
    }

    .cart-delivery-opt.selected {
      border-color: var(--accent);
      background: rgba(232,99,10,0.05);
      color: var(--accent);
      font-weight: 600;
    }

    .cart-totals {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.82rem;
    }

    .cart-total-row {
      display: flex;
      justify-content: space-between;
      color: var(--muted);
    }

    .cart-total-row.big {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      padding-top: 0.4rem;
      border-top: 1px solid var(--border);
    }

    .cart-checkout-btn {
      width: 100%;
      padding: 0.85rem;
      background: var(--accent);
      color: #fff;
      border: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
    }

    .cart-checkout-btn:hover { background: #c9520a; }
    .cart-checkout-btn:disabled { background: var(--muted); cursor: not-allowed; }

    /* CHECKOUT OVERLAY */
    .checkout-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .checkout-overlay.open { display: flex; }

    .checkout-box {
      background: #fff;
      width: 100%;
      max-width: 480px;
      max-height: 90vh;
      overflow-y: auto;
      padding: 2rem;
      position: relative;
    }

    .checkout-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
    }

    .checkout-field {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      margin-bottom: 0.85rem;
    }

    .checkout-field label {
      font-size: 0.72rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
    }

    .checkout-field input {
      padding: 0.6rem 0.75rem;
      border: 1px solid var(--border);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      width: 100%;
      box-sizing: border-box;
    }

    .checkout-field input:focus {
      outline: none;
      border-color: var(--accent);
    }

    .checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

    .checkout-summary {
      background: var(--body-bg);
      border: 1px solid var(--border);
      padding: 1rem;
      margin: 1rem 0;
      font-size: 0.82rem;
    }

    .checkout-summary-row {
      display: flex;
      justify-content: space-between;
      padding: 0.25rem 0;
      color: var(--muted);
    }

    .checkout-summary-row.total {
      font-weight: 700;
      color: var(--text);
      border-top: 1px solid var(--border);
      margin-top: 0.5rem;
      padding-top: 0.5rem;
    }

    .checkout-nets {
      background: var(--body-bg);
      border: 1px solid var(--border);
      padding: 1.25rem;
      min-height: 60px;
      margin-bottom: 1rem;
    }

    .checkout-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      font-size: 1.3rem;
      cursor: pointer;
      color: var(--muted);
    }

    .nets-test-notice {
      background: #fff8e1;
      border: 1px solid #ffd54f;
      padding: 0.6rem 0.85rem;
      font-size: 0.75rem;
      color: #7a6000;
      margin-bottom: 1rem;
    }

    .shop-tabs {
      display: flex;
      gap: 0;
      border-bottom: 2px solid var(--border);
      margin-top: 2rem;
      overflow-x: auto;
    }

    .shop-tab {
      padding: 0.65rem 1.25rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -2px;
      white-space: nowrap;
      transition: color 0.15s, border-color 0.15s;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none;
    }

    .shop-tab:hover { color: var(--text); }

    .shop-tab.active {
      color: var(--accent);
      border-bottom-color: var(--accent);
    }

    .shop-tab-panel { display: none; margin-top: 1.5rem; }
    .shop-tab-panel.active { display: block; }

    .shop-underkategori {
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }

    .shop-underkategori-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      padding-bottom: 0.4rem;
      border-bottom: 2px solid var(--accent);
      display: inline-block;
    }

    .shop-color-label {
      font-size: 0.72rem;
      color: var(--muted);
      margin: 0.5rem 0 0.3rem;
      font-weight: 500;
    }

    .shop-color-dots {
      display: flex;
      gap: 0.6rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .shop-color-dot {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1px solid rgba(0,0,0,0.25);
      cursor: pointer;
      padding: 0;
      transition: transform 0.15s, box-shadow 0.15s;
      position: relative;
      background-clip: padding-box;
    }

    .shop-color-dot:hover { transform: scale(1.1); }

    .shop-color-dot.active {
      box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--accent);
    }

