/*
Theme Name: LomaxFan Corporate
Theme URI: https://lomaxfan.com
Description: Clean corporate theme for LomaxFan - an independent informational site about Lomax.
Version: 2.1
Author: LomaxFan
Author URI: https://lomaxfan.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lomaxfan-corporate
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-red: #e20019;
    --color-red-dark: #c10016;
    --color-red-light: #fff1f2;
    --color-blue: #223a5e;
    --color-blue-mid: #2d5080;
    --color-blue-light: #4f84c4;
    --color-blue-pale: #edf2f9;
    --color-primary: #223a5e;
    --color-secondary: #2d5080;
    --color-accent: #4f84c4;
    --color-light: #e6ecf4;
    --color-white: #ffffff;
    --color-text: #1c2a3d;
    --color-text-light: #536580;
    --color-border: #cdd6e4;
    --color-bg-section: #f3f6fb;
    --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 24px;
    flex-shrink: 0;
}

.logo-viking {
    height: 16px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-viking {
    filter: brightness(0) invert(1);
    opacity: 0.85;
    height: 18px;
    width: auto;
}

.logo picture {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo picture img {
    height: inherit;
    width: auto;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 18px;
}

.logo-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--color-red);
    /* Red accent kept on "Fan" text */
    font-weight: 400;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 1;
    min-width: 0;
}

.main-nav a {
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-secondary);
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.main-nav a:hover {
    background: var(--color-red-light);
    color: var(--color-red);
}

.main-nav a.active {
    background: var(--color-red);
    color: var(--color-white);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-secondary);
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
}

.nav-dropdown-trigger:hover {
    background: var(--color-red-light);
    color: var(--color-red);
}

.nav-dropdown-trigger.active {
    background: var(--color-red);
    color: var(--color-white);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 8px 0;
    z-index: 100;
    margin-top: 0;
    animation: dropIn 0.2s ease;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-secondary);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: var(--color-blue-pale);
    color: var(--color-blue);
    padding-left: 24px;
}

.nav-dropdown-menu--scroll {
    max-height: 360px;
    overflow-y: auto;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Search button */
.nav-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--color-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    flex-shrink: 0;
    margin-left: 4px;
}

.nav-search-btn:hover {
    background: var(--color-red-light);
    color: var(--color-red);
}

/* Search overlay */
.search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 100;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.search-overlay-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.search-form-icon {
    color: var(--color-secondary);
    opacity: 0.4;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 18px;
    font-family: inherit;
    color: var(--color-primary);
    padding: 12px 0;
}

.search-input::placeholder {
    color: var(--color-secondary);
    opacity: 0.4;
}

.search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--color-blue-pale);
    color: var(--color-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    flex-shrink: 0;
}

.search-close:hover {
    background: var(--color-red-light);
    color: var(--color-red);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-mid) 50%, var(--color-blue-light) 100%);
    color: var(--color-white);
    padding: 80px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    max-width: 560px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-stat-row {
    display: flex;
    gap: 12px;
}

.hero-stat-card {
    flex: 1;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
}

.hero-stat-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.hero-stat-card.wide {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 16px 20px;
}

.hs-number {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hs-label {
    font-size: 13px;
    opacity: 0.75;
    margin-top: 4px;
    font-weight: 500;
}

.hs-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hs-text {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
}

.hs-text strong {
    display: block;
    font-size: 14px;
    opacity: 1;
    margin-bottom: 2px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 0 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-white:hover {
    background: var(--color-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--color-bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
}

.section-divider {
    width: 48px;
    height: 3px;
    background: var(--color-red);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ===== GRIDS ===== */
.stores-grid,
.support-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ===== CARDS (shared) ===== */
.store-card,
.support-card,
.review-card,
.product-card,
.offer-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: var(--transition);
}

.store-card:hover,
.support-card:hover,
.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(42,74,138,0.3);
}

.review-card:hover,
.offer-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(42,74,138,0.3);
}

/* ===== STORE CARDS ===== */
.store-card {
    padding: 32px 28px;
}

.store-icon {
    width: 48px;
    height: 48px;
    background: var(--color-blue-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.store-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.store-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.store-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-blue-mid);
    transition: var(--transition);
}

.store-link:hover {
    color: var(--color-blue);
    gap: 10px;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    overflow: hidden;
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, #e0e8f4 0%, #c8d6ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--color-accent);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-red);
    font-weight: 600;
    margin-bottom: 6px;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.product-info p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ===== OFFER CARDS ===== */
.offer-card {
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.offer-badge {
    min-width: 80px;
    height: 80px;
    background: var(--color-red);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.offer-badge .discount {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.offer-badge .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.offer-details h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.offer-details p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.offer-code {
    display: inline-block;
    background: var(--color-red-light);
    padding: 6px 16px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-red);
    border: 1px dashed rgba(226,0,25,0.3);
    letter-spacing: 1px;
}

/* ===== SUPPORT CARDS ===== */
.support-card {
    text-align: center;
    padding: 40px 28px;
}

.support-icon {
    width: 64px;
    height: 64px;
    background: var(--color-blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
}

.support-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.support-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===== REVIEW CARDS ===== */
.review-card {
    padding: 32px;
}

.review-stars {
    color: #f0c040;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-blue-mid);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
}

.review-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.review-date {
    font-size: 12px;
    color: var(--color-text-light);
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.stat-item {
    padding: 20px;
    background: var(--color-bg-section);
    border-radius: 10px;
    border-left: 3px solid var(--color-blue-mid);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-light);
}

.about-visual {
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-mid));
    border-radius: 16px;
    padding: 48px;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(226,0,25,0.15) 0%, transparent 70%);
}

.about-visual h4 {
    font-size: 22px;
    margin-bottom: 16px;
    position: relative;
}

.about-visual p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
    position: relative;
}

.values-list {
    list-style: none;
    margin-top: 24px;
    position: relative;
}

.values-list li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.values-list li::before {
    content: '\2713';
    font-weight: 700;
    opacity: 0.7;
}

/* ===== INTRO BLOCK (Hvad er Lomax) ===== */
.intro-block {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.intro-text p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.intro-text strong {
    color: var(--color-primary);
}

.intro-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.highlight-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
}

.highlight-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(42,74,138,0.3);
}

.highlight-icon {
    font-size: 24px;
}

/* ===== SELLS GRID (Hvad sælger Lomax) ===== */
.sells-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sells-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px 28px;
    transition: var(--transition);
}

.sells-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(42,74,138,0.3);
}

.sells-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.sells-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.sells-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===== STEPS GRID (Sådan handler du) ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--color-blue);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== NAV GRID (enlaces internos) ===== */
.nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nav-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: var(--transition);
}

.nav-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--color-red);
}

.nav-card-icon {
    font-size: 28px;
    margin-bottom: 4px;
}

.nav-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
}

.nav-card-desc {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ===== TRUSTPILOT BLOCK ===== */
.trustpilot-block {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.trustpilot-header {
    margin-bottom: 32px;
}

.trustpilot-logo {
    display: inline-block;
    background: #00b67a;
    color: var(--color-white);
    padding: 6px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.trustpilot-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.trustpilot-header p {
    font-size: 15px;
    color: var(--color-text-light);
}

.trustpilot-score {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tp-rating {
    text-align: center;
}

.tp-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 8px;
}

.tp-star {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 4px;
}

.tp-star.filled {
    background: #00b67a;
    color: var(--color-white);
}

.tp-star.half {
    background: #dcdce6;
    color: #00b67a;
}

.tp-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.tp-details {
    display: flex;
    gap: 32px;
}

.tp-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tp-label {
    font-size: 12px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tp-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
}

.tp-summary {
    max-width: 640px;
    margin: 0 auto 28px;
}

.tp-summary p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.btn-tp {
    background: #00b67a;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-tp:hover {
    background: #009a68;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== CTA OFFERS ===== */
.cta-offers {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    padding: 64px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.btn-cta {
    background: var(--color-white);
    color: var(--color-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
}

.btn-cta:hover {
    background: var(--color-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: var(--color-white);
    padding: 0;
}

.footer-top {
    padding: 56px 0 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 15px;
    opacity: 0.6;
    line-height: 1.7;
    max-width: 480px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 100%);
    margin: 36px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.45);
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    padding: 5px 0;
    transition: color 0.25s, transform 0.25s;
    position: relative;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-bottom {
    padding: 24px 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    transition: color 0.25s;
}

.footer-bottom-links a:hover {
    color: rgba(255,255,255,0.8);
}

.disclaimer {
    background: rgba(0,0,0,0.2);
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 16px 24px;
    font-size: 12px;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-mid) 100%);
    color: var(--color-white);
    padding: 48px 0;
}

.breadcrumb {
    font-size: 13px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.page-hero-sub {
    font-size: 17px;
    opacity: 0.85;
}

/* ===== STORE DETAIL ===== */
.store-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.store-description {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 32px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-bg-section);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.info-card-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.info-card h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.info-card p {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
}

.info-card a {
    color: var(--color-blue-mid);
    text-decoration: none;
}

.info-card a:hover {
    color: var(--color-red);
}

/* Hours */
.hours-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--color-border);
}

.hours-table tr.today {
    background: var(--color-blue-pale);
    font-weight: 600;
}

.hours-table td {
    padding: 14px 16px;
    font-size: 15px;
}

.day-name {
    color: var(--color-primary);
}

.day-hours {
    text-align: right;
    color: var(--color-text);
    font-weight: 500;
}

.day-hours.closed {
    color: var(--color-red);
}

.today-badge {
    background: var(--color-blue);
    color: var(--color-white);
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Map */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.map-actions {
    margin-top: 16px;
    text-align: center;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    background: var(--color-blue);
    color: var(--color-white);
    transition: var(--transition);
    border: none;
}

.btn-map:hover {
    background: var(--color-blue-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Other stores */
.other-stores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.other-store-card {
    display: block;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 28px;
    transition: var(--transition);
}

.other-store-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--color-blue-light);
}

.other-store-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.other-store-card p {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.other-store-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-blue-mid);
}

/* All stores grid (overview page) */
.all-stores-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.all-store-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 28px 32px;
    transition: var(--transition);
}

.all-store-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-blue-light);
    transform: translateX(4px);
}

.all-store-icon {
    font-size: 36px;
    width: 64px;
    height: 64px;
    background: var(--color-blue-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.all-store-info {
    flex: 1;
}

.all-store-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.all-store-sub {
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 8px;
}

.all-store-addr,
.all-store-phone {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.all-store-arrow {
    font-size: 24px;
    color: var(--color-border);
    transition: var(--transition);
    flex-shrink: 0;
}

.all-store-card:hover .all-store-arrow {
    color: var(--color-blue-mid);
    transform: translateX(4px);
}

/* Butik CTA */
.butik-cta {
    background: var(--color-bg-section);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.butik-cta h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.butik-cta p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-page {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    background: var(--color-red);
    color: var(--color-white);
    transition: var(--transition);
    border: none;
}

.btn-cta-page:hover {
    background: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hours overview */
.hours-overview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.hours-store-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
}

.hours-store-header {
    background: var(--color-blue-pale);
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
}

.hours-store-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hours-store-header h3 a {
    color: var(--color-primary);
    transition: var(--transition);
}

.hours-store-header h3 a:hover {
    color: var(--color-blue-mid);
}

.hours-store-header p {
    font-size: 13px;
    color: var(--color-text-light);
}

.hours-store-card .hours-table {
    margin: 0;
}

.hours-store-card .hours-table td {
    padding: 10px 24px;
    font-size: 14px;
}

.hours-note {
    background: var(--color-blue-pale);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px 32px;
}

.hours-note p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== PRODUCT PAGES ===== */
.product-intro {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.product-intro p {
    font-size: 17px;
    color: var(--color-text);
    line-height: 1.8;
}

.product-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-type-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-type-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.product-type-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-type-card:hover .product-type-img img {
    transform: scale(1.05);
}

.product-type-content {
    padding: 24px 20px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-type-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-red);
    transition: width 0.4s ease;
}

.product-type-card:hover::after {
    width: 100%;
}

.product-type-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-type-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.product-type-card p,
.product-type-content p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.price-range {
    display: inline-block;
    background: var(--color-blue-pale);
    color: var(--color-blue);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

/* Comparison section with background image */
.section-comparison {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.section-comparison::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,32,54,0.93) 0%, rgba(34,58,94,0.90) 100%);
    z-index: 0;
}

.section-comparison > .container {
    position: relative;
    z-index: 1;
}

.section-comparison .section-header h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}

.section-comparison .section-header p {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.section-comparison .section-divider {
    background: #ffffff;
    opacity: 0.6;
}

/* Comparison table */
.comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.comparison-table thead {
    background: var(--color-blue);
    color: var(--color-white);
}

.comparison-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}

.comparison-table td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

.comparison-table tbody tr:hover {
    background: var(--color-blue-pale);
}

.comp-feature {
    font-weight: 600;
    color: var(--color-primary);
}

/* Alternatives */
.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.alternative-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.alternative-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-blue-light);
}

.alt-vs {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-red);
    font-weight: 700;
    margin-bottom: 6px;
}

.alt-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
}

.alt-note {
    background: var(--color-blue-pale);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px 32px;
}

.alt-note p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.35s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Hero animations */
.hero-content .hero-badge {
    animation: fadeSlideDown 0.6s ease 0.2s both;
}

.hero-content h1 {
    animation: fadeSlideDown 0.6s ease 0.4s both;
}

.hero-content > p {
    animation: fadeSlideDown 0.6s ease 0.6s both;
}

.hero-actions {
    animation: fadeSlideDown 0.6s ease 0.8s both;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animated counter */
.stat-number {
    transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
    color: var(--color-red);
}

/* Enhanced card interactions */
.store-card,
.sells-card,
.support-card,
.step-card {
    position: relative;
    overflow: hidden;
}

.store-card::after,
.sells-card::after,
.step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-red);
    transition: width 0.4s ease;
}

.store-card:hover::after,
.sells-card:hover::after,
.step-card:hover::after {
    width: 100%;
}

/* Nav card arrow animation */
.nav-card {
    position: relative;
}

.nav-card::after {
    content: '\2192';
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 18px;
    color: var(--color-border);
    transition: var(--transition);
}

.nav-card:hover::after {
    color: var(--color-red);
    transform: translateX(4px);
}

/* Trustpilot stars sequential animation */
.trustpilot-block.visible .tp-star {
    animation: starPop 0.3s ease both;
}

.trustpilot-block.visible .tp-star:nth-child(1) { animation-delay: 0.1s; }
.trustpilot-block.visible .tp-star:nth-child(2) { animation-delay: 0.25s; }
.trustpilot-block.visible .tp-star:nth-child(3) { animation-delay: 0.4s; }
.trustpilot-block.visible .tp-star:nth-child(4) { animation-delay: 0.55s; }
.trustpilot-block.visible .tp-star:nth-child(5) { animation-delay: 0.7s; }

@keyframes starPop {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-30deg);
    }
    70% {
        transform: scale(1.15) rotate(3deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

/* CTA pulse */
.btn-cta {
    animation: pulse 2.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

/* Step number bounce on hover */
.step-card:hover .step-number {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Offer code copy animation */
.offer-code {
    cursor: pointer;
    position: relative;
}

.offer-code:hover {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

.offer-code.copied::after {
    content: 'Kopieret!';
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-family: var(--font-main);
    white-space: nowrap;
    animation: fadeUp 1.5s ease both;
}

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

/* Highlight items hover glow */
.highlight-item:hover {
    border-color: var(--color-blue-light);
    background: var(--color-blue-pale);
}

.highlight-item:hover .highlight-icon {
    animation: bounce 0.5s ease;
}

/* Review card quote mark */
.review-card {
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 64px;
    color: var(--color-border);
    line-height: 1;
    font-family: Georgia, serif;
    transition: color 0.3s ease;
}

.review-card:hover::before {
    color: var(--color-blue-light);
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--color-red);
    z-index: 1001;
    transition: width 0.1s linear;
}

/* ===== WP ADMIN BAR FIX ===== */
.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .intro-block {
        grid-template-columns: 1fr;
    }
    .sells-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .alternatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tp-details {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-search-btn {
        margin-left: auto;
        margin-right: 8px;
    }

    .search-overlay {
        height: 64px;
    }

    .search-input {
        font-size: 16px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 16px;
        width: 100%;
    }

    .hero {
        padding: 40px 0;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero p {
        margin: 0 auto 24px;
        font-size: 15px;
    }

    .hero-actions {
        justify-content: center;
        gap: 10px;
    }

    .hero-actions .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 26px;
        letter-spacing: -0.5px;
    }

    /* Flatten stat rows into one clean grid */
    .hero-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hero-stat-row {
        display: contents;
    }

    .hero-stat-card {
        padding: 12px 8px;
        border-radius: 10px;
        text-align: center;
    }

    .hero-stat-card.wide {
        grid-column: 1 / -1;
        padding: 12px 14px;
        gap: 10px;
    }

    .hs-number {
        font-size: 20px;
    }

    .hs-label {
        font-size: 11px;
    }

    .hs-icon {
        width: 36px;
        height: 36px;
    }

    .hs-icon svg {
        width: 18px;
        height: 18px;
    }

    .hs-text {
        font-size: 12px;
    }

    .hs-text strong {
        font-size: 13px;
    }

    .section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-header p {
        font-size: 14px;
    }

    .stores-grid,
    .support-grid,
    .reviews-grid,
    .offers-grid,
    .products-grid,
    .sells-grid,
    .steps-grid,
    .nav-grid,
    .product-types-grid,
    .alternatives-grid {
        grid-template-columns: 1fr;
    }

    .intro-highlights {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .offer-card {
        flex-direction: column;
        text-align: center;
    }

    .trustpilot-block {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .trustpilot-score {
        flex-direction: column;
        gap: 20px;
    }

    .tp-details {
        flex-direction: column;
        gap: 12px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    /* Container mobile padding */
    .container {
        padding: 0 16px;
    }

    /* Dropdown mobile */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-trigger {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 16px;
        margin-top: 0;
        background: transparent;
        display: none;
        min-width: 0;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu a {
        padding: 8px 16px;
        font-size: 13px;
        white-space: normal;
    }

    .nav-dropdown-menu--scroll {
        max-height: none;
        overflow-y: visible;
    }

    /* Tables responsive */
    .info-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 13px;
    }

    /* Page layouts mobile */
    .store-detail-grid {
        grid-template-columns: 1fr;
    }

    .other-stores {
        grid-template-columns: 1fr;
    }

    .hours-overview {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 32px 0;
    }

    .page-hero h1 {
        font-size: 24px;
    }

    .page-hero p {
        font-size: 14px;
    }

    .all-store-card {
        flex-direction: column;
        text-align: center;
    }

    .all-store-arrow {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    /* Slider/carousel mobile */
    .rekl-slider-wrap {
        margin: 0 -16px;
    }

    .rekl-card {
        min-width: 200px;
    }

    /* Generic content pages mobile */
    .entry-content {
        font-size: 15px;
        line-height: 1.7;
    }

    .entry-content h2 {
        font-size: 20px;
    }

    .entry-content h3 {
        font-size: 17px;
    }

    .entry-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .faq-question {
        font-size: 14px;
        padding: 14px 16px;
    }

    .rec-items {
        gap: 24px;
    }

    .rec-item-card {
        flex-direction: column;
        border-radius: 16px;
    }

    .rec-item-card:first-child {
        border-width: 2px;
    }

    .rec-item-img {
        min-width: 100%;
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(34,58,94,0.06);
    }

    .rec-item-rank {
        top: 14px;
        left: 14px;
        width: 48px;
        height: 48px;
        font-size: 18px;
        border-radius: 14px;
    }

    .rec-item-body {
        padding: 28px 24px 32px;
    }

    .rec-item-body h3 {
        font-size: 20px;
    }

    .rec-item-price {
        font-size: 16px;
        padding: 8px 18px;
    }

    .rec-item-features ul {
        grid-template-columns: 1fr;
    }

    .rec-item-features li {
        padding: 7px 10px;
    }

    .rec-item-link {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 15px;
    }

    .rec-back-section {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .rec-back-section::before {
        border-radius: 20px 20px 0 0;
    }

    .rec-back-content h2 {
        font-size: 24px;
    }
}

/* ===== RESPONSIVE 480px (Small phones) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-inner {
        height: 56px;
    }

    .main-nav {
        top: 56px;
    }

    .logo-text {
        font-size: 16px;
    }

    .section {
        padding: 28px 0;
    }

    .section-header h2 {
        font-size: 18px;
    }

    .section-header p {
        font-size: 13px;
    }

    .hero {
        padding: 28px 0;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 8px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .hero-stat-row {
        display: contents;
    }

    .hero-stat-card {
        padding: 10px 8px;
        border-radius: 8px;
        text-align: center;
    }

    .hero-stat-card .hs-number {
        font-size: 18px;
    }

    .hero-stat-card .hs-label {
        font-size: 10px;
    }

    .hero-stat-card.wide {
        grid-column: 1 / -1;
        padding: 10px 12px;
        gap: 10px;
    }

    .hero-stat-card.wide .hs-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }

    .hero-stat-card.wide .hs-icon svg {
        width: 16px;
        height: 16px;
    }

    .hero-stat-card.wide .hs-text {
        font-size: 11px;
    }

    .hero-stat-card.wide .hs-text strong {
        font-size: 12px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 14px;
    }

    .stat-number {
        font-size: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col h4 {
        margin-bottom: 12px;
    }

    .page-hero {
        padding: 22px 0;
    }

    .page-hero h1 {
        font-size: 20px;
    }

    .page-hero p {
        font-size: 13px;
    }

    .cta-content h2 {
        font-size: 18px;
    }

    .trustpilot-block {
        padding: 18px 12px;
    }

    .offer-card {
        padding: 14px;
    }

    .stores-grid .store-card,
    .support-grid .support-card {
        padding: 18px;
    }

    .faq-question {
        font-size: 13px;
        padding: 12px 14px;
    }

    .entry-content h2 {
        font-size: 18px;
    }

    .entry-content h3 {
        font-size: 15px;
    }

    .rekl-card {
        min-width: 160px;
    }

    .info-table {
        font-size: 12px;
    }

    /* All-store cards compact */
    .all-store-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .all-store-info h3 {
        font-size: 15px;
    }

    .all-store-info p {
        font-size: 12px;
    }
}

/* ===== RECOMMENDATION PAGES ===== */

/* "Se anbefalinger" button on product type cards */
.btn-see-recs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    color: var(--color-white);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.3px;
}

.btn-see-recs:hover {
    background: linear-gradient(135deg, var(--color-red-dark) 0%, #9e0011 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(226,0,25,0.25);
}

/* Fan page notice */
/* Fan notice - refined */
.fan-notice {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, #f4f8ff 0%, #eaf1fd 100%);
    border: 1px solid rgba(42,74,138,0.08);
    border-left: 4px solid var(--color-accent);
    border-radius: 16px;
    padding: 22px 28px;
    box-shadow: 0 2px 12px rgba(42,74,138,0.05);
}

.fan-notice-icon {
    font-size: 22px;
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 1px;
}

.fan-notice-text {
    font-size: 13.5px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.fan-notice-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* ===== RECOMMENDATION PAGES - PREMIUM DESIGN ===== */

/* Recommendation items list */
.rec-items {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Individual product card */
.rec-item-card {
    display: flex;
    background: var(--color-white);
    border: 1px solid rgba(34,58,94,0.07);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 4px 20px rgba(34,58,94,0.06), 0 1px 4px rgba(0,0,0,0.03);
}

.rec-item-card:hover {
    box-shadow: 0 20px 60px rgba(34,58,94,0.14), 0 4px 12px rgba(0,0,0,0.04);
    border-color: rgba(79,132,196,0.25);
    transform: translateY(-6px);
}

/* First card (rank #1) - special gold accent */
.rec-item-card:first-child {
    border: 2px solid rgba(240,192,64,0.3);
    box-shadow: 0 4px 20px rgba(34,58,94,0.06), 0 0 0 1px rgba(240,192,64,0.08);
}

.rec-item-card:first-child:hover {
    border-color: rgba(240,192,64,0.5);
    box-shadow: 0 20px 60px rgba(34,58,94,0.14), 0 0 0 1px rgba(240,192,64,0.2);
}

/* Rank badge */
.rec-item-rank {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, var(--color-red) 0%, #a8000f 100%);
    color: var(--color-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(226,0,25,0.35), 0 2px 6px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
    border: 2px solid rgba(255,255,255,0.2);
}

/* Gold rank badge for #1 */
.rec-item-card:first-child .rec-item-rank {
    background: linear-gradient(145deg, #f0c040 0%, #d4a520 50%, #c49620 100%);
    color: #3d2800;
    box-shadow: 0 8px 24px rgba(212,165,32,0.4), 0 2px 6px rgba(0,0,0,0.1);
}

/* Product image area */
.rec-item-img {
    min-width: 320px;
    max-width: 320px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-right: 1px solid rgba(34,58,94,0.06);
}

.rec-item-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rec-item-card:hover .rec-item-img img {
    transform: scale(1.03);
}

/* Product body content */
.rec-item-body {
    padding: 40px 42px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rec-item-body h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

/* Price badge */
.rec-item-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffecec 100%);
    color: var(--color-red);
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 24px;
    border: 1px solid rgba(226,0,25,0.1);
    letter-spacing: -0.3px;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(226,0,25,0.06);
}

/* Why section */
.rec-item-why {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(34,58,94,0.06);
}

.rec-item-why h4,
.rec-item-features h4 {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rec-item-why h4::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
}

.rec-item-features h4::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
}

.rec-item-why p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.85;
    letter-spacing: 0.01em;
}

/* Features grid */
.rec-item-features {
    margin-bottom: 28px;
}

.rec-item-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.rec-item-features li {
    font-size: 14px;
    color: var(--color-text);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-bg-section);
    border-radius: 10px;
    transition: background 0.2s ease;
}

.rec-item-features li:hover {
    background: var(--color-blue-pale);
}

.rec-item-features li::before {
    content: '\2713';
    color: var(--color-white);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    font-weight: 700;
    font-size: 10px;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(34,197,94,0.25);
}

/* Product link button */
.rec-item-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    color: var(--color-white);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.35s ease;
    align-self: flex-start;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(226,0,25,0.25);
    border: none;
}

.rec-item-link:hover {
    background: linear-gradient(135deg, var(--color-red-dark) 0%, #9e0011 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(226,0,25,0.35);
    color: var(--color-white);
}

/* Back to parent section */
.rec-back-section {
    background: linear-gradient(135deg, var(--color-white) 0%, #f4f7fc 100%);
    border: 2px solid rgba(34,58,94,0.06);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(34,58,94,0.05);
    position: relative;
    overflow: hidden;
}

.rec-back-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-blue-light), var(--color-red));
    border-radius: 24px 24px 0 0;
}

.rec-back-content h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.rec-back-content p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

/* ===== PRODUCT PAGE - PREMIUM DESIGN ===== */

/* Hero - dramatic gradient with depth */
.page-hero {
    padding: 64px 0;
    background: linear-gradient(160deg, #0d1f38 0%, var(--color-blue) 35%, var(--color-blue-mid) 70%, #1a3050 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(226,0,25,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.page-hero-sub {
    font-size: 19px;
    opacity: 0.88;
    line-height: 1.6;
    max-width: 600px;
    letter-spacing: 0.01em;
}

.breadcrumb {
    font-size: 13px;
    margin-bottom: 20px;
    opacity: 0.7;
    letter-spacing: 0.3px;
}

/* Product intro - elegant centered text */
.product-intro {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
    position: relative;
}

.product-intro::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-blue-light), transparent);
    margin: 32px auto 0;
    border-radius: 2px;
}

.product-intro p {
    font-size: 19px;
    color: var(--color-text);
    line-height: 1.9;
    letter-spacing: 0.01em;
}

/* Section headers - powerful hierarchy */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red), var(--color-red-dark));
    margin: 20px auto 0;
    border-radius: 4px;
}

/* Product type cards - premium card design */
.product-types-grid {
    gap: 28px;
}

.product-type-card {
    background: var(--color-white);
    border: 1px solid rgba(34,58,94,0.06);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(34,58,94,0.05), 0 1px 3px rgba(0,0,0,0.03);
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-type-card:hover {
    box-shadow: 0 16px 48px rgba(34,58,94,0.14), 0 4px 10px rgba(0,0,0,0.04);
    transform: translateY(-8px);
    border-color: rgba(79,132,196,0.25);
}

.product-type-card::after {
    height: 4px;
    background: linear-gradient(90deg, var(--color-red), var(--color-blue-light));
    border-radius: 0 0 20px 20px;
}

.product-type-img {
    height: 220px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
}

.product-type-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(255,255,255,0.3));
    pointer-events: none;
}

.product-type-img img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-type-card:hover .product-type-img img {
    transform: scale(1.08);
}

.product-type-content {
    padding: 28px 24px 32px;
}

.product-type-card h3 {
    font-size: 19px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 10px;
    letter-spacing: -0.4px;
    line-height: 1.25;
}

.product-type-card p,
.product-type-content p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 20px;
}

/* Price range badge - eye-catching */
.price-range {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f5ff 0%, var(--color-blue-pale) 100%);
    color: var(--color-blue);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.2px;
    border: 1px solid rgba(79,132,196,0.12);
    box-shadow: 0 2px 6px rgba(34,58,94,0.06);
}

/* "Se anbefalinger" button - improved */
.btn-see-recs {
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(226,0,25,0.2);
}

.btn-see-recs:hover {
    box-shadow: 0 8px 28px rgba(226,0,25,0.3);
    transform: translateY(-3px);
}

/* Comparison section - dramatic dark overlay */
.section-comparison {
    background-attachment: fixed;
    padding: 96px 0;
}

.section-comparison::before {
    background: linear-gradient(160deg, rgba(13,31,56,0.95) 0%, rgba(34,58,94,0.92) 50%, rgba(26,48,80,0.94) 100%);
}

.section-comparison .section-header h2 {
    font-size: 36px;
    font-weight: 900;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.section-comparison .section-header p {
    font-size: 17px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.section-comparison .section-divider {
    background: linear-gradient(90deg, rgba(255,255,255,0.3), #ffffff, rgba(255,255,255,0.3));
}

/* Comparison table - premium design */
.comparison-table {
    border-radius: 18px;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.comparison-table thead {
    background: linear-gradient(135deg, #0d1f38 0%, var(--color-blue) 50%, var(--color-blue-mid) 100%);
}

.comparison-table th {
    padding: 20px 24px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.comparison-table td {
    padding: 18px 24px;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(205,214,228,0.5);
}

.comparison-table tbody tr {
    transition: all 0.25s ease;
}

.comparison-table tbody tr:hover {
    background: linear-gradient(90deg, var(--color-blue-pale), #f0f4fa);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comp-feature {
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.2px;
}

/* Alternative cards - modern competitive display */
.alternatives-grid {
    gap: 20px;
    margin-bottom: 36px;
}

.alternative-card {
    background: var(--color-white);
    border: 1px solid rgba(34,58,94,0.06);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 3px 12px rgba(34,58,94,0.04);
    position: relative;
    overflow: hidden;
}

.alternative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blue-light), var(--color-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alternative-card:hover::before {
    opacity: 1;
}

.alternative-card:hover {
    box-shadow: 0 12px 36px rgba(34,58,94,0.12);
    border-color: rgba(79,132,196,0.2);
    transform: translateY(-5px);
}

.alt-vs {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    font-weight: 800;
    margin-bottom: 12px;
    background: var(--color-red);
    padding: 4px 12px;
    border-radius: 6px;
}

.alt-name {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.3px;
}

.alt-note {
    background: linear-gradient(135deg, #f4f8ff 0%, var(--color-blue-pale) 100%);
    border: 1px solid rgba(79,132,196,0.1);
    border-left: 4px solid var(--color-accent);
    border-radius: 16px;
    padding: 28px 34px;
    box-shadow: 0 2px 10px rgba(34,58,94,0.04);
}

.alt-note p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.85;
}

/* Review cards - premium testimonials */
.reviews-grid {
    gap: 28px;
}

.review-card {
    padding: 36px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--color-white);
    border: 1px solid rgba(34,58,94,0.06);
    box-shadow: 0 3px 12px rgba(34,58,94,0.04);
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 72px;
    color: var(--color-blue-pale);
    line-height: 1;
    font-family: Georgia, serif;
    transition: color 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 14px 40px rgba(34,58,94,0.1);
    transform: translateY(-4px);
    border-color: rgba(79,132,196,0.15);
}

.review-card:hover::before {
    color: var(--color-blue-light);
}

.review-stars {
    color: #f0c040;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-shadow: 0 1px 4px rgba(240,192,64,0.3);
}

.review-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.85;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(34,58,94,0.06);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-mid) 100%);
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(34,58,94,0.15);
}

.review-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--color-primary);
}

.review-date {
    font-size: 12px;
    color: var(--color-text-light);
    letter-spacing: 0.3px;
}

/* CTA section - maximum impact */
.cta-offers {
    background: linear-gradient(160deg, var(--color-red) 0%, #b50013 40%, var(--color-red-dark) 70%, #8a000d 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-offers::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.92);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

.btn-cta {
    padding: 20px 42px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

/* Section alt - subtle pattern */
.section-alt {
    background: linear-gradient(180deg, #f5f8fc 0%, var(--color-bg-section) 100%);
}

/* ===== RESPONSIVE - Product Page Premium ===== */
@media (max-width: 1024px) {
    .product-types-grid {
        gap: 24px;
    }
    .alternatives-grid {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 48px 0;
    }
    .page-hero::after {
        display: none;
    }
    .page-hero h1 {
        font-size: 32px;
        letter-spacing: -0.8px;
    }
    .page-hero-sub {
        font-size: 16px;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .section-header {
        margin-bottom: 44px;
    }
    .product-intro p {
        font-size: 16px;
    }
    .product-intro::after {
        margin-top: 24px;
    }
    .product-type-img {
        height: 180px;
    }
    .product-type-card {
        border-radius: 16px;
    }
    .product-type-img {
        border-radius: 16px 16px 0 0;
    }
    .comparison-table {
        border-radius: 14px;
    }
    .comparison-table th {
        padding: 14px 16px;
        font-size: 11px;
    }
    .comparison-table td {
        padding: 14px 16px;
        font-size: 13px;
    }
    .section-comparison {
        padding: 64px 0;
    }
    .review-card {
        padding: 28px;
        border-radius: 16px;
    }
    .review-card::before {
        font-size: 56px;
        top: 14px;
        right: 20px;
    }
    .cta-content h2 {
        font-size: 28px;
    }
    .cta-offers {
        padding: 56px 0;
    }
    .cta-offers::before {
        display: none;
    }
    .btn-cta {
        padding: 18px 36px;
        border-radius: 12px;
    }
    .alternative-card {
        border-radius: 14px;
        padding: 24px 18px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 22px;
    }
    .page-hero-sub {
        font-size: 14px;
    }
    .section-header h2 {
        font-size: 20px;
    }
    .section-header {
        margin-bottom: 28px;
    }
    .review-card {
        padding: 20px;
        border-radius: 12px;
    }
    .review-card::before {
        font-size: 40px;
        top: 10px;
        right: 14px;
    }
    .review-text {
        font-size: 14px;
    }
    .cta-content h2 {
        font-size: 20px;
    }
    .btn-cta {
        padding: 14px 28px;
        font-size: 14px;
    }
    .alternative-card {
        padding: 18px 14px;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
    .product-type-img {
        height: 140px;
    }
}

/* ===== COUPON CARDS ===== */
.coupon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.coupon-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.coupon-card:hover {
    border-color: var(--color-red);
    box-shadow: 0 8px 32px rgba(226,0,25,0.12);
    transform: translateY(-4px);
}

.coupon-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.coupon-discount {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-red);
    letter-spacing: -0.5px;
    line-height: 1;
}

.coupon-status {
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coupon-status.active {
    background: #dcfce7;
    color: #15803d;
}

.coupon-code-display {
    background: var(--color-red-light);
    border: 2px dashed rgba(226,0,25,0.3);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.coupon-code-display:hover {
    background: rgba(226,0,25,0.08);
    border-color: var(--color-red);
}

.coupon-code-text {
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-red);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 4px;
}

.coupon-copy-hint {
    font-size: 12px;
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.coupon-code-display:hover .coupon-copy-hint {
    color: var(--color-red);
}

.coupon-code-display.copied {
    background: #dcfce7;
    border-color: #15803d;
}

.coupon-code-display.copied .coupon-code-text {
    color: #15803d;
}

.coupon-code-display.copied .coupon-copy-hint {
    color: #15803d;
}

.coupon-meta {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.coupon-expiry {
    font-size: 13px;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-blue-light);
}

.faq-question {
    width: 100%;
    background: var(--color-white);
    border: none;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-main);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--color-bg-section);
}

.faq-question .faq-toggle {
    font-size: 22px;
    font-weight: 300;
    color: var(--color-text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.open .faq-question .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.faq-answer-inner a {
    color: var(--color-red);
    font-weight: 600;
}

.faq-answer-inner a:hover {
    text-decoration: underline;
}

/* ===== UPDATED NOTE ===== */
.updated-note {
    background: var(--color-blue-pale);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 14px;
    color: var(--color-text-light);
    text-align: center;
}

.updated-note strong {
    color: var(--color-primary);
}

/* ===== CLICKABLE COLORED CARDS ===== */
a.store-card,
a.support-card,
a.offer-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.store-card:hover,
a.support-card:hover,
a.offer-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    filter: brightness(0.97);
}

a.offer-card:hover {
    transform: none;
}

a.store-card h3,
a.support-card h3,
a.offer-card h3 {
    color: var(--color-primary);
}

a.store-card p,
a.support-card p,
a.offer-card p {
    color: var(--color-text-light);
}

/* Card background colors - stores (theme palette) */
.stores-grid .store-card:nth-child(1) { background: var(--color-blue-pale); border-color: var(--color-border); }
.stores-grid .store-card:nth-child(2) { background: var(--color-red-light); border-color: #e8c0c4; }
.stores-grid .store-card:nth-child(3) { background: var(--color-light); border-color: var(--color-border); }
.stores-grid .store-card:nth-child(4) { background: var(--color-bg-section); border-color: var(--color-border); }

/* Card background colors - support (theme palette) */
.support-grid .support-card:nth-child(1) { background: var(--color-blue-pale); border-color: var(--color-border); }
.support-grid .support-card:nth-child(2) { background: var(--color-red-light); border-color: #e8c0c4; }
.support-grid .support-card:nth-child(3) { background: var(--color-light); border-color: var(--color-border); }
.support-grid .support-card:nth-child(4) { background: var(--color-bg-section); border-color: var(--color-border); }
.support-grid .support-card:nth-child(5) { background: var(--color-blue-pale); border-color: var(--color-border); }
.support-grid .support-card:nth-child(6) { background: var(--color-red-light); border-color: #e8c0c4; }

/* Card background colors - offers (theme palette) */
.offers-grid .offer-card:nth-child(1) { background: var(--color-blue-pale); border-color: var(--color-border); }
.offers-grid .offer-card:nth-child(2) { background: var(--color-red-light); border-color: #e8c0c4; }
.offers-grid .offer-card:nth-child(3) { background: var(--color-light); border-color: var(--color-border); }
.offers-grid .offer-card:nth-child(4) { background: var(--color-bg-section); border-color: var(--color-border); }

/* Card link arrow indicator */
.card-arrow {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-red);
    letter-spacing: 0.3px;
}

a.support-card .card-arrow {
    margin-top: 14px;
}

/* ===== RESPONSIVE - Coupon & FAQ ===== */
@media (max-width: 768px) {
    .coupon-grid {
        grid-template-columns: 1fr;
    }
    .coupon-discount {
        font-size: 22px;
    }
    .coupon-code-text {
        font-size: 17px;
    }
    .faq-question {
        font-size: 15px;
        padding: 16px 20px;
    }
    .faq-answer-inner {
        padding: 0 20px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .coupon-card {
        padding: 18px;
    }
    .coupon-discount {
        font-size: 18px;
    }
    .coupon-code-text {
        font-size: 15px;
    }
    .faq-question {
        font-size: 13px;
        padding: 12px 16px;
    }
    .faq-answer-inner {
        padding: 0 16px 12px;
        font-size: 13px;
    }
    .generic-page-content h2 {
        font-size: 22px;
    }
    .generic-page-content h3 {
        font-size: 18px;
    }
}

/* Generic page content styles */
.generic-page-content h2 { font-size: 28px; font-weight: 800; color: #1a1a2e; margin: 32px 0 16px; }
.generic-page-content h3 { font-size: 22px; font-weight: 700; color: #1a1a2e; margin: 28px 0 12px; }
.generic-page-content h4 { font-size: 18px; font-weight: 600; color: #1a1a2e; margin: 24px 0 10px; }
.generic-page-content p { margin-bottom: 16px; }
.generic-page-content ul { padding-left: 24px; margin-bottom: 16px; }
.generic-page-content li { margin-bottom: 8px; }
.generic-page-content a { color: #e63946; text-decoration: none; font-weight: 500; }
.generic-page-content a:hover { text-decoration: underline; }
.generic-page-content strong { color: #1a1a2e; }

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--color-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(230,57,70,0.35);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, background 0.25s;
    z-index: 90;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--color-red-dark);
    box-shadow: 0 6px 24px rgba(230,57,70,0.45);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ===== BLOG STYLES ===== */

/* Blog section */
.blog-section {
    padding: 60px 0 80px;
}

/* Blog layout with sidebar */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

/* Blog grid - 2 columns */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.blog-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Blog card */
.blog-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-red);
}

/* Blog card image */
.blog-card-img {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--color-bg-section);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-blue-pale) 0%, var(--color-light) 100%);
    color: var(--color-text-light);
}

/* Blog card body */
.blog-card-body {
    padding: 22px 24px 26px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 13px;
}

.blog-card-cat {
    background: var(--color-red-light);
    color: var(--color-red);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    transition: var(--transition);
}

.blog-card-cat:hover {
    background: var(--color-red);
    color: #fff;
}

.blog-card-date {
    color: var(--color-text-light);
    font-size: 13px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.blog-card-title a {
    color: inherit;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--color-red);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.65;
    margin-bottom: 14px;
}

.blog-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-red);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.blog-card-link:hover {
    gap: 8px;
}

/* Blog pagination */
.blog-pagination {
    margin-top: 48px;
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.blog-pagination .page-numbers:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

.blog-pagination .page-numbers.current {
    background: var(--color-red);
    color: #fff;
    border-color: var(--color-red);
}

.blog-pagination .prev,
.blog-pagination .next {
    font-size: 14px;
    padding: 0 18px;
}

/* Blog no posts */
.blog-no-posts {
    text-align: center;
    padding: 80px 20px;
}

.blog-no-posts svg {
    margin-bottom: 20px;
    opacity: 0.4;
}

.blog-no-posts h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.blog-no-posts p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.blog-no-posts .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
    transition: var(--transition);
}

.blog-no-posts .btn-red {
    background: var(--color-red);
    color: #fff;
}

.blog-no-posts .btn-red:hover {
    background: var(--color-red-dark);
}

.blog-no-posts .btn-outline {
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.blog-no-posts .btn-outline:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

/* Blog sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-red);
}

.sidebar-categories {
    list-style: none;
    padding: 0;
}

.sidebar-categories li {
    margin-bottom: 0;
}

.sidebar-categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-text);
    transition: var(--transition);
}

.sidebar-categories li a:hover,
.sidebar-categories li.active a {
    background: var(--color-red-light);
    color: var(--color-red);
}

.sidebar-categories .cat-count {
    background: var(--color-bg-section);
    color: var(--color-text-light);
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.sidebar-categories li.active .cat-count,
.sidebar-categories li a:hover .cat-count {
    background: var(--color-red);
    color: #fff;
}

/* Sidebar search */
.sidebar-search {
    display: flex;
    gap: 8px;
}

.sidebar-search input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.sidebar-search input:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(226,0,25,0.08);
}

.sidebar-search button {
    background: var(--color-red);
    color: #fff;
    border: none;
    border-radius: 8px;
    width: 42px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.sidebar-search button:hover {
    background: var(--color-red-dark);
}

/* ===== ARTICLE HEADER ===== */

.article-header {
    padding: 32px 0 24px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.article-category-badge {
    display: inline-block;
    background: var(--color-red);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    transition: background 0.3s;
}

.article-category-badge:hover {
    background: var(--color-red-dark);
}

.article-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-text-light);
}

.article-meta-item svg {
    opacity: 0.6;
}

/* ===== FEATURED IMAGE ===== */

.article-featured-image {
    padding: 24px 0 0;
    background: var(--color-white);
}

.article-hero-fig {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-hero-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.article-hero-caption {
    padding: 10px 16px;
    font-size: 13px;
    color: var(--color-text-light);
    background: var(--color-bg-section);
    font-style: italic;
}

/* ===== ARTICLE LAYOUT (content + sidebar) ===== */

.article-section {
    padding: 40px 0 60px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.article-content {
    min-width: 0;
}

/* ===== ARTICLE SIDEBAR ===== */

.article-sidebar {
    position: sticky;
    top: 100px;
}

/* Sidebar: Seneste Nyheder */
.sidebar-latest h3,
.sidebar-trending h3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.latest-posts-list {
    list-style: none;
    padding: 0;
}

.latest-posts-list li {
    border-bottom: 1px solid var(--color-border);
}

.latest-posts-list li:last-child {
    border-bottom: none;
}

.latest-posts-list li a {
    display: block;
    padding: 12px 0;
    transition: var(--transition);
}

.latest-posts-list li a:hover {
    padding-left: 6px;
}

.latest-post-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.4;
    margin-bottom: 3px;
    transition: color 0.2s;
}

.latest-posts-list li a:hover .latest-post-title {
    color: var(--color-red);
}

.latest-post-time {
    display: block;
    font-size: 12px;
    color: var(--color-text-light);
}

/* Sidebar: Tendenser (Trending) */
.trending-list {
    list-style: none;
    padding: 0;
    counter-reset: none;
}

.trending-list li {
    border-bottom: 1px solid var(--color-border);
}

.trending-list li:last-child {
    border-bottom: none;
}

.trending-list li a {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    transition: var(--transition);
}

.trending-list li a:hover {
    padding-left: 4px;
}

.trending-rank {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--color-red-light);
    color: var(--color-red);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trending-list li:first-child .trending-rank {
    background: var(--color-red);
    color: #fff;
}

.trending-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.4;
    transition: color 0.2s;
}

.trending-list li a:hover .trending-title {
    color: var(--color-red);
}

/* ===== FAQ SECTION (inside article content) ===== */

.article-faq {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 2px solid var(--color-border);
}

.article-faq-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.article-faq-item {
    border: 1px solid var(--color-border);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.article-faq-item:hover {
    border-color: var(--color-blue-light);
}

.article-faq-item.open {
    border-color: var(--color-red);
    box-shadow: 0 2px 12px rgba(226,0,25,0.08);
}

.article-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    text-align: left;
    font-family: inherit;
    line-height: 1.4;
    gap: 12px;
}

.article-faq-question:hover {
    color: var(--color-red);
}

.article-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.article-faq-item.open .article-faq-icon {
    transform: rotate(180deg);
    background: var(--color-red-light);
}

.article-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.article-faq-item.open .article-faq-answer {
    max-height: 500px;
}

.article-faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* ===== POST NAVIGATION ===== */

.post-nav {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--color-border);
}

.post-nav-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.post-nav-link {
    padding: 18px 22px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: var(--transition);
    display: block;
}

.post-nav-link:hover {
    border-color: var(--color-red);
    box-shadow: var(--shadow-md);
}

.post-nav-prev { text-align: left; }
.post-nav-next { text-align: right; }

.post-nav-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-nav-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.4;
}

.post-nav-link:hover .post-nav-title {
    color: var(--color-red);
}

/* ===== RELATED POSTS ===== */

.related-posts-section {
    padding: 60px 0 80px;
    background: var(--color-bg-section);
}

.related-posts-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 36px;
}

/* ===== SEARCH RESULTS ===== */

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-result-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 28px 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-result-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-red);
}

.search-result-type {
    display: inline-block;
    background: var(--color-blue-pale);
    color: var(--color-blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.search-result-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.35;
}

.search-result-title a {
    color: inherit;
    transition: color 0.2s;
}

.search-result-title a:hover {
    color: var(--color-red);
}

.search-result-excerpt {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.65;
    margin-bottom: 12px;
}

.search-result-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--color-text-light);
}

.search-result-link {
    font-weight: 600;
    color: var(--color-red);
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.search-result-link:hover {
    gap: 8px;
}

/* ===== BLOG RESPONSIVE ===== */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .sidebar-widget {
        margin-bottom: 0;
    }
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }
    .article-sidebar .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 40px 0 60px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-grid-3 {
        grid-template-columns: 1fr;
    }
    .blog-card-body {
        padding: 18px 20px 22px;
    }
    .blog-card-title {
        font-size: 16px;
    }
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
    .article-title {
        font-size: 26px;
        letter-spacing: -0.5px;
    }
    .article-meta {
        gap: 10px;
    }
    .article-meta-item {
        font-size: 13px;
    }
    .article-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    .article-hero-fig {
        border-radius: 10px;
    }
    .article-faq-question {
        font-size: 14px;
        padding: 15px 18px;
    }
    .article-faq-answer-inner {
        padding: 0 18px 16px;
        font-size: 13px;
    }
    .post-nav-inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .post-nav-next {
        text-align: left;
    }
    .related-posts-section {
        padding: 40px 0 60px;
    }
    .related-posts-title {
        font-size: 22px;
        margin-bottom: 24px;
    }
    .search-result-item {
        padding: 20px;
    }
    .search-result-title {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 28px 0 40px;
    }
    .blog-card-body {
        padding: 14px 16px 18px;
    }
    .blog-card-title {
        font-size: 15px;
    }
    .article-title {
        font-size: 22px;
    }
    .article-meta-item {
        font-size: 12px;
    }
    .article-faq-question {
        font-size: 13px;
        padding: 12px 14px;
    }
    .related-posts-title {
        font-size: 18px;
    }
    .search-result-item {
        padding: 16px;
    }
    .search-result-title {
        font-size: 15px;
    }
}

/* ======================================================
   DIRECTORY STYLES
   ====================================================== */

/* Stats bar */
.dir-stats-bar {
    background: var(--color-dark);
    color: #fff;
    padding: 20px 0;
}
.dir-stats-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    text-align: center;
}
.dir-stat-item strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--color-red);
}
.dir-stat-item span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Table of contents */
.dir-toc {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px 30px;
    max-width: 700px;
    margin: 0 auto;
}
.dir-toc h2 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-dark);
}
.dir-toc-list {
    padding-left: 20px;
    margin: 0;
}
.dir-toc-list li {
    margin-bottom: 6px;
}
.dir-toc-list li a {
    color: var(--color-red);
    text-decoration: none;
    font-size: 15px;
}
.dir-toc-list li a:hover {
    text-decoration: underline;
}
.dir-toc-badge {
    background: var(--color-red);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 700;
}

/* Intro text */
.dir-intro-text {
    max-width: 800px;
    margin: 0 auto;
}
.dir-intro-text h2 {
    font-size: 22px;
    margin-bottom: 12px;
}
.dir-intro-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Comparison table */
.dir-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.dir-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 700px;
}
.dir-comparison-table thead {
    background: var(--color-dark);
    color: #fff;
}
.dir-comparison-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}
.dir-comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}
.dir-comparison-table tbody tr:hover {
    background: #f8f9fa;
}
.dir-table-link {
    color: var(--color-dark);
    font-weight: 600;
    text-decoration: none;
}
.dir-table-link:hover {
    color: var(--color-red);
}
.dir-badge-sm {
    background: var(--color-red);
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 4px;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 700;
}
.dir-rating-sm {
    font-weight: 700;
    color: var(--color-dark);
}
.dir-stars-sm {
    color: #f59e0b;
    font-size: 13px;
}

/* Section alternating bg */
.dir-section-alt {
    background: #f8f9fa;
}
.dir-retailer-section {
    padding: 40px 0;
}

/* Retailer card */
.dir-retailer-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    overflow: hidden;
}
.dir-section-alt .dir-retailer-card {
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.dir-retailer-header {
    padding: 28px 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    border-bottom: 1px solid #f0f0f0;
}
.dir-retailer-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dir-retailer-title-row h2 {
    font-size: 24px;
    margin: 0;
    color: var(--color-dark);
}
.dir-badge {
    background: var(--color-red);
    color: #fff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.dir-rating-block {
    text-align: right;
}
.dir-rating-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1;
}
.dir-rating-stars {
    margin-top: 4px;
}
.dir-rating-stars .star-filled {
    color: #f59e0b;
    font-size: 18px;
}
.dir-rating-stars .star-empty {
    color: #ddd;
    font-size: 18px;
}
.dir-review-count {
    font-size: 13px;
    color: #888;
    margin-left: 4px;
}

/* Body: main + sidebar */
.dir-retailer-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    padding: 30px;
}
.dir-retailer-desc {
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}
.dir-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.dir-cat-tag {
    background: #e9ecef;
    color: #555;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* Pros/Cons */
.dir-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.dir-pros h4, .dir-cons h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--color-dark);
}
.dir-pros ul, .dir-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dir-pros li {
    color: #16a34a;
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.5;
}
.dir-cons li {
    color: #dc2626;
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.5;
}

/* Info sidebar */
.dir-info-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e9ecef;
}
.dir-section-alt .dir-info-box {
    background: #fff;
}
.dir-info-box h4 {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--color-dark);
}
.dir-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.dir-info-list li {
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}
.dir-info-list li strong {
    color: var(--color-dark);
}
.dir-info-list li a {
    color: var(--color-red);
    text-decoration: none;
}
.dir-info-list li a:hover {
    text-decoration: underline;
}
.dir-visit-btn {
    display: block;
    text-align: center;
    background: var(--color-red);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}
.dir-visit-btn:hover {
    background: #c1121f;
    color: #fff;
}

/* Reviews section */
.dir-reviews-section {
    padding: 24px 30px 30px;
    border-top: 1px solid #f0f0f0;
}
.dir-reviews-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--color-dark);
}
.dir-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.dir-review-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 18px;
    border: 1px solid #e9ecef;
}
.dir-section-alt .dir-review-card {
    background: #fff;
}
.dir-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.dir-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.dir-review-header strong {
    font-size: 14px;
    display: block;
    color: var(--color-dark);
}
.dir-review-date {
    font-size: 12px;
    color: #999;
}
.dir-review-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 6px;
}
.dir-review-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* ======= DIRECTORY RESPONSIVE ======= */
@media (max-width: 1024px) {
    .dir-retailer-body {
        grid-template-columns: 1fr;
    }
    .dir-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .dir-stats-grid {
        flex-wrap: wrap;
        gap: 20px;
    }
    .dir-stat-item strong {
        font-size: 22px;
    }
    .dir-retailer-header {
        flex-direction: column;
        padding: 20px;
    }
    .dir-retailer-title-row h2 {
        font-size: 20px;
    }
    .dir-rating-block {
        text-align: left;
    }
    .dir-rating-number {
        font-size: 26px;
    }
    .dir-retailer-body {
        padding: 20px;
    }
    .dir-pros-cons {
        grid-template-columns: 1fr;
    }
    .dir-reviews-grid {
        grid-template-columns: 1fr;
    }
    .dir-reviews-section {
        padding: 20px;
    }
    .dir-comparison-table {
        font-size: 13px;
    }
    .dir-toc {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .dir-stat-item strong {
        font-size: 18px;
    }
    .dir-retailer-header {
        padding: 16px;
    }
    .dir-retailer-title-row h2 {
        font-size: 17px;
    }
    .dir-rating-number {
        font-size: 22px;
    }
    .dir-retailer-body {
        padding: 16px;
    }
    .dir-review-card {
        padding: 14px;
    }
    .dir-comparison-table {
        font-size: 12px;
    }
    .dir-toc {
        padding: 16px;
    }
}

/* ===== CUSTOM SVG ICONS ===== */
.lf-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    background-color: currentColor;
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}
.lf-icon-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.lf-icon-arrow-right {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
}
.lf-icon-arrow-left {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5M12 19l-7-7 7-7'/%3E%3C/svg%3E");
}
.lf-icon-chevron-down {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

/* Valoraciones */
.lf-icon-star-filled {
    background-color: #f5a623;
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000' stroke='%23000' stroke-width='1'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01z'/%3E%3C/svg%3E");
}
.lf-icon-star-empty {
    background-color: #f5a623;
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01z'/%3E%3C/svg%3E");
}

/* Estado */
.lf-icon-check {
    background-color: #22c55e;
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}
.lf-icon-cross {
    background-color: #ef4444;
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
}
.lf-icon-info {
    background-color: #4f84c4;
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4M12 8h.01'/%3E%3C/svg%3E");
}

/* Categorías de producto */
.lf-icon-chair {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 11V5a2 2 0 012-2h10a2 2 0 012 2v6'/%3E%3Cpath d='M4 11h16a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1v-2a1 1 0 011-1z'/%3E%3Cpath d='M6 15v5M18 15v5M8 15v2M16 15v2'/%3E%3C/svg%3E");
}
.lf-icon-desk {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='3' rx='1'/%3E%3Cpath d='M4 10v8M20 10v8M8 10v5h8v-5'/%3E%3C/svg%3E");
}
.lf-icon-printer {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9V2h12v7'/%3E%3Crect x='3' y='9' width='18' height='8' rx='1'/%3E%3Cpath d='M6 17v4h12v-4'/%3E%3Ccircle cx='17' cy='13' r='1' fill='%23000'/%3E%3C/svg%3E");
}
.lf-icon-garden {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22V10'/%3E%3Cpath d='M8 22h8'/%3E%3Cpath d='M12 10c-3 0-6-2-6-5 0-2 2-3 4-2 .5-2 3.5-2 4 0 2-1 4 0 4 2 0 3-3 5-6 5z'/%3E%3Cpath d='M7 15c-2 0-3 1-3 2h4'/%3E%3Cpath d='M17 15c2 0 3 1 3 2h-4'/%3E%3C/svg%3E");
}
.lf-icon-scooter {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='18' r='3'/%3E%3Cpath d='M18 15V8l-4-2H9l-1 4h5'/%3E%3Cpath d='M9 18H6'/%3E%3C/svg%3E");
}
.lf-icon-recycle {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7.5 4.5L12 2l4.5 2.5'/%3E%3Cpath d='M4 9l-2 5h4'/%3E%3Cpath d='M20 9l2 5h-4'/%3E%3Cpath d='M9.5 21l-2-5 3.5-2'/%3E%3Cpath d='M14.5 21l2-5-3.5-2'/%3E%3Cpath d='M12 2v6l-4 2'/%3E%3Cpath d='M12 8l4 2'/%3E%3C/svg%3E");
}
.lf-icon-gift {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='8' width='18' height='4' rx='1'/%3E%3Cpath d='M12 8v13'/%3E%3Crect x='5' y='12' width='14' height='9' rx='1'/%3E%3Cpath d='M7.5 8C7.5 8 7 4 9.5 4s3 2.5 2.5 4'/%3E%3Cpath d='M16.5 8c0 0 .5-4-2-4s-3 2.5-2.5 4'/%3E%3C/svg%3E");
}
.lf-icon-christmas {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l-4 6h2l-3 5h2l-4 7h14l-4-7h2l-3-5h2z'/%3E%3Cpath d='M12 22v-2'/%3E%3Crect x='10' y='20' width='4' height='2' rx='.5'/%3E%3C/svg%3E");
}
.lf-icon-party {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5.8 11.3L2 22l10.7-3.8'/%3E%3Cpath d='M4 3l.7 2M8 2l-.3 2M2 8l2-.3'/%3E%3Cpath d='M15 4l1 1M19 3l.5 1.5M21 7l-1.5.5'/%3E%3Cpath d='M12 12l5-5'/%3E%3C/svg%3E");
}

/* Contacto/Info */
.lf-icon-pin {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}
.lf-icon-phone {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
}
.lf-icon-envelope {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M22 4l-10 8L2 4'/%3E%3C/svg%3E");
}
.lf-icon-globe {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 014 10 15.3 15.3 0 01-4 10 15.3 15.3 0 01-4-10 15.3 15.3 0 014-10z'/%3E%3C/svg%3E");
}
.lf-icon-newspaper {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16a2 2 0 012 2v12a2 2 0 01-2 2H4a2 2 0 01-2-2V6a2 2 0 012-2z'/%3E%3Cpath d='M6 8h4v4H6z'/%3E%3Cpath d='M14 8h4M14 12h4M6 16h12'/%3E%3C/svg%3E");
}
.lf-icon-calendar {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
}
.lf-icon-clock {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
}
.lf-icon-building {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='2' width='16' height='20' rx='1'/%3E%3Cpath d='M9 22V12h6v10'/%3E%3Crect x='8' y='6' width='3' height='2' rx='.5'/%3E%3Crect x='13' y='6' width='3' height='2' rx='.5'/%3E%3C/svg%3E");
}
.lf-icon-lightbulb {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6M10 22h4'/%3E%3Cpath d='M12 2a7 7 0 00-4 12.7V17h8v-2.3A7 7 0 0012 2z'/%3E%3C/svg%3E");
}
.lf-icon-tag {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 01-2.83 0L2 12V2h10l8.59 8.59a2 2 0 010 2.82z'/%3E%3Ccircle cx='7' cy='7' r='1.5' fill='%23000'/%3E%3C/svg%3E");
}
.lf-icon-sparkle {
    background-color: #f5a623;
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000' stroke='%23000' stroke-width='1'%3E%3Cpath d='M12 2l2.4 7.2L22 12l-7.6 2.8L12 22l-2.4-7.2L2 12l7.6-2.8z'/%3E%3C/svg%3E");
}
.lf-icon-heart {
    background-color: #e20019;
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000' stroke='%23000' stroke-width='1'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E");
}
.lf-icon-money {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='6' width='20' height='12' rx='2'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M2 10h2M20 10h2M2 14h2M20 14h2'/%3E%3C/svg%3E");
}
.lf-icon-briefcase {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='14' rx='2'/%3E%3Cpath d='M16 7V5a2 2 0 00-2-2h-4a2 2 0 00-2 2v2'/%3E%3Cpath d='M2 13h20'/%3E%3C/svg%3E");
}
.lf-icon-user {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}
.lf-icon-chat {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z'/%3E%3C/svg%3E");
}
.lf-icon-lock {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4'/%3E%3C/svg%3E");
}
.lf-icon-unlock {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 019.9-1'/%3E%3C/svg%3E");
}
.lf-icon-document {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z'/%3E%3Cpath d='M14 2v6h6M8 13h8M8 17h8M8 9h2'/%3E%3C/svg%3E");
}
.lf-icon-package {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16.5 9.4l-9-5.19M21 16V8a2 2 0 00-1-1.73l-7-4a2 2 0 00-2 0l-7 4A2 2 0 003 8v8a2 2 0 001 1.73l7 4a2 2 0 002 0l7-4A2 2 0 0021 16z'/%3E%3Cpath d='M3.27 6.96L12 12.01l8.73-5.05M12 22.08V12'/%3E%3C/svg%3E");
}
.lf-icon-car {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17h14a2 2 0 002-2v-3a2 2 0 00-1.2-1.8L17 8.5 15 4H9L7 8.5 4.2 10.2A2 2 0 003 12v3a2 2 0 002 2z'/%3E%3Ccircle cx='7.5' cy='17' r='2'/%3E%3Ccircle cx='16.5' cy='17' r='2'/%3E%3C/svg%3E");
}
.lf-icon-trash {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18M8 6V4a2 2 0 012-2h4a2 2 0 012 2v2'/%3E%3Cpath d='M19 6l-1 14a2 2 0 01-2 2H8a2 2 0 01-2-2L5 6'/%3E%3Cpath d='M10 11v6M14 11v6'/%3E%3C/svg%3E");
}
.lf-icon-palm {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22V10'/%3E%3Cpath d='M12 10c-4-4-9-2-9 1s3 3 5 2'/%3E%3Cpath d='M12 10c4-4 9-2 9 1s-3 3-5 2'/%3E%3Cpath d='M12 10c-1-5 2-8 4-8s3 2 2 5'/%3E%3Cpath d='M12 10c1-5-2-8-4-8s-3 2-2 5'/%3E%3C/svg%3E");
}
.lf-icon-mobile {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='2' width='14' height='20' rx='2'/%3E%3Cpath d='M12 18h.01'/%3E%3C/svg%3E");
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    padding: 20px 0;
    animation: cookieSlideUp 0.4s ease;
}

.cookie-banner.show {
    display: block;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 13px;
    color: var(--color-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--color-red);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--color-red);
    color: var(--color-white);
}

.cookie-btn-accept:hover {
    background: #c0392b;
}

.cookie-btn-necessary {
    background: var(--color-bg);
    color: var(--color-secondary);
    border: 1px solid var(--color-border);
}

.cookie-btn-necessary:hover {
    background: var(--color-border);
}

.cookie-btn-settings {
    background: none;
    color: var(--color-secondary);
    font-size: 13px;
    padding: 10px 12px;
    text-decoration: underline;
}

/* Cookie settings panel */
.cookie-settings {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.cookie-settings.show {
    display: block;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-bg);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info {
    flex: 1;
}

.cookie-option-info strong {
    font-size: 14px;
    color: var(--color-primary);
}

.cookie-option-info p {
    font-size: 12px;
    color: #888;
    margin: 2px 0 0;
}

.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 16px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ccc;
    border-radius: 24px;
    transition: 0.3s;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--color-red);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background: var(--color-red);
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .cookie-inner {
        flex-direction: column;
        gap: 14px;
    }
    .cookie-actions {
        width: 100%;
        justify-content: stretch;
    }
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
