/* Design & development by Axira.eu – https://axira.eu */


:root {
    --rbd-red: #e00000;
    --rbd-mint: #B5E3D8; /* diskret accentfärg */
    --bg: #ffffff;
    --bg-alt: #f6f6f6;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --border-soft: #e5e5e5;
    --radius-lg: 16px;
    --radius-md: 10px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text-main);
}

/* ===== Layout ===== */

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.4rem 1.2rem;
}

/* ===== Top Bar ===== */

.top-bar {
    background: #111111;
    color: #f5f5f5;
    font-size: 0.78rem;
}

.top-bar-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.7rem;
    padding-block: 0.35rem;
}

.top-pill {
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(181, 227, 216, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.68rem;
}

/* ===== Header ===== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
}

.header-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 34px;
    display: block;
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-main);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

/* Mint hover (diskret) på vanliga nav-länkar */
.main-nav a:hover {
    background: rgba(181, 227, 216, 0.35);
    box-shadow: 0 0 0 3px rgba(181, 227, 216, 0.22);
}

.nav-cta {
    background: var(--rbd-red);
    color: #fff !important;
}

/* CTA ska fortsätta bete sig som tidigare */
.nav-cta:hover {
    background: var(--rbd-red);
    box-shadow: none;
}

/* ===== Hero ===== */

.hero {
    padding-top: 1.5rem;
    padding-bottom: 1.8rem;
}

.hero-grid {
    display: grid;
    gap: 1.8rem;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: var(--rbd-red);
    margin: 0 0 0.4rem;
}

.hero-text h1 {
    font-size: 1.9rem;
    line-height: 1.15;
    margin: 0 0 0.9rem;
}

.hero-text p {
    margin: 0 0 1.1rem;
    color: var(--text-muted);
    max-width: 38rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
}

/* Trust list */
.hero-trust {
    display: grid;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
}

.hero-trust-item .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rbd-mint);
}

/* Hero Panel */

.hero-panel {
    background: radial-gradient(
        circle at top left,
        rgba(181, 227, 216, 0.55),
        #ffffff
    );
    border-radius: 22px;
    padding: 1.1rem 1.15rem 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(181, 227, 216, 0.45);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

/* Mint hover-glow (tydligt men inte overboard) */
.hero-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(181, 227, 216, 0.9);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.06),
        0 0 0 6px rgba(181, 227, 216, 0.25);
}

.hero-panel::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: rgba(224, 0, 0, 0.045);
    top: -60px;
    right: -30px;
}

.hero-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.panel-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.panel-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(181, 227, 216, 0.45);
    color: #0f3b35;
}

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

.hero-panel-body h2 {
    margin: 0 0 0.45rem;
    font-size: 1.1rem;
}

.hero-panel-body p {
    margin: 0 0 0.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-panel-body ul {
    margin: 0 0 0.6rem;
    padding-left: 1.1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-ghost-link {
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--rbd-red);
    font-weight: 600;
}

/* ===== Sections ===== */

.section {
    padding: 1.5rem 0;
}

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

.section-header h2 {
    margin: 0 0 0.3rem;
}

.section-header p {
    margin: 0;
    color: var(--text-muted);
}

/* Mint-underline i rubriker (diskret men märks) */
.section-header h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    border-radius: 999px;
    margin-top: 0.45rem;
    background: var(--rbd-mint);
    opacity: 0.9;
}

/* ===== About ===== */

.about-grid {
    display: grid;
    gap: 1.4rem;
}

.about-highlights {
    display: grid;
    gap: 0.9rem;
}

.info-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid rgba(181, 227, 216, 0.35);
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: var(--rbd-mint);
    border-radius: 10px 10px 0 0;
}

/* Mint hover-glow på info-korten */
.info-card:hover {
    transform: translateY(-2px);
    border-color: rgba(181, 227, 216, 0.9);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.06),
        0 0 0 6px rgba(181, 227, 216, 0.22);
}

.info-card h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.info-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== Product Grid ===== */

.product-grid {
    display: grid;
    gap: 1rem;
}

.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.1rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 0.55rem;
    transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
    border: 1px solid transparent;
}

/* Mint hover-glow för tydlighet */
.product-card:hover {
    transform: translateY(-2px);
    border-color: rgba(181, 227, 216, 0.9);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.06),
        0 0 0 6px rgba(181, 227, 216, 0.20);
}

/* Header (icon + kategori + ev. badge) */
.product-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.1rem;
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.product-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(181, 227, 216, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: box-shadow 0.15s ease;
}

/* Extra liten “mint pop” när man hovrar kortet */
.product-card:hover .product-icon {
    box-shadow: 0 0 0 4px rgba(181, 227, 216, 0.35);
}

.product-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--rbd-red);
    background: rgba(224, 0, 0, 0);
    padding: 0.1rem 0;
}

.product-badge {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: var(--rbd-red);
    color: #ffffff;
}

.product-card--promo {
    border: 1px solid rgba(224, 0, 0, 0.12);
}

/* Text i kort */
.product-card h3 {
    margin: 0;
    font-size: 1.05rem;
}

.product-desc {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-meta {
    list-style: none;
    padding: 0;
    margin: 0.1rem 0 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.product-meta li::before {
    content: "• ";
    color: var(--rbd-red);
}

/* Footer i kort (liten note + länk) */
.product-footer {
    border-top: 1px dashed var(--border-soft);
    padding-top: 0.45rem;
    margin-top: 0.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.product-note {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.product-link {
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--rbd-red);
    font-weight: 600;
    align-self: flex-start;
    transition: color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

/* Mint hover på produktlänk */
.product-link:hover {
    color: #0f3b35;
    background: rgba(181, 227, 216, 0.35);
    box-shadow: 0 0 0 3px rgba(181, 227, 216, 0.22);
    border-radius: 999px;
    padding: 0.12rem 0.45rem;
}

/* ===== Contact ===== */

.contact-grid {
    display: grid;
    gap: 1.4rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0;
    font-size: 0.9rem;
}

.contact-list a {
    color: var(--rbd-red);
}

.contact-form {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 1rem;
    display: grid;
    gap: 0.7rem;
    border: 1px solid rgba(181, 227, 216, 0.35);
}

.contact-form label {
    font-size: 0.85rem;
    display: grid;
    gap: 0.25rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.55rem 0.6rem;
    border-radius: 8px;
    border: 1px solid var(--border-soft);
    font: inherit;
    outline: none;
}

/* Mint-fokus (tydligt men diskret) */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(181, 227, 216, 0.9);
    box-shadow: 0 0 0 4px rgba(181, 227, 216, 0.35);
}

/* ===== Buttons ===== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease,
                color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.btn-primary {
    background: var(--rbd-red);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-soft);
    color: var(--text-main);
}

/* Mint hover på outline-knapp (CTA-rött behålls för primary) */
.btn-outline:hover {
    border-color: rgba(181, 227, 216, 0.9);
    background: rgba(181, 227, 216, 0.25);
    box-shadow: 0 0 0 4px rgba(181, 227, 216, 0.20);
}

/* ===== Footer ===== */

.site-footer {
    background: #202020;
    color: #f5f5f5;
    padding: 1.8rem 0 2rem;
    margin-top: 1.5rem;
    border-top: 3px solid var(--rbd-red);
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    gap: 1.4rem;
}

.footer-col h3 {
    margin-top: 0;
    color: #ffffff;
}

.footer-links {
    display: grid;
    gap: 0.25rem;
}

.footer-links a {
    color: #eeeeee;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--rbd-red);
}

.footer-news p {
    margin: 0 0 0.7rem;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1.5fr auto;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.5rem 0.6rem;
    border-radius: 999px;
    border: 1px solid #444444;
    background: #111111;
    color: #fff;
}

.site-footer .btn-primary {
    font-size: 0.85rem;
    padding-inline: 0.9rem;
}

/* ===== Responsive Breakpoints ===== */

@media (min-width: 640px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-grid {
        grid-template-columns: 1.1fr 1fr;
    }
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.6fr);
        align-items: center;
    }

    .about-grid {
        grid-template-columns: 1.4fr 1.6fr;
    }

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

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1.2fr;
    }
}
