﻿:root {
    --cream: #f7f3ed;
    --cream-dark: #ede7dc;
    --cream-deeper: #e4dcd0;
    --ink: #2a2318;
    --ink-light: #6b5f4e;
    --accent: #b08d6a;
    --accent-light: #d4b896;
    --shadow-soft: 0 4px 20px rgba(42, 35, 24, 0.08);
    --shadow-hover: 0 12px 36px rgba(42, 35, 24, 0.15);
    --radius: 12px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--cream);
    color: var(--ink);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 243, 237, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-deeper);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-nav .brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-decoration: none;
    padding-right: 1rem;
}

.site-nav .brand span {
    color: var(--accent);
}

.nav-pills-custom {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-pill {
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border: 1px solid var(--cream-deeper);
    border-radius: 999px;
    background: transparent;
    color: var(--ink-light);
    cursor: pointer;
    transition: all 0.22s ease;
    text-decoration: none;
}

.nav-pill:hover, .nav-pill.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--cream-deeper);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
    background: var(--cream-dark);
    border-color: var(--accent-light);
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
    .site-nav {
        flex-wrap: wrap;
        padding: 0.85rem 1.25rem;
        gap: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-pills-custom {
        width: 100%;
        flex-direction: column;
        gap: 0.4rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.38s ease,
        opacity 0.3s ease;
        opacity: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-pills-custom.open {
        max-height: 600px;
        opacity: 1;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .nav-pill {
        text-align: left;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        width: 100%;
    }
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--cream-dark);
    border-bottom: 1px solid var(--cream-deeper);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--cream));
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: stretch;
    min-height: 340px;
}

.hero-carousel-col {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 3rem 5rem 2rem;
    text-align: center;
}

.hero-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--cream-deeper) 20%, var(--cream-deeper) 80%, transparent);
    flex-shrink: 0;
    align-self: stretch;
}

.hero-markt-col {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2.5rem 4rem 3rem;
    text-align: left;
}

@media (max-width: 767px) {
    .hero-inner {
        flex-direction: column;
    }

    .hero-carousel-col {
        padding: 3.5rem 1.5rem 2rem;
    }

    .hero-divider {
        width: auto;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--cream-deeper) 20%, var(--cream-deeper) 80%, transparent);
    }

    .hero-markt-col {
        padding: 2rem 1.5rem 4rem;
        text-align: center;
    }
}

.carousel-inner {
    display: grid;
}

.carousel-slide {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.7s ease;
    transition: opacity 0.7s ease;
    will-change: opacity;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-eyebrow {
    font-weight: bold;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1rem;
}

.hero-headline em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--ink-light);
    letter-spacing: 0.04em;
    max-width: 480px;
    margin: 0 auto 2rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cream-deeper);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 3px;
}

.content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
    position: relative;
    z-index: 1;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.section-header::after {
    content: '◇';
    position: absolute;
    bottom: -0.55em;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--accent-light);
    background: var(--cream);
    padding: 0 0.5rem;
    line-height: 1;
}

.section-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--cream-deeper);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--ink);
}

.section-dims {
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--ink-light);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
}

.bag-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(176, 141, 106, 0.1);
}

.bag-card:hover {
    transform: scale(1.035);
    box-shadow: var(--shadow-hover);
}

.bag-img-wrap {
    position: relative;
    background: var(--cream-dark);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.bag-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.bag-card:hover .bag-img-wrap img {
    transform: scale(1.06);
}

.bag-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--accent-light);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bag-img-placeholder i {
    font-size: 2rem;
}

.stock-badge {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(247, 243, 237, 0.92);
    color: var(--ink);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(176, 141, 106, 0.2);
}

.stock-badge.low {
    color: #c0622a;
    border-color: rgba(192, 98, 42, 0.3);
}

.stock-badge.high {
    color: #3a7d50;
    border-color: rgba(58, 125, 80, 0.3);
}

.bag-body {
    padding: 0.9rem 1rem 1rem;
}

.bag-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.bag-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bag-color {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-light);
}

.bag-qty {
    font-size: 0.7rem;
    color: var(--ink-light);
}

.bag-qty strong {
    color: var(--ink);
    font-weight: 500;
}

.site-footer {
    background: var(--cream-dark);
    border-top: 1px solid var(--cream-deeper);
    padding: 2rem;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--ink-light);
}

.over-mij-section {
    position: relative;
    background: var(--cream-dark);
    padding: 5rem 2rem;
}


.over-mij-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.over-mij-eyebrow {
    font-weight: bold;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.over-mij-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.over-mij-diamond {
    font-size: 0.6rem;
    color: var(--accent-light);
    letter-spacing: 0.8em;
    margin: 1rem 0 2rem;
    display: block;
}

.over-mij-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.over-mij-content p {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ink-light);
}

.over-mij-content p.over-mij-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--ink);
    line-height: 1.65;
}

.over-mij-signature {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--cream-deeper);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.over-mij-sign-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 300;
    color: var(--ink);
}

.over-mij-sign-sub {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

@media (max-width: 767px) {
    .over-mij-section {
        padding: 3.5rem 1.5rem;
    }

    .over-mij-signature {
        align-items: center;
        text-align: center;
    }
}

.fade-divider {
    height: 80px;
    display: flex;
    align-items: center;
}

.fade-divider.top {
    background: linear-gradient(to bottom, var(--cream) 0%, var(--cream-dark) 100%);
}

.divider-bar {
    border: none;
    border-top: 2px solid var(--cream-deeper);
    margin: 0;
    width: 100%;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.markt-intro {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 1.4rem;
    line-height: 1.7;
}

.markt-label {
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.9rem;
}

.markt-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.markt-list li {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    font-size: 1rem;
}

.markt-list li::before {
    content: '◆';
    font-size: 0.38rem;
    color: var(--accent-light);
    flex-shrink: 0;
    align-self: center;
}

.markt-date {
    font-weight: 500;
    color: var(--ink);
    min-width: 4rem;
    flex-shrink: 0;
    font-size: 1rem;
}

.markt-event {
    color: var(--ink-light);
    font-size: 1rem;
}

@media (max-width: 767px) {
    .markt-list li {
        justify-content: center;
    }
}