:root {
    --pfv-cream: #faf7f2;
    --pfv-beige: #e8d8c3;
    --pfv-green: #405b45;
    --pfv-green-dark: #2d4132;
    --pfv-brown: #3b3028;
    --pfv-white: #ffffff;
    --pfv-ink-soft: #6e665f;
    --pfv-line: rgba(59, 48, 40, 0.16);
    --pfv-page: min(1320px, calc(100% - 48px));
}

.pfv-dtc-site,
.pfv-dtc-site button,
.pfv-dtc-site input,
.pfv-dtc-site select,
.pfv-dtc-site textarea {
    font-family: "Inter", Arial, sans-serif;
    color: var(--pfv-brown);
    letter-spacing: 0;
}

.pfv-dtc-site h1,
.pfv-dtc-site h2,
.pfv-dtc-site .product_title {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
    letter-spacing: 0;
}

.pfv-dtc-site .pfv-topbar {
    min-height: 34px;
    padding: 7px 24px;
    background: var(--pfv-green-dark);
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
}

.pfv-dtc-site .pfv-nav {
    min-height: 74px;
    padding: 0 max(24px, calc((100vw - 1420px) / 2));
    background: rgba(250, 247, 242, 0.97);
    border-bottom: 1px solid var(--pfv-line);
    color: var(--pfv-brown);
}

.pfv-dtc-site .pfv-brand-logo img {
    max-height: 46px;
    width: auto;
}

.pfv-dtc-site .pfv-nav-links,
.pfv-dtc-site .pfv-nav-actions {
    gap: 24px;
}

.pfv-dtc-site .pfv-nav-links > a,
.pfv-dtc-site .pfv-nav-actions > a,
.pfv-dtc-site .pfv-shop-menu > a {
    color: var(--pfv-brown);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.pfv-shop-menu {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 74px;
}

.pfv-shop-trigger::after {
    content: "+";
    display: inline-block;
    margin-left: 6px;
    font-size: 13px;
    font-weight: 400;
}

.pfv-shop-dropdown {
    position: absolute;
    z-index: 40;
    top: calc(100% - 1px);
    left: -20px;
    display: grid;
    min-width: 230px;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    background: var(--pfv-cream);
    border: 1px solid var(--pfv-line);
    box-shadow: 0 18px 46px rgba(59, 48, 40, 0.12);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.pfv-shop-menu:hover .pfv-shop-dropdown,
.pfv-shop-menu:focus-within .pfv-shop-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.pfv-shop-dropdown a {
    padding: 11px 12px;
    color: var(--pfv-brown);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.pfv-shop-dropdown a:hover,
.pfv-shop-dropdown a:focus-visible {
    background: var(--pfv-beige);
}

.pfv-dtc-main {
    overflow: hidden;
    background: var(--pfv-cream);
}

.pfv-dtc-hero {
    position: relative;
    min-height: min(760px, calc(100vh - 108px));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--pfv-green-dark);
}

.pfv-dtc-hero-video,
.pfv-dtc-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pfv-dtc-hero-video {
    object-fit: cover;
    object-position: center;
}

.pfv-dtc-hero-shade {
    background: linear-gradient(90deg, rgba(24, 31, 25, 0.78) 0%, rgba(24, 31, 25, 0.52) 42%, rgba(24, 31, 25, 0.08) 74%);
}

.pfv-dtc-hero-copy {
    position: relative;
    z-index: 2;
    width: var(--pfv-page);
    margin: 0 auto;
    padding: 110px 0 126px;
    color: var(--pfv-white);
}

.pfv-dtc-hero-copy > * {
    max-width: 660px;
}

.pfv-dtc-eyebrow {
    margin: 0 0 16px;
    color: var(--pfv-green);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0;
}

.pfv-dtc-hero .pfv-dtc-eyebrow {
    color: var(--pfv-beige);
}

.pfv-dtc-hero h1 {
    margin: 0;
    color: var(--pfv-white);
    font-size: clamp(48px, 6.4vw, 88px);
    line-height: 1.02;
}

.pfv-dtc-hero-copy > p:not(.pfv-dtc-eyebrow) {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.87);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.7;
}

.pfv-dtc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.pfv-dtc-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.pfv-dtc-button-light {
    background: var(--pfv-cream);
    color: var(--pfv-brown);
}

.pfv-dtc-button-light:hover {
    background: var(--pfv-beige);
    color: var(--pfv-brown);
}

.pfv-dtc-button-ghost {
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--pfv-white);
}

.pfv-dtc-button-ghost:hover {
    border-color: var(--pfv-white);
    background: rgba(255, 255, 255, 0.12);
    color: var(--pfv-white);
}

.pfv-dtc-scroll {
    position: absolute;
    z-index: 2;
    right: max(24px, calc((100vw - 1320px) / 2));
    bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.pfv-dtc-section {
    width: var(--pfv-page);
    margin: 0 auto;
    padding: 106px 0;
}

.pfv-dtc-section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.pfv-dtc-section-heading h2,
.pfv-dtc-story h2,
.pfv-dtc-newsletter h2 {
    margin: 0;
    color: var(--pfv-brown);
    font-size: clamp(36px, 4.6vw, 60px);
    line-height: 1.08;
}

.pfv-dtc-heading-row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}

.pfv-dtc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    color: var(--pfv-brown);
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.pfv-dtc-collection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pfv-dtc-collection {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    color: var(--pfv-white);
    text-decoration: none;
}

.pfv-dtc-collection img,
.pfv-dtc-product-image img,
.pfv-dtc-story-image img,
.pfv-dtc-journal figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.pfv-dtc-collection:hover img,
.pfv-dtc-product-card:hover img,
.pfv-dtc-journal figure:hover img {
    transform: scale(1.025);
}

.pfv-dtc-collection-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 30, 27, 0.02) 32%, rgba(31, 30, 27, 0.72) 100%);
}

.pfv-dtc-collection-copy {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
}

.pfv-dtc-collection-copy strong {
    color: var(--pfv-white);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.15;
}

.pfv-dtc-collection-copy small {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.pfv-dtc-collection-copy em {
    margin-top: 18px;
    color: var(--pfv-white);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.pfv-dtc-featured {
    border-top: 1px solid var(--pfv-line);
}

.pfv-dtc-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 20px;
}

.pfv-dtc-product-card {
    min-width: 0;
}

.pfv-dtc-product-image {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--pfv-beige);
}

.pfv-dtc-product-info {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    padding: 18px 0 0;
}

.pfv-dtc-product-info h3 {
    margin: 0 0 7px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.35;
}

.pfv-dtc-product-info h3 a,
.pfv-dtc-price,
.pfv-dtc-price .amount {
    color: var(--pfv-brown);
    text-decoration: none;
}

.pfv-dtc-price {
    font-size: 13px;
}

.pfv-dtc-cart {
    padding-bottom: 3px;
    color: var(--pfv-green);
    border-bottom: 1px solid currentColor;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
}

.pfv-dtc-story {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
    min-height: 690px;
    background: var(--pfv-green-dark);
}

.pfv-dtc-story-image {
    min-height: 620px;
    overflow: hidden;
}

.pfv-dtc-story-image img {
    object-position: center;
}

.pfv-dtc-story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px clamp(34px, 6vw, 90px);
}

.pfv-dtc-story .pfv-dtc-eyebrow {
    color: var(--pfv-beige);
}

.pfv-dtc-story h2,
.pfv-dtc-story p,
.pfv-dtc-story .pfv-dtc-text-link {
    color: var(--pfv-white);
}

.pfv-dtc-story-copy > p:not(.pfv-dtc-eyebrow) {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.75;
}

.pfv-dtc-story .pfv-dtc-text-link {
    align-self: flex-start;
    margin-top: 34px;
}

.pfv-dtc-values {
    text-align: center;
}

.pfv-dtc-values .pfv-dtc-section-heading {
    margin-right: auto;
    margin-left: auto;
}

.pfv-dtc-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--pfv-line);
    border-bottom: 1px solid var(--pfv-line);
}

.pfv-dtc-value-grid article {
    padding: 46px 36px;
}

.pfv-dtc-value-grid article + article {
    border-left: 1px solid var(--pfv-line);
}

.pfv-dtc-value-grid span {
    color: var(--pfv-green);
    font-size: 12px;
    font-weight: 700;
}

.pfv-dtc-value-grid h3 {
    margin: 18px 0 9px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    font-weight: 500;
}

.pfv-dtc-value-grid p {
    margin: 0;
    color: var(--pfv-ink-soft);
    font-size: 14px;
    line-height: 1.65;
}

.pfv-dtc-journal {
    padding-top: 28px;
}

.pfv-dtc-journal-note {
    max-width: 390px;
    margin: 0;
    color: var(--pfv-ink-soft);
    font-size: 13px;
    line-height: 1.65;
}

.pfv-dtc-journal-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 12px;
}

.pfv-dtc-journal figure {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: var(--pfv-beige);
}

.pfv-dtc-journal-large {
    grid-row: 1 / 3;
}

.pfv-dtc-journal figcaption {
    position: absolute;
    left: 18px;
    bottom: 16px;
    padding: 8px 10px;
    background: rgba(250, 247, 242, 0.92);
    color: var(--pfv-brown);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.pfv-dtc-newsletter {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
    gap: 70px;
    align-items: center;
    padding: 84px max(24px, calc((100vw - 1320px) / 2));
    background: var(--pfv-beige);
}

.pfv-dtc-newsletter > div > p:last-child {
    max-width: 560px;
    margin: 20px 0 0;
    color: var(--pfv-ink-soft);
    line-height: 1.7;
}

.pfv-dtc-newsletter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    border-bottom: 1px solid var(--pfv-brown);
}

.pfv-dtc-newsletter-row input,
.pfv-dtc-newsletter-row button {
    min-height: 54px;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.pfv-dtc-newsletter-row input {
    min-width: 0;
    padding: 12px 4px;
    font-size: 15px;
}

.pfv-dtc-newsletter-row button {
    padding: 12px 8px 12px 24px;
    color: var(--pfv-brown);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.pfv-dtc-consent {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    color: var(--pfv-ink-soft);
    font-size: 11px;
    line-height: 1.5;
}

.pfv-dtc-consent input {
    width: 14px;
    height: 14px;
    margin-top: 1px;
    accent-color: var(--pfv-green);
}

.pfv-dtc-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
}

.pfv-dtc-form-message {
    margin: 12px 0 0;
    color: var(--pfv-green-dark);
    font-size: 12px;
    font-weight: 650;
}

.single-product.pfv-dtc-site .site-main,
.single-product.pfv-dtc-site main {
    background: var(--pfv-cream);
}

.single-product.pfv-dtc-site div.product {
    width: var(--pfv-page);
    margin-right: auto;
    margin-left: auto;
    padding-top: 64px;
}

.single-product.pfv-dtc-site .product_title {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
}

.single-product.pfv-dtc-site .summary .price {
    color: var(--pfv-green);
}

.single-product.pfv-dtc-site .single_add_to_cart_button {
    min-height: 50px;
    padding: 12px 24px;
    border-radius: 2px;
    background: var(--pfv-green) !important;
    color: var(--pfv-white) !important;
}

.pfv-dtc-pdp-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 26px 0;
    border-top: 1px solid var(--pfv-line);
    border-bottom: 1px solid var(--pfv-line);
}

.pfv-dtc-pdp-points span {
    padding: 12px 8px 12px 0;
    color: var(--pfv-brown);
    font-size: 12px;
    font-weight: 650;
}

.pfv-dtc-tab-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pfv-dtc-tab-grid > div {
    padding: 20px;
    border: 1px solid var(--pfv-line);
}

.pfv-dtc-tab-grid strong,
.pfv-dtc-tab-grid span {
    display: block;
}

.pfv-dtc-tab-grid span {
    margin-top: 6px;
    color: var(--pfv-ink-soft);
    font-size: 13px;
}

.pfv-dtc-faq details {
    border-top: 1px solid var(--pfv-line);
}

.pfv-dtc-faq details:last-child {
    border-bottom: 1px solid var(--pfv-line);
}

.pfv-dtc-faq summary {
    padding: 18px 0;
    color: var(--pfv-brown);
    font-weight: 650;
    cursor: pointer;
}

.pfv-dtc-faq p {
    margin: 0;
    padding: 0 0 18px;
}

@media (max-width: 980px) {
    :root {
        --pfv-page: min(100% - 32px, 760px);
    }

    .pfv-dtc-site .pfv-nav-links {
        gap: 12px;
    }

    .pfv-dtc-site .pfv-nav-actions {
        gap: 12px;
    }

    .pfv-dtc-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pfv-dtc-story {
        grid-template-columns: 1fr;
    }

    .pfv-dtc-story-image {
        min-height: 540px;
    }

    .pfv-dtc-journal-grid {
        grid-template-columns: 1.3fr 1fr;
    }

    .pfv-dtc-journal-grid figure:nth-child(4) {
        display: none;
    }

    .pfv-dtc-newsletter {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 760px) {
    :root {
        --pfv-page: calc(100% - 32px);
    }

    .pfv-dtc-site .pfv-topbar {
        justify-content: center;
        min-height: 30px;
        padding: 6px 16px;
        text-align: center;
    }

    .pfv-dtc-site .pfv-topbar span:not(:first-child) {
        display: none;
    }

    .pfv-dtc-site .pfv-nav {
        min-height: 64px;
        padding: 0 16px;
    }

    .pfv-dtc-site .pfv-nav-links {
        align-items: stretch;
        gap: 0;
        padding: 12px 20px 24px;
        background: var(--pfv-cream);
    }

    .pfv-dtc-site .pfv-nav-links > a,
    .pfv-dtc-site .pfv-shop-menu > a {
        display: block;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--pfv-line);
    }

    .pfv-shop-menu {
        display: block;
        min-height: 0;
    }

    .pfv-shop-dropdown {
        position: static;
        display: grid;
        min-width: 0;
        padding: 0 0 8px 12px;
        visibility: visible;
        opacity: 1;
        transform: none;
        border: 0;
        box-shadow: none;
    }

    .pfv-shop-dropdown a {
        padding: 8px 0;
        color: var(--pfv-ink-soft);
    }

    .pfv-dtc-hero {
        min-height: 680px;
        align-items: end;
    }

    .pfv-dtc-hero-video {
        object-position: 62% center;
    }

    .pfv-dtc-hero-shade {
        background: linear-gradient(180deg, rgba(26, 31, 27, 0.12) 0%, rgba(26, 31, 27, 0.82) 58%, rgba(26, 31, 27, 0.94) 100%);
    }

    .pfv-dtc-hero-copy {
        padding: 250px 0 72px;
    }

    .pfv-dtc-hero h1 {
        font-size: 46px;
    }

    .pfv-dtc-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pfv-dtc-button {
        width: 100%;
    }

    .pfv-dtc-scroll {
        display: none;
    }

    .pfv-dtc-section {
        padding: 74px 0;
    }

    .pfv-dtc-section-heading {
        margin-bottom: 30px;
    }

    .pfv-dtc-section-heading h2,
    .pfv-dtc-story h2,
    .pfv-dtc-newsletter h2 {
        font-size: 38px;
    }

    .pfv-dtc-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .pfv-dtc-collection-grid {
        grid-template-columns: 1fr;
    }

    .pfv-dtc-collection {
        min-height: 380px;
    }

    .pfv-dtc-product-grid {
        gap: 34px 12px;
    }

    .pfv-dtc-product-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pfv-dtc-cart {
        justify-self: start;
    }

    .pfv-dtc-story {
        min-height: 0;
    }

    .pfv-dtc-story-image {
        min-height: 420px;
    }

    .pfv-dtc-story-copy {
        padding: 60px 24px 70px;
    }

    .pfv-dtc-value-grid {
        grid-template-columns: 1fr;
    }

    .pfv-dtc-value-grid article {
        padding: 34px 20px;
    }

    .pfv-dtc-value-grid article + article {
        border-top: 1px solid var(--pfv-line);
        border-left: 0;
    }

    .pfv-dtc-journal-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 360px 220px;
    }

    .pfv-dtc-journal-large {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .pfv-dtc-journal-grid figure:nth-child(4) {
        display: block;
    }

    .pfv-dtc-newsletter {
        padding: 64px 16px;
    }

    .pfv-dtc-newsletter-row {
        grid-template-columns: 1fr auto;
    }

    .single-product.pfv-dtc-site div.product {
        padding-top: 34px;
    }

    .pfv-dtc-tab-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .pfv-dtc-product-grid {
        grid-template-columns: 1fr;
    }

    .pfv-dtc-product-image {
        aspect-ratio: 5 / 6;
    }

    .pfv-dtc-journal-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 340px repeat(3, 240px);
    }

    .pfv-dtc-journal-large {
        grid-column: auto;
    }

    .pfv-dtc-newsletter-row {
        grid-template-columns: 1fr;
        border-bottom: 0;
    }

    .pfv-dtc-newsletter-row input {
        border-bottom: 1px solid var(--pfv-brown);
    }

    .pfv-dtc-newsletter-row button {
        margin-top: 12px;
        padding: 12px 18px;
        background: var(--pfv-green);
        color: var(--pfv-white);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pfv-dtc-hero-video {
        display: none;
    }

    .pfv-dtc-hero {
        background: var(--pfv-green-dark) url("pawfurvia-adventure-hero.webp") center / cover no-repeat;
    }

    .pfv-dtc-collection img,
    .pfv-dtc-product-image img,
    .pfv-dtc-story-image img,
    .pfv-dtc-journal figure img {
        transition: none;
    }
}
