/* ═══════════════════════════════════════════════════════════
   Den Lille Hagen – Fjære
   Clean Grey & Light Design
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Lato:wght@400;500;600;700&display=swap');

/* ─── CSS Variables ─── */
:root {
    /* Brand colors */
    --brand-teal:        #AFC7B5;   /* lys grønn */
    --brand-teal-mid:    #8AAF9A;   /* mørkere grønn */
    --brand-teal-light:  #C8DAD0;   /* lyseste grønn */
    --brand-lavender:    #C8B6E2;   /* lavendel */
    --brand-gold:        #E6C068;   /* myk honning */
    --brand-gold-light:  #EDD080;
    --brand-gold-pale:   #F5E8C0;

    /* Backgrounds */
    --bg-parchment:      #F7F4EF;   /* krem */
    --bg-parchment-dark: #EDE9E0;
    --bg-card:           #FFFFFF;
    --bg-input:          #FFFFFF;
    --bg-wood-dark:      #AFC7B5;
    --bg-wood-medium:    #8AAF9A;
    --bg-white:          #FFFFFF;

    /* Text */
    --text-heading: #5A4A3F;   /* brun */
    --text-body:    #5A4A3F;
    --text-light:   #F7F4EF;
    --text-muted:   #9A8A82;
    --text-link:    #8AAF9A;

    /* Accents */
    --accent-green:       #AFC7B5;
    --accent-green-hover: #8AAF9A;
    --accent-gold:        #E6C068;
    --accent-gold-light:  #EDD080;
    --accent-red:         #C94545;

    /* Borders */
    --border-card:  #DDD8CE;
    --border-input: #D0C8BC;
    --border-focus: #AFC7B5;

    /* Shadows */
    --shadow-card:    0 2px 12px rgba(90,74,63,0.08);
    --shadow-button:  0 2px 8px rgba(90,74,63,0.15);
    --shadow-image:   0 4px 14px rgba(90,74,63,0.10);
    --shadow-hero-egg: 0 8px 32px rgba(90,74,63,0.25);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Lora', Georgia, serif;
    --font-ui:      'Lato', 'Open Sans', Arial, sans-serif;

    /* Spacing */
    --content-max-width: 1140px;
    --card-radius:  12px;
    --button-radius: 6px;
    --image-radius:  8px;
}

/* ─── Reset ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ─── Body ─── */
body {
    font-family: var(--font-body);
    background-color: var(--bg-parchment);
    color: var(--text-body);
    line-height: 1.6;
    background-image: none;
}

a {
    color: var(--text-link);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--brand-teal-mid); }

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

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */

.site-header {
    background-color: var(--brand-teal);
    background-image: none;
    width: 100%;
    position: relative;
    z-index: 100;
    border-bottom: 3px solid var(--brand-gold);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 8px 24px;
    min-height: 90px;
}

/* ─── Logo ─── */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-light);
    flex-shrink: 0;
}

/* Opplastet logo — integrert i headeren */
.logo-uploaded {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    padding: 6px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
    transition: transform 0.2s ease, background 0.2s ease;
    display: block;
    box-sizing: border-box;
}
.logo:hover .logo-uploaded {
    transform: scale(1.06);
    background: rgba(255,255,255,0.26);
}

.logo-icon-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: visible;
}

.logo-bee-svg {
    width: 80px;
    height: 80px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
    transition: transform 0.2s ease;
}
.logo:hover .logo-bee-svg {
    transform: scale(1.08) rotate(-4deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
    color: var(--brand-gold);
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* ─── Navigation ─── */
.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav {
    display: flex;
    align-items: center;
    gap: 0;
}

nav a {
    color: rgba(247,244,239,0.95);
    padding: 10px 18px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.nav-active {
    color: var(--brand-gold-light);
    border-bottom-color: var(--brand-gold);
}

/* ─── Social Links ─── */
.social-links {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.social-links a {
    color: rgba(247,244,239,0.90);
    font-size: 18px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
}

.social-links a:hover {
    color: var(--brand-gold-light);
    background: rgba(255,255,255,0.20);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #AFC7B5 0%, #C8DAD0 40%, #EDE9E0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(90,74,63,0.4);
    font-style: italic;
    font-size: 14px;
}

/* Gradient overlay for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(90,74,63,0.50) 0%,
        rgba(90,74,63,0.28) 45%,
        rgba(90,74,63,0.06) 70%,
        transparent 100%
    );
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 70px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 480px;
}

/* Badge above heading */
.hero-badge {
    display: inline-block;
    background: var(--brand-teal);
    color: var(--text-heading);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.hero-text {
    max-width: 520px;
    z-index: 3;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    font-size: 42px;
    color: #FFFFFF;
    line-height: 1.25;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.hero-text p {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(247,244,239,0.95);
    line-height: 1.55;
    margin-bottom: 24px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-block;
    background: var(--brand-teal);
    color: var(--text-heading);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--button-radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 3px 10px rgba(175,199,181,0.40);
}
.btn-gold:hover {
    background: var(--brand-teal-mid);
    transform: translateY(-2px);
    color: var(--text-heading);
}

.btn-dark {
    display: inline-block;
    background: rgba(175,199,181,0.9);
    color: var(--text-heading);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border: 1px solid rgba(255,255,255,0.40);
    border-radius: var(--button-radius);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: var(--shadow-button);
    text-decoration: none;
}
.btn-dark:hover {
    background: var(--brand-teal-mid);
    transform: translateY(-2px);
    color: var(--text-light);
}

/* Right circular image */
.hero-egg {
    z-index: 3;
    flex-shrink: 0;
}

.hero-egg img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-hero-egg);
    border: 4px solid var(--brand-gold);
}

.hero-egg-placeholder {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8B6E2 0%, #DDD4F0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-hero-egg);
    border: 4px solid var(--brand-gold);
    color: rgba(90,74,63,0.55);
    font-style: italic;
    font-size: 13px;
}

.hero-egg-placeholder i {
    font-size: 52px;
    opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════════
   GOLD INFO STRIP
   ═══════════════════════════════════════════════════════════ */

.gold-strip {
    background: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 11px 24px;
    flex-wrap: wrap;
    overflow: hidden;
}

.gold-strip span {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.gold-strip i {
    font-size: 10px;
    opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY STRIP
   ═══════════════════════════════════════════════════════════ */

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.gallery-cell {
    overflow: hidden;
    position: relative;
}

.gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-cell:hover img {
    transform: scale(1.06);
}

/* ═══════════════════════════════════════════════════════════
   WOOD SEPARATOR STRIPS
   ═══════════════════════════════════════════════════════════ */

.wood-strip {
    width: 100%;
    height: 28px;
    background: var(--brand-teal);
    background-image: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ═══════════════════════════════════════════════════════════
   ORNAMENTAL DIVIDERS
   ═══════════════════════════════════════════════════════════ */

.ornament {
    text-align: center;
    margin: 8px 0 18px;
    color: var(--brand-gold);
    font-size: 13px;
    letter-spacing: 6px;
    opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════
   MAIN CONTENT — Two Column Layout
   ═══════════════════════════════════════════════════════════ */

.main-content {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 40px 20px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

.col-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.col-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION CARDS
   ═══════════════════════════════════════════════════════════ */

.section-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--card-radius);
    padding: 26px 30px;
    box-shadow: var(--shadow-card);
    border-top: 3px solid var(--brand-lavender);
}

.section-card h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-teal);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-card h2 .icon {
    font-size: 20px;
    color: var(--brand-gold);
}

/* ─── Section photo ─── */
.section-photo {
    width: 100%;
    border-radius: var(--image-radius);
    border: 2px solid var(--border-card);
    box-shadow: var(--shadow-image);
    overflow: hidden;
    margin-top: 14px;
}

.section-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.section-photo-placeholder {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, var(--bg-parchment-dark), var(--border-card));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-style: italic;
    font-size: 13px;
    flex-direction: column;
    gap: 8px;
}

.section-photo-placeholder i {
    font-size: 32px;
    opacity: 0.25;
}

.section-caption {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT TABLE / CHECKLIST
   ═══════════════════════════════════════════════════════════ */

.product-checklist { margin-top: 12px; }

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border-card);
    font-size: 15px;
    color: var(--text-body);
}

.check-item:last-child { border-bottom: none; }

.check-item .check {
    color: var(--brand-teal);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.check-item .check-name { flex: 1; }

.check-item .check-price {
    font-weight: 700;
    color: var(--brand-teal);
    font-size: 14px;
    white-space: nowrap;
    margin-right: 4px;
}

.check-item .check-status {
    font-size: 13px;
    color: var(--brand-teal-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════════════════ */

.products-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-image {
    height: 170px;
    overflow: hidden;
    background: var(--bg-parchment-dark);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.product-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-parchment-dark) 0%, #DDD8CE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    color: var(--brand-teal);
    font-size: 12px;
}

.product-image-placeholder i {
    font-size: 36px;
    opacity: 0.35;
}

.product-info {
    padding: 16px 16px 20px;
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-teal);
    margin-bottom: 5px;
}

.product-info p {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-price {
    display: block;
    font-family: var(--font-ui);
    font-weight: 700;
    color: var(--brand-teal);
    font-size: 17px;
    margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */

.btn-primary {
    display: inline-block;
    background: var(--brand-teal);
    color: #FFFFFF;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 26px;
    border: none;
    border-radius: var(--button-radius);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: var(--shadow-button);
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    background: var(--brand-teal-mid);
    transform: translateY(-1px);
    color: #FFFFFF;
}

.btn-primary-full {
    display: block;
    width: 100%;
    background: var(--brand-teal);
    color: #FFFFFF;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 24px;
    border: none;
    border-radius: var(--button-radius);
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: var(--shadow-button);
    text-decoration: none;
    text-align: center;
}

.btn-primary-full:hover {
    background: var(--brand-teal-mid);
    color: #FFFFFF;
}

/* Finn.no knapp – produktkort */
.btn-finn-full {
    display: block;
    width: 100%;
    background: #06BEFB;
    color: #FFFFFF;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border: none;
    border-radius: var(--button-radius);
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    text-align: center;
    margin-bottom: 8px;
}

.btn-finn-full:hover {
    background: #05AADF;
    color: #FFFFFF;
}

/* Finn.no merke – i sjekklisten */
.finn-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #06BEFB;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.finn-badge:hover {
    background: #05AADF;
    color: #FFFFFF;
}

.btn-outline-gold {
    display: inline-block;
    border: 2px solid var(--brand-gold);
    color: var(--brand-teal);
    background: transparent;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--button-radius);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline-gold:hover {
    background: var(--brand-gold);
    color: var(--brand-teal);
}

/* Admin buttons */
.btn {
    display: inline-block;
    background: var(--brand-teal);
    color: #FFFFFF;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border: none;
    border-radius: var(--button-radius);
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: var(--shadow-button);
}

.btn:hover { background: var(--brand-teal-mid); }

.btn-secondary {
    background: var(--border-card);
    color: var(--text-heading);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--brand-gold);
    color: var(--brand-teal);
}

.btn-danger { background: #8B3A3A; color: #fff; }
.btn-danger:hover { background: #A34A4A; }

.btn-sm { padding: 6px 14px; font-size: 13px; }

/* ═══════════════════════════════════════════════════════════
   SIDEBAR CARDS
   ═══════════════════════════════════════════════════════════ */

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--card-radius);
    padding: 24px;
    box-shadow: var(--shadow-card);
    border-top: 3px solid var(--brand-lavender);
}

.sidebar-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-teal);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card h3 .icon {
    font-size: 18px;
    color: var(--brand-gold);
}

/* ═══════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════ */

.form-group { margin-bottom: 14px; }

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 9px 13px;
    border: 1px solid var(--border-input);
    border-radius: 5px;
    background: var(--bg-input);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-heading);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 3px rgba(175,199,181,0.35);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT INFO BOX
   ═══════════════════════════════════════════════════════════ */

.contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--card-radius);
    padding: 22px;
    box-shadow: var(--shadow-card);
}

.contact-box h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-teal);
    margin-bottom: 14px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
}

.contact-detail .ci-icon {
    color: var(--brand-teal);
    font-size: 15px;
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.contact-detail a { color: var(--brand-teal); }
.contact-detail a:hover { color: var(--brand-gold); }

/* ═══════════════════════════════════════════════════════════
   ABOUT TEASER BOX (sidebar)
   ═══════════════════════════════════════════════════════════ */

.about-teaser-box {
    background: var(--brand-teal);
    border-radius: var(--card-radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.about-teaser-icon {
    font-size: 36px;
    color: var(--brand-gold);
    margin-bottom: 10px;
}

.about-teaser-img {
    margin: -24px -24px 16px -24px;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    overflow: hidden;
}

.about-teaser-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.about-teaser-box h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.about-teaser-box p {
    font-size: 14px;
    color: rgba(247,244,239,0.85);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE BANNER (Om oss page)
   ═══════════════════════════════════════════════════════════ */

.page-banner {
    background: var(--brand-teal);
    background-image: linear-gradient(135deg, #AFC7B5 0%, #8AAF9A 50%, #AFC7B5 100%);
    padding: 48px 24px;
    text-align: center;
    border-bottom: 3px solid var(--brand-gold);
}

.page-banner-inner h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.page-banner-inner h1 i {
    color: var(--brand-gold);
    margin-right: 10px;
}

.page-banner-breadcrumb {
    font-size: 14px;
    color: rgba(247,244,239,0.78);
}

.page-banner-breadcrumb a {
    color: var(--brand-gold-light);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */

.about-page-wrap {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 50px 24px 60px;
}

.about-page-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-page-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-image);
    border: 3px solid var(--brand-gold);
}

.about-page-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-page-content {
    padding-top: 10px;
}

.about-page-text {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.8;
    white-space: pre-wrap;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.site-footer {
    background: var(--brand-teal);
    background-image: none;
    padding: 30px 20px;
    text-align: center;
    border-top: 3px solid var(--brand-gold);
}

.footer-inner {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-inner p {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(247,244,239,0.88);
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    color: rgba(247,244,239,0.82);
    font-size: 20px;
    transition: color 0.2s ease;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.20);
}

.footer-social a:hover {
    color: var(--brand-gold-light);
    border-color: var(--brand-gold);
}

.footer-contact {
    font-size: 12px;
    color: rgba(247,244,239,0.60);
}

/* ═══════════════════════════════════════════════════════════
   FLASH MESSAGES
   ═══════════════════════════════════════════════════════════ */

.flash-messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flash {
    padding: 12px 20px;
    border-radius: var(--button-radius);
    font-family: var(--font-body);
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: flashIn 0.3s ease;
    max-width: 400px;
}

.flash-success {
    background: var(--brand-teal);
    color: #fff;
    border: 1px solid var(--brand-teal-mid);
}

.flash-error {
    background: #5A2020;
    color: #F8D7DA;
    border: 1px solid #7A2A2A;
}

@keyframes flashIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
    .hero-content-wrap {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
        min-height: auto;
    }
    .hero-text { max-width: 100%; }
    .hero-text h1 { font-size: 30px; }
    .hero-btns { justify-content: center; }
    .hero-egg img, .hero-egg-placeholder { width: 230px; height: 230px; }
    .two-col { grid-template-columns: 1fr; }
    .products-row { grid-template-columns: 1fr 1fr; }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 300px; }
    .about-page-inner { grid-template-columns: 1fr; }
    .about-page-image img { height: 280px; }
}

@media (max-width: 768px) {
    .header-inner { padding: 8px 15px; min-height: 70px; }
    .logo .logo-full { height: 64px; }
    .logo-title { font-size: 20px; }
    .logo-subtitle { font-size: 12px; }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--brand-teal);
        flex-direction: column;
        padding: 10px;
        border-bottom: 2px solid var(--brand-gold);
        z-index: 200;
    }
    nav.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .social-links { display: none; }
    .hero-text h1 { font-size: 26px; }
    .hero-text p { font-size: 16px; }
    .gold-strip { gap: 10px; padding: 8px 12px; }
    .gold-strip span { font-size: 11px; }
}

@media (max-width: 480px) {
    .products-row { grid-template-columns: 1fr; }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 200px; }
    .hero-egg img, .hero-egg-placeholder { width: 180px; height: 180px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .about-page-wrap { padding: 30px 16px 40px; }
}

/* ═══════════════════════════════════════════════════════════
   DESKTOP/MOBIL TOGGLE-KNAPP
   ═══════════════════════════════════════════════════════════ */

#view-toggle {
    display: none;
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 9999;
    background: var(--brand-teal);
    color: #fff;
    border: 2px solid var(--brand-gold);
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    gap: 6px;
    align-items: center;
}

@media (max-width: 768px) {
    #view-toggle { display: flex; }
}

/* Tving desktop-visning på mobil */
body.force-desktop #view-toggle i { content: ''; }

body.force-desktop .mobile-menu-btn { display: none !important; }
body.force-desktop nav {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
}
body.force-desktop .social-links { display: flex !important; }
body.force-desktop .two-col { grid-template-columns: 1fr 300px !important; }
body.force-desktop .products-row { grid-template-columns: repeat(3, 1fr) !important; }
body.force-desktop .gallery-strip { grid-template-columns: repeat(4, 1fr) !important; height: 260px !important; }
body.force-desktop .hero-content-wrap { flex-direction: row !important; }
body.force-desktop .hero-egg { display: block !important; }
body.force-desktop .hero-btns { flex-direction: row !important; }

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════ */

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
}

#lightbox.active {
    display: flex;
}

.lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(58,44,38,0.90);
    backdrop-filter: blur(4px);
}

.lb-img-wrap {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lb-img {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.6);
    border: 2px solid rgba(230,192,104,0.35);
    display: block;
}

.lb-counter {
    margin-top: 12px;
    color: rgba(230,192,104,0.85);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
}

.lb-close,
.lb-prev,
.lb-next {
    position: absolute;
    z-index: 2;
    background: rgba(175,199,181,0.82);
    border: 1px solid rgba(230,192,104,0.35);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lb-close {
    top: 18px;
    right: 22px;
    width: 44px;
    height: 44px;
    font-size: 28px;
}

.lb-prev,
.lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 34px;
}

.lb-prev { left: 18px; }
.lb-next { right: 18px; }

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
    background: var(--brand-teal-mid);
    border-color: var(--brand-gold);
    transform: translateY(-50%) scale(1.08);
}

.lb-close:hover {
    transform: scale(1.08);
}

@media (max-width: 600px) {
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-prev, .lb-next { width: 40px; height: 40px; font-size: 26px; }
}
