/* =========================================================
   Dream World Kittens — Main Stylesheet v2
   Clean minimal. Charcoal ink + bright pink accent.
   UI language borrowed from rebecca-herman-fostering
   (uppercase headings, pill buttons, rounded cards,
    full-bleed dark hero), toned with rosenfield's
    whitespace and hairline detail.
   ========================================================= */

:root {
    /* Ink / charcoal scale */
    --dwk-black-950:  #0A0A0C;
    --dwk-black-900:  #0E0E10;
    --dwk-black-800:  #16161A;
    --dwk-black-700:  #202026;
    --dwk-black-600:  #2C2C33;
    --dwk-gray-500:   #4E4E57;
    --dwk-gray-600:   #3B3B43;
    --dwk-gray-700:   #2F2F36;
    --dwk-gray-800:   #232329;
    --dwk-gray-400:   #70707A;
    --dwk-gray-300:   #9C9CA6;
    --dwk-gray-200:   #C9C9CF;
    --dwk-gray-100:   #E8E8EA;
    --dwk-cream:      #F6F4F1;

    /* Bright pink accent */
    --dwk-pink-50:    #FFF0F6;
    --dwk-pink-100:   #FFDCEC;
    --dwk-pink-200:   #FFBADA;
    --dwk-pink-300:   #FF90C1;
    --dwk-pink-400:   #FF5AA5;
    --dwk-pink-500:   #FF2E88;
    --dwk-pink-600:   #E61873;
    --dwk-pink-700:   #B31659;
    --dwk-pink-800:   #8C144A;

    /* Semantic */
    --dwk-white:      #FFFFFF;
    --dwk-bg:         var(--dwk-white);
    --dwk-bg-alt:     var(--dwk-cream);
    --dwk-bg-dark:    var(--dwk-black-950);
    --dwk-text:       #26262C;
    --dwk-text-mute:  var(--dwk-gray-400);
    --dwk-border:     #E6E4DF;
    --dwk-heading:    var(--dwk-black-900);
    --dwk-accent:     var(--dwk-pink-500);
    --dwk-accent-dark: var(--dwk-pink-700);

    /* Layout */
    --dwk-container: 1280px;
    --dwk-radius-sm: 8px;
    --dwk-radius:    14px;
    --dwk-radius-lg: 20px;
    --dwk-radius-xl: 28px;
    --dwk-radius-full: 9999px;

    /* Motion */
    --dwk-ease: cubic-bezier(0.4, 0, 0.2, 1);

    /* Type */
    --dwk-font-heading: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --dwk-font-body:    'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ====== Elementor Global Color Presets ====== */
:root {
    --e-global-color-primary:   var(--dwk-pink-500);
    --e-global-color-secondary: var(--dwk-black-800);
    --e-global-color-text:      var(--dwk-text);
    --e-global-color-accent:    var(--dwk-pink-400);
}

/* =========================================================
   Reset + Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--dwk-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dwk-text);
    background: var(--dwk-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
svg { flex-shrink: 0; }
a {
    color: var(--dwk-pink-600);
    text-decoration: none;
    transition: color .25s var(--dwk-ease);
}
a:hover { color: var(--dwk-pink-700); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--dwk-font-heading);
    color: var(--dwk-heading);
    line-height: 1.12;
    margin: 0 0 .6em;
    font-weight: 800;
    letter-spacing: -0.015em;
}
h1, h2 { text-transform: uppercase; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.625rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 1.8vw, 1.375rem); }

p { margin: 0 0 1em; }

/* Icon sizing */
.dwk-icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; }

/* =========================================================
   Kicker / eyebrow — micro-uppercase with pink dash
   ========================================================= */
.dwk-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--dwk-font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--dwk-pink-500);
    margin-bottom: 18px;
}
.dwk-kicker::before {
    content: '';
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background: var(--dwk-pink-500);
}
.dwk-kicker--center { justify-content: center; }
.dwk-kicker--center::after {
    content: '';
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background: var(--dwk-pink-500);
}
.dwk-kicker--light { color: var(--dwk-pink-300); }
.dwk-kicker--light::before,
.dwk-kicker--light::after { background: var(--dwk-pink-300); }

/* =========================================================
   Layout
   ========================================================= */
.dwk-container {
    width: 100%;
    max-width: var(--dwk-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.dwk-section { padding: 88px 0; }
.dwk-section--alt { background: var(--dwk-bg-alt); }
.dwk-section--dark {
    background: var(--dwk-bg-dark);
    color: rgba(255, 255, 255, .78);
}
.dwk-section--dark h1,
.dwk-section--dark h2,
.dwk-section--dark h3 { color: var(--dwk-white); }

.dwk-grid { display: grid; gap: 2rem; }
.dwk-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dwk-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dwk-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Home "Browse by Breed" — all 6 across on desktop, 3 (two rows) on tablet, 2 on phones. */
.dwk-grid--breeds { grid-template-columns: repeat(6, minmax(0, 1fr)); }

@media (max-width: 1024px) {
    .dwk-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dwk-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dwk-grid--breeds { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .dwk-grid--4, .dwk-grid--3, .dwk-grid--2 { grid-template-columns: 1fr; }
    .dwk-grid--breeds { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* =========================================================
   Buttons — pill, uppercase, no shadow
   ========================================================= */
.dwk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--dwk-radius-full);
    border: 1px solid transparent;
    font-family: var(--dwk-font-body);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: background .25s var(--dwk-ease),
                color .25s var(--dwk-ease),
                border-color .25s var(--dwk-ease),
                transform .25s var(--dwk-ease),
                box-shadow .25s var(--dwk-ease);
}
.dwk-btn:hover { transform: translateY(-2px); text-decoration: none; }
.dwk-btn--sm { padding: 12px 22px; font-size: 11px; }
.dwk-btn--lg { padding: 18px 40px; font-size: 13px; }

.dwk-btn { background: var(--dwk-pink-500); color: var(--dwk-white); }
.dwk-btn:hover {
    background: var(--dwk-pink-600);
    color: var(--dwk-white);
    box-shadow: 0 12px 24px rgba(255, 46, 136, .28);
}
.dwk-btn--outline {
    background: transparent;
    color: var(--dwk-black-900);
    border-color: var(--dwk-gray-200);
}
.dwk-btn--outline:hover {
    background: var(--dwk-pink-50);
    color: var(--dwk-pink-700);
    border-color: var(--dwk-pink-300);
    box-shadow: none;
}
.dwk-btn--white { background: var(--dwk-white); color: var(--dwk-black-900); }
.dwk-btn--white:hover { background: var(--dwk-cream); color: var(--dwk-black-900); box-shadow: 0 12px 24px rgba(0,0,0,.18); }
.dwk-btn--ghost {
    background: transparent;
    color: var(--dwk-white);
    border-color: rgba(255, 255, 255, .45);
}
.dwk-btn--ghost:hover { background: rgba(255,255,255,.12); color: var(--dwk-white); box-shadow: none; }

/* =========================================================
   Header
   ========================================================= */
.dwk-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: var(--dwk-white);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.dwk-header.is-scrolled {
    border-bottom-color: var(--dwk-border);
    box-shadow: 0 1px 0 rgba(14,14,16,.04);
}
.dwk-header--transparent { background: transparent; border-bottom-color: transparent; }
.dwk-header--transparent .dwk-logo-text { color: var(--dwk-white); }
.dwk-header--transparent .dwk-nav a { color: rgba(255,255,255,.92); }
.dwk-header--transparent .dwk-nav a::after { background: var(--dwk-pink-500); }
.dwk-header--transparent .dwk-menu-toggle { color: var(--dwk-white); }
.dwk-header--transparent.is-scrolled {
    background: rgba(14,14,16,.9);
    border-bottom-color: rgba(255,255,255,.1);
}
.dwk-header--transparent.is-scrolled.scrolled-transparent {
    background: rgba(20,20,24,.95);
    border-bottom-color: rgba(255,255,255,.12);
}

.dwk-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}
.dwk-logo { display: flex; align-items: center; gap: .5rem; }
.dwk-logo img { max-height: 40px; width: auto; }
.dwk-logo-text {
    font-family: var(--dwk-font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dwk-black-900);
}
.dwk-logo-text em { font-style: normal; color: var(--dwk-pink-500); }

.dwk-nav { display: flex; gap: .25rem; align-items: center; flex: 1; justify-content: center; }
.dwk-nav ul { list-style: none; display: flex; gap: .25rem; margin: 0; padding: 0; align-items: center; }
.dwk-nav li { position: relative; }
.dwk-nav a {
    position: relative;
    display: inline-block;
    padding: 14px 18px;
    color: var(--dwk-black-800);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--dwk-radius-sm);
    transition: color .25s ease;
}
.dwk-nav a::after {
    content: '';
    position: absolute;
    left: 18px; right: 18px; bottom: 8px;
    height: 2px;
    border-radius: 2px;
    background: var(--dwk-pink-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--dwk-ease);
}
.dwk-nav a:hover { color: var(--dwk-pink-600); }
.dwk-nav a:hover::after,
.dwk-nav .current-menu-item > a::after,
.dwk-nav .current_page_item > a::after,
.dwk-nav .current_page_parent > a::after { transform: scaleX(1); }
.dwk-nav .current-menu-item > a,
.dwk-nav .current_page_item > a { color: var(--dwk-pink-600); }

/* Desktop dropdown (sub-menu) */
.dwk-nav ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 230px;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: .7rem .5rem;
    background: var(--dwk-white);
    border: 1px solid var(--dwk-pink-100);
    border-radius: var(--dwk-radius);
    box-shadow: 0 24px 44px rgba(14,14,16,.14);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s var(--dwk-ease), transform .28s var(--dwk-ease), visibility .28s;
    max-width: none;
    width: max-content;
    z-index: 30;
}
.dwk-nav li:hover > .sub-menu,
.dwk-nav li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dwk-nav ul.sub-menu li { width: 100%; }
.dwk-nav ul.sub-menu a {
    display: flex;
    width: 100%;
    white-space: nowrap;
    padding: .7rem .85rem;
    border-radius: var(--dwk-radius-sm);
}
.dwk-nav ul.sub-menu a::after { display: none; }

.dwk-header__cta { display: flex; gap: .75rem; align-items: center; }
.dwk-cart-btn { gap: 6px; }

.dwk-menu-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: .5rem;
    color: var(--dwk-black-900);
}
.dwk-menu-toggle svg { width: 26px; height: 26px; }

/* =========================================================
   Hero — full-bleed dark, gradient overlay, centered
   ========================================================= */
.dwk-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: rgba(255,255,255,.85);
    background: var(--dwk-black-950);
}
.dwk-hero__bg { position: absolute; inset: 0; z-index: 0; }
.dwk-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.dwk-hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(10,10,12,.88) 0%,
        rgba(10,10,12,.74) 42%,
        rgba(16,16,20,.94) 100%
    );
}
.dwk-hero__content {
    position: relative; z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 9rem 1.5rem 6rem;
}
.dwk-kicker.dwk-hero__eyebrow { color: var(--dwk-pink-300); }
.dwk-kicker.dwk-hero__eyebrow::before,
.dwk-kicker.dwk-hero__eyebrow::after { background: var(--dwk-pink-500); }
.dwk-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--dwk-white);
    margin-bottom: 1.5rem;
    line-height: 1.04;
    letter-spacing: -0.02em;
}
.dwk-hero__title span { color: var(--dwk-pink-400); }
.dwk-hero__sub {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: rgba(255,255,255,.78);
    margin-bottom: 2.25rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.dwk-hero__sub2 {
    font-size: 1rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 2.25rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.dwk-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats row in hero */
.dwk-hero__stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.14);
    flex-wrap: wrap;
}
.dwk-hero__stat { text-align: center; }
.dwk-hero__stat-num {
    font-family: var(--dwk-font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dwk-white);
    line-height: 1;
}
.dwk-hero__stat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: rgba(255,255,255,.55);
    margin-top: .625rem;
}

/* =========================================================
   Section heading
   ========================================================= */
.dwk-heading { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.dwk-heading__eyebrow,
.dwk-heading .dwk-kicker { justify-content: center; }
.dwk-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--dwk-font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--dwk-pink-500);
    margin-bottom: 18px;
}
.dwk-heading__eyebrow::before,
.dwk-heading__eyebrow::after {
    content: '';
    width: 30px; height: 2px;
    border-radius: 2px;
    background: var(--dwk-pink-500);
}
.dwk-heading__eyebrow::before { margin-right: 10px; }
.dwk-heading__eyebrow::after { margin-left: 10px; }
.dwk-heading__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}
.dwk-heading__sub {
    color: var(--dwk-text-mute);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* =========================================================
   Kitten card — white rounded card, inset 4:5 image
   ========================================================= */
.dwk-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--dwk-white);
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius-lg);
    padding: 10px;
    transition: transform .35s var(--dwk-ease), box-shadow .35s var(--dwk-ease), border-color .35s var(--dwk-ease);
}
.dwk-card:hover {
    transform: translateY(-6px);
    border-color: var(--dwk-pink-200);
    box-shadow: 0 24px 48px rgba(14,14,16,.1);
}
.dwk-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    display: block;
    border-radius: var(--dwk-radius);
    background: var(--dwk-cream);
}
.dwk-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--dwk-ease);
}
.dwk-card:hover .dwk-card__media img,
.dwk-card__media:hover img { transform: scale(1.07); }

/* Tag/status pill on image */
.dwk-card__tag {
    position: absolute;
    top: 14px; left: 14px;
    padding: 7px 14px;
    background: var(--dwk-pink-500);
    color: var(--dwk-white);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: var(--dwk-radius-full);
    z-index: 2;
    box-shadow: 0 6px 16px rgba(255,46,136,.35);
}
.dwk-card__tag--reserved,
.dwk-card__tag--sold {
    background: rgba(20,20,24,.88);
    color: rgba(255,255,255,.92);
    box-shadow: none;
    backdrop-filter: blur(4px);
}

.dwk-card__body {
    padding: 1.25rem .75rem .75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.dwk-card__meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--dwk-text-mute);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.dwk-card__meta svg { width: 12px; height: 12px; color: var(--dwk-pink-400); }
.dwk-card__title {
    font-family: var(--dwk-font-heading);
    font-size: 1.375rem;
    color: var(--dwk-heading);
    margin: 0;
    line-height: 1.2;
    text-transform: none;
}
.dwk-card__excerpt {
    color: var(--dwk-text-mute);
    font-size: .875rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dwk-card__price {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--dwk-pink-600);
    margin-bottom: .25rem;
}
.dwk-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: .875rem;
    border-top: 1px solid var(--dwk-border);
    margin-top: auto;
}
.dwk-card__cta-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--dwk-black-900);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: color .25s ease;
}
.dwk-card:hover .dwk-card__cta-text { color: var(--dwk-pink-600); }
.dwk-card__cta-text svg { width: 14px; height: 14px; transition: transform .25s var(--dwk-ease); color: var(--dwk-pink-500); }
.dwk-card:hover .dwk-card__cta-text svg { transform: translateX(4px); }
.dwk-card__cta-icon { display: none; }

/* Horizontal scroll wrapper for the featured kittens row */
.dwk-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.dwk-scroll > * {
    flex: 0 0 280px;
    scroll-snap-align: center;
}
@media (min-width: 640px) { .dwk-scroll > * { flex: 0 0 300px; } }

/* =========================================================
   Process / Steps — white cards, huge watermark number
   ========================================================= */
.dwk-step {
    background: var(--dwk-white);
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius-lg);
    padding: 2rem;
    position: relative;
    transition: border-color .25s ease, box-shadow .25s ease, transform .35s var(--dwk-ease);
    height: 100%;
}
.dwk-step:hover {
    border-color: var(--dwk-pink-200);
    box-shadow: 0 20px 40px rgba(14,14,16,.07);
    transform: translateY(-4px);
}
.dwk-step__num {
    position: absolute;
    top: -8px; right: 1.25rem;
    font-family: var(--dwk-font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--dwk-pink-100);
    line-height: 1;
    pointer-events: none;
}
.dwk-step__icon {
    width: 52px; height: 52px;
    background: var(--dwk-pink-50);
    color: var(--dwk-pink-500);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.dwk-step__icon svg { width: 22px; height: 22px; }
.dwk-step__title {
    font-family: var(--dwk-font-heading);
    font-size: 1.125rem;
    color: var(--dwk-heading);
    margin: 0 0 .5rem;
    text-transform: none;
}
.dwk-step__desc { color: var(--dwk-text-mute); font-size: .9375rem; margin: 0; }

/* =========================================================
   Categories — image fills, name overlay + arrow pill
   ========================================================= */
.dwk-cat {
    display: block;
    text-decoration: none;
    color: inherit;
}
.dwk-cat__media {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--dwk-cream);
}
.dwk-cat__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--dwk-ease);
}
.dwk-cat:hover .dwk-cat__media img { transform: scale(1.07); }
.dwk-cat__body {
    display: block;
    padding-top: .375rem;
}
.dwk-cat__name {
    font-family: var(--dwk-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dwk-black-900);
    margin: 0 0 .125rem;
}
.dwk-cat__count {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--dwk-pink-300);
}

/* Breeds page cards (dwk-cat--breed): image + name under, no border/radius/shadow by default.
   On hover the card rounds and the breed description fades in over the image with a dark gradient. */
.dwk-cat--breed .dwk-cat__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--dwk-cream);
}
.dwk-cat--breed .dwk-cat__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.dwk-cat--breed .dwk-cat__desc {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(10,5,15,0) 0%, rgba(18,8,24,.82) 100%);
    color: var(--dwk-white);
    font-size: .95rem;
    line-height: 1.6;
    opacity: 0;
    transition: opacity .35s var(--dwk-ease);
    pointer-events: none;
}
.dwk-cat--breed:hover {
    border-radius: var(--dwk-radius-lg);
    box-shadow: var(--dwk-shadow-sm);
}
.dwk-cat--breed:hover .dwk-cat__media {
    border-radius: var(--dwk-radius-lg);
    overflow: hidden;
}
.dwk-cat--breed:hover .dwk-cat__desc {
    opacity: 1;
}
.dwk-cat--breed:hover .dwk-cat__media img {
    transform: scale(1.07);
}

/* Arrow pill, appears on hover */
.dwk-cat__arrow {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    z-index: 3;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    color: var(--dwk-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s var(--dwk-ease), transform .3s var(--dwk-ease), background .3s var(--dwk-ease);
}
.dwk-cat:hover .dwk-cat__arrow { opacity: 1; transform: translateY(0); }
.dwk-cat__arrow:hover { background: var(--dwk-pink-500); }
.dwk-cat__arrow svg { width: 16px; height: 16px; }

/* =========================================================
   Features (icon + title + desc) — borderless cards
   ========================================================= */
.dwk-feature {
    background: var(--dwk-white);
    padding: 2rem;
    border-radius: var(--dwk-radius-lg);
    border: 1px solid var(--dwk-border);
    transition: border-color .25s ease, box-shadow .25s ease;
    height: 100%;
}
.dwk-feature:hover { border-color: var(--dwk-pink-200); box-shadow: 0 20px 40px rgba(14,14,16,.07); }
.dwk-feature__icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    background: var(--dwk-pink-50);
    color: var(--dwk-pink-500);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    line-height: 1;
}
.dwk-feature__icon svg { width: 24px; height: 24px; }
.dwk-feature__title {
    font-family: var(--dwk-font-heading);
    font-size: 1.125rem;
    color: var(--dwk-heading);
    margin: 0 0 .5rem;
    text-transform: none;
}
.dwk-feature__desc { color: var(--dwk-text-mute); font-size: .9375rem; margin: 0; line-height: 1.65; }

/* =========================================================
   Testimonials
   ========================================================= */
.dwk-testimonial {
    background: var(--dwk-white);
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius-lg);
    padding: 2rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.dwk-testimonial__quote-icon { color: var(--dwk-pink-300); margin-bottom: 1rem; }
.dwk-testimonial__quote-icon svg { width: 32px; height: 32px; }
.dwk-testimonial__stars {
    color: var(--dwk-pink-500);
    margin-bottom: 1rem;
    display: flex;
    gap: 2px;
    font-size: 15px;
    letter-spacing: 2px;
}
.dwk-testimonial__stars svg { width: 15px; height: 15px; fill: currentColor; }
.dwk-testimonial__text {
    color: var(--dwk-text);
    margin: 0 0 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}
.dwk-testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--dwk-border);
}
.dwk-testimonial__avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--dwk-black-900);
    color: var(--dwk-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9375rem;
}
.dwk-testimonial__name {
    font-family: var(--dwk-font-heading);
    font-weight: 800;
    color: var(--dwk-heading);
    margin: 0;
    font-size: .9375rem;
}
.dwk-testimonial__location { color: var(--dwk-text-mute); font-size: .8125rem; margin: 0; }

/* =========================================================
   Horizontal scroll row (similar kittens, any card rows)
   ========================================================= */
.dwk-scroll-row {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 6px 4px 1.5rem;
    scroll-snap-type: x proximity;
    scrollbar-color: var(--dwk-pink-300) transparent;
    scrollbar-width: thin;
}
.dwk-scroll-row > * {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 260px;
    scroll-snap-align: start;
}
.dwk-scroll-row::-webkit-scrollbar { height: 8px; }
.dwk-scroll-row::-webkit-scrollbar-thumb { background: var(--dwk-pink-200); border-radius: 99px; }
.dwk-scroll-row::-webkit-scrollbar-track { background: var(--dwk-cream); border-radius: 99px; }

/* Empty-cart quick-pick rail */
.dwk-quick-pick { margin-top: 2.75rem; }
.dwk-quick-pick__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0 0 1.5rem;
}
.dwk-quick-pick__head h3 { margin: 0; font-size: 1.4rem; color: var(--dwk-heading); }
.dwk-quick-pick__head p { margin: 0; color: var(--dwk-text-mute); font-size: .95rem; }
.dwk-scroll-row--mini { gap: 1rem; }
.dwk-scroll-row--mini > * { flex: 0 0 175px; min-width: 165px; scroll-snap-align: start; }
.dwk-card--mini .dwk-card__media { aspect-ratio: 1 / 1; margin-bottom: .1rem; }
.dwk-card--mini .dwk-card__body { padding: .7rem .4rem .5rem; gap: .4rem; }
.dwk-card--mini .dwk-card__title { font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dwk-card--mini .dwk-card__price { font-size: 1rem; margin-bottom: .1rem; }
.dwk-quick-pick__add {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: .35rem;
    padding: 10px 12px;
}
@media (max-width: 640px) {
    .dwk-scroll-row--mini > * { flex: 0 0 150px; min-width: 140px; }
    .dwk-quick-pick__head { flex-direction: column; align-items: flex-start; gap: .35rem; }
}

/* =========================================================
   Testimonials — horizontal marquee
   ========================================================= */
.dwk-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.dwk-marquee__track {
    display: flex;
    width: max-content;
    animation: dwk-marquee 45s linear infinite;
    will-change: transform;
}
.dwk-marquee:hover .dwk-marquee__track { animation-play-state: paused; }
.dwk-marquee__group {
    display: flex;
}
.dwk-marquee__group .dwk-testimonial {
    flex: 0 0 clamp(300px, 28vw, 420px);
    height: auto;
    margin-right: 1.5rem;
}
.dwk-marquee--reduced .dwk-marquee__track { animation-play-state: paused; }
@keyframes dwk-marquee {
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .dwk-marquee__track { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* Kitten moods marquee (contact page) */
.dwk-moods-marquee { max-width: 100%; overflow: hidden; padding-top: 1rem; }
.dwk-moods-marquee .dwk-marquee__group { display: flex; align-items: stretch; gap: 1rem; padding-right: 1rem; }
.dwk-moods-marquee__item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-width: 118px;
    padding: 1rem .85rem .9rem;
    background: var(--dwk-white);
    border: 1px solid var(--dwk-pink-100);
    border-radius: var(--dwk-radius);
    box-shadow: 0 12px 28px rgba(14, 14, 16, .06);
    transition: transform .3s var(--dwk-ease), border-color .3s ease, box-shadow .3s ease;
}
.dwk-moods-marquee__item:hover {
    transform: translateY(-5px) rotate(-2deg);
    border-color: var(--dwk-pink-300);
    box-shadow: 0 18px 36px rgba(236, 72, 153, .16);
}
.dwk-moods-marquee__icon { width: 54px; height: auto; display: block; }
.dwk-moods-marquee__label {
    font-family: var(--dwk-font-heading);
    font-weight: 800;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--dwk-gray-700);
}
@media (max-width: 640px) {
    .dwk-moods-marquee__item { min-width: 104px; padding: .8rem .6rem .75rem; }
    .dwk-moods-marquee__icon { width: 46px; }
}

/* =========================================================
   FAQ
   ========================================================= */
.dwk-faq {
    background: var(--dwk-white);
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: .875rem;
    transition: border-color .25s ease;
}
.dwk-faq[open] { border-color: var(--dwk-pink-300); }
.dwk-faq summary {
    font-family: var(--dwk-font-heading);
    font-weight: 800;
    color: var(--dwk-heading);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.0625rem;
}
.dwk-faq summary::-webkit-details-marker { display: none; }
.dwk-faq summary::after {
    content: '';
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--dwk-pink-50);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff2e88' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5v14'/%3E%3C/svg%3E");
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform .3s ease;
}
.dwk-faq[open] summary::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff2e88' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
    transform: rotate(45deg);
}
.dwk-faq__answer { margin-top: 1rem; color: var(--dwk-text-mute); line-height: 1.7; }

/* =========================================================
   CTA — bright pink band
   ========================================================= */
.dwk-cta {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.dwk-cta__eyebrow {
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    display: inline-flex;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
}
.dwk-cta__eyebrow svg { width: 14px; height: 14px; }
.dwk-cta__title {
    color: var(--dwk-white);
    margin-bottom: 1rem;
}
.dwk-cta__text {
    color: rgba(255,255,255,.85);
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
}
.dwk-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.dwk-section--pink {
    background: linear-gradient(120deg, var(--dwk-pink-600) 0%, var(--dwk-pink-500) 100%);
    color: var(--dwk-white);
}

/* =========================================================
   Footer — charcoal
   ========================================================= */
.dwk-footer {
    background: var(--dwk-black-950);
    color: rgba(255,255,255,.7);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}
.dwk-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5'%3E%3Ccircle cx='11' cy='4' r='2'/%3E%3Ccircle cx='18' cy='8' r='2'/%3E%3Ccircle cx='20' cy='16' r='2'/%3E%3Cpath d='M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z'/%3E%3C/svg%3E");
    background-size: 96px;
}
.dwk-footer > .dwk-container { position: relative; z-index: 1; }
.dwk-footer a { color: rgba(255,255,255,.7); transition: color .2s ease; }
.dwk-footer a:hover { color: var(--dwk-pink-300); }
.dwk-footer__cols {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.dwk-footer__title {
    font-family: var(--dwk-font-body);
    color: var(--dwk-pink-300);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .22em;
    margin-bottom: 1.25rem;
}
.dwk-footer__brand {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--dwk-white);
    margin-bottom: .75rem;
}
.dwk-footer__brand em { font-style: normal; color: var(--dwk-pink-400); }
.dwk-footer__tagline {
    color: rgba(255,255,255,.55);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.dwk-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.dwk-footer__contact { display: flex; flex-direction: column; gap: .75rem; }
.dwk-footer__contact-item { display: inline-flex; align-items: center; gap: .75rem; }
.dwk-footer__contact-item svg { width: 16px; height: 16px; color: var(--dwk-pink-300); flex-shrink: 0; }
.dwk-footer__bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 13px;
    color: rgba(255,255,255,.5);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}
.dwk-footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; }
.dwk-footer__legal a { color: rgba(255,255,255,.6); transition: color .2s ease; white-space: nowrap; }
.dwk-footer__legal a:hover { color: var(--dwk-pink-300); }
.dwk-footer__social { display: flex; gap: .75rem; margin-top: 1rem; align-items: center; }
.dwk-footer__social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease;
}
.dwk-footer__social svg { width: 16px; height: 16px; }
.dwk-footer__social a:hover { background: var(--dwk-pink-500); color: var(--dwk-white); }

/* =========================================================
   Forms
   ========================================================= */
.dwk-form { display: grid; gap: 1rem; max-width: 600px; margin: 0 auto; }
.dwk-form input,
.dwk-form textarea,
.dwk-form select {
    width: 100%;
    padding: .9rem 1rem;
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius);
    background: var(--dwk-white);
    font-family: inherit;
    font-size: 1rem;
    color: var(--dwk-text);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.dwk-form input:focus,
.dwk-form textarea:focus,
.dwk-form select:focus {
    outline: none;
    border-color: var(--dwk-pink-400);
    box-shadow: 0 0 0 3px rgba(255,46,136,.12);
}
.dwk-form label { font-weight: 700; color: var(--dwk-heading); margin-bottom: .25rem; display: block; }
.dwk-form .dwk-btn { justify-self: start; }

/* Contact Form 7 */
.wpcf7-form { display: grid; gap: 1.25rem; }
.wpcf7-form label { display: block; font-weight: 700; color: var(--dwk-heading); margin-bottom: .35rem; font-size: .875rem; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: .9rem 1rem;
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius);
    background: var(--dwk-white);
    font-family: inherit;
    font-size: 1rem;
    color: var(--dwk-text);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: var(--dwk-pink-400);
    box-shadow: 0 0 0 3px rgba(255,46,136,.12);
}
.wpcf7-form textarea { min-height: 140px; resize: vertical; }
.wpcf7-form input[type="submit"] {
    background: var(--dwk-pink-500) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: var(--dwk-radius-full) !important;
    padding: 16px 30px !important;
    font-family: var(--dwk-font-body) !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s var(--dwk-ease) !important;
    width: auto;
    justify-self: start;
}
.wpcf7-form input[type="submit"]:hover { background: var(--dwk-pink-600) !important; }
.wpcf7-form .wpcf7-not-valid { border-color: #e53e3e !important; }
.wpcf7-form .wpcf7-not-valid-tip { color: #e53e3e; font-size: .85rem; margin-top: .25rem; }
.wpcf7-form .wpcf7-validation-errors {
    background: #fef2f2;
    border-left: 4px solid #e53e3e;
    padding: .75rem 1rem;
    border-radius: var(--dwk-radius);
    color: #742a2a;
}
.wpcf7-form .wpcf7-mail-sent-ok {
    background: var(--dwk-pink-50);
    border-left: 4px solid var(--dwk-pink-500);
    padding: .75rem 1rem;
    border-radius: var(--dwk-radius);
    color: var(--dwk-black-800);
}

/* =========================================================
   Blog / Articles
   ========================================================= */
.dwk-post-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--dwk-radius-lg);
    overflow: hidden;
    background: var(--dwk-white);
    border: 1px solid var(--dwk-border);
    padding: 10px;
    transition: transform .35s var(--dwk-ease), box-shadow .35s var(--dwk-ease);
}
.dwk-post-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(14,14,16,.1); }
.dwk-post-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--dwk-radius);
    background: var(--dwk-cream);
}
.dwk-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--dwk-ease); }
.dwk-post-card:hover .dwk-post-card__media img { transform: scale(1.05); }
.dwk-post-card__body { padding: 1.25rem .75rem .75rem; flex-grow: 1; display: flex; flex-direction: column; }
.dwk-post-card__meta {
    color: var(--dwk-pink-600);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
    margin-bottom: .625rem;
}
.dwk-post-card__title { margin: 0 0 .625rem; font-size: 1.25rem; line-height: 1.3; text-transform: none; }
.dwk-post-card__excerpt { color: var(--dwk-text-mute); font-size: .9375rem; line-height: 1.6; margin-bottom: 1rem; flex-grow: 1; }
.dwk-post-card__readmore {
    color: var(--dwk-black-900);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.dwk-post-card__readmore svg { width: 14px; height: 14px; color: var(--dwk-pink-500); transition: transform .2s var(--dwk-ease); }
.dwk-post-card:hover .dwk-post-card__readmore svg { transform: translateX(3px); }

.dwk-article { max-width: 760px; margin: 0 auto; padding: 4rem 1.5rem; }
.dwk-legal { padding: 0 1.5rem 3rem; }
@media (max-width: 640px) {
    .dwk-legal { padding: 0 1.25rem 2.5rem; }
}
.dwk-article h2 { margin-top: 2.5rem; }
.dwk-article p { font-size: 1.0625rem; color: var(--dwk-text); margin-bottom: 1.25rem; line-height: 1.75; }
.dwk-article img { border-radius: var(--dwk-radius-lg); margin: 2rem 0; }
.dwk-article blockquote {
    border-left: 3px solid var(--dwk-pink-500);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--dwk-text);
    background: var(--dwk-pink-50);
    border-radius: 0 var(--dwk-radius) var(--dwk-radius) 0;
}

/* =========================================================
   Single Kitten
   ========================================================= */
.dwk-kitten-single {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
    align-items: start;
}
.dwk-kitten-single__gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.dwk-gallery__main {
    position: relative;
    border-radius: var(--dwk-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--dwk-cream);
}
.dwk-gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }
.dwk-gallery__thumbs { display: flex; gap: .75rem; flex-wrap: wrap; }
.dwk-gallery__thumb {
    width: 84px;
    height: 84px;
    padding: 0;
    flex: 0 0 auto;
    border: 2px solid transparent;
    border-radius: var(--dwk-radius-sm);
    overflow: hidden;
    cursor: pointer;
    background: none;
    transition: border-color .2s var(--dwk-ease);
}
.dwk-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dwk-gallery__thumb.is-active,
.dwk-gallery__thumb:hover { border-color: var(--dwk-pink-500); }
@media (max-width: 640px) { .dwk-gallery__thumb { width: 64px; height: 64px; } }

/* ---------- Fullscreen lightbox ---------- */
.dwk-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 6vh 7vw;
    background: rgba(10, 8, 14, .94);
}
.dwk-lightbox.is-open { display: flex; }
.dwk-lightbox__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--dwk-radius-sm);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
.dwk-lightbox__close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s var(--dwk-ease);
}
.dwk-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s var(--dwk-ease);
}
.dwk-lightbox__close:hover,
.dwk-lightbox__nav:hover { background: var(--dwk-pink-500); }
.dwk-lightbox__nav--prev { left: 1.5rem; }
.dwk-lightbox__nav--next { right: 1.5rem; }
@media (max-width: 640px) {
    .dwk-lightbox { padding: 4vh 4vw; }
    .dwk-lightbox__nav { width: 42px; height: 42px; font-size: 26px; }
    .dwk-lightbox__nav--prev { left: .5rem; }
    .dwk-lightbox__nav--next { right: .5rem; }
    .dwk-lightbox__close { top: .75rem; right: .75rem; width: 40px; height: 40px; font-size: 24px; }
}
.dwk-kitten-single__badge {
    position: absolute;
    top: 1rem; left: 1rem;
    padding: 7px 16px;
    background: var(--dwk-pink-500);
    color: var(--dwk-white);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: var(--dwk-radius-full);
}
.dwk-kitten-single__badge--reserved,
.dwk-kitten-single__badge--sold { background: var(--dwk-black-800); }
.dwk-kitten-single__title { margin-bottom: .5rem; text-transform: none; }
.dwk-kitten-single__meta {
    background: var(--dwk-cream);
    padding: 1.5rem;
    border-radius: var(--dwk-radius-lg);
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .125rem 1.25rem;
}
.dwk-kitten-single__meta dt {
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--dwk-pink-600);
    padding-top: .375rem;
}
.dwk-kitten-single__meta dd { margin: 0; color: var(--dwk-text); font-weight: 600; }
.dwk-kitten-single__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

@media (max-width: 900px) {
    .dwk-kitten-single { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
}

/* =========================================================
   Pagination
   ========================================================= */
.dwk-pagination {
    display: flex;
    justify-content: center;
    gap: .375rem;
    padding: 3rem 0;
}
.dwk-pagination a, .dwk-pagination span {
    min-width: 42px;
    height: 42px;
    padding: 0 .875rem;
    border-radius: var(--dwk-radius-full);
    background: var(--dwk-white);
    border: 1px solid var(--dwk-border);
    color: var(--dwk-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .875rem;
    transition: all .2s ease;
}
.dwk-pagination a:hover, .dwk-pagination .current {
    background: var(--dwk-black-900);
    color: var(--dwk-white);
    border-color: var(--dwk-black-900);
}

/* =========================================================
   Page hero (inner pages) — dark band
   ========================================================= */
.dwk-page-hero {
    padding: clamp(8.5rem, 13vw, 11rem) 0 clamp(4rem, 7vw, 5.5rem);
    text-align: center;
    background: var(--dwk-black-950);
    background-image:
        radial-gradient(120% 140% at 50% 0%, rgba(255,46,136,.2) 0%, rgba(255,46,136,0) 45%),
        linear-gradient(180deg, rgba(10,10,12,.72) 0%, rgba(10,10,12,.9) 100%),
        url("https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Bissel_3.jpg/1280px-Bissel_3.jpg");
    background-size: auto, auto, cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.dwk-page-hero .dwk-container { position: relative; z-index: 1; }
.dwk-page-hero h1 {
    color: var(--dwk-white);
    margin-bottom: .75rem;
    position: relative;
}
.dwk-page-hero p {
    color: rgba(255,255,255,.68);
    font-size: 1.0625rem;
    max-width: 620px;
    margin: 0 auto;
    position: relative;
}
.dwk-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
}
.dwk-breadcrumbs a { color: rgba(255,255,255,.55); }
.dwk-breadcrumbs a:hover { color: var(--dwk-pink-300); }
.dwk-breadcrumbs svg { width: 12px; height: 12px; opacity: .5; }

.dwk-page-hero--light {
    background: var(--dwk-bg-alt);
    background-image: none;
}
.dwk-page-hero--light h1 { color: var(--dwk-heading); }
.dwk-page-hero--light p { color: var(--dwk-text-mute); }
.dwk-page-hero--light .dwk-breadcrumbs,
.dwk-page-hero--light .dwk-breadcrumbs a { color: var(--dwk-text-mute); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
    .dwk-hero__content { padding: 8rem 1.5rem 4rem; }
    .dwk-hero__stats { gap: 2rem; margin-top: 3rem; padding-top: 2rem; }
    .dwk-section { padding: 4.5rem 0; }
    .dwk-footer__cols { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .dwk-page-hero { padding: 7rem 0 3.5rem; }

    /* Tablet: give the horizontal nav breathing room on the left/right. */
    .dwk-header__inner { gap: 1rem; }
    .dwk-nav { padding-left: 1rem; padding-right: 1rem; }
    .dwk-nav a { padding-left: 14px; padding-right: 14px; }
}
@media (max-width: 640px) {
    .dwk-page-hero {
        padding-top: clamp(8.5rem, 26vw, 10rem);
        padding-bottom: 4.25rem;
    }
}
@media (max-width: 720px) {
    .dwk-nav, .dwk-header__cta .dwk-btn:not(.dwk-cart-btn) { display: none; }
    .dwk-menu-toggle { display: block; }
    .dwk-header__inner { padding: .75rem 0; gap: .5rem; }

    /* Opened menu: full-viewport-width panel below the header, edge to edge. */
    .dwk-nav.is-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        background: var(--dwk-white);
        border-bottom: 1px solid var(--dwk-border);
        box-shadow: 0 18px 40px rgba(14,14,16,.12);
        padding: 0 1rem 1rem;
        gap: 0;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Every list — top level AND sub-menus — is full width, no containment. */
    .dwk-nav.is-open ul,
    .dwk-nav.is-open ul.sub-menu {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: 0;
    }

    /* Every link = a full-width tile touching both screen edges. */
    .dwk-nav.is-open a {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: none;
        padding: 1.35rem 1.5rem;
        border-bottom: 1px solid var(--dwk-pink-50);
        border-radius: 0;
        color: var(--dwk-text) !important;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: .06em;
    }
    .dwk-nav.is-open ul.sub-menu a {
        padding-left: 2.5rem;
        background: var(--dwk-pink-50);
        font-weight: 600;
        font-size: 13px;
        letter-spacing: .05em;
    }
    .dwk-nav.is-open a::after { display: none; }
    .dwk-nav.is-open .menu > li:last-child > a,
    .dwk-nav.is-open ul.sub-menu li:last-child > a { border-bottom: 0; }
    .dwk-nav.is-open a:active,
    .dwk-nav.is-open li:hover > a,
    .dwk-nav.is-open .current-menu-item > a,
    .dwk-nav.is-open .current_page_item > a {
        background: var(--dwk-pink-500);
        color: #fff !important;
    }
    .dwk-nav.is-open ul.sub-menu a:active,
    .dwk-nav.is-open ul.sub-menu li:hover > a {
        background: var(--dwk-pink-100);
        color: var(--dwk-pink-700) !important;
    }
    .dwk-nav.is-open li + li a { border-top: 0; }
    .dwk-footer__cols { grid-template-columns: 1fr; }
    .dwk-hero__actions { flex-direction: column; align-items: stretch; }
    .dwk-hero__actions .dwk-btn { width: 100%; }
}

/* =========================================================
   My Account — order progress timeline + message thread
   ========================================================= */
.dwk-order-messaging {
    background: #fff;
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius-lg);
    padding: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: 1.75rem;
    box-shadow: 0 12px 30px rgba(14,14,16,.04);
}
.dwk-order-messaging__head h3 {
    margin: 0 0 .3rem;
    color: var(--dwk-heading);
    font-size: 1.3rem;
}
.dwk-order-messaging__head p {
    margin: 0 0 1.25rem;
    display: inline-block;
    background: var(--dwk-pink-50);
    color: var(--dwk-pink-700);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .4rem .9rem;
    border-radius: 999px;
}
.dwk-order-progress {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    position: relative;
}
.dwk-order-progress li {
    position: relative;
    padding: 0 0 1.4rem 2rem;
}
.dwk-order-progress li::before {
    content: "";
    position: absolute;
    left: .4rem;
    top: .4rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--dwk-pink-500);
    border: 3px solid var(--dwk-pink-100);
    z-index: 1;
}
.dwk-order-progress li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: .96rem;
    top: 1.4rem;
    bottom: 0;
    width: 2px;
    background: var(--dwk-pink-100);
}
.dwk-order-progress__label {
    display: block;
    font-weight: 700;
    color: var(--dwk-gray-800);
    line-height: 1.35;
}
.dwk-order-progress__time {
    display: block;
    font-size: .8rem;
    color: var(--dwk-gray-500);
    margin-top: .2rem;
}
.dwk-message-thread h4 {
    margin: 0 0 1rem;
    color: var(--dwk-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.dwk-message-thread__item {
    border: 1px solid var(--dwk-pink-100);
    border-left: 4px solid var(--dwk-pink-500);
    border-radius: var(--dwk-radius-sm);
    padding: .9rem 1.1rem;
    margin-bottom: .75rem;
    background: #fff;
}
.dwk-message-thread__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .35rem;
}
.dwk-message-thread__from { font-weight: 700; color: var(--dwk-pink-700); font-size: .85rem; }
.dwk-message-thread__time { font-size: .75rem; color: var(--dwk-gray-500); }
.dwk-message-thread__body {
    color: var(--dwk-gray-700);
    line-height: 1.7;
    flex: 1;
    min-width: 0;
}
.dwk-message-thread__item { display: flex; flex-direction: column; }
.dwk-order-messaging__waiting {
    color: var(--dwk-gray-600);
    background: var(--dwk-pink-50);
    border-radius: var(--dwk-radius);
    padding: 1rem 1.25rem;
    margin: 0;
    line-height: 1.7;
}
.dwk-orders-progress-pill {
    display: inline-block;
    background: var(--dwk-pink-50);
    color: var(--dwk-pink-700);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .3rem .7rem;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .dwk-message-thread__meta { flex-direction: column; gap: .15rem; }
    .dwk-order-progress li { padding-left: 1.75rem; }
}

/* =========================================================
   Elementor compatibility overrides
   ========================================================= */
.elementor-section.dwk-dark { background: var(--dwk-bg-dark) !important; color: var(--dwk-white); }
.elementor-section.dwk-black { background: #000 !important; }
.elementor-section.dwk-alt { background: var(--dwk-bg-alt) !important; }
.elementor-section.dwk-pink { background: linear-gradient(120deg, var(--dwk-pink-600) 0%, var(--dwk-pink-500) 100%) !important; padding: clamp(4rem, 9vw, 7rem) 1.5rem !important; }
.elementor-widget-heading h1, .elementor-widget-heading h2, .elementor-widget-heading h3 {
    font-family: var(--dwk-font-heading);
    color: var(--dwk-heading);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.015em;
}
.elementor-widget-heading h1, .elementor-widget-heading h2 { text-transform: uppercase; }
.elementor-widget-heading h3 { text-transform: none; }
.elementor-button, .elementor-button-link {
    font-family: var(--dwk-font-body) !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: var(--dwk-radius-full) !important;
}

.elementor-section.dwk-alt .elementor-widget-dwk-faq .dwk-section,
.elementor-section.dwk-alt .elementor-widget-dwk-features .dwk-section,
.elementor-section.dwk-alt .elementor-widget-dwk-kitten-grid .dwk-section,
.elementor-section.dwk-alt .elementor-widget-dwk-testimonials .dwk-section,
.elementor-section.dwk-alt .elementor-widget-dwk-categories .dwk-section {
    background: transparent;
}

/* Accessibility */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    white-space: nowrap;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
:focus-visible { outline: 3px solid var(--dwk-pink-400); outline-offset: 2px; border-radius: 4px; }

/* =========================================================
   Redesign v2 — full-width sections, hero offset, toolbars,
   cookie modal, search overlay, breed cards, contact grid,
   journal template
   ========================================================= */

/* Offset Elementor hero sections below the fixed header.
   !important beats Elementor's generated padding:0 0 70px rule. */
.elementor-section.dwk-top-hero {
    padding-top: clamp(8rem, 13vh, 11rem) !important;
    padding-bottom: clamp(3rem, 6vh, 4.5rem) !important;
}

/* Bigger, well-padded cream/white bands */
.dwk-section--pad-lg { padding: clamp(4rem, 8vw, 7rem) 0; }
.elementor-section.dwk-theme-pad { }
.elementor-section.dwk-theme-pad > .elementor-container > .elementor-row > .elementor-column > .elementor-column-wrap,
.elementor-section.dwk-theme-pad > .elementor-container > .elementor-column > .elementor-widget-wrap {
    padding-top: clamp(4rem, 7vw, 6rem) clamp(1.25rem, 4vw, 4rem);
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

/* =========================================================
   Kittens archive — toolbar + refined grid
   ========================================================= */
.dwk-archive-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    justify-content: space-between;
    background: var(--dwk-white);
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius);
    padding: .9rem 1.1rem;
    margin-bottom: 2.25rem;
    box-shadow: 0 12px 32px rgba(14,14,16,.05);
}
.dwk-archive-toolbar__filters { display: flex; flex-wrap: wrap; gap: .625rem; }
.dwk-archive-toolbar select,
.dwk-archive-toolbar input[type="search"] {
    font-family: var(--dwk-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--dwk-text);
    background: var(--dwk-bg);
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius-full);
    padding: 10px 18px;
    appearance: none;
    cursor: pointer;
}
.dwk-archive-toolbar .dwk-toolbar-field { position: relative; display: inline-flex; align-items: center; }
.dwk-archive-toolbar .dwk-toolbar-field svg { position: absolute; right: 14px; width: 14px; height: 14px; color: var(--dwk-pink-500); pointer-events: none; }
.dwk-archive-toolbar select { padding-right: 38px; }
.dwk-archive-toolbar input[type="search"] { padding-left: 40px; min-width: 220px; }
.dwk-archive-toolbar .dwk-toolbar-field--search svg { right: auto; left: 14px; }
.dwk-archive-toolbar input[type="search"]:focus,
.dwk-archive-toolbar select:focus { border-color: var(--dwk-pink-400); outline: none; }
.dwk-archive-toolbar__count { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--dwk-text-mute); }
.dwk-archive-toolbar__count strong { color: var(--dwk-pink-500); }
.dwk-archive-toolbar.is-loading { position: relative; }
.dwk-archive-toolbar.is-loading::after { content: ''; position: absolute; inset: 0; z-index: 2; border-radius: 14px; background: rgba(255,255,255,.45); pointer-events: none; }
[data-dwk-journal-results].is-loading { position: relative; opacity: .55; pointer-events: none; transition: opacity .2s var(--dwk-ease); }
[data-dwk-journal-results] { transition: opacity .2s var(--dwk-ease); }

/* =========================================================
   Breeds page — image + name visible, description reveals on hover.
   ========================================================= */
.elementor-section:has(.dwk-breed-card) { gap: 2rem; }
.elementor-section:has(.dwk-breed-card) > .elementor-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.elementor-section:has(.dwk-breed-card) > .elementor-container > .elementor-column {
    width: calc(33.333% - 1.333rem);
    flex: 0 0 calc(33.333% - 1.333rem);
    margin: 0;
}
.dwk-breed-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: var(--dwk-radius-lg);
    overflow: visible;
}
.dwk-breed-card > .elementor-widget-wrap {
    padding: 0;
}
.dwk-breed-card .elementor-widget-image {
    border-radius: var(--dwk-radius-lg);
    overflow: hidden;
}
.dwk-breed-card .elementor-widget-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 0;
    transition: transform .5s var(--dwk-ease);
}
.dwk-breed-card:hover .elementor-widget-image img { transform: scale(1.05); }
.dwk-breed-card .elementor-widget-heading {
    text-align: center;
    margin-top: .875rem;
}
.dwk-breed-card .elementor-heading-title {
    font-size: 1.325rem;
    color: var(--dwk-black-900);
    position: relative;
    z-index: 4;
}
.dwk-breed-card__desc {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: .65rem;
    padding: clamp(1.1rem, 2.5vw, 1.75rem);
    border-radius: var(--dwk-radius-lg);
    background: linear-gradient(180deg, rgba(14,14,16,.18) 0%, rgba(14,14,16,.72) 55%, rgba(14,14,16,.95) 100%);
    color: var(--dwk-white);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--dwk-ease);
}
.dwk-breed-card:hover .dwk-breed-card__desc,
.dwk-breed-card:focus-within .dwk-breed-card__desc { opacity: 1; }
.dwk-breed-card__desc p {
    margin: 0;
    line-height: 1.62;
    font-size: .925rem;
    color: rgba(255,255,255,.92);
}
.dwk-breed-card__desc .dwk-breed-card__personality {
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--dwk-pink-300);
}
.dwk-breed-card__desc .dwk-breed-card__personality strong { color: rgba(255,255,255,.6); font-weight: 600; }

@media (max-width: 1024px) {
    .elementor-section:has(.dwk-breed-card) > .elementor-container > .elementor-column {
        width: calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
    }
}
@media (max-width: 640px) {
    .elementor-section:has(.dwk-breed-card) > .elementor-container > .elementor-column {
        width: 100%;
        flex: 0 0 100%;
    }
    .dwk-breed-card__desc {
        position: static;
        aspect-ratio: auto;
        opacity: 1;
        pointer-events: auto;
        background: none;
        color: var(--dwk-text-mute);
        padding: .75rem .25rem 0;
        border-radius: 0;
    }
    .dwk-breed-card__desc p { color: var(--dwk-text-mute); }
    .dwk-breed-card__desc .dwk-breed-card__personality { color: var(--dwk-pink-600); }
    .dwk-breed-card .elementor-heading-title { z-index: auto; }
    .dwk-breed-card .elementor-widget-image { border-radius: var(--dwk-radius-sm); }
}

/* =========================================================
   Breed taxonomy archive — breadcrumb in place of the toolbar
   ========================================================= */
.dwk-archive-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-bottom: 2.25rem;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dwk-text-mute);
}
.dwk-archive-breadcrumb a { color: var(--dwk-text-mute); transition: color .25s ease; }
.dwk-archive-breadcrumb a:hover { color: var(--dwk-pink-600); }
.dwk-archive-breadcrumb .dwk-archive-breadcrumb__sep { opacity: .45; }
.dwk-archive-breadcrumb .dwk-archive-breadcrumb__current { color: var(--dwk-pink-600); }
.dwk-archive-breadcrumb .dwk-archive-breadcrumb__count {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--dwk-text-mute);
}
.dwk-archive-breadcrumb .dwk-archive-breadcrumb__count strong { color: var(--dwk-pink-500); }

/* =========================================================
   Legal page — policy link cards
   ========================================================= */
.dwk-legal-card { padding: 0 1rem; }
.dwk-legal-card > .elementor-widget-wrap {
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius-lg);
    background: var(--dwk-white);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform .3s var(--dwk-ease), box-shadow .3s var(--dwk-ease);
}
.dwk-legal-card:hover > .elementor-widget-wrap {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(14,14,16,.1);
}
.dwk-legal-card .elementor-widget-heading { margin-bottom: .5rem; }
.dwk-legal-card .elementor-widget-text-editor p { color: var(--dwk-text-mute); }
.dwk-legal-card .elementor-widget-button { margin-top: 1.25rem; }
@media (max-width: 1024px) {
    .dwk-legal-card { padding: 1rem; }
}
@media (max-width: 767px) {
    .dwk-legal-card { padding: 0 0 1.25rem; }
    .dwk-legal-card > .elementor-widget-wrap { padding: 1.5rem 1.25rem; }
}

/* =========================================================
   Cookie consent modal
   ========================================================= */
.dwk-cookie {
    position: fixed;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2000;
    max-width: 560px;
    margin: 0 auto;
    display: none;
}
.dwk-cookie.is-visible { display: block; animation: dwk-rise .4s var(--dwk-ease); }
.dwk-cookie__card {
    background: var(--dwk-white);
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius-lg);
    box-shadow: 0 32px 80px rgba(14,14,16,.28);
    padding: 1.75rem;
}
.dwk-cookie__title { font-size: 1.05rem; margin: 0 0 .5rem; }
.dwk-cookie__text { font-size: 13px; line-height: 1.65; color: var(--dwk-text-mute); margin: 0 0 1.25rem; }
.dwk-cookie__text a { color: var(--dwk-pink-600); text-decoration: underline; }
.dwk-cookie__actions { display: flex; flex-wrap: wrap; gap: .625rem; }
.dwk-cookie__btn { flex: 1 1 auto; min-width: 120px; text-align: center; }
.dwk-cookie__btn--ghost {
    background: var(--dwk-white);
    color: var(--dwk-heading);
    border: 1px solid var(--dwk-border);
}
.dwk-cookie__btn--ghost:hover { background: var(--dwk-bg-alt); color: var(--dwk-heading); }
@keyframes dwk-rise {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* =========================================================
   Header search overlay
   ========================================================= */
.dwk-search {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 16vh 1.5rem 2rem;
    background: rgba(10,10,12,.86);
    backdrop-filter: blur(6px);
}
.dwk-search.is-open { display: flex; }
.dwk-search__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: 0;
    color: var(--dwk-white);
    cursor: pointer;
    padding: .5rem;
    font-size: 1.4rem;
    line-height: 1;
}
.dwk-search__form {
    width: 100%;
    max-width: 720px;
    display: flex;
    gap: .625rem;
    border-bottom: 2px solid rgba(255,255,255,.22);
    padding-bottom: 1rem;
}
.dwk-search__input {
    flex: 1;
    background: none;
    border: 0;
    color: var(--dwk-white);
    font-family: var(--dwk-font-body);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
}
.dwk-search__input::placeholder { color: rgba(255,255,255,.45); }
.dwk-search__input:focus { outline: none; }
.dwk-search__submit {
    background: var(--dwk-pink-500);
    color: var(--dwk-white);
    border: 0;
    border-radius: var(--dwk-radius-full);
    font-family: var(--dwk-font-body);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 12px 26px;
    cursor: pointer;
}
.dwk-search__hint { margin-top: 1rem; color: rgba(255,255,255,.5); font-size: 13px; letter-spacing: .04em; }
.dwk-header__icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--dwk-bg-alt);
    color: var(--dwk-heading);
    transition: background .25s ease, color .25s ease;
}
.dwk-header__icon-btn:hover { background: var(--dwk-pink-500); color: var(--dwk-white); }
.dwk-header__icon-btn svg { width: 17px; height: 17px; }
.dwk-header--transparent .dwk-header__icon-btn { background: rgba(255,255,255,.12); color: var(--dwk-white); }
.dwk-header--transparent .dwk-header__icon-btn:hover { background: var(--dwk-pink-500); color: var(--dwk-white); }
.dwk-cart-btn { position: relative; }
.dwk-cart-btn__count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: var(--dwk-radius-full);
    background: var(--dwk-pink-500);
    color: var(--dwk-white);
    font-size: 11px;
    font-weight: 800;
    line-height: 19px;
    text-align: center;
    border: 2px solid var(--dwk-white);
}

/* =========================================================
   Contact page — classy two-column with info card + FAQ
   ========================================================= */
.dwk-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.dwk-contact__intro { margin-bottom: 2rem; }
.dwk-column-card {
    background: var(--dwk-white);
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius-xl);
    padding: clamp(1.5rem, 3vw, 2.75rem);
    box-shadow: 0 20px 44px rgba(14,14,16,.06);
}
.dwk-contact-info-card {
    background: var(--dwk-black-950);
    border-radius: var(--dwk-radius-xl);
    padding: clamp(1.5rem, 3vw, 2.75rem);
    color: rgba(255,255,255,.78);
}
.dwk-contact-info-card .elementor-heading-title { color: var(--dwk-white) !important; }
.dwk-contact-info-card .elementor-text-editor,
.dwk-contact-info-card .elementor-text-editor ul li,
.dwk-contact-info-card .elementor-text-editor p { color: rgba(255,255,255,.78) !important; }
.dwk-contact-info-card .elementor-text-editor li span[style*="FF2E88"] { color: var(--dwk-pink-300) !important; }
.dwk-contact__info {
    background: var(--dwk-black-950);
    color: rgba(255,255,255,.78);
    border-radius: var(--dwk-radius-xl);
    padding: 2.5rem;
}
.dwk-contact__info h3 { color: var(--dwk-white); margin: 0 0 1.25rem; }
.dwk-contact__info-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.12); }
.dwk-contact__info-item:first-of-type { border-top: 0; }
.dwk-contact__info-item svg { width: 20px; height: 20px; color: var(--dwk-pink-400); flex-shrink: 0; margin-top: 2px; }
.dwk-contact__info-item strong { display: block; color: var(--dwk-white); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .35rem; }
.dwk-contact__info-item a, .dwk-contact__info-item span { color: rgba(255,255,255,.78); font-size: 14px; }
.dwk-contact__info-item a:hover { color: var(--dwk-pink-300); }
.dwk-contact__faq { margin-top: 3rem; }

/* =========================================================
   Journal (blog) — featured post + filter chips + grid
   ========================================================= */
.dwk-journal-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.dwk-journal-filter a {
    display: inline-block;
    padding: 9px 20px;
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius-full);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--dwk-text-mute);
    transition: all .25s ease;
}
.dwk-journal-filter a:hover,
.dwk-journal-filter a.is-active { background: var(--dwk-pink-500); border-color: var(--dwk-pink-500); color: var(--dwk-white); }
.dwk-journal-search { position: relative; max-width: 440px; margin: 0 auto 3.5rem; }
.dwk-journal-search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--dwk-pink-500); pointer-events: none; }
.dwk-journal-search input {
    width: 100%;
    padding: 14px 22px 14px 46px;
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius-full);
    font-family: var(--dwk-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--dwk-text);
    background: var(--dwk-white);
    box-shadow: 0 12px 32px rgba(14,14,16,.05);
}
.dwk-journal-search input:focus { border-color: var(--dwk-pink-400); outline: none; }
.dwk-journal-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
    background: var(--dwk-bg-alt);
    border-radius: var(--dwk-radius-xl);
    overflow: hidden;
    margin-bottom: 3.5rem;
}
.dwk-journal-featured__media { min-height: 320px; }
.dwk-journal-featured__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dwk-journal-featured__body { padding: 2.5rem 2.5rem 2.5rem 0; }
.dwk-journal-featured__tag { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--dwk-pink-500); margin-bottom: .75rem; display: inline-block; }
.dwk-journal-featured__body h2 { margin: 0 0 .75rem; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.dwk-journal-featured__body p { color: var(--dwk-text-mute); line-height: 1.7; margin: 0 0 1.5rem; }
.dwk-post-card--journal { background: var(--dwk-white); border: 1px solid var(--dwk-border); border-radius: var(--dwk-radius-lg); overflow: hidden; }
.dwk-post-card--journal .dwk-post-card__media { aspect-ratio: 4/3; }
.dwk-post-card--journal .dwk-post-card__tag { display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--dwk-pink-500); margin-bottom: .5rem; }
@media (max-width: 960px) {
    .dwk-contact-grid { grid-template-columns: 1fr; }
    .dwk-journal-featured { grid-template-columns: 1fr; }
    .dwk-journal-featured__media { min-height: 240px; }
    .dwk-journal-featured__body { padding: 1.5rem; }
}
@media (max-width: 640px) {
    .dwk-archive-toolbar { flex-direction: column; align-items: stretch; }
    .dwk-archive-toolbar__filters { flex-wrap: wrap; }
    .dwk-archive-toolbar input[type="search"] { min-width: 0; width: 100%; }
}

/* =========================================================
   Journal editorial hero — like a magazine opener
   ========================================================= */
.dwk-journal-hero {
    padding: clamp(8.5rem, 12vw, 11.5rem) 0 clamp(4rem, 7vw, 6rem);
    background: var(--dwk-black-950);
    background-image:
        radial-gradient(120% 140% at 50% 0%, rgba(255,46,136,.24) 0%, rgba(255,46,136,0) 46%),
        linear-gradient(180deg, rgba(10,10,12,.7) 0%, rgba(10,10,12,.9) 100%),
        url("https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Ragdoll_Cat_Face.jpg/1280px-Ragdoll_Cat_Face.jpg");
    background-size: auto, auto, cover;
    background-position: center;
    border-bottom: 1px solid var(--dwk-border);
    position: relative;
    overflow: hidden;
}
.dwk-journal-hero h1 { color: var(--dwk-white); font-size: clamp(2.2rem, 4.5vw, 3.5rem); max-width: 760px; margin-inline: auto; }
.dwk-journal-hero p { color: rgba(255,255,255,.72); }
.dwk-journal-hero .dwk-heading__eyebrow { margin-bottom: 1.25rem; }
.dwk-journal-hero .dwk-container { position: relative; z-index: 1; }

/* Journal filter — label over pill chips */
.dwk-journal-filter { flex-direction: column; align-items: center; gap: 1.1rem; }
.dwk-journal-filter__label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; color: var(--dwk-text-mute); }
.dwk-journal-filter__chips { display: flex; flex-wrap: wrap; gap: .625rem; justify-content: center; }

/* Journal cards — subtle editorial lift */
.dwk-post-card--journal { transition: transform .35s var(--dwk-ease), box-shadow .35s var(--dwk-ease); }
.dwk-post-card--journal:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(14,14,16,.12); }
.dwk-journal-featured { box-shadow: 0 18px 44px rgba(14,14,16,.08); transition: box-shadow .35s var(--dwk-ease); }
.dwk-journal-featured:hover { box-shadow: 0 26px 60px rgba(14,14,16,.12); }

/* Contact — refined card hover */
.dwk-column-card { transition: box-shadow .3s var(--dwk-ease), transform .3s var(--dwk-ease); }
.dwk-column-card:hover { box-shadow: 0 30px 60px rgba(14,14,16,.1); transform: translateY(-2px); }

/* =========================================================
   Decorative mixed-icon pattern background
   ========================================================= */
.dwk-pattern { position: relative; }
.dwk-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("../img/dwk-pattern.svg");
    background-size: 280px 280px;
    opacity: .55;
}
.elementor-section.dwk-pattern > .elementor-container,
.elementor-section.dwk-pattern > .elementor-container > .elementor-row,
.elementor-section.dwk-pattern .elementor-widget-wrap { position: relative; z-index: 1; }

/* =========================================================
   Contact — Good to Know card contact methods
   ========================================================= */
.dwk-contact-methods { margin: 1.1rem 0 .6rem; }
.dwk-contact-method { display: flex; gap: 1rem; align-items: flex-start; padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.dwk-contact-method:first-child { padding-top: 0; }
.dwk-contact-method:last-of-type { border-bottom: 0; }
.dwk-contact-method__icon { flex: 0 0 auto; display: grid; place-items: center; width: 42px; height: 42px; border-radius: var(--dwk-radius-full); background: linear-gradient(135deg, rgba(255,46,136,.24), rgba(255,46,136,.06)); color: var(--dwk-pink-300); font-size: 1rem; }
.dwk-contact-method__text { display: grid; gap: .2rem; }
.dwk-contact-method__text strong { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--dwk-white); }
.dwk-contact-method__text span { color: rgba(255,255,255,.68); font-size: .95rem; line-height: 1.5; }
.dwk-contact-info-card hr { border: 0; height: 1px; background: rgba(255,255,255,.12); margin: .6rem 0 0; }

/* =========================================================
   Kitten grid — horizontal scroll rail
   ========================================================= */
.dwk-kitten-rail { padding: 6px 4px 1.5rem; scroll-padding-left: 4px; }
.dwk-kitten-rail > * { flex: 0 0 clamp(240px, 26vw, 320px); scroll-snap-align: start; }
.dwk-kitten-rail .dwk-card { height: 100%; }
.dwk-scroll-hint {
    margin: .5rem 0 0;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dwk-text-mute);
}
@media (max-width: 640px) { .dwk-kitten-rail > * { flex: 0 0 76%; } }

/* =========================================================
   About — "Meet Our Kittens" included checklist (marquee)
   ========================================================= */
.dwk-included-block { margin-bottom: 2.5rem; }
.dwk-included-lead {
    margin: 0 0 .75rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--dwk-pink-300);
}
.dwk-included-marquee { margin: 0; }
.dwk-included-marquee .dwk-marquee__track { animation-duration: 38s; }
.dwk-included-marquee .dwk-marquee__group { gap: .875rem; padding-right: .875rem; }
.dwk-included-item {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: .75rem 1.25rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: var(--dwk-radius-full);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.92);
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.45;
    white-space: nowrap;
}
.dwk-included-item::before {
    content: "\2713";
    color: var(--dwk-pink-300);
    font-weight: 800;
}
@media (prefers-reduced-motion: reduce) {
    .dwk-included-marquee .dwk-marquee__track { animation-play-state: paused; }
}

/* =========================================================
   FAQ with photo background
   ========================================================= */
.dwk-faq-section {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: var(--dwk-black-950);
}
.dwk-faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--dwk-faq-bg);
    background-size: cover;
    background-position: center;
}
.dwk-faq-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,12,.9) 0%, rgba(10,10,12,1) 100%);
    opacity: var(--dwk-faq-overlay, .72);
}
.dwk-faq-section > .dwk-container { position: relative; z-index: 1; }
.dwk-faq-section .dwk-heading__eyebrow { color: var(--dwk-pink-300); }
.dwk-faq-section .dwk-heading__eyebrow::before,
.dwk-faq-section .dwk-heading__eyebrow::after { background: rgba(255,255,255,.25); }
.dwk-faq-section .dwk-heading__title { color: var(--dwk-white); }
.dwk-faq-section .dwk-faq {
    background: rgba(255,255,255,.96);
    border-color: rgba(255,255,255,.2);
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

/* =========================================================
   Kittens archive — view switcher (large grid / compact grid / list)
   ========================================================= */
.dwk-viewswitch {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .375rem;
    margin-bottom: 1.5rem;
}
.dwk-viewswitch__label {
    margin-right: .5rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--dwk-text-mute);
}
.dwk-viewswitch__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .5rem .85rem;
    border: 1px solid var(--dwk-border);
    background: var(--dwk-white);
    border-radius: var(--dwk-radius-full);
    color: var(--dwk-gray-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease;
}
.dwk-viewswitch__btn svg { width: 15px; height: 15px; }
.dwk-viewswitch__btn:hover { border-color: var(--dwk-pink-300); color: var(--dwk-pink-700); }
.dwk-viewswitch__btn.is-active { background: var(--dwk-pink-500); border-color: var(--dwk-pink-500); color: #fff; }

/* Compact grid */
.dwk-archive--compact .dwk-grid { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1.25rem; }
.dwk-archive--compact .dwk-card { padding: 8px; }
.dwk-archive--compact .dwk-card__body { padding: 1rem .5rem .5rem; gap: .35rem; }
.dwk-archive--compact .dwk-card__title { font-size: 1.05rem; }
.dwk-archive--compact .dwk-card__excerpt { display: none; }
.dwk-archive--compact .dwk-card__price { font-size: 1rem; }
.dwk-archive--compact .dwk-card__footer { padding-top: .625rem; }

/* List view */
.dwk-archive--list .dwk-grid { grid-template-columns: 1fr; gap: 1.25rem; }
.dwk-archive--list .dwk-card { display: grid; grid-template-columns: 300px minmax(0, 1fr); }
.dwk-archive--list .dwk-card__media { aspect-ratio: auto; height: 100%; min-height: 210px; }
.dwk-archive--list .dwk-card__body { padding: 1.5rem 1.75rem; gap: .6rem; }
.dwk-archive--list .dwk-card__title { font-size: 1.5rem; }
.dwk-archive--list .dwk-card__excerpt { -webkit-line-clamp: 3; }
.dwk-archive--list .dwk-card__footer { margin-top: .5rem; }
/* Phones: keep each view visually distinct — large = 1-up, compact = 2-up, list = rows. */
@media (max-width: 640px) {
    /* Compact — a denser 2-column grid. */
    .dwk-archive--compact .dwk-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
    .dwk-archive--compact .dwk-card { padding: 6px; }
    .dwk-archive--compact .dwk-card__body { padding: .7rem .35rem .4rem; gap: .3rem; }
    .dwk-archive--compact .dwk-card__title { font-size: .95rem; }
    .dwk-archive--compact .dwk-card__meta { font-size: 9px; gap: .4rem; }
    .dwk-archive--compact .dwk-card__price { font-size: .9rem; }
    .dwk-archive--compact .dwk-card__footer { padding-top: .5rem; }
    .dwk-archive--compact .dwk-card__cta-text { font-size: 10px; }
    .dwk-archive--compact .dwk-card__cta-text svg { width: 12px; height: 12px; }
    .dwk-archive--compact .dwk-card__mood { width: 30px; height: 30px; top: 8px; right: 8px; padding: 3px; }
    .dwk-archive--compact .dwk-card__tag { top: 8px; left: 8px; padding: 5px 9px; font-size: 8px; letter-spacing: .08em; }

    /* List — keep the image-beside-text row instead of collapsing into a full card. */
    .dwk-archive--list .dwk-card { display: grid; grid-template-columns: 104px minmax(0, 1fr); }
    .dwk-archive--list .dwk-card__media { aspect-ratio: auto; height: 100%; min-height: 0; }
    .dwk-archive--list .dwk-card__body { padding: .85rem .9rem .6rem; gap: .35rem; }
    .dwk-archive--list .dwk-card__title { font-size: 1.05rem; }
    .dwk-archive--list .dwk-card__excerpt { display: none; }
    .dwk-archive--list .dwk-card__meta { font-size: 9px; gap: .5rem; }
    .dwk-archive--list .dwk-card__price { font-size: 1rem; margin-bottom: 0; }
    .dwk-archive--list .dwk-card__footer { padding-top: .5rem; }
    .dwk-archive--list .dwk-card__mood { width: 26px; height: 26px; top: 7px; right: 7px; padding: 2px; }
    .dwk-archive--list .dwk-card__tag { top: 7px; left: 7px; padding: 4px 7px; font-size: 7px; letter-spacing: .06em; }
}

/* =========================================================
   Real logo, mood icons, footer mood strip, 404 / search states
   ========================================================= */

/* Header / footer logo */
.dwk-logo-img { max-height: 46px; width: auto; display: block; }
.dwk-header--transparent .dwk-logo-img { filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .25)); }
@media (max-width: 640px) { .dwk-logo-img { max-height: 38px; } }
.dwk-footer__logo { height: 56px; width: auto; display: block; }

/* Kitten card mood chip */
.dwk-card__mood {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: var(--dwk-radius-full);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 20px rgba(14, 14, 16, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    overflow: hidden;
}
.dwk-card__mood-img { width: 100%; height: 100%; object-fit: contain; }

/* Breed card mood chip */
.dwk-cat__mood {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border-radius: var(--dwk-radius-full);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 20px rgba(14, 14, 16, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    overflow: hidden;
}
.dwk-cat__mood-img { width: 100%; height: 100%; object-fit: contain; }

/* Single kitten mood chip */
.dwk-kitten-single__mood {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .9rem;
    background: #fff;
    border: 1px solid var(--dwk-border);
    border-radius: var(--dwk-radius-full);
    padding: 5px 14px 5px 5px;
    box-shadow: 0 10px 24px rgba(14, 14, 16, .06);
}
.dwk-kitten-single__mood-img { width: 44px; height: 44px; object-fit: contain; display: block; }
.dwk-kitten-single__mood-label {
    font-family: var(--dwk-font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--dwk-pink-700);
}

/* Quick-pick rail head */
.dwk-quick-pick__head-inner { display: flex; align-items: center; gap: 1rem; }
.dwk-quick-pick__mood {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dwk-pink-50);
    border: 1px solid var(--dwk-pink-100);
    border-radius: var(--dwk-radius-full);
    padding: 7px;
}
.dwk-quick-pick__mood-img { width: 100%; height: 100%; object-fit: contain; }
.dwk-quick-pick__head-inner h3 { margin: 0 0 .15rem; }
.dwk-quick-pick__head-inner p { margin: 0; }

/* Footer mood strip */
.dwk-footer__moods {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding: 1.35rem 0;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.dwk-footer__moods-label {
    font-family: var(--dwk-font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .62);
}
.dwk-footer__mood-row { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.dwk-footer__mood {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    border-radius: var(--dwk-radius-full);
    padding: 4px;
    transition: transform .25s var(--dwk-ease), background .25s ease;
}
.dwk-footer__mood:hover { transform: translateY(-3px) rotate(-4deg); background: var(--dwk-pink-500); }
.dwk-footer__mood-img { width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 640px) {
    .dwk-footer__moods { flex-direction: column; align-items: flex-start; gap: .6rem; }
}

/* 404 */
.dwk-404 { text-align: center; max-width: 640px; margin: 0 auto; }
.dwk-404__mood { display: flex; justify-content: center; margin-bottom: 1rem; }
.dwk-404__mood-img { width: 180px; height: auto; filter: drop-shadow(0 18px 30px rgba(236, 72, 153, .25)); }
.dwk-404__title { font-size: clamp(4rem, 10vw, 7rem); line-height: 1; margin: 0; color: var(--dwk-pink-500); }
.dwk-404__lead { color: var(--dwk-gray-700); font-size: 1.05rem; margin: 1rem auto 2rem; max-width: 46ch; }
.dwk-404__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Search empty state */
.dwk-search-empty { text-align: center; max-width: 520px; margin: 0 auto; padding: 2rem 0; }
.dwk-search-empty__mood { display: flex; justify-content: center; margin-bottom: .5rem; }
.dwk-search-empty__mood-img { width: 110px; height: auto; }
.dwk-search-empty h2 { color: var(--dwk-heading); margin: 0 0 .35rem; }
.dwk-search-empty p { color: var(--dwk-text-mute); margin: 0 0 1.5rem; }