:root {
    --df-paper: #f7f8f4;
    --df-white: #ffffff;
    --df-ink: #20201d;
    --df-muted: #62645d;
    --df-line: #ddded4;
    --df-sage: #637461;
    --df-sage-dark: #3f513e;
    --df-terracotta: #b76b56;
    --df-rose: #d7a39a;
    --df-shadow: 0 18px 50px rgba(32, 32, 29, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--df-ink);
    background: var(--df-paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

.df-shell {
    width: min(100% - 40px, 1180px);
    margin-inline: auto;
}

.df-skip-link {
    position: absolute;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    transform: translateY(-140%);
    background: var(--df-ink);
    color: var(--df-white);
}

.df-skip-link:focus {
    transform: translateY(0);
}

.df-site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    border-bottom: 1px solid rgba(221, 222, 212, 0.72);
    background: rgba(247, 248, 244, 0.9);
    backdrop-filter: blur(18px);
}

.df-site-header__inner {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.df-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.df-brand img {
    width: 86px;
    height: auto;
}

.df-nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.df-nav a {
    color: var(--df-ink);
    font-size: 0.92rem;
    font-weight: 650;
    letter-spacing: 0;
    text-decoration: none;
}

.df-nav a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    border-bottom: 2px solid transparent;
    line-height: 1;
}

.df-nav a:hover {
    color: var(--df-sage-dark);
}

.df-nav a:hover,
.df-nav a:focus-visible {
    border-bottom-color: var(--df-sage);
}

.df-footer-link-button {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.df-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.df-footer-links a,
.df-footer-link-button {
    color: var(--df-muted);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
    text-decoration: none;
}

.df-footer-links a:hover,
.df-footer-links a:focus-visible,
.df-footer-link-button:hover,
.df-footer-link-button:focus-visible {
    color: var(--df-sage-dark);
}

.df-menu-toggle {
    display: none;
}

.df-main {
    overflow: hidden;
}

.df-hero {
    position: relative;
    min-height: 82vh;
    padding-top: 84px;
    display: grid;
    align-items: center;
    isolation: isolate;
}

.df-hero__image {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.df-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(247, 248, 244, 0.98) 0%, rgba(247, 248, 244, 0.88) 34%, rgba(247, 248, 244, 0.22) 72%),
        linear-gradient(180deg, rgba(247, 248, 244, 0.1) 0%, rgba(247, 248, 244, 0.74) 100%);
}

.df-hero__content {
    padding-block: 96px 62px;
}

.df-hero__copy {
    width: min(580px, 100%);
}

.df-hero h1 {
    margin: 0;
    max-width: 760px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.85rem;
    line-height: 0.98;
    font-weight: 500;
}

.df-hero p {
    max-width: 520px;
    margin: 28px 0 0;
    color: #3f403b;
    font-size: 1.17rem;
    line-height: 1.6;
}

.df-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.df-trust-band {
    border-block: 1px solid var(--df-line);
    background: var(--df-white);
}

.df-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 16px;
}

.df-trust-strip span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid rgba(99, 116, 97, 0.22);
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--df-sage-dark);
    background: #f2f6ef;
    font-size: 0.84rem;
    font-weight: 700;
}

.df-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--df-ink);
    border-radius: 6px;
    padding: 12px 18px;
    background: var(--df-ink);
    color: var(--df-white);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.df-button:hover {
    transform: translateY(-1px);
    background: var(--df-sage-dark);
    border-color: var(--df-sage-dark);
}

.df-button--ghost {
    background: rgba(255, 255, 255, 0.52);
    color: var(--df-ink);
}

.df-button--ghost:hover {
    background: var(--df-white);
    color: var(--df-ink);
}

.df-section {
    padding-block: 92px;
}

.df-section--intro {
    background: var(--df-white);
}

.df-intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.df-intro h2,
.df-section-heading h2,
.df-entry h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.8rem;
    line-height: 1.08;
    font-weight: 500;
}

.df-intro__text {
    display: grid;
    gap: 18px;
    color: var(--df-muted);
    font-size: 1.06rem;
}

.df-intro__text p {
    margin: 0;
}

.df-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.6fr);
    gap: 52px;
    align-items: end;
    margin-bottom: 38px;
}

.df-section-heading--wide {
    grid-template-columns: 1fr;
    max-width: 760px;
}

.df-section-heading p {
    margin: 0;
    color: var(--df-muted);
    font-size: 1.04rem;
}

.df-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

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

.df-product-card[hidden] {
    display: none;
}

.df-product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -8px 0 28px;
}

.df-product-filters button {
    min-height: 40px;
    border: 1px solid var(--df-line);
    border-radius: 999px;
    padding: 8px 14px;
    background: var(--df-white);
    color: var(--df-ink);
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
}

.df-product-filters button:hover,
.df-product-filters button:focus-visible,
.df-product-filters button.is-active {
    border-color: var(--df-sage-dark);
    background: var(--df-sage-dark);
    color: var(--df-white);
}

.df-product-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--df-line);
    border-radius: 8px;
    background: var(--df-white);
    box-shadow: var(--df-shadow);
}

.df-product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #eef1ea;
}

.df-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 260ms ease;
}

.df-product-card__media--contain img {
    padding: 18px;
    background: var(--df-white);
    object-fit: contain;
}

.df-product-card__media:hover img {
    transform: scale(1.025);
}

.df-product-card__body {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    padding: 28px;
}

.df-product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.df-product-card__meta span {
    border: 1px solid var(--df-line);
    border-radius: 4px;
    padding: 6px 9px;
    color: var(--df-sage-dark);
    background: #f2f6ef;
    font-size: 0.78rem;
    font-weight: 700;
}

.df-product-card h3,
.df-line-grid h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.78rem;
    line-height: 1.12;
    font-weight: 500;
}

.df-product-card p {
    margin: 14px 0 0;
    color: var(--df-muted);
}

.df-product-card ul {
    display: grid;
    gap: 9px;
    margin: 20px 0 26px;
    padding: 0;
    list-style: none;
    color: #454741;
}

.df-product-card li {
    position: relative;
    padding-left: 20px;
}

.df-product-card li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--df-sage);
}

.df-product-card__actions,
.df-product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.df-product-card__actions .df-button,
.df-product-detail__actions .df-button {
    width: fit-content;
}

.df-section--details {
    background: var(--df-white);
}

.df-main--overview {
    padding-top: 84px;
}

.df-overview-hero {
    border-bottom: 1px solid var(--df-line);
    padding-block: 78px 54px;
    background: var(--df-white);
}

.df-overview-heading {
    max-width: 760px;
}

.df-overview-heading span {
    display: inline-flex;
    width: fit-content;
    border: 1px solid var(--df-line);
    border-radius: 4px;
    padding: 6px 9px;
    color: var(--df-sage-dark);
    background: #f2f6ef;
    font-size: 0.78rem;
    font-weight: 700;
}

.df-overview-heading h1 {
    margin: 20px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.2rem;
    line-height: 1.04;
    font-weight: 500;
}

.df-overview-heading p {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--df-muted);
    font-size: 1.08rem;
}

.df-overview-hero .df-trust-strip {
    margin-top: 34px;
    padding-block: 0;
}

.df-section--overview-products {
    padding-top: 68px;
}

.df-detail-stack {
    display: grid;
    gap: 24px;
}

.df-product-detail {
    scroll-margin-top: 112px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 34px;
    align-items: stretch;
    border: 1px solid var(--df-line);
    border-radius: 8px;
    padding: 22px;
    background: var(--df-paper);
}

.df-product-detail__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.df-product-detail__gallery figure {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #eef1ea;
}

.df-product-detail__gallery figure:first-child {
    grid-column: 1 / -1;
}

.df-product-detail__gallery img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
}

.df-product-detail__content {
    display: flex;
    flex-direction: column;
    padding: 20px 8px 20px 0;
}

.df-product-detail__category {
    width: fit-content;
    border: 1px solid var(--df-line);
    border-radius: 4px;
    padding: 6px 9px;
    color: var(--df-sage-dark);
    background: var(--df-white);
    font-size: 0.78rem;
    font-weight: 700;
}

.df-product-detail__category--variant {
    border-color: rgba(183, 107, 86, 0.28);
    color: #7b4638;
    background: #f8ece8;
}

.df-product-detail h3 {
    margin: 18px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.35rem;
    line-height: 1.06;
    font-weight: 500;
}

.df-product-detail p {
    margin: 18px 0 0;
    color: var(--df-muted);
    font-size: 1.04rem;
}

.df-detail-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
}

.df-detail-list li {
    position: relative;
    padding-left: 24px;
    color: #454741;
}

.df-detail-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--df-sage);
}

.df-main--product {
    padding-top: 84px;
}

.df-product-hero {
    background: var(--df-white);
}

.df-product-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
    gap: 44px;
    align-items: center;
    min-height: 620px;
    padding-block: 70px;
}

.df-product-hero__media {
    overflow: hidden;
    border: 1px solid var(--df-line);
    border-radius: 8px;
    background: #eef1ea;
}

.df-product-hero__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.df-product-hero__media--contain img {
    padding: 24px;
    background: var(--df-white);
    object-fit: contain;
}

.df-product-hero__content {
    display: grid;
    justify-items: start;
    gap: 18px;
}

.df-product-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.df-product-hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.2rem;
    line-height: 1.02;
    font-weight: 500;
}

.df-product-hero p {
    max-width: 580px;
    margin: 0;
    color: var(--df-muted);
    font-size: 1.1rem;
}

.df-product-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.df-product-page__main,
.df-product-page__aside {
    border: 1px solid var(--df-line);
    border-radius: 8px;
    background: var(--df-white);
}

.df-product-page__main {
    padding: 36px;
}

.df-product-page__text {
    max-width: 780px;
}

.df-product-page__text > *:first-child {
    margin-top: 0;
}

.df-product-page__text > *:last-child {
    margin-bottom: 0;
}

.df-product-page__text h2,
.df-product-page__aside h2 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 500;
}

.df-product-page__text p,
.df-product-page__text li {
    color: var(--df-muted);
    font-size: 1.04rem;
}

.df-product-page__text ul {
    margin-block: 18px;
    padding-left: 1.2em;
}

.df-product-content-block {
    margin-top: 34px;
    padding-top: 32px;
    border-top: 1px solid var(--df-line);
}

.df-product-content-block h2 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 500;
}

.df-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.df-chip-list li {
    border: 1px solid rgba(99, 116, 97, 0.24);
    border-radius: 999px;
    padding: 9px 13px;
    background: #f2f6ef;
    color: var(--df-sage-dark);
    font-size: 0.93rem;
    font-weight: 700;
}

.df-spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.df-spec-list div {
    border: 1px solid var(--df-line);
    border-radius: 8px;
    padding: 14px;
    background: var(--df-paper);
}

.df-spec-list dt {
    color: var(--df-sage-dark);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.df-spec-list dd {
    margin: 5px 0 0;
    color: #454741;
}

.df-spec-list--compact {
    grid-column: 1 / -1;
}

.df-variant-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    border: 1px solid rgba(183, 107, 86, 0.22);
    border-radius: 8px;
    padding: 18px;
    background: #fbf4f1;
}

.df-variant-panel__head {
    border: 1px solid rgba(183, 107, 86, 0.18);
    border-radius: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.df-variant-panel__head span {
    display: block;
    color: #7b4638;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.df-variant-panel__head strong {
    display: block;
    margin-top: 5px;
    font-size: 1.05rem;
}

.df-variant-panel p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--df-muted);
}

.df-product-page__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.df-product-page__gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #eef1ea;
}

.df-product-page__gallery figure:first-child {
    grid-column: 1 / -1;
}

.df-product-page__gallery img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.df-faq-list {
    display: grid;
    gap: 10px;
}

.df-faq-list details {
    border: 1px solid var(--df-line);
    border-radius: 8px;
    padding: 16px 18px;
    background: var(--df-paper);
}

.df-faq-list summary {
    cursor: pointer;
    color: var(--df-ink);
    font-weight: 800;
}

.df-faq-list p {
    margin: 12px 0 0;
    color: var(--df-muted);
}

.df-product-page__aside {
    position: sticky;
    top: 112px;
    padding: 28px;
}

.df-product-page__aside .df-button {
    width: 100%;
}

.df-aside-note {
    margin: 14px 0 0;
    color: var(--df-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.df-section--related {
    border-top: 1px solid var(--df-line);
    background: var(--df-white);
}

.df-section--lines {
    background: #edf3ec;
}

.df-line-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.df-line-grid article {
    border: 1px solid rgba(99, 116, 97, 0.22);
    border-radius: 8px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.72);
}

.df-line-grid p {
    margin: 12px 0 0;
    color: var(--df-muted);
}

.df-main--content {
    padding-block: 148px 90px;
}

.df-content {
    max-width: 820px;
}

.df-entry {
    border-radius: 8px;
    padding: 42px;
    background: var(--df-white);
    box-shadow: var(--df-shadow);
}

.df-entry__content {
    margin-top: 24px;
}

.df-site-footer {
    border-top: 1px solid var(--df-line);
    background: var(--df-white);
}

.df-site-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding-block: 46px;
}

.df-site-footer__logo {
    width: 86px;
    height: auto;
    margin: 0;
}

.df-site-footer__nav:empty {
    display: none;
}

.df-cookie-banner[hidden] {
    display: none;
}

.df-cookie-banner {
    position: fixed;
    z-index: 220;
    right: 20px;
    bottom: 20px;
    left: 20px;
    pointer-events: none;
}

.df-cookie-banner__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    max-width: 820px;
    margin-left: auto;
    border: 1px solid rgba(99, 116, 97, 0.22);
    border-radius: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 44px rgba(32, 32, 29, 0.16);
    pointer-events: auto;
}

.df-cookie-banner__text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.92rem;
}

.df-cookie-banner__text p {
    margin: 0;
    color: var(--df-muted);
    font-size: 0.88rem;
}

.df-cookie-banner__text a {
    color: var(--df-ink);
    font-weight: 700;
}

.df-cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.df-cookie-banner__actions .df-button {
    width: fit-content;
    padding: 11px 14px;
    font-size: 0.88rem;
}

@media (max-width: 880px) {
    .df-site-header__inner {
        min-height: 72px;
    }

    .df-brand img {
        width: 72px;
    }

    .df-menu-toggle {
        display: inline-grid;
        width: 44px;
        height: 44px;
        place-items: center;
        border: 1px solid var(--df-line);
        border-radius: 6px;
        background: var(--df-white);
        color: var(--df-ink);
    }

    .df-menu-toggle span:not(.df-menu-toggle__text) {
        width: 20px;
        height: 2px;
        background: currentColor;
    }

    .df-menu-toggle__text {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .df-nav {
        position: absolute;
        top: 72px;
        right: 20px;
        left: 20px;
        display: none;
        border: 1px solid var(--df-line);
        border-radius: 8px;
        padding: 18px;
        background: var(--df-white);
        box-shadow: var(--df-shadow);
    }

    .df-nav[data-open] {
        display: block;
    }

    .df-nav__list {
        display: grid;
        gap: 14px;
    }

    .df-hero {
        min-height: 78vh;
        padding-top: 72px;
    }

    .df-hero__shade {
        background:
            linear-gradient(180deg, rgba(247, 248, 244, 0.98) 0%, rgba(247, 248, 244, 0.86) 48%, rgba(247, 248, 244, 0.45) 100%);
    }

    .df-hero__content {
        padding-block: 64px 52px;
    }

    .df-hero h1 {
        font-size: 3rem;
        line-height: 1.04;
    }

    .df-hero p {
        font-size: 1.05rem;
    }

    .df-section {
        padding-block: 68px;
    }

    .df-intro,
    .df-section-heading,
    .df-product-grid,
    .df-product-grid--related,
    .df-line-grid,
    .df-site-footer__inner {
        grid-template-columns: 1fr;
    }

    .df-intro,
    .df-section-heading {
        gap: 22px;
    }

    .df-product-detail {
        grid-template-columns: 1fr;
    }

    .df-product-detail__content {
        padding: 4px 0 0;
    }

    .df-main--product {
        padding-top: 72px;
    }

    .df-main--overview {
        padding-top: 72px;
    }

    .df-overview-hero {
        padding-block: 56px 42px;
    }

    .df-overview-heading h1 {
        font-size: 2.55rem;
    }

    .df-product-hero__grid,
    .df-product-page__grid {
        grid-template-columns: 1fr;
    }

    .df-product-hero__grid {
        min-height: 0;
        gap: 28px;
        padding-block: 48px;
    }

    .df-product-hero h1 {
        font-size: 2.55rem;
    }

    .df-product-page__aside {
        position: static;
    }

    .df-spec-list {
        grid-template-columns: 1fr;
    }

    .df-variant-panel {
        grid-template-columns: 1fr;
    }

    .df-intro h2,
    .df-section-heading h2,
    .df-entry h1 {
        font-size: 2.25rem;
    }

    .df-product-card__body {
        min-height: auto;
    }

    .df-trust-strip {
        gap: 8px;
    }

    .df-cookie-banner__inner {
        grid-template-columns: 1fr;
        margin-inline: auto;
    }

    .df-cookie-banner__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .df-shell {
        width: min(100% - 28px, 1180px);
    }

    .df-hero h1 {
        font-size: 2.48rem;
    }

    .df-hero__actions {
        flex-direction: column;
    }

    .df-trust-strip span,
    .df-product-filters button {
        width: 100%;
        justify-content: center;
    }

    .df-button,
    .df-product-card__actions .df-button,
    .df-product-detail__actions .df-button {
        width: 100%;
    }

    .df-product-detail {
        padding: 14px;
    }

    .df-product-detail__gallery {
        grid-template-columns: 1fr;
    }

    .df-product-detail__gallery figure:first-child {
        grid-column: auto;
    }

    .df-product-detail__gallery img {
        min-height: 220px;
    }

    .df-product-card__body,
    .df-line-grid article,
    .df-entry,
    .df-product-page__main,
    .df-product-page__aside {
        padding: 22px;
    }

    .df-product-hero h1 {
        font-size: 2.25rem;
    }

    .df-product-page__gallery {
        grid-template-columns: 1fr;
    }

    .df-product-page__gallery figure:first-child {
        grid-column: auto;
    }

    .df-product-page__gallery img {
        min-height: 220px;
    }

    .df-site-footer__inner {
        padding-block: 34px;
    }

    .df-footer-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .df-cookie-banner {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }

    .df-cookie-banner__inner {
        gap: 12px;
        padding: 14px;
    }

    .df-cookie-banner__text p {
        font-size: 0.84rem;
    }

    .df-cookie-banner__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }

    .df-cookie-banner__actions .df-button {
        width: 100%;
        min-width: 0;
        padding: 10px 8px;
        font-size: 0.82rem;
    }
}
