/**
 * ==========================================================
 * Page Styles
 * ==========================================================
 *
 * Styles für allgemeine Inhaltsseiten.
 *
 * Enthält:
 * - Standardseiten
 * - Kontaktseite
 * - WooCommerce Inhaltsseiten
 * - Archivseiten
 * - Suchergebnisse
 * - Fehlerseiten
 *
 * Rechtliche Seiten besitzen eigene Styles in legal.css.
 * Shop- und Produktseiten verwenden eigene CSS-Dateien.
 */


/* ==========================================================
   Standardseiten
========================================================== */

.content-page {
    width: 100%;

    background-color: #faf7f0;
}

.content-page__article {
    width: min(100% - 48px, 1000px);

    margin: 0 auto;
    padding: 56px 0 72px;
}

.content-page__title {
    margin: 0 0 32px;

    color: #222222;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.05;
    text-align: center;
}

.content-page__body {
    width: 100%;
}


/* ==========================================================
   Kontaktseite
========================================================== */

.contact-page {
    width: 100%;
    max-width: 760px;

    margin: 0 auto;
}

.contact-page__intro {
    max-width: 650px;

    margin: 0 auto 28px;

    color: rgba(34, 34, 34, 0.74);

    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
}

.contact-card {
    padding: 32px;

    background-color: rgba(245, 241, 232, 0.72);

    border: 1px solid rgba(139, 107, 71, 0.14);
    border-radius: 12px;

    box-shadow: 0 8px 24px rgba(69, 49, 27, 0.05);
}

.contact-card__channels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-card__link {
    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 0;

    padding: 18px;

    color: #222222;
    background-color: #faf7f0;

    border: 1px solid rgba(139, 107, 71, 0.14);
    border-radius: 9px;

    text-decoration: none;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-card__link:hover,
.contact-card__link:focus-visible {
    color: #8b6b47;
    border-color: rgba(139, 107, 71, 0.42);

    box-shadow: 0 6px 16px rgba(69, 49, 27, 0.07);

    transform: translateY(-2px);
}

.contact-card__link:focus-visible {
    outline: 3px solid rgba(139, 107, 71, 0.16);
    outline-offset: 2px;
}

.contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 44px;
    height: 44px;

    color: #8b6b47;
    background-color: rgba(139, 107, 71, 0.08);

    border-radius: 50%;

    font-size: 1.15rem;
}

.contact-card__link-content {
    min-width: 0;
}

.contact-card__label {
    display: block;

    margin-bottom: 3px;

    color: rgba(34, 34, 34, 0.62);

    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.contact-card__value {
    display: block;
    overflow-wrap: anywhere;

    font-size: 0.97rem;
    font-weight: 500;
    line-height: 1.45;
}

.contact-card__divider {
    height: 1px;

    margin: 28px 0;

    background-color: rgba(139, 107, 71, 0.14);
}

.contact-card__heading {
    margin: 0 0 14px;

    color: #222222;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.2;
}

.contact-card__list {
    display: grid;
    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.contact-card__item {
    position: relative;

    margin: 0;
    padding-left: 22px;

    color: rgba(34, 34, 34, 0.74);

    font-size: 0.95rem;
    line-height: 1.65;
}

.contact-card__item::before {
    position: absolute;
    top: 0.68em;
    left: 2px;

    width: 7px;
    height: 7px;

    background-color: #8b6b47;

    border-radius: 50%;

    content: "";
}

.contact-card__closing {
    margin: 24px 0 0;

    color: rgba(34, 34, 34, 0.68);

    font-size: 0.93rem;
    line-height: 1.65;
}


/* ==========================================================
   Messanleitung – Halsumfang
========================================================== */

.measurement-guide {
    max-width: 1080px;
}

.content-page--measurement-guide .content-page__article {
    padding-bottom: 44px;
}

.measurement-guide__header {
    max-width: 760px;

    margin: 0 auto 34px;

    text-align: center;
}

.measurement-guide__eyebrow {
    margin: 0 0 8px;

    color: #8b6b47;

    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.measurement-guide__title {
    margin-bottom: 20px;
}

.measurement-guide__intro {
    color: rgba(34, 34, 34, 0.74);

    font-size: 1rem;
    line-height: 1.75;
}

.measurement-guide__visual {
    max-width: 900px;

    margin: 0 auto 52px;
    padding: 18px;

    background-color: rgba(245, 241, 232, 0.58);

    border: 1px solid rgba(139, 107, 71, 0.12);
    border-radius: 14px;
}

.measurement-guide__image {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 10px;
}

.measurement-guide__section {
    margin-top: 52px;
}

.measurement-guide__section-title {
    margin: 0 0 24px;

    color: #222222;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 2.65rem);
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
}

.measurement-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.measurement-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin: 0;
    padding: 24px;

    background-color: rgba(245, 241, 232, 0.72);

    border: 1px solid rgba(139, 107, 71, 0.12);
    border-radius: 11px;
}

.measurement-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 34px;
    height: 34px;

    color: #faf7f0;
    background-color: #8b6b47;

    border-radius: 50%;

    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
}

.measurement-step__content {
    min-width: 0;
}

.measurement-step__title {
    margin: 2px 0 9px;

    color: #222222;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.2;
}

.measurement-step__text {
    margin: 0;

    color: rgba(34, 34, 34, 0.72);

    font-size: 0.92rem;
    line-height: 1.7;
}

.measurement-notice {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    margin-top: 32px;
    padding: 26px 28px;

    background-color: rgba(139, 107, 71, 0.08);

    border: 1px solid rgba(139, 107, 71, 0.2);
    border-left: 4px solid #8b6b47;
    border-radius: 10px;
}

.measurement-notice__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 40px;
    height: 40px;

    color: #8b6b47;
    background-color: #faf7f0;

    border-radius: 50%;
}

.measurement-notice__content {
    min-width: 0;
}

.measurement-notice__title {
    margin: 0 0 10px;

    color: #222222;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
}

.measurement-notice__list {
    display: grid;
    gap: 7px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.measurement-notice__list li,
.measurement-notice__text {
    margin: 0;

    color: rgba(34, 34, 34, 0.74);

    font-size: 0.94rem;
    line-height: 1.65;
}

.measurement-notice__list li {
    position: relative;

    padding-left: 19px;
}

.measurement-notice__list li::before {
    position: absolute;
    top: 0.7em;
    left: 1px;

    width: 6px;
    height: 6px;

    background-color: #8b6b47;

    border-radius: 50%;

    content: "";
}

.measurement-types {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.measurement-type {
    padding: 28px;

    background-color: #faf7f0;

    border: 1px solid rgba(139, 107, 71, 0.15);
    border-radius: 11px;

    text-align: center;
}

.measurement-type__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    margin-bottom: 14px;

    color: #8b6b47;
    background-color: rgba(139, 107, 71, 0.08);

    border-radius: 50%;
}

.measurement-type__title {
    margin: 0 0 12px;

    color: #222222;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.measurement-type__text {
    margin: 0;

    color: rgba(34, 34, 34, 0.72);

    font-size: 0.93rem;
    line-height: 1.7;
}

.measurement-guide__example {
    margin: 18px 0 0;

    color: rgba(34, 34, 34, 0.72);

    font-size: 0.94rem;
    line-height: 1.6;
    text-align: center;
}

.measurement-guide__help {
    margin-top: 52px;
    padding: 32px;

    background-color: #8b6b47;
    color: #faf7f0;

    border-radius: 12px;

    text-align: center;
}

.measurement-guide__help-title {
    margin: 0 0 10px;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.measurement-guide__help-text {
    max-width: 620px;

    margin: 0 auto 20px;

    color: rgba(250, 247, 240, 0.86);

    font-size: 0.95rem;
    line-height: 1.65;
}

.measurement-guide__help-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 10px 22px;

    color: #463826;
    background-color: #faf7f0;

    border: 1px solid rgba(250, 247, 240, 0.7);
    border-radius: 7px;

    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.measurement-guide__help-link:hover,
.measurement-guide__help-link:focus-visible {
    color: #222222;
    background-color: #ffffff;

    transform: translateY(-2px);
}

.measurement-guide__help-link:focus-visible {
    outline: 3px solid rgba(250, 247, 240, 0.35);
    outline-offset: 3px;
}


/* ==========================================================
   Pflegehinweise
========================================================== */

.care-guide {
    max-width: 1080px;
}

.content-page--care-guide .content-page__article {
    padding-bottom: 44px;
}

.care-guide__header {
    max-width: 760px;

    margin: 0 auto 34px;

    text-align: center;
}

.care-guide__eyebrow {
    margin: 0 0 8px;

    color: #8b6b47;

    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.care-guide__title {
    margin-bottom: 20px;
}

.care-guide__intro {
    color: rgba(34, 34, 34, 0.74);

    font-size: 1rem;
    line-height: 1.75;
}

.care-guide__visual {
    max-width: 900px;

    margin: 0 auto 46px;
    padding: 18px;

    background-color: rgba(245, 241, 232, 0.58);

    border: 1px solid rgba(139, 107, 71, 0.12);
    border-radius: 14px;
}

.care-guide__image {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 10px;
}

.care-materials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.care-material {
    padding: 26px;

    background-color: rgba(245, 241, 232, 0.72);

    border: 1px solid rgba(139, 107, 71, 0.14);
    border-radius: 11px;
}

.care-material__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 15px;

    color: #8b6b47;
    background-color: #faf7f0;

    border-radius: 50%;
}

.care-material__title {
    margin: 0 0 10px;

    color: #222222;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.2;
}

.care-material__intro {
    margin: 0 0 18px;

    color: rgba(34, 34, 34, 0.7);

    font-size: 0.92rem;
    line-height: 1.65;
}

.care-list {
    display: grid;
    gap: 10px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.care-list li {
    position: relative;

    margin: 0;
    padding-left: 19px;

    color: rgba(34, 34, 34, 0.74);

    font-size: 0.9rem;
    line-height: 1.65;
}

.care-list li::before {
    position: absolute;
    top: 0.7em;
    left: 1px;

    width: 6px;
    height: 6px;

    background-color: #8b6b47;

    border-radius: 50%;

    content: "";
}

.care-general {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    margin-top: 30px;
    padding: 28px;

    background-color: rgba(139, 107, 71, 0.08);

    border: 1px solid rgba(139, 107, 71, 0.2);
    border-left: 4px solid #8b6b47;
    border-radius: 10px;
}

.care-general__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    color: #8b6b47;
    background-color: #faf7f0;

    border-radius: 50%;
}

.care-general__content {
    min-width: 0;
}

.care-general__title {
    margin: 0 0 14px;

    color: #222222;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.2;
}

.care-list--general {
    gap: 8px;
}

.care-list--general li {
    font-size: 0.94rem;
}

.care-guide__closing {
    max-width: 760px;

    margin: 34px auto 0;

    color: rgba(34, 34, 34, 0.72);

    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
}


/* ==========================================================
   Über uns
========================================================== */

.about-page {
    max-width: 960px;
}

.content-page--about .content-page__article {
    padding-top: 42px;
    padding-bottom: 36px;
}

.about-page__header {
    margin-bottom: 28px;

    text-align: center;
}

.about-page__eyebrow {
    margin: 0 0 8px;

    color: #8b6b47;

    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.about-page__title {
    margin-bottom: 0;
}

.about-intro,
.about-story {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 48px);
}

.about-intro__figure {
    position: relative;

    overflow: hidden;

    margin: 0;

    background-color: #f5f1e8;

    border-radius: 16px;

    box-shadow: 0 14px 34px rgba(69, 49, 27, 0.09);
}

.about-intro__figure {
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 300px;
}

.about-intro__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-intro__image {
    object-position: center 32%;
}

.about-page__heading {
    margin: 0 0 16px;

    color: #222222;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 500;
    line-height: 1.12;
}

.about-intro__content p,
.about-story__content p {
    margin: 0;

    color: rgba(34, 34, 34, 0.74);

    font-size: 0.97rem;
    line-height: 1.72;
}

.about-intro__content p + p,
.about-story__content p + p {
    margin-top: 14px;
}

.about-story {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);

    margin-top: 44px;
}

.about-dogs {
    display: flex;
    gap: 12px;

    width: 100%;
    max-width: 420px;
}

.about-dog {
    position: relative;

    overflow: hidden;

    flex: 1 1 0;

    aspect-ratio: 4 / 5;
    margin: 0;

    background-color: #f5f1e8;

    border-radius: 14px;

    box-shadow: 0 14px 34px rgba(69, 49, 27, 0.09);
}

.about-dog__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-dog__image--eddie {
    object-position: center center;
}

.about-dog__image--bella {
    object-position: center 35%;
}

.about-dog__caption {
    position: absolute;
    bottom: 10px;
    left: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: max-content;
    max-width: calc(100% - 20px);
    padding: 6px 14px;

    color: #faf7f0;
    background-color: rgba(34, 34, 34, 0.72);

    border: 1px solid rgba(250, 247, 240, 0.14);
    border-radius: 8px;

    backdrop-filter: blur(6px);
    transform: translateX(-50%);
}

.about-dog__caption strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.2;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;

    margin-top: 44px;
}

.about-value {
    padding: 22px;

    background-color: rgba(245, 241, 232, 0.72);

    border: 1px solid rgba(139, 107, 71, 0.14);
    border-radius: 11px;

    text-align: center;
}

.about-value > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    margin-bottom: 14px;

    color: #8b6b47;
    background-color: #faf7f0;

    border-radius: 50%;

    font-size: 1.05rem;
}

.about-value h2 {
    margin: 0 0 10px;

    color: #222222;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.2;
}

.about-value p {
    margin: 0;

    color: rgba(34, 34, 34, 0.7);

    font-size: 0.9rem;
    line-height: 1.65;
}

.about-page__quote {
    max-width: 820px;

    margin: 36px auto 0;
    padding: 28px clamp(24px, 5vw, 48px);

    color: #faf7f0;
    background-color: #8b6b47;

    border-radius: 13px;

    text-align: center;
}

.about-page__quote p {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 500;
    line-height: 1.4;
}

.about-page__quote footer {
    margin-top: 14px;

    color: rgba(250, 247, 240, 0.78);

    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-page__welcome {
    margin: 20px 0 0;

    color: rgba(34, 34, 34, 0.72);

    font-size: 0.96rem;
    line-height: 1.7;
    text-align: center;
}


/* ==========================================================
   FAQ
========================================================== */

.faq-page {
    max-width: 900px;
}

.content-page--faq .content-page__article {
    padding-bottom: 52px;
}

.faq-page__header {
    max-width: 700px;

    margin: 0 auto 42px;

    text-align: center;
}

.faq-page__eyebrow {
    margin: 0 0 8px;

    color: #8b6b47;

    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.faq-page__title {
    margin-bottom: 18px;
}

.faq-page__intro {
    margin: 0;

    color: rgba(34, 34, 34, 0.74);

    font-size: 1rem;
    line-height: 1.75;
}

.faq-page__groups {
    display: grid;
    gap: 42px;
}

.faq-group__title {
    margin: 0 0 16px;

    color: #222222;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.7rem, 3vw, 2.15rem);
    font-weight: 600;
    line-height: 1.2;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    overflow: hidden;

    background-color: rgba(245, 241, 232, 0.72);

    border: 1px solid rgba(139, 107, 71, 0.16);
    border-radius: 10px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.faq-item[open] {
    border-color: rgba(139, 107, 71, 0.34);

    box-shadow: 0 7px 20px rgba(69, 49, 27, 0.05);
}

.faq-item__question {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 20px 56px 20px 22px;

    color: #222222;

    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.45;

    cursor: pointer;

    list-style: none;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::before,
.faq-item__question::after {
    position: absolute;
    top: 50%;
    right: 23px;

    width: 16px;
    height: 2px;

    background-color: #8b6b47;

    border-radius: 2px;

    content: "";

    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.faq-item__question::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] .faq-item__question::after {
    transform: translateY(-50%) rotate(0deg);
}

.faq-item__question:hover {
    color: #8b6b47;
}

.faq-item__question:focus-visible {
    outline: 3px solid rgba(139, 107, 71, 0.2);
    outline-offset: -3px;
}

.faq-item__answer {
    padding: 0 22px 22px;
}

.faq-item__answer p {
    margin: 0;

    color: rgba(34, 34, 34, 0.74);

    font-size: 0.94rem;
    line-height: 1.75;
}

.faq-item__answer p + p {
    margin-top: 12px;
}

.faq-item__answer a {
    color: #8b6b47;

    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.faq-item__answer a:hover,
.faq-item__answer a:focus-visible {
    color: #725536;
    text-decoration-thickness: 2px;
}

.faq-contact {
    margin-top: 48px;
    padding: 32px;

    color: #faf7f0;
    background-color: #8b6b47;

    border-radius: 12px;

    text-align: center;
}

.faq-contact__title {
    margin: 0 0 9px;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.faq-contact__text {
    margin: 0 auto 20px;

    color: rgba(250, 247, 240, 0.86);

    font-size: 0.95rem;
    line-height: 1.65;
}

.faq-contact__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 10px 22px;

    color: #463826;
    background-color: #faf7f0;

    border: 1px solid rgba(250, 247, 240, 0.7);
    border-radius: 7px;

    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.faq-contact__link:hover,
.faq-contact__link:focus-visible {
    color: #222222;
    background-color: #ffffff;

    transform: translateY(-2px);
}

.faq-contact__link:focus-visible {
    outline: 3px solid rgba(250, 247, 240, 0.35);
    outline-offset: 3px;
}


/* ==========================================================
   WooCommerce Inhaltsseiten
========================================================== */

/*
 * Warenkorb und Checkout verwenden denselben hellen
 * Inhalts-Hintergrund wie die Shopseite.
 *
 * Header und Footer behalten weiterhin ihren etwas
 * dunkleren Beige-Ton.
 */

body.woocommerce-cart,
body.woocommerce-checkout {
    background-color: #faf7f0;
}

body.woocommerce-cart main.site-main,
body.woocommerce-checkout main.site-main {
    background-color: #faf7f0;
}


/* ==========================================================
   Archivseiten
========================================================== */


/* ==========================================================
   Suchergebnisse
========================================================== */


/* ==========================================================
   Fehlerseiten
========================================================== */


/* ==========================================================
   Responsive – Smartphone
========================================================== */

@media (max-width: 768px) {
    .content-page__article {
        width: min(100% - 32px, 1000px);

        padding: 38px 0 48px;
    }

    .content-page__title {
        margin-bottom: 24px;

        font-size: clamp(2.25rem, 12vw, 3rem);
    }

    .contact-page__intro {
        margin-bottom: 22px;

        font-size: 0.95rem;
        line-height: 1.7;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card__channels {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-card__link {
        padding: 15px;
    }

    .contact-card__icon {
        width: 40px;
        height: 40px;
    }

    .contact-card__divider {
        margin: 24px 0;
    }

    .contact-card__heading {
        font-size: 1.5rem;
    }

    .measurement-guide__header {
        margin-bottom: 26px;
    }

    .content-page--measurement-guide .content-page__article {
        padding-bottom: 32px;
    }

    .measurement-guide__title {
        margin-bottom: 16px;
    }

    .measurement-guide__intro {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .measurement-guide__visual {
        margin-bottom: 38px;
        padding: 10px;
    }

    .measurement-guide__section {
        margin-top: 40px;
    }

    .measurement-guide__section-title {
        margin-bottom: 20px;

        font-size: 2rem;
    }

    .measurement-steps,
    .measurement-types {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .measurement-step {
        padding: 20px;
    }

    .measurement-notice {
        gap: 14px;

        margin-top: 24px;
        padding: 20px;
    }

    .measurement-notice__icon {
        width: 36px;
        height: 36px;
    }

    .measurement-notice__title {
        font-size: 1.45rem;
    }

    .measurement-type {
        padding: 22px;
    }

    .measurement-guide__help {
        margin-top: 40px;
        padding: 26px 20px;
    }

    .measurement-guide__help-title {
        font-size: 1.7rem;
    }

    .content-page--care-guide .content-page__article {
        padding-bottom: 32px;
    }

    .care-guide__header {
        margin-bottom: 26px;
    }

    .care-guide__title {
        margin-bottom: 16px;
    }

    .care-guide__intro {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .care-guide__visual {
        margin-bottom: 34px;
        padding: 10px;
    }

    .care-materials {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .care-material {
        padding: 22px;
    }

    .care-general {
        gap: 14px;

        margin-top: 24px;
        padding: 20px;
    }

    .care-general__icon {
        width: 36px;
        height: 36px;
    }

    .care-general__title {
        font-size: 1.5rem;
    }

    .care-guide__closing {
        margin-top: 28px;

        font-size: 1.3rem;
    }

    .content-page--about .content-page__article {
        padding-top: 30px;
        padding-bottom: 26px;
    }

    .about-page__header {
        margin-bottom: 20px;
    }

    .about-intro,
    .about-story {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-intro__figure {
        width: min(100%, 280px);

        margin: 0 auto;
    }

    .about-page__heading {
        margin-bottom: 16px;

        font-size: 2rem;
    }

    .about-intro__content p,
    .about-story__content p {
        font-size: 0.94rem;
        line-height: 1.75;
    }

    .about-story {
        margin-top: 34px;
    }

    .about-dogs {
        width: min(100%, 380px);

        margin: 0 auto;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 12px;

        margin-top: 32px;
    }

    .about-value {
        padding: 19px;
    }

    .about-page__quote {
        margin-top: 28px;
        padding: 24px 18px;
    }

    .about-page__welcome {
        margin-top: 16px;
    }

    .content-page--faq .content-page__article {
        padding-bottom: 36px;
    }

    .faq-page__header {
        margin-bottom: 32px;
    }

    .faq-page__title {
        margin-bottom: 15px;
    }

    .faq-page__intro {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .faq-page__groups {
        gap: 34px;
    }

    .faq-group__title {
        margin-bottom: 13px;

        font-size: 1.65rem;
    }

    .faq-item__question {
        padding: 17px 48px 17px 18px;

        font-size: 0.94rem;
    }

    .faq-item__question::before,
    .faq-item__question::after {
        right: 19px;
    }

    .faq-item__answer {
        padding: 0 18px 18px;
    }

    .faq-item__answer p {
        font-size: 0.91rem;
        line-height: 1.7;
    }

    .faq-contact {
        margin-top: 38px;
        padding: 26px 20px;
    }

    .faq-contact__title {
        font-size: 1.7rem;
    }
}
