/* ═══════════════════════════════════════════════════════════════════════════
   ringar.se – Luxury Ring Catalog
   Design: 77 Diamonds-inspired minimal luxury
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Variables ────────────────────────────────────────────────────────── */
:root {
    --black: #0d0900;
    --dark: #1a1a1a;
    --light: #ffffff;
    --soft: #f8f7f5;
    --beige: #f3ece5;
    --gold: #c5a46d;
    --gold-light: #d4bb8a;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #e4e4e4;
    --border-light: #f0eeeb;
    --max-width: 1240px;
    --header-height: 72px;
}

/* ─── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    color: var(--text);
    background: var(--light);
    line-height: 1.7;
    font-size: 15px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration: none; transition: all .3s linear; }
a:hover { color: var(--black); }

/* ─── Typography ───────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 300;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: 0.01em;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 1.9rem; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

/* Ingress style */
.ingress {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    overflow-x: hidden;
}
section {
    overflow-x: hidden;
}

/* ─── Header ───────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--light);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
    display: flex;
    align-items: center;
}
/* Anchor for mega-dropdowns relative to the full viewport width */

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Mobile actions (fav + burger) — hidden on desktop */
.mobile-actions { display: none; }
/* Mobile menu panel — hidden on desktop */
.mobile-menu { display: none; }

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--black);
    letter-spacing: 0.08em;
}

.desktop-nav { display: flex; gap: 0; align-items: center; }

/* Nav items with dropdowns */
.nav-item {
    position: static;
}
.nav-item > a {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    padding: 1.5rem 1.1rem;
    display: block;
    transition: all .3s linear;
    border-bottom: 2px solid transparent;
}
.nav-item:hover > a,
.nav-item > a.active {
    color: var(--black);
    border-bottom-color: #ffc13b;
}

/* Mega dropdown - full width, positioned below header */
.mega-dropdown {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--light);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    padding: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s .3s, opacity .3s ease;
    z-index: 150;
}
.nav-item:hover .mega-dropdown {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity .3s ease;
}

.mega-col {
    min-width: 140px;
}
.mega-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 0.8rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-light);
}
.mega-col a {
    display: block;
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-light);
    padding: 0.35rem 0;
    text-transform: none;
    letter-spacing: 0.01em;
    border-bottom: none;
    transition: color .2s;
}
.mega-col a:hover {
    color: var(--gold);
}
.mega-col a.nav-active {
    color: var(--gold);
    font-weight: 500;
    position: relative;
}
.mega-col a.nav-active::before {
    content: '';
    position: absolute;
    left: -0.7rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* Logo grid in butiker dropdown */
.mega-col-logos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.8rem;
    min-width: 0;
}
.mega-col-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    transition: all 0.2s ease;
}
.mega-col-logos a:hover {
    border-color: var(--gold);
    box-shadow: 0 2px 12px rgba(197, 164, 109, 0.15);
}
.mega-col-logos a.nav-active {
    border-color: var(--gold);
    background: rgba(197, 164, 109, 0.06);
}
.mega-col-logos a::before { display: none; }
.mega-col-logos img {
    height: 28px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* Simple nav links (no dropdown) */
.desktop-nav > a {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    padding: 1.5rem 1.1rem;
    border-bottom: 2px solid transparent;
    transition: all .3s linear;
}
.desktop-nav > a:hover,
.desktop-nav > a.active {
    color: var(--black);
    border-bottom-color: var(--gold);
}

/* Favorites link */
.nav-fav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: none !important;
    padding: 0 !important;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 400;
    transition: color 0.2s;
}
.nav-fav-text {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.nav-fav-link:hover {
    color: #c0392b;
}
.fav-badge {
    background: #c0392b;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--black);
    margin: 5px 0;
    transition: .4s ease;
}

/* ─── Hero ─────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    background: #0d0900;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/images/hero.webp') center center / cover no-repeat;
    transform: scaleX(-1); /* Mirror image so rings show on right */
}
.hero:hover .hero-bg {
    transform: scaleX(-1) scale(1.02);
    transition: transform 10s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 3rem;
    /* Smooth fade from solid black (left) into image (right) */
    background: linear-gradient(to right, #0d0900 0%, #0d0900 30%, rgba(13,9,0,0.95) 40%, rgba(13,9,0,0.7) 60%, rgba(13,9,0,0.4) 80%, rgba(13,9,0,0.1) 95%, transparent 100%);
}

.hero-cta {
    margin-top: 0.8rem;
}

.hero h1 {
    color: var(--light);
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.hero-accent {
    display: none; /* Hidden on desktop, shown on mobile centered */
}

.hero .ingress {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-weight: 300;
    max-width: 480px;
}

.hero-pills {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.hero-pill {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: all 0.25s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero-pill:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

.hero .btn-primary {
    font-size: 0.8rem;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--light);
    border: none;
    box-shadow: 0 4px 20px rgba(197, 164, 109, 0.4);
}
.hero .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--light);
    box-shadow: 0 6px 30px rgba(197, 164, 109, 0.6);
}

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--light);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all .35s ease;
    box-shadow: 0 4px 15px rgba(197, 164, 109, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--light);
    box-shadow: 0 6px 25px rgba(197, 164, 109, 0.45);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 32px;
    border: 1.5px solid var(--gold);
    border-radius: 2px;
    cursor: pointer;
    transition: all .35s ease;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(197, 164, 109, 0.25);
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, #b8944f 100%);
    color: var(--light);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 32px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all .35s ease;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(197, 164, 109, 0.3);
}
.btn-store:hover {
    background: linear-gradient(135deg, #b8944f 0%, var(--gold) 100%);
    color: var(--light);
    box-shadow: 0 6px 25px rgba(197, 164, 109, 0.45);
    transform: translateY(-2px);
}
.btn-store svg { width: 16px; height: 16px; }

/* ─── Sections ─────────────────────────────────────────────────────────── */
.section { padding: 70px 0; }
.section-sm { padding: 50px 0; }
.section-warm { background: linear-gradient(180deg, var(--soft) 0%, #f0ebe3 100%); }
.section-beige { background: var(--beige); }
.section-dark { background: var(--black); color: var(--light); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--light); }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    margin-bottom: 0.6rem;
    font-weight: 300;
}
.section-header p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    letter-spacing: 0.02em;
}

/* ─── Category Grid (77 Diamonds showcase style) ─────────────────────── */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    display: block;
    text-align: center;
    background: var(--light);
    transition: all .3s ease;
}
.category-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--soft);
}
.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.category-card:hover .category-card-img img {
    transform: scale(1.06);
}
.category-card-overlay {
    padding: 1.2rem 0.5rem 0;
}
.category-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--black);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin: 0 0 0.2rem;
}
.category-card .count {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.04em;
}
.category-card:hover h3 { color: var(--gold); }

/* ─── Product Grid ─────────────────────────────────────────────────────── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 100%;
    overflow: hidden;
}

.product-card {
    display: block;
    background: var(--light);
    padding: 16px 16px 24px;
    transition: all .35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid transparent;
    border-radius: 4px;
}
.product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 2px 8px rgba(197, 164, 109, 0.08);
    transform: translateY(-4px);
    border-color: var(--border-light);
}
.product-card:hover .product-card-name { color: var(--gold); }

.product-card-image {
    aspect-ratio: 1;
    background: var(--soft);
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    border-radius: 3px;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: darken;
    transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-card-image img {
    transform: scale(1.06);
}

.product-card-brand {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.product-card-brand-logo {
    height: 22px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

.product-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 0.3rem;
    transition: color .3s;
}

.product-card-meta {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.product-card-price {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.product-card-price .sale-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.8rem;
    margin-right: 0.3rem;
}
.product-card-price .sale-now {
    color: #ab0000;
    font-weight: 500;
}
.badge-sale {
    position: absolute;
    bottom: 0.6rem;
    left: 0.6rem;
    background: #ab0000;
    color: var(--light);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    z-index: 2;
}

/* ─── Product Badge ────────────────────────────────────────────────────── */
.badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: var(--black);
    color: var(--light);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 0;
}

/* ─── Filters ──────────────────────────────────────────────────────────── */
/* ─── Filter Panel ─────────────────────────────────────────────────── */
.filter-panel {
    background: var(--soft);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
    max-width: 100%;
    overflow: hidden;
}
.filter-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-light);
}
.filter-count {
    font-size: 0.9rem;
    color: var(--text);
}
.filter-count strong {
    color: var(--gold);
    font-size: 1.1rem;
}
.filter-clear {
    font-size: 0.75rem;
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.filter-sort {
    margin-left: auto;
    appearance: none;
    background: var(--light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c5a46d'/%3E%3C/svg%3E") no-repeat right 0.8rem center;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    font-size: 0.8rem;
    font-family: inherit;
    color: var(--text);
    cursor: pointer;
}
.filter-controls {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.8rem;
    align-items: end;
}
.filter-group {
    min-width: 0;
}
.filter-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}
.filter-group select {
    width: 100%;
    appearance: none;
    background: var(--light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c5a46d'/%3E%3C/svg%3E") no-repeat right 0.8rem center;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.55rem 2.5rem 0.55rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 300;
    font-family: inherit;
    color: var(--text);
    cursor: pointer;
    transition: border-color .2s;
}
.filter-group select:hover,
.filter-group select:focus {
    border-color: var(--gold);
    outline: none;
}

/* Filter chips */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.filter-chip {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.filter-chip input { display: none; }
.filter-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.filter-chip.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    font-weight: 400;
}
.filter-chip-clear {
    border-style: dashed;
    color: var(--text-muted);
}
.filter-chip-clear:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

.filter-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.filter-group-sm {
    min-width: auto;
}

/* Price range slider */
.filter-group-price {
    min-width: 100%;
    flex: none;
    margin-top: 0.5rem;
}
.price-slider {
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
    background: var(--border-light);
    border-radius: 3px;
    margin-top: 0.3rem;
}
.price-track {
    position: absolute;
    height: 6px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}
.price-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    width: 100%;
    height: 6px;
    background: transparent;
    pointer-events: none;
    margin: 0;
    z-index: 2;
}
.price-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
}
.price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    pointer-events: all;
    border: 3px solid var(--light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.15s, box-shadow 0.15s;
    margin-top: -8px;
}
.price-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 12px rgba(197, 164, 109, 0.4);
}
.price-slider input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    pointer-events: all;
    border: 3px solid var(--light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.price-slider input[type="range"]::-moz-range-track {
    height: 6px;
    background: transparent;
}
#priceLabel {
    font-weight: 400;
    color: var(--gold);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.8rem;
    white-space: nowrap;
}
.filter-submit {
    padding: 0.55rem 1.5rem;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.filter-submit:hover {
    background: var(--gold-light);
    box-shadow: 0 2px 8px rgba(197,164,109,0.3);
}

/* Butiker grid */
.butiker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 3rem 0 5rem;
    max-width: 100%;
}
.butiker-card {
    display: block;
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all .3s;
    overflow: hidden;
    word-break: break-word;
}
.butiker-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Legacy compat */
.filter-bar { display: flex; gap: 1rem; flex-wrap: wrap; padding: 1.2rem 0; border-bottom: 1px solid var(--border); margin-bottom: 2rem; align-items: center; }
.filter-bar label { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }
.filter-bar select { appearance: none; background: var(--light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E") no-repeat right 0.8rem center; border: 1px solid var(--border); border-radius: 4px; padding: 0.55rem 2.5rem 0.55rem 1rem; font-size: 0.8rem; font-weight: 300; font-family: inherit; color: var(--text); cursor: pointer; min-width: 160px; transition: border-color .3s; }
.filter-bar select:focus { outline: none; border-color: var(--gold); }

.filter-count {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-light);
}

/* ─── Page Header ──────────────────────────────────────────────────────── */
.page-header {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border-light);
}
.page-header h1 {
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}
.page-header p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    max-width: 700px;
}

/* ─── Breadcrumbs ──────────────────────────────────────────────────────── */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--black); }
.breadcrumbs span { margin: 0 0.4rem; }

/* ─── Product Detail ───────────────────────────────────────────────────── */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3rem 0 5rem;
}

.product-gallery {
    aspect-ratio: 1;
    background: var(--soft);
    overflow: hidden;
    position: relative;
}
.product-gallery-main {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: crosshair;
}
@media (hover: none) {
    .product-gallery-main { cursor: zoom-in; }
    .product-gallery-main::after {
        content: 'Tryck för att zooma';
        position: absolute;
        bottom: 0.8rem;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0,0,0,0.5);
        color: #fff;
        font-size: 0.7rem;
        padding: 4px 12px;
        border-radius: 12px;
        pointer-events: none;
        z-index: 2;
    }
}
.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
}
.product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
    mix-blend-mode: darken;
}

.product-info { padding: 1rem 0; }

.product-brand {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.product-meta-table {
    width: 100%;
    margin-bottom: 2rem;
}
.product-meta-table tr {
    border-bottom: 1px solid var(--border-light);
}
.product-meta-table td {
    padding: 0.8rem 0;
    font-size: 0.85rem;
    font-weight: 300;
}
.product-meta-table td:first-child {
    font-weight: 400;
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    width: 120px;
}

.product-cta { margin: 2rem 0; }

.product-trust {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* ─── USP Bar ──────────────────────────────────────────────────────────── */
/* Stats bar — big numbers */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
    padding: 1rem 0;
    max-width: 100%;
    overflow: hidden;
}
.stat-item {
    padding: 2rem 1rem;
    border-right: 1px solid var(--border-light);
    transition: all .3s ease;
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}
.stat-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text);
    margin-top: 0.4rem;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Feature cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-card {
    background: var(--light);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    transition: all .3s ease;
}
.feature-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(197, 164, 109, 0.1);
    transform: translateY(-3px);
}
.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}
.feature-card svg {
    width: 24px;
    height: 24px;
    margin-bottom: 0.8rem;
    color: var(--gold);
    stroke-width: 1.5;
}
.feature-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--black);
}
.feature-card p {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* Legacy compatibility */
.usp-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.usp-item { padding: 2.5rem 1.5rem; transition: all .3s ease; }
.usp-item:hover { transform: translateY(-2px); }
.usp-item svg { width: 32px; height: 32px; margin: 0 auto 1.2rem; color: var(--gold); stroke-width: 1.2; }
.usp-item h4 { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--black); }
.usp-item p { font-size: 0.82rem; font-weight: 300; color: var(--text-light); margin: 0; line-height: 1.7; }

/* ─── Guide Grid ───────────────────────────────────────────────────────── */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.guide-card {
    display: block;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all .3s linear;
}
.guide-card:hover {
    border-color: var(--black);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.guide-card-image {
    aspect-ratio: 16/9;
    background: var(--soft);
    overflow: hidden;
}
.guide-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.guide-card:hover .guide-card-image img {
    transform: scale(1.04);
}

.guide-card-body {
    padding: 1.5rem;
}
.guide-card-body h3 {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}
.guide-card-body p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-light);
    margin: 0;
}

/* ─── Guide Content ────────────────────────────────────────────────────── */
.guide-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}
.guide-content h1 {
    margin-bottom: 1.5rem;
}
.guide-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}
.guide-content p {
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 300;
    color: var(--text);
}
.guide-content ul, .guide-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 300;
}
.guide-content li { margin-bottom: 0.5rem; }
.guide-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.guide-content a:hover { color: var(--black); }
.guide-content .btn-primary,
.guide-content .btn-outline {
    color: var(--light);
    text-decoration: none;
}
.guide-content .btn-outline {
    color: var(--black);
}

/* ─── Comparison Table ─────────────────────────────────────────────────── */
.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}
.comparison-table table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.comparison-table thead th {
    background: var(--black);
    color: #fff;
    padding: 1rem 1.2rem;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.02em;
}
.comparison-table thead th:first-child {
    border-radius: 6px 0 0 0;
}
.comparison-table thead th:last-child {
    border-radius: 0 6px 0 0;
}
.comparison-table tbody td {
    padding: 0.85rem 1.2rem;
    border-bottom: 1px solid var(--border-light);
    font-weight: 300;
    line-height: 1.6;
}
.comparison-table tbody td:first-child {
    font-weight: 500;
    color: var(--black);
    white-space: nowrap;
}
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}
.comparison-table tbody tr:nth-child(even) {
    background: var(--soft);
}
.comparison-table tbody tr:hover {
    background: rgba(197, 164, 109, 0.08);
}
.comparison-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.4rem;
    vertical-align: middle;
    border: 1px solid rgba(255,255,255,0.3);
}

/* ─── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.55);
    padding: 5rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 1.5rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    font-weight: 300;
    transition: color .3s;
}
.footer-links a:hover { color: var(--light); }

.site-footer p { font-size: 0.85rem; font-weight: 300; line-height: 1.7; margin-bottom: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.04em;
}

/* ─── Related Products ─────────────────────────────────────────────────── */
.related-products {
    padding: 4rem 0 5rem;
    border-top: 1px solid var(--border-light);
}
.related-products h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* ─── Placeholder Image ───────────────────────────────────────────────── */
.placeholder-img {
    width: 100%;
    height: 100%;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 3rem;
}

/* ─── SEO Text Block ──────────────────────────────────────────────────── */
.seo-text {
    max-width: 800px;
    padding: 3rem 0;
    text-align: left;
    word-break: break-word;
    overflow-wrap: break-word;
}
.seo-text h2 {
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.5rem;
}
.seo-text h3 {
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    font-size: 1.2rem;
}
.seo-text p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 1rem;
}
.seo-text ul, .seo-text ol {
    margin: 1rem 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text);
}
.seo-text li {
    margin-bottom: 0.5rem;
    padding-left: 0.3rem;
}
.seo-text li strong {
    color: var(--gold);
}
.seo-text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.seo-text a:hover {
    color: var(--black);
}
.seo-text .btn-primary,
.seo-text .btn-outline {
    color: var(--light);
    text-decoration: none;
}
.seo-text .btn-outline {
    color: var(--black);
}
.seo-text strong {
    font-weight: 500;
    color: var(--black);
}

/* Two-column SEO layout for wider content */
.seo-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}
@media (max-width: 768px) {
    .seo-columns { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ─── Internal Links ───────────────────────────────────────────────────── */
.internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    padding: 2rem 0;
}
.internal-links a {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text);
    transition: all .3s linear;
}
.internal-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197, 164, 109, 0.05);
}

/* ─── Carousel ─────────────────────────────────────────────────────────── */
.carousel-wrapper {
    max-width: 100%;
    padding: 0 0 1rem;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--border);
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.carousel-arrow:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(197,164,109,0.3);
}
.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }
/* Hide swipe hint on desktop, show arrows. Reverse on mobile */
.swipe-hint { display: none; }
@media (hover: none) {
    .carousel-arrow { display: none; }
    .swipe-hint { display: block; }
}

.carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 1.5rem;
    cursor: grab;
}
.carousel::-webkit-scrollbar { display: none; }

.carousel .carousel-item {
    flex: 0 0 250px;
    scroll-snap-align: start;
}

/* ─── Heart / Wishlist ─────────────────────────────────────────────────── */
.heart-btn {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all .3s ease;
    padding: 0;
    opacity: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.heart-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.heart-btn.active {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 10px rgba(192, 57, 43, 0.25);
}
.heart-btn:hover { transform: scale(1.1); }
.heart-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
    transition: all .2s;
}
.heart-btn.active svg {
    fill: #c0392b;
    stroke: #c0392b;
}
@keyframes heart-pop {
    0% { transform: scale(1); }
    30% { transform: scale(1.25); }
    60% { transform: scale(0.92); }
    100% { transform: scale(1); }
}
.heart-btn.pop {
    animation: heart-pop .35s ease;
}

/* ─── Nav section labels ──────────────────────────────────────────────── */
.nav-section-label {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 1.2rem 0 0.3rem;
    border-bottom: none !important;
}

/* ─── Thin Accent Line ────────────────────────────────────────────────── */
.gold-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto;
}

/* ─── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .usp-bar { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 50px 0; }
    .section-sm { padding: 35px 0; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-height: 60px; }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    .container { padding: 0 1.2rem; }
    .header-inner { padding: 0 1rem; }

    /* Hide desktop nav, show mobile actions */
    .desktop-nav { display: none !important; }
    .mobile-actions {
        display: flex !important;
        align-items: center;
        gap: 0.8rem;
    }
    .mobile-fav {
        position: relative;
        display: flex;
        align-items: center;
    }

    /* Mobile menu panel */
    .mobile-menu {
        display: block !important;
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 80%;
        max-width: 300px;
        background: var(--light);
        z-index: 200;
        overflow-y: auto;
        transition: right 0.3s ease;
        padding: 0;
    }
    .mobile-menu.open {
        right: 0;
        box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    }
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.2rem;
        border-bottom: 1px solid var(--border-light);
    }
    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-muted);
        cursor: pointer;
        padding: 0.2rem;
    }
    .mobile-menu-link {
        display: block;
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
        font-weight: 300;
        color: var(--text);
        border-bottom: 1px solid var(--border-light);
        transition: background 0.15s;
    }
    .mobile-menu-link:hover,
    .mobile-menu-link:active {
        background: var(--soft);
    }
    .mobile-menu-divider {
        height: 0;
        border-top: 2px solid var(--gold);
        margin: 0.3rem 1.2rem;
    }

    .nav-toggle { display: block; z-index: 201; }

    /* X close button when nav is open */
    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Overlay behind nav */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.35);
        z-index: 199;
    }
    .nav-overlay.open { display: block; }

    /* Mobile hero: dark pattern, no photo */
    .hero {
        min-height: auto;
    }
    .hero-bg {
        display: none;
    }
    .hero-content {
        width: 100% !important;
        padding: 2.5rem 1.5rem;
        text-align: center;
        align-items: center;
        background: linear-gradient(160deg, #0d0900 0%, #1a1510 50%, #0d0900 100%);
    }
    .hero h1 { font-size: 1.5rem; margin-bottom: 0.6rem; position: relative; }
    .hero .ingress { font-size: 0.9rem; line-height: 1.7; max-width: 100%; margin-bottom: 1.2rem !important; color: rgba(255,255,255,0.75); position: relative; }
    .hero-pills { justify-content: center; position: relative; }
    .hero .btn-primary { font-size: 0.75rem; padding: 12px 28px; position: relative; }
    .hero-cta { position: relative; }

    /* Hide mega dropdowns, show flat nav */
    .mega-dropdown { display: none !important; }
    .nav-link-top { display: none !important; }
    .nav-item { display: contents; }
    .nav-item > a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 0.9rem;
        font-weight: 300;
    }

    .carousel .carousel-item { flex: 0 0 200px; }

    /* Stats and features */
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stat-item { padding: 1.5rem 1rem; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-number { font-size: 2rem; }
    .feature-grid { grid-template-columns: 1fr; gap: 1rem; }
    .feature-card { padding: 1.5rem; }

    /* Grids */
    .category-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .guide-grid { grid-template-columns: 1fr; }
    .product-detail { grid-template-columns: 1fr; gap: 2rem; }
    .product-gallery { aspect-ratio: 4/3; }

    /* Filters - compact on mobile */
    .filter-panel { padding: 0.8rem; border-radius: 6px; }
    .filter-top { flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.6rem; padding-bottom: 0.5rem; }
    .filter-controls { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .filter-group select { font-size: 0.78rem; padding: 0.45rem 2rem 0.45rem 0.6rem; }
    .filter-group-price { grid-column: 1 / -1; }
    .filter-label { font-size: 0.6rem; margin-bottom: 0.2rem; }
    .stat-desc { font-size: 0.7rem; }
    .feature-grid { gap: 0.8rem; }
    .feature-card { padding: 1.2rem; }
    .feature-card svg { width: 20px; height: 20px; margin-bottom: 0.5rem; }
    .filter-bar { flex-direction: row; flex-wrap: wrap; align-items: stretch; gap: 0.5rem; padding: 1rem 0; }
    .filter-bar label { font-size: 0.65rem; width: 100%; }
    .filter-bar select { width: calc(50% - 0.25rem); min-width: 0; padding: 0.5rem 2rem 0.5rem 0.7rem; font-size: 0.78rem; }

    .section { padding: 40px 0; }
    .section-sm { padding: 28px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }

    .product-card { padding: 10px 10px 16px; }

    /* Hearts always visible on touch */
    .heart-btn { opacity: 1; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .product-card-name { font-size: 0.85rem; }
    .product-card-price { font-size: 0.85rem; }
    .category-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .product-card { padding: 8px 8px 14px; }
    .butiker-grid { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
}

/* ─── Scroll Fade-in Animation ──────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Populär badge ──────────────────────────────────────────────────── */
.badge-best {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: var(--gold);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    z-index: 2;
    border-radius: 2px;
}

/* ─── Sale badge pulse ───────────────────────────────────────────────── */
@keyframes pulse-sale {
    0%, 100% { box-shadow: 0 0 0 0 rgba(171, 0, 0, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(171, 0, 0, 0); }
}
.badge-sale {
    animation: pulse-sale 2s ease-in-out infinite;
}

/* ─── Category card hover effect ────────────────────────────────────── */
.category-card {
    transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.category-card:hover::after {
    transform: scaleX(1);
}

/* ─── Price highlight ────────────────────────────────────────────────── */
.product-price {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.02em;
}

/* ─── Filter bar styling ─────────────────────────────────────────────── */
.filter-bar select {
    border-color: var(--border);
    transition: border-color 0.2s;
}
.filter-bar select:hover,
.filter-bar select:focus {
    border-color: var(--gold);
    outline: none;
}
.filter-count {
    color: var(--gold);
    font-weight: 500;
}
