/* nacani-blog-blocks.css v1.0 — Mobile-first */

/* ── Hinweis-Box ──────────────────────────────────────────────── */
.nb-notice {
    padding: 16px 20px;
    border-radius: 4px;
    margin: 24px 0;
}
.nb-notice__title {
    font-family: JosefineSans, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #3f3638;
}
.nb-notice__text {
    font-family: JosefineSansLight, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #3f3638;
}
.nb-notice__text p:last-child { margin-bottom: 0; }
.nb-notice__cta {
    display: inline-block;
    margin-top: 12px;
    font-family: JosefineSans, sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BD6F89;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.nb-notice__cta:hover { color: #a95d76; }

/* ── Produkt-Teaser ───────────────────────────────────────────── */
.nb-product-teaser {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    margin: 24px 0;
    background: #f5f3f1;
    border-radius: 4px;
}
.nb-pt__image-wrap {
    flex-shrink: 0;
}
.nb-pt__image-wrap img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 4px;
}
.nb-pt__name {
    font-family: JosefineSans, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #3f3638;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nb-pt__price {
    font-family: JosefineSans, sans-serif;
    font-size: 15px;
    color: #BD6F89;
    margin-bottom: 8px;
}
.nb-pt__desc {
    font-family: JosefineSansLight, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #8a7e79;
    margin-bottom: 12px;
}
a.nb-pt__button {
    display: inline-block;
    background: #BD6F89;
    color: #fff !important;
    font-family: JosefineSans, sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 12px 20px;
    text-decoration: none;
    border: none;
    transition: background .2s;
}
a.nb-pt__button:hover { background: #a95d76; color: #fff !important; }

@media (min-width: 768px) {
    .nb-product-teaser {
        flex-direction: row;
        align-items: center;
        gap: 24px;
        padding: 24px;
    }
    .nb-pt__image-wrap { width: 180px; }
}

/* ── FAQ Akkordeon ────────────────────────────────────────────── */
.nb-faq {
    margin: 24px 0;
}
.nb-faq__item {
    border-bottom: 1px solid #e6e6e6;
}
.nb-faq__item:first-child {
    border-top: 1px solid #e6e6e6;
}
.nb-faq__question {
    font-family: JosefineSans, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #3f3638;
    padding: 16px 32px 16px 0;
    cursor: pointer;
    position: relative;
    list-style: none;
    letter-spacing: 0.5px;
}
.nb-faq__question::-webkit-details-marker { display: none; }
.nb-faq__question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    color: #BD6F89;
    transition: transform .2s;
}
.nb-faq__item[open] > .nb-faq__question::after {
    content: '−';
}
.nb-faq__answer {
    font-family: JosefineSansLight, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #3f3638;
    padding: 0 0 16px;
}
.nb-faq__answer p:last-child { margin-bottom: 0; }

/* ── CTA Banner ───────────────────────────────────────────────── */
.nb-cta {
    padding: 32px 24px;
    margin: 32px 0;
    border-radius: 4px;
    text-align: center;
}
.nb-cta--with-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: left;
}
.nb-cta__image img {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
}
.nb-cta__heading {
    font-family: PlayfairDisplay, serif;
    font-size: 18px;
    font-weight: 400;
    color: #BD6F89;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.nb-cta__text {
    font-family: JosefineSansLight, sans-serif;
    font-size: 15px;
    color: #3f3638;
    line-height: 1.5;
    margin: 0 0 16px;
}
a.nb-cta__button {
    display: inline-block;
    background: #BD6F89;
    color: #fff !important;
    font-family: JosefineSans, sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 24px;
    text-decoration: none;
    border: none;
    transition: background .2s;
}
a.nb-cta__button:hover { background: #a95d76; color: #fff !important; }

@media (min-width: 768px) {
    .nb-cta { padding: 40px 32px; }
    .nb-cta--with-image {
        flex-direction: row;
        gap: 32px;
    }
    .nb-cta__heading { font-size: 20px; letter-spacing: 6.7px; }
}

/* ── Zitat ────────────────────────────────────────────────────── */
.nb-quote {
    margin: 32px 0;
    padding: 24px 24px 24px 28px;
    border-left: 3px solid #BD6F89;
    background: #fdf5f7;
}
.nb-quote__text {
    font-family: PlayfairDisplay, serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: #3f3638;
    margin: 0;
}
.nb-quote__author {
    display: block;
    margin-top: 12px;
    font-family: JosefineSansLight, sans-serif;
    font-size: 13px;
    color: #8a7e79;
    font-style: normal;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .nb-quote { padding: 32px 32px 32px 36px; }
    .nb-quote__text { font-size: 20px; }
}

/* ── Produkt-Slider ───────────────────────────────────────────── */
.nb-product-slider {
    margin: 40px 0;
    overflow: hidden;
}
.nb-product-slider__heading {
    font-family: PlayfairDisplay, serif;
    font-size: 18px;
    font-weight: 400;
    color: #BD6F89;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 20px;
}
.nb-product-slider .swiper-slide {
    height: auto;
    display: flex;
}
.nb-ps-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-decoration: none;
    text-align: center;
    padding: 16px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    transition: box-shadow .2s;
}
.nb-ps-card__price {
    margin-top: auto;
}
.nb-ps-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.nb-ps-card__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    margin-bottom: 12px;
}
.nb-ps-card__name {
    font-family: JosefineSans, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3f3638;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px;
}
.nb-ps-card__price {
    font-family: JosefineSans, sans-serif;
    font-size: 14px;
    color: #BD6F89;
}
.nb-product-slider .swiper-button-prev,
.nb-product-slider .swiper-button-next {
    color: #BD6F89 !important;
    width: 32px;
    height: 32px;
}
.nb-product-slider .swiper-button-prev::after,
.nb-product-slider .swiper-button-next::after {
    font-size: 16px;
}

@media (min-width: 768px) {
    .nb-product-slider__heading {
        font-size: 20px;
        letter-spacing: 6.7px;
        margin-bottom: 24px;
    }
}

/* ── Variant Card (Warenkorb-Modus) ──────────────────────────── */
.nb-ps-card--variant {
    text-align: center;
    padding: 16px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    transition: box-shadow .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nb-ps-card--variant:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.nb-ps-card__parent {
    font-family: JosefineSansLight, sans-serif;
    font-size: 11px;
    color: #8a7e79;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
button.nb-ps-card__cart-btn,
a.nb-ps-card__cart-btn {
    display: inline-block;
    margin-top: auto;
    padding: 10px 16px;
    background: #BD6F89;
    color: #fff !important;
    font-family: JosefineSans, sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
    margin-top: 12px;
}
button.nb-ps-card__cart-btn:hover,
a.nb-ps-card__cart-btn:hover {
    background: #a95d76;
    color: #fff !important;
}
.nb-ps-card__cart-btn--loading {
    opacity: .6;
    pointer-events: none;
}
.nb-ps-card__cart-btn--added {
    background: #9fb7ae !important;
}

/* ── Editor Preview (Gutenberg Backend) ──────────────────────── */
.nb-ps-editor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.nb-ps-editor-grid .nb-ps-card {
    height: 100%;
}
.nb-ps-editor-grid .nb-ps-card__image img {
    max-height: 150px;
    object-fit: contain;
}
