/**
 * MAPPE: /assets/css/pages/
 * FIL: butik.css
 *
 * Offentlig butiks-storefront (app/views/pages/butik.php).
 * Udtrukket fra inline <style> (designmanual: rød tråd) — bruger globale tokens.
 */

/* Side-lokale tokens — kolliderer IKKE med globale tokens (variables.css).
   De globale --radius-*/--shadow-*/--success bruges nu direkte (intet hijack). */
:root {
    --primary: var(--primær);
    --primary-hover: var(--blue-700);
    --primary-light: var(--blue-50);
    --success-light: var(--green-200);
    --warning: var(--amber-500);
    --warning-light: var(--amber-100);
    --danger: var(--red-500);
    --danger-light: var(--red-100);
}
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Inter', -apple-system, sans-serif;
            background: var(--slate-50);
            color: var(--slate-900);
            line-height: 1.6;
        }
        
        a { color: inherit; }
        
        /* ═══════════════════════════════════════════
           UTILITY CLASSES
           ═══════════════════════════════════════════ */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        
        /* ═══════════════════════════════════════════
           ALERTS
           ═══════════════════════════════════════════ */
        .alert {
            padding: 0.75rem 1rem;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0.75rem 0;
        }
        
        .alert-success { background: var(--success-light); color: var(--green-900); }
        .alert-warning { background: var(--warning-light); color: var(--amber-800); }
        .alert-danger { background: var(--danger-light); color: var(--red-800); }
        
        /* ═══════════════════════════════════════════
           KURV ADVARSEL
           ═══════════════════════════════════════════ */
        .kurv-advarsel {
            background: linear-gradient(135deg, var(--warning-light), var(--amber-100));
            border-bottom: 3px solid var(--warning);
            padding: 0.75rem 0;
        }
        
        .advarsel-indhold {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .advarsel-ikon { font-size: 1.25rem; flex-shrink: 0; }
        .advarsel-tekst { flex: 1; }
        .advarsel-tekst strong { display: block; color: var(--amber-800); font-weight: 600; }
        .advarsel-tekst p { margin: 0.25rem 0 0; color: var(--amber-800); font-size: 0.8125rem; }
        .advarsel-tekst a { color: var(--primary); font-weight: 500; }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.15s;
            border: none;
            text-decoration: none;
        }
        
        .btn-primary { background: var(--accent); color: var(--tekst-paa-accent); font-weight: 600; }
        .btn-primary:hover { background: var(--accent-hover); }
        .btn-secondary { background: var(--surface); color: var(--slate-700); border: 1px solid var(--slate-300); }
        .btn-secondary:hover { background: var(--slate-50); }
        .btn-success { background: var(--success); color: white; }
        .btn-success:hover { background: var(--green-600); }
        .btn-full { width: 100%; }
        .btn:disabled { opacity: 0.5; cursor: not-allowed; }
        
        /* ═══════════════════════════════════════════
           EJER TOOLBAR
           ═══════════════════════════════════════════ */
        .ejer-toolbar {
            background: linear-gradient(135deg, var(--primary-light), var(--blue-100));
            border: 1px solid var(--blue-200);
            border-radius: var(--radius-lg);
            padding: 0.5rem 0.75rem;
            margin: 0.75rem 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
        }
        
        .ejer-toolbar-info {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--primary);
            font-weight: 500;
        }
        
        .ejer-toolbar-actions {
            display: flex;
            gap: 0.5rem;
        }
        
        /* ═══════════════════════════════════════════
           BUTIK HERO
           ═══════════════════════════════════════════ */
        .butik-hero {
            background: var(--surface);
            border-bottom: 1px solid var(--slate-200);
            padding: 1.5rem 0;
        }
        
        .hero-content {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }
        
        .butik-logo {
            width: 90px;
            height: 90px;
            border-radius: var(--radius-xl);
            object-fit: cover;
            border: 3px solid var(--slate-200);
            flex-shrink: 0;
            background: white;
        }
        
        .butik-logo-placeholder {
            width: 90px;
            height: 90px;
            border-radius: var(--radius-xl);
            background: linear-gradient(135deg, var(--primary-light), var(--slate-100));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.25rem;
            flex-shrink: 0;
            border: 3px solid var(--slate-200);
        }
        
        .butik-info { flex: 1; }
        
        .butik-kategori {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.1875rem 0.5rem;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .butik-navn {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--slate-900);
            margin-bottom: 0.375rem;
            line-height: 1.2;
        }
        
        .butik-beskrivelse {
            font-size: 0.9375rem;
            color: var(--slate-600);
            margin-bottom: 0.75rem;
            max-width: 480px;
        }
        
        .butik-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 0.75rem;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            color: var(--slate-600);
            font-size: 0.8125rem;
        }
        
        .meta-item svg {
            width: 15px;
            height: 15px;
            color: var(--slate-400);
            flex-shrink: 0;
        }
        
        .meta-item a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .meta-item a:hover { text-decoration: underline; }
        
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.25rem 0.5rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .status-badge.open { background: var(--success-light); color: var(--success); }
        .status-badge.closed { background: var(--slate-200); color: var(--slate-600); }
        .status-badge.online { background: var(--blue-100); color: var(--blue-700); }
        .status-badge.online .status-dot { background: var(--blue-500); }
        
        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: currentColor;
        }
        
        /* ═══════════════════════════════════════════
           INFO CARDS
           ═══════════════════════════════════════════ */
        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 0.75rem;
            margin: 1rem 0;
        }
        
        .info-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--slate-200);
            padding: 0.875rem;
        }
        
        .info-card-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }
        
        .info-card-icon {
            width: 32px;
            height: 32px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }
        
        .info-card-icon.location { background: var(--blue-100); }
        .info-card-icon.hours { background: var(--amber-100); }
        .info-card-icon.contact { background: var(--green-200); }
        
        .info-card-title {
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--slate-900);
        }
        
        .info-card-content {
            font-size: 0.8125rem;
            color: var(--slate-600);
            line-height: 1.5;
        }
        
        .info-card-content a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .info-card-content a:hover { text-decoration: underline; }
        
        /* Åbningstider grid */
        .hours-grid {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 0.375rem 0.75rem;
            font-size: 0.8125rem;
        }
        
        .hours-day { font-weight: 500; color: var(--slate-700); }
        .hours-time { color: var(--slate-500); }
        .hours-day.today { color: var(--primary); font-weight: 600; }
        .hours-time.today { color: var(--primary); font-weight: 500; }
        
        /* ═══════════════════════════════════════════
           TAG FILTER
           ═══════════════════════════════════════════ */
        .tags-section {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--slate-200);
            background: var(--surface);
            position: sticky;
            top: 0;
            z-index: 50;
        }
        
        .tags-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 0.375rem;
        }
        
        .tag-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.375rem 0.75rem;
            background: var(--slate-100);
            border: 1px solid var(--slate-200);
            border-radius: 9999px;
            font-size: 0.8125rem;
            font-weight: 500;
            color: var(--slate-700);
            cursor: pointer;
            transition: all 0.15s;
            user-select: none;
        }
        
        .tag-chip:hover {
            border-color: var(--primary);
            background: var(--primary-light);
            color: var(--primary);
        }
        
        .tag-chip.aktiv {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }
        
        .tag-ikon-svg { display: flex; width: 16px; height: 16px; }
        .tag-ikon-svg svg { width: 100%; height: 100%; stroke: currentColor; }
        .tag-ikon-emoji { font-size: 0.875rem; }
        
        .tag-antal {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 18px;
            height: 18px;
            padding: 0 0.25rem;
            background: rgba(0,0,0,0.08);
            border-radius: 9px;
            font-size: 0.6875rem;
            font-weight: 600;
        }
        
        .tag-chip.aktiv .tag-antal {
            background: rgba(255,255,255,0.25);
        }
        
        /* ═══════════════════════════════════════════
           PRODUCTS SECTION
           ═══════════════════════════════════════════ */
        .products-section {
            padding: 1.5rem 0 3rem;
        }
        
        .products-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        
        .products-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--slate-900);
        }
        
        .products-count {
            color: var(--slate-500);
            font-weight: 400;
            font-size: 0.875rem;
        }
        
        /* Filter bar */
        .filter-bar {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        
        .search-input {
            padding: 0.5rem 0.75rem;
            padding-left: 2.25rem;
            border: 1px solid var(--slate-300);
            border-radius: var(--radius-md);
            font-size: 0.8125rem;
            min-width: 220px;
            background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 0.75rem center;
            transition: all 0.15s;
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--sekundær);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
        }
        
        .filter-select {
            padding: 0.5rem 1.75rem 0.5rem 0.75rem;
            border: 1px solid var(--slate-300);
            border-radius: var(--radius-md);
            font-size: 0.8125rem;
            background: var(--surface);
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' 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;
        }
        
        .filter-select:focus {
            outline: none;
            border-color: var(--sekundær);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
        }

        /* A11y: synligt keyboard-fokus på interaktive elementer (var manglende) */
        .filter-chip:focus-visible,
        .wishlist-btn:focus-visible,
        .foelg-btn:focus-visible,
        .product-card a:focus-visible,
        .filter-checkbox:focus-within {
            outline: 2px solid var(--sekundær);
            outline-offset: 2px;
            border-radius: var(--radius-md);
        }
        
        .filter-checkbox {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            font-size: 0.8125rem;
            color: var(--slate-700);
            cursor: pointer;
            user-select: none;
        }
        
        .filter-checkbox input {
            width: 16px;
            height: 16px;
            accent-color: var(--primary);
            cursor: pointer;
        }
        
        .filter-reset {
            color: var(--slate-500);
            font-size: 0.875rem;
            text-decoration: none;
            padding: 0.5rem;
        }

        /* Produkt-type filter chips (Alle / Bundles / Outfits) */
        .filter-chip {
            display: inline-flex; align-items: center; gap: 0.375rem;
            padding: 0.375rem 0.75rem;
            background: var(--slate-100); border: 2px solid transparent;
            border-radius: var(--radius-full); font-size: 0.8125rem; font-weight: 500;
            color: var(--slate-700); cursor: pointer; transition: all 0.2s;
            white-space: nowrap;
        }
        .filter-chip:hover { border-color: var(--primary); background: var(--primary-light, var(--slate-100)); }
        .filter-chip[aria-pressed="true"] { background: var(--primær); color: var(--hvid); border-color: var(--primær); }
        
        .filter-reset:hover { color: var(--primary); }
        
        /* ═══════════════════════════════════════════
           PRODUCT GRID
           ═══════════════════════════════════════════ */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 1rem;
            transition: opacity 0.2s;
        }
        
        /* Product Card */
        .product-card {
            background: var(--surface);
            border-radius: var(--radius-xl);
            border: 1px solid var(--slate-200);
            overflow: hidden;
            transition: all 0.2s;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            border-color: var(--primary);
            box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12);
            transform: translateY(-2px);
        }
        
        .product-image-link {
            display: block;
            text-decoration: none;
        }
        
        .product-image {
            position: relative;
            width: 100%;
            aspect-ratio: 4/3;
            overflow: hidden;
            background: var(--slate-100);
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--slate-400);
            font-size: 2.25rem;
        }
        
        .product-badges {
            position: absolute;
            top: 0.5rem;
            left: 0.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem;
        }
        
        .product-badge {
            padding: 0.1875rem 0.5rem;
            border-radius: 5px;
            font-size: 0.6875rem;
            font-weight: 600;
        }
        
        .product-badge.sale { background: var(--danger); color: white; }
        .product-badge.new { background: var(--success); color: white; }
        .product-badge.variants { background: var(--surface); color: var(--slate-700); box-shadow: var(--shadow-sm); }
        .product-badge.out-of-stock { background: var(--slate-800); color: var(--slate-50); }
        .product-badge.low-stock { background: var(--amber-500); color: white; }

        /* Wishlist Heart Button */
        .wishlist-btn {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--surface);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            transition: all 0.2s ease;
            z-index: 10;
        }
        .wishlist-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .wishlist-btn svg {
            width: 16px;
            height: 16px;
            transition: all 0.2s ease;
        }
        .wishlist-btn .heart-outline { color: var(--slate-400); }
        .wishlist-btn .heart-filled { display: none; color: var(--danger); }
        .wishlist-btn.active .heart-outline { display: none; }
        .wishlist-btn.active .heart-filled { display: block; }
        .wishlist-btn.active { background: var(--red-100); }
        .wishlist-btn:disabled { opacity: 0.5; cursor: not-allowed; }
        .wishlist-btn.loading svg { animation: heartPulse 0.5s ease infinite; }
        @keyframes heartPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        /* Promo Code Banner */
        .promo-banner {
            background: linear-gradient(135deg, var(--amber-100) 0%, var(--amber-200) 100%);
            border-bottom: 2px solid var(--amber-500);
            padding: 0.625rem 0;
        }
        .promo-banner .container {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
        }
        .promo-banner-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--surface);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.08);
        }
        .promo-banner-item .promo-icon { font-size: 1.125rem; }
        .promo-banner-item .promo-code {
            font-family: monospace;
            font-weight: 700;
            font-size: 0.9375rem;
            color: var(--slate-900);
            letter-spacing: 0.05em;
            cursor: pointer;
        }
        .promo-banner-item .promo-code:hover { color: var(--primary); }
        .promo-banner-item .promo-value {
            font-size: 0.8125rem;
            color: var(--amber-800);
            font-weight: 600;
        }
        .promo-copy-toast {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            background: var(--slate-800);
            color: var(--slate-50);
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            font-size: 0.875rem;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.2s;
        }
        .promo-copy-toast.show { opacity: 1; }
        
        .product-info {
            padding: 0.875rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-name {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--slate-900);
            margin-bottom: 0.25rem;
            line-height: 1.4;
        }
        
        .product-name a {
            text-decoration: none;
            color: inherit;
        }
        
        .product-name a:hover { color: var(--primary); }

        .product-variants {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            margin-bottom: 0.25rem;
        }

        .variant-colors {
            display: flex;
            gap: 0.1875rem;
            align-items: center;
        }

        .variant-color-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 1.5px solid var(--slate-300);
            flex-shrink: 0;
        }

        .variant-count {
            font-size: 0.6875rem;
            color: var(--slate-500);
        }

        /* Product Rating */
        .product-rating {
            display: flex;
            align-items: center;
            gap: 0.1875rem;
            margin-bottom: 0.375rem;
        }

        .rating-stars {
            display: flex;
            gap: 1px;
        }

        .rating-stars .star {
            font-size: 0.75rem;
            line-height: 1;
        }

        .rating-stars .star.filled { color: var(--amber-500); }
        .rating-stars .star.half { color: var(--amber-500); }
        .rating-stars .star.empty { color: var(--slate-300); }

        .rating-count {
            font-size: 0.6875rem;
            color: var(--slate-400);
        }

        .product-description {
            font-size: 0.8125rem;
            color: var(--slate-500);
            margin-bottom: 0.5rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .product-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 0.5rem;
            border-top: 1px solid var(--slate-100);
        }
        
        .product-price {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
        }
        
        .price-current {
            font-size: 1rem;
            font-weight: 700;
            color: var(--slate-900);
        }
        
        .price-original {
            font-size: 0.8125rem;
            color: var(--slate-400);
            text-decoration: line-through;
        }
        
        .price-sale {
            color: var(--danger);
        }
        
        .product-stock {
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        .product-stock.in-stock { color: var(--success); }
        .product-stock.low-stock { color: var(--warning); }
        .product-stock.out-of-stock { color: var(--danger); }
        
        .product-actions {
            padding: 0 0.875rem 0.875rem;
        }
        
        .product-actions form { margin: 0; }
        
        /* ═══════════════════════════════════════════
           EMPTY STATE
           ═══════════════════════════════════════════ */
        .empty-state {
            text-align: center;
            padding: 3rem 1.5rem;
            background: var(--surface);
            border-radius: var(--radius-xl);
            border: 2px dashed var(--slate-300);
        }
        
        .empty-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: var(--slate-100);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        
        .empty-state h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--slate-700);
            margin-bottom: 0.375rem;
        }
        
        .empty-state p {
            color: var(--slate-500);
        }
        
        /* ═══════════════════════════════════════════
           ABOUT SECTION
           ═══════════════════════════════════════════ */
        .about-section {
            background: var(--surface);
            border-radius: var(--radius-xl);
            border: 1px solid var(--slate-200);
            padding: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .about-section h2 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--slate-900);
            margin-bottom: 0.75rem;
        }
        
        .about-section p {
            color: var(--slate-600);
            line-height: 1.7;
        }
        
        /* ═══════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════ */
        @media (max-width: 900px) {
            .hero-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .butik-meta { justify-content: center; }
            
            .info-cards { grid-template-columns: 1fr; }
        }
        
        @media (max-width: 640px) {
            /* A11y: 44px touch-targets på mobil */
            .filter-chip { min-height: 44px; }
            .wishlist-btn { width: 44px; height: 44px; }

            .butik-hero { padding: 1.5rem 0; }
            
            .butik-logo, .butik-logo-placeholder {
                width: 100px;
                height: 100px;
            }
            
            .butik-navn { font-size: 1.5rem; }
            
            .ejer-toolbar {
                flex-direction: column;
                align-items: stretch;
            }
            
            .ejer-toolbar-actions {
                flex-direction: column;
            }
            
            .products-header {
                flex-direction: column;
                align-items: stretch;
            }
            
            .filter-bar {
                flex-direction: column;
                align-items: stretch;
            }
            
            .search-input, .filter-select {
                width: 100%;
                min-width: 0;
            }
            
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .product-info { padding: 1rem; }
            .product-actions { padding: 0 1rem 1rem; }
            .product-name { font-size: 0.9375rem; }
            .price-current { font-size: 1.125rem; }
            
            .advarsel-indhold {
                flex-direction: column;
                text-align: center;
            }
            
            .tags-wrapper {
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 0.5rem;
                -webkit-overflow-scrolling: touch;
            }
            
            .tag-chip { flex-shrink: 0; }
        }
        
        @media (max-width: 400px) {
            .product-grid { grid-template-columns: 1fr; }
        }
