:root {
    --bg: #eff3f9;
    --surface: #ffffff;
    --surface-soft: #fff7ee;
    --text: #101725;
    --text-soft: #5f6b7f;
    --line: #dce3ef;
    --line-strong: #c8d2e4;
    --accent: #ff7b00;
    --accent-strong: #c95100;
    --ok: #0e9f6e;
    --danger: #d83f3f;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 12px 26px rgba(12, 20, 34, 0.1);
    --shadow-md: 0 26px 52px rgba(12, 20, 34, 0.18);
    --shadow-lg: 0 42px 90px rgba(12, 20, 34, 0.24);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    --mx: 50vw;
    --my: 24vh;
    font-family: "Montserrat", "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.6;
    background:
        radial-gradient(1200px 580px at -5% -12%, rgba(255, 176, 104, 0.35), rgba(255, 176, 104, 0) 62%),
        radial-gradient(980px 520px at 105% -8%, rgba(255, 123, 0, 0.24), rgba(255, 123, 0, 0) 64%),
        radial-gradient(760px 420px at 18% 108%, rgba(255, 228, 196, 0.38), rgba(255, 228, 196, 0) 66%),
        radial-gradient(860px 420px at 88% 112%, rgba(121, 178, 255, 0.18), rgba(121, 178, 255, 0) 70%),
        linear-gradient(180deg, #fffdf9 0%, #f7fbff 52%, #f2f7ff 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

body::before {
    inset: 0;
    opacity: 0.14;
    background:
        radial-gradient(680px 380px at 14% 22%, rgba(255, 157, 58, 0.2), rgba(255, 157, 58, 0) 68%),
        radial-gradient(620px 320px at 86% 18%, rgba(255, 210, 156, 0.22), rgba(255, 210, 156, 0) 70%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.2'/%3E%3C/svg%3E");
    animation: ambientDrift 16s ease-in-out infinite alternate;
}

body::after {
    inset: 0;
    background:
        radial-gradient(360px 360px at var(--mx) var(--my), rgba(255, 150, 56, 0.2), rgba(255, 150, 56, 0) 70%),
        radial-gradient(120% 78% at 50% -24%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 64%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(30, 45, 68, 0.05) 100%);
    transition: background 0.18s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

main {
    min-height: calc(100vh - 390px);
}

.container {
    width: min(1240px, 92%);
    margin: 0 auto;
}

.section {
    padding: 4.2rem 0;
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b85b0b;
}

.section-head {
    margin-bottom: 1.2rem;
    max-width: 820px;
}

.section-head h1,
.section-head h2 {
    margin: 0.5rem 0 0;
    line-height: 1.1;
}

.section-head h1 {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
}

.section-head h2 {
    font-size: clamp(1.7rem, 3.3vw, 2.7rem);
}

.section-head p {
    margin: 0.75rem 0 0;
    color: var(--text-soft);
}

.btn {
    position: relative;
    overflow: hidden;
    border: 1px solid #bf4700;
    border-radius: 12px;
    padding: 0.8rem 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #fff;
    background: linear-gradient(180deg, #ff9a34 0%, #d95a00 100%);
    box-shadow: 0 16px 30px rgba(201, 81, 0, 0.36);
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.btn::after {
    content: "";
    position: absolute;
    top: -140%;
    left: -38%;
    width: 52%;
    height: 320%;
    transform: rotate(20deg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0));
    transition: transform 0.52s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.1);
    box-shadow: 0 20px 34px rgba(201, 81, 0, 0.44);
}

.btn:hover::after {
    transform: translate(185%, 0) rotate(20deg);
}

.btn-ghost {
    color: #1f2a3a;
    background: #fff;
    border: 1px solid var(--line-strong);
    box-shadow: none;
}

.btn-ghost:hover {
    box-shadow: var(--shadow-sm);
}

.btn-sm {
    font-size: 0.9rem;
    padding: 0.58rem 0.84rem;
}

.nav a:focus-visible,
.btn:focus-visible,
.view-btn:focus-visible,
.catalog-side-link:focus-visible,
.slider-btn:focus-visible,
.dots button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible,
.sale-chip:focus-visible {
    outline: 2px solid #ffbf83;
    outline-offset: 2px;
}

.top-line,
.top-contacts {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 110;
    border-bottom: 1px solid rgba(22, 31, 45, 0.14);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 123, 0, 0), rgba(255, 123, 0, 0.8), rgba(255, 123, 0, 0));
    background-size: 220% 100%;
    animation: headerBeam 7s linear infinite;
    opacity: 0.68;
}

.is-scrolled .site-header {
    box-shadow: 0 10px 22px rgba(13, 20, 32, 0.14);
}

.header-shell {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    position: relative;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.logo img,
.logo-icon {
    width: auto;
    height: 46px;
    display: block;
}

.logo-word {
    font-family: "Arial Black", Arial, sans-serif;
    letter-spacing: 0.03em;
    line-height: 1;
    font-size: clamp(1.75rem, 3.1vw, 2.08rem);
    background: linear-gradient(180deg, #0f1219 0%, #1f242e 45%, #ef7f1a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.logo-mark {
    align-self: flex-start;
    margin-left: 0.12rem;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
    transform: translateY(0.42rem);
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.36rem;
    margin-left: auto;
    padding: 0.26rem;
    border-radius: 999px;
    border: 1px solid #dce4f1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 18px rgba(17, 27, 42, 0.07);
}

.nav a {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    padding: 0.5rem 0.78rem;
    font-weight: 800;
    color: #2f3948;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 8px;
    height: 2px;
    border-radius: 2px;
    background: #a35212;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.nav a:hover {
    background: #fff0df;
    color: #a04d0a;
    transform: translateY(-1px);
}

.nav a:hover::after,
.nav a.active::after {
    transform: scaleX(1);
}

.nav a.active {
    background: #1f2a3b;
    color: #ffffff;
}

.nav .nav-cta {
    background: linear-gradient(180deg, #f59a3f, #ea7a13);
    color: #fff;
    box-shadow: 0 8px 18px rgba(218, 96, 8, 0.38);
}

.nav .nav-cta:hover,
.nav .nav-cta.active {
    background: linear-gradient(180deg, #f8a855, #eb7c16);
    color: #fff;
}

.burger {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    padding: 4px;
    flex-direction: column;
    gap: 4px;
}

.burger span {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #263141;
}

.promo-strip {
    border-radius: 16px;
    border: 1px solid #ffd8b2;
    background: linear-gradient(96deg, #fff8ef, #ffe7ce 47%, #fff8ef);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
}

.promo-strip p {
    margin: 0;
    font-weight: 700;
}

.promo-strip a {
    color: var(--accent-strong);
    font-weight: 800;
}

.hero {
    padding-top: 1.3rem;
    padding-bottom: 2.2rem;
}

.hero-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 1.2rem;
    align-items: stretch;
    position: relative;
}

.hero-grid::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 28px;
    background: linear-gradient(140deg, rgba(255, 141, 35, 0.14), rgba(20, 28, 42, 0.06));
    z-index: -1;
    opacity: 0.52;
}

.hero-copy {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(760px 290px at 0% 0%, rgba(255, 205, 160, 0.22), rgba(255, 205, 160, 0) 62%),
        linear-gradient(150deg, #ffffff 0%, #fff9f1 100%);
    border: 1px solid #f3dec8;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.7rem;
}

.hero-copy::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    top: -112px;
    right: -104px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 141, 35, 0.26), rgba(255, 141, 35, 0));
    pointer-events: none;
}

.hero-copy h1 {
    margin: 0.62rem 0 0;
    max-width: 15ch;
    line-height: 1.02;
    letter-spacing: -0.01em;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    text-wrap: balance;
}

.hero-copy p {
    margin: 0.9rem 0 0;
    max-width: 55ch;
    color: #556174;
}

.hero-checks {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.34rem;
}

.hero-checks li {
    position: relative;
    padding-left: 1.2rem;
    font-weight: 600;
    color: #2f3a4a;
}

.hero-checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.53em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f59d44, #e67610);
}

.hero-actions {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hero-stats {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.hero-stats article {
    border: 1px solid #ecdece;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    padding: 0.7rem;
}

.hero-stats strong {
    display: block;
    font-size: 1.05rem;
    line-height: 1.15;
}

.hero-stats span {
    color: #647184;
    font-size: 0.84rem;
}

.hero-media {
    min-height: 100%;
    position: relative;
}

.hero-media::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -28px;
    top: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 156, 59, 0.32), rgba(255, 156, 59, 0));
    pointer-events: none;
    z-index: 0;
}

.hero-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #dde5f2;
    background: #fff;
    box-shadow: var(--shadow-lg);
    height: 100%;
    z-index: 1;
}

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.hero-slider .slides {
    position: relative;
    min-height: clamp(340px, 48vw, 620px);
    height: 100%;
    background: #edf2fa;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.42s ease;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider .slide::before {
    content: "";
    position: absolute;
    inset: -12%;
    background-image: var(--slide-bg);
    background-size: cover;
    background-position: center;
    filter: blur(16px);
    opacity: 0.18;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    color: #243041;
    font-size: 1.2rem;
    box-shadow: 0 10px 22px rgba(16, 24, 40, 0.2);
    cursor: pointer;
    z-index: 7;
}

.slider-btn.prev {
    left: 12px;
}

.slider-btn.next {
    right: 12px;
}

.dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 8;
}

.dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
}

.dots button.active {
    background: var(--accent);
    transform: scale(1.1);
}

.quick-cats {
    padding-top: 2rem;
}

.quick-cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.72rem;
}

.quick-cat {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #ece1d5;
    background: linear-gradient(145deg, #fff, #fff8ef);
    box-shadow: var(--shadow-sm);
    padding: 1rem 1.05rem;
    font-weight: 700;
    color: #2f3a4b;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.quick-cat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #f3c192;
}

.quick-cat:active {
    transform: translateY(-1px) scale(0.995);
}

.quick-cat::after {
    content: "";
    position: absolute;
    width: 72px;
    height: 72px;
    right: -30px;
    bottom: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 133, 23, 0.2), rgba(255, 133, 23, 0));
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.value-card {
    background: linear-gradient(150deg, #fff 0%, #f9fbff 100%);
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    padding: 1.1rem;
    position: relative;
    overflow: hidden;
}

.value-card h3 {
    margin: 0;
    font-size: 1.13rem;
}

.value-card p {
    margin: 0.55rem 0 0;
    color: #5c677b;
}

.value-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 123, 0, 0.96), rgba(255, 183, 117, 0.4));
}

.steps-section {
    padding-top: 2.3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.step-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #dfd7ca;
    background:
        radial-gradient(500px 190px at 100% 0%, rgba(255, 150, 55, 0.16), rgba(255, 150, 55, 0) 65%),
        linear-gradient(160deg, #ffffff 0%, #fff7ec 100%);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
}

.step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff9f4a 0%, #e06d10 100%);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(194, 97, 20, 0.38);
}

.step-card h3 {
    margin: 0.7rem 0 0;
    font-size: 1.1rem;
}

.step-card p {
    margin: 0.48rem 0 0;
    color: #59667a;
}

.cta-band {
    padding-top: 0.1rem;
}

.cta-band-shell {
    border-radius: 22px;
    border: 1px solid #f3ceb0;
    background:
        radial-gradient(780px 260px at 98% 0%, rgba(239, 127, 26, 0.2), rgba(239, 127, 26, 0) 68%),
        linear-gradient(140deg, #fff8ef 0%, #fff2e3 100%);
    box-shadow: var(--shadow-sm);
    padding: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-band-shell::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -86px;
    bottom: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 145, 44, 0.28), rgba(255, 145, 44, 0));
    pointer-events: none;
}

.cta-band-shell h2 {
    margin: 0.52rem 0 0;
    max-width: 24ch;
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    line-height: 1.2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-grid-premium {
    grid-template-columns: 1.05fr 0.95fr;
}

.about-text,
.feature-list article,
.catalog-sidebar,
.catalog-toolbar,
.catalog-total,
.contact-card,
.contact-form,
.map-card,
.table-wrap,
.product-gallery,
.product-info,
.not-found-box {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.about-text {
    padding: 1.2rem;
}

.about-text-wide {
    grid-column: 1 / -1;
}

.about-text p {
    margin: 0;
    color: #2f3b4d;
}

.about-text p + p {
    margin-top: 0.72rem;
}

.feature-list {
    display: grid;
    gap: 0.7rem;
}

.feature-list article {
    padding: 1rem;
}

.feature-list h3 {
    margin: 0;
    font-size: 1.04rem;
}

.feature-list p {
    margin: 0.44rem 0 0;
    color: #5e6b7f;
}

.catalog-page,
.sale-page {
    padding-top: 1.1rem;
}

.catalog-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.08rem;
}

.catalog-head h1 {
    margin: 0.5rem 0 0;
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.catalog-head p {
    margin: 0.6rem 0 0;
    color: #5f6b7f;
}

.premium-head {
    border-radius: 20px;
    padding: 1.2rem;
    border: 1px solid #d9c2a9;
    border-left: 5px solid var(--accent);
    background: linear-gradient(140deg, #fff 0%, #fff9f2 100%);
    box-shadow: var(--shadow-sm);
}

.catalog-total {
    min-width: 210px;
    text-align: right;
    padding: 0.75rem 0.85rem;
}

.catalog-total span {
    display: block;
    color: #687487;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.catalog-total strong {
    display: block;
    margin-top: 0.22rem;
    font-size: 1.85rem;
    line-height: 1;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 96px;
    padding: 0.88rem;
    background: linear-gradient(170deg, #ffffff, #f6f9ff);
    border-color: #d5dfee;
}

.catalog-sidebar h3 {
    margin: 0.1rem 0 0.66rem;
}

.catalog-side-link {
    display: block;
    border-radius: 10px;
    padding: 0.52rem 0.65rem;
    font-weight: 700;
    color: #2e394a;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.catalog-side-link:hover {
    background: #f4f8ff;
}

.catalog-side-link.active {
    background: #fff1e2;
    color: #a65413;
    box-shadow: inset 3px 0 0 #ff8b26;
}

.catalog-content,
.sale-content {
    min-width: 0;
}

.catalog-toolbar {
    margin-bottom: 1rem;
    padding: 0.82rem 0.9rem;
    background: linear-gradient(160deg, #ffffff, #f8fbff);
    border-color: #d5dfed;
}

.catalog-toolbar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.catalog-toolbar-title {
    display: flex;
    align-items: center;
    gap: 0.44rem;
    color: #667285;
}

.catalog-toolbar-title strong {
    color: #1f2a3b;
}

.catalog-view-switch {
    display: inline-flex;
    gap: 0.42rem;
}

.view-btn {
    border-radius: 9px;
    border: 1px solid #d8e0ec;
    background: #fff;
    color: #334154;
    padding: 0.42rem 0.66rem;
    font-weight: 700;
    cursor: pointer;
}

.view-btn.active {
    border-color: #efbc8c;
    background: #fff0e0;
    color: #9d4e11;
}

.catalog-toolbar-filters {
    margin-top: 0.7rem;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.catalog-toolbar-filters label {
    min-width: 220px;
    display: grid;
    gap: 0.32rem;
    color: #687588;
    font-size: 0.84rem;
}

.catalog-toolbar-filters select,
.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d2dcec;
    background: #fff;
    color: #2f3b4d;
    padding: 0.62rem;
    font: inherit;
}

.contact-form textarea {
    min-height: 132px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.catalog-toolbar-filters select:focus {
    outline: 0;
    border-color: #ffb678;
    box-shadow: 0 0 0 3px rgba(255, 177, 105, 0.2);
}

.grid.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(286px, 1fr));
    gap: 1.1rem;
    align-items: start;
}

.grid.cards.cards-view-grid {
    grid-template-columns: repeat(auto-fit, minmax(286px, 1fr));
}

.grid.cards.cards-view-row {
    grid-template-columns: 1fr;
    gap: 0.88rem;
}

.card {
    position: relative;
    border-radius: 18px;
    border: 1px solid #e3eaf5;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    overflow: hidden;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 133, 24, 0);
    pointer-events: none;
    transition: border-color 0.24s ease, opacity 0.24s ease;
    opacity: 0.55;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: #e39c59;
}

.card:hover::after {
    border-color: rgba(255, 133, 24, 0.45);
    opacity: 1;
}

.card.card-shop.card-hidden {
    display: none !important;
}

.grid.cards.cards-view-grid .card.card-shop:not(.card-hidden) {
    display: block;
}

.grid.cards.cards-view-row .card.card-shop:not(.card-hidden) {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: stretch;
}

.card.card-shop .card-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-height: 250px;
    padding: 14px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
    overflow: hidden;
}

.card.card-shop::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 123, 0, 0.95), rgba(255, 181, 113, 0.2));
    z-index: 1;
}

.card.card-shop .card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 4%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.card.card-shop .card-image img {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.card.card-shop .card-image .img-main {
    opacity: 1;
}

.card.card-shop .card-image .img-alt {
    opacity: 0;
    transform: scale(1.02);
}

.card.card-shop:hover .card-image .img-main {
    opacity: 0;
    transform: scale(1.03);
}

.card.card-shop:hover .card-image .img-alt {
    opacity: 1;
    transform: scale(1.03);
}

.grid.cards.cards-view-row .card.card-shop .card-image {
    min-height: 100%;
    border-radius: 18px 0 0 18px;
}

.grid.cards.cards-view-row .card.card-shop .card-image img {
    top: 18px;
    bottom: 18px;
    left: 18px;
    right: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
}

.badge {
    position: absolute;
    top: 10px;
    z-index: 3;
    border-radius: 999px;
    padding: 0.2rem 0.56rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
}

.badge-new {
    left: 10px;
    background: var(--ok);
}

.badge-sale {
    right: 10px;
    background: var(--danger);
    max-width: calc(100% - 20px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.card-body {
    padding: 1rem;
}

.card-topline {
    margin-bottom: 0.34rem;
}

.card-category {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 0.56rem;
    background: #fff2e4;
    color: #9a4c12;
    font-size: 0.74rem;
    font-weight: 800;
}

.card-link {
    display: block;
}

.card.card-shop .card-link h3 {
    margin: 0 0 0.42rem;
    min-height: 2.7em;
    font-size: 1.06rem;
    line-height: 1.3;
}

.card.card-shop .card-body p {
    margin: 0;
    min-height: 3.1em;
    color: #5f6b7e;
    font-size: 0.93rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-signals {
    margin: 0.74rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.36rem;
}

.card-signals span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #e7dece;
    background: #fffaf3;
    color: #6d4a26;
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.18rem 0.5rem;
}

.card-meta {
    margin: 0.84rem 0;
    display: grid;
    gap: 0.16rem;
}

.card-old-price {
    color: #7d8ba0;
    font-size: 0.9rem;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.card-price {
    font-size: 1.34rem;
    line-height: 1.1;
    font-weight: 900;
    background: linear-gradient(180deg, #121a29 0%, #2d3c55 60%, #d95a00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.card-meta-note {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #6c788c;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.grid.cards.cards-view-row .card-actions {
    max-width: 430px;
}

.card-actions .btn {
    width: 100%;
}

.catalog-empty {
    margin-top: 0.95rem;
    color: #657185;
    font-weight: 700;
}

.card-enter {
    animation: cardIn 0.3s ease both;
    animation-delay: var(--card-delay, 0ms);
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ambientDrift {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(2%, -1.4%, 0) scale(1.04);
    }
}

@keyframes headerBeam {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 220% 0;
    }
}

.sale-showcase {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sale-showcase-copy {
    border-radius: 24px;
    border: 1px solid #efd8c1;
    box-shadow: var(--shadow-sm);
    background:
        radial-gradient(780px 260px at 0% 0%, rgba(255, 191, 134, 0.24), rgba(255, 191, 134, 0) 62%),
        linear-gradient(152deg, #fff, #fff8ef);
    padding: 1.4rem;
    border-left: 5px solid var(--accent);
}

.sale-showcase-copy h1 {
    margin: 0.52rem 0 0;
    font-size: clamp(2rem, 4.3vw, 3.25rem);
    line-height: 1.03;
}

.sale-showcase-copy p {
    margin: 0.82rem 0 0;
    color: #5b677b;
    max-width: 54ch;
}

.sale-kpis {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.52rem;
}

.sale-kpis article {
    border-radius: 14px;
    border: 1px solid #eddcc9;
    background: rgba(255, 255, 255, 0.86);
    padding: 0.64rem 0.72rem;
}

.sale-kpis strong {
    display: block;
    font-size: 1.04rem;
}

.sale-kpis span {
    font-size: 0.82rem;
    color: #637085;
}

.sale-showcase-actions {
    margin-top: 0.98rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.sale-hero-card {
    position: relative;
    display: block;
    min-height: 400px;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #dce5f1;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.sale-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 1;
    pointer-events: none;
}

.sale-hero-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.34s ease;
}

.sale-hero-card:hover img {
    transform: scale(1.03);
}

.sale-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 21, 0) 42%, rgba(10, 14, 21, 0.68) 100%);
}

.sale-hero-overlay {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    color: #fff;
    display: grid;
    gap: 0.2rem;
}

.sale-hero-overlay span {
    width: fit-content;
    border-radius: 999px;
    background: rgba(239, 127, 26, 0.92);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.2rem 0.54rem;
}

.sale-hero-overlay strong {
    font-size: 1.2rem;
    line-height: 1.2;
}

.sale-hero-overlay em {
    font-style: normal;
    font-size: 1.06rem;
    font-weight: 800;
}

.sale-layout {
    display: grid;
    gap: 0.95rem;
}

.sale-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sale-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #dce4f0;
    background: #fff;
    color: #324053;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.42rem 0.78rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sale-chip:hover {
    transform: translateY(-1px);
    border-color: #f1ba87;
    box-shadow: var(--shadow-sm);
}

.sale-chip.active {
    border-color: #f2bf8f;
    background: #fff0df;
    color: #a55311;
}

.sale-grid.cards-view-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
}

.sale-page .sale-grid .card.card-shop {
    border-radius: 22px;
}

.sale-page .sale-grid .card.card-shop .card-image {
    min-height: 280px;
    border-radius: 22px 22px 0 0;
}

.gallery-card-link {
    text-decoration: none;
}

/* 2026-04 hero contact buttons inspired by reference */
body.dog-theme .dog-media-stage--contact {
    min-height: auto !important;
    padding: 20px !important;
    display: grid;
    gap: 18px;
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.98) 0%, rgba(239, 231, 224, 0.94) 100%);
}

body.dog-theme .dog-media-stage--contact .hero-slider,
body.dog-theme .dog-media-stage--contact .dog-media-orbit,
body.dog-theme .dog-media-stage--contact + .dog-media-note {
    display: none !important;
}

body.dog-theme .hero-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: #f7efe7;
    box-shadow: 0 22px 42px rgba(78, 58, 46, 0.14);
    aspect-ratio: 4 / 5;
}

body.dog-theme .hero-photo-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 26%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(243, 235, 226, 0.88) 100%);
    pointer-events: none;
}

body.dog-theme .hero-photo-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 28%;
}

body.dog-theme .hero-contact-card {
    padding: 0;
    display: grid;
    gap: 14px;
}

body.dog-theme .hero-primary-cta,
body.dog-theme .hero-call-link,
body.dog-theme .hero-max-link {
    text-decoration: none;
}

body.dog-theme .hero-primary-cta {
    display: block;
    padding: 1rem 1.3rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #2e6cff 0%, #1750d6 100%);
    box-shadow: 0 12px 28px rgba(23, 80, 214, 0.3);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-align: center;
    text-transform: uppercase;
}

body.dog-theme .hero-contact-row {
    padding: 10px 12px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #1854da 0%, #1246bc 100%);
    box-shadow: 0 14px 28px rgba(24, 84, 218, 0.24);
}

body.dog-theme .hero-max-link {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #7fe6ff 0%, #3fb7ff 35%, #1674f0 100%);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 10px 18px rgba(11, 62, 173, 0.28);
}

body.dog-theme .hero-max-link span {
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

body.dog-theme .hero-call-link {
    min-height: 58px;
    padding: 0.85rem 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(180deg, #f7f5f2 0%, #d6d1cb 100%);
    color: #1750d6;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.72);
}

body.dog-theme .hero-primary-cta:hover,
body.dog-theme .hero-call-link:hover,
body.dog-theme .hero-max-link:hover {
    transform: translateY(-1px);
}

@media (max-width: 780px) {
    body.dog-theme .dog-media-stage--contact {
        padding: 14px !important;
        gap: 14px;
        border-radius: 30px !important;
    }

    body.dog-theme .hero-photo-card {
        border-radius: 24px;
    }

    body.dog-theme .hero-primary-cta {
        padding: 0.92rem 1rem;
        font-size: 0.9rem;
    }

    body.dog-theme .hero-contact-row {
        padding: 8px 10px;
        gap: 10px;
    }

    body.dog-theme .hero-max-link {
        width: 50px;
        height: 50px;
    }

    body.dog-theme .hero-call-link {
        min-height: 50px;
        padding: 0.72rem 1rem;
        font-size: 0.96rem;
    }
}

body.dog-theme .dog-hero .dog-media-stage--contact {
    min-height: 580px !important;
    padding: 18px !important;
    display: block;
    border-radius: 44px;
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.96) 0%, rgba(242, 232, 224, 0.9) 100%);
    border: 1px solid rgba(123, 91, 70, 0.1);
    box-shadow: 0 28px 54px rgba(84, 61, 48, 0.12);
}

body.dog-theme .dog-hero .dog-media-stage--contact .hero-photo-card,
body.dog-theme .dog-hero .dog-media-stage--contact .hero-contact-card {
    display: none;
}

body.dog-theme .dog-hero .dog-media-stage--contact .hero-slider,
body.dog-theme .dog-hero .dog-media-stage--contact .dog-media-orbit {
    display: block !important;
}

body.dog-theme .contacts-cta-block {
    margin-top: 2.2rem;
    display: flex;
    justify-content: center;
}

body.dog-theme .dog-media-stage.contacts-media-stage {
    width: min(100%, 340px) !important;
    max-width: 340px !important;
    margin: 0 auto;
    min-height: auto !important;
    height: auto !important;
    aspect-ratio: auto !important;
    display: flex !important;
    flex-direction: column;
    place-items: initial;
    align-items: stretch;
    justify-content: flex-start;
    padding: 16px !important;
    gap: 14px;
    border-radius: 34px !important;
    border: 1px solid rgba(143, 103, 76, 0.14);
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.98) 0%, rgba(241, 230, 219, 0.96) 100%);
    box-shadow: 0 22px 40px rgba(84, 61, 48, 0.13);
}

body.dog-theme .dog-media-stage.contacts-media-stage .hero-photo-card {
    border-radius: 26px;
    aspect-ratio: 1 / 0.78;
    min-height: 0;
}

body.dog-theme .dog-media-stage.contacts-media-stage .hero-photo-card img {
    object-position: center 22%;
}

body.dog-theme .dog-media-stage.contacts-media-stage .hero-contact-card {
    gap: 10px;
}

body.dog-theme .dog-media-stage.contacts-media-stage .hero-primary-cta {
    padding: 0.9rem 0.9rem;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 247, 239, 0.34) 0%, rgba(255, 247, 239, 0) 24%),
        linear-gradient(180deg, #9b6440 0%, #74462c 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 245, 235, 0.38),
        0 12px 24px rgba(111, 66, 41, 0.24);
    color: #fff9f3;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.15;
}

body.dog-theme .dog-media-stage.contacts-media-stage .hero-contact-row {
    padding: 8px 9px;
    gap: 9px;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 251, 247, 0.9) 0%, rgba(247, 239, 231, 0.82) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 20px rgba(103, 73, 53, 0.1);
    border: 1px solid rgba(143, 103, 76, 0.14);
}

body.dog-theme .dog-media-stage.contacts-media-stage .hero-max-link {
    width: 48px;
    height: 48px;
    background: radial-gradient(circle at 32% 28%, #f8d5b4 0%, #d99667 38%, #8a5433 100%);
    color: #fff8f1;
    box-shadow:
        inset 0 1px 0 rgba(255, 243, 231, 0.48),
        0 10px 16px rgba(111, 66, 41, 0.22);
}

body.dog-theme .dog-media-stage.contacts-media-stage .hero-max-link span {
    font-size: 0.74rem;
    letter-spacing: 0.04em;
}

body.dog-theme .dog-media-stage.contacts-media-stage .hero-call-link {
    min-height: 48px;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.18) 30%),
        linear-gradient(180deg, #fffaf4 0%, #eadac8 100%);
    box-shadow:
        inset 0 2px 6px rgba(255, 255, 255, 0.82),
        0 8px 16px rgba(85, 74, 66, 0.12);
    color: #6f4229;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

@media (max-width: 780px) {
    body.dog-theme .dog-hero .dog-media-stage--contact {
        min-height: 470px !important;
        padding: 14px !important;
        border-radius: 30px;
    }

    body.dog-theme .dog-media-stage.contacts-media-stage {
        width: 100% !important;
        max-width: 300px !important;
        padding: 13px !important;
        border-radius: 30px !important;
    }

    body.dog-theme .dog-media-stage.contacts-media-stage .hero-photo-card {
        border-radius: 22px;
    }

    body.dog-theme .dog-media-stage.contacts-media-stage .hero-primary-cta {
        font-size: 0.84rem;
    }

    body.dog-theme .dog-media-stage.contacts-media-stage .hero-max-link {
        width: 44px;
        height: 44px;
    }

    body.dog-theme .dog-media-stage.contacts-media-stage .hero-call-link {
        min-height: 44px;
        font-size: 0.86rem;
    }
}

.sale-page .sale-grid.gallery-grid-fixed,
.sale-page .sale-grid.gallery-grid-fixed.cards-view-row {
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
}

.sale-page .sale-grid.gallery-grid-fixed .gallery-card:not(.card-hidden),
.sale-page .sale-grid.gallery-grid-fixed.cards-view-row .gallery-card:not(.card-hidden) {
    display: block;
}

.sale-page .sale-grid .gallery-card-preview {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 0.8rem;
    width: 100%;
    min-height: 250px;
    padding: 1rem;
    background: linear-gradient(180deg, #f7eee5 0%, #f1dfcf 100%);
}

.sale-page .sale-grid .gallery-card-main-media,
.sale-page .sale-grid .gallery-card-thumb {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 22px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(165, 125, 97, 0.14);
}

.sale-page .sale-grid .gallery-card-main-media {
    min-height: 170px;
}

.sale-page .sale-grid .gallery-card-thumb {
    width: 58px;
    min-width: 58px;
    height: 58px;
}

.sale-page .sale-grid .gallery-card-main-media img,
.sale-page .sale-grid .gallery-card-main-media video,
.sale-page .sale-grid .gallery-card-thumb img,
.sale-page .sale-grid .gallery-card-thumb video {
    position: static;
    inset: auto;
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    transform: none;
}

.sale-page .sale-grid .gallery-card-footer {
    display: flex;
    align-items: stretch;
    gap: 0.8rem;
}

.sale-page .sale-grid .gallery-card-summary {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    gap: 0.22rem;
    min-height: 58px;
    padding: 0.6rem 0.75rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.56);
    color: #5a4030;
}

.sale-page .sale-grid .gallery-card-summary strong {
    font-size: 0.92rem;
    line-height: 1.1;
}

.sale-page .sale-grid .gallery-card-summary span,
.sale-page .sale-grid .gallery-card-summary em {
    font-style: normal;
    color: #866a59;
    font-size: 0.76rem;
}

.gallery-card-video-tag {
    position: absolute;
    left: 0.65rem;
    bottom: 0.65rem;
    z-index: 2;
    padding: 0.34rem 0.62rem;
    border-radius: 999px;
    background: rgba(47, 35, 32, 0.82);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.gallery-card-title-link {
    color: inherit;
    text-decoration: none;
}

.gallery-card-title-link:hover {
    color: #a55311;
}

.gallery-card-body {
    display: grid;
    gap: 0.8rem;
}

.gallery-card-actions {
    grid-template-columns: 1fr;
}

.gallery-card-actions .btn {
    max-width: 180px;
}

@media (max-width: 760px) {
    .sale-page .sale-grid .gallery-card-preview {
        min-height: 220px;
    }

    .sale-page .sale-grid .gallery-card-main-media {
        min-height: 150px;
    }

    .sale-page .sale-grid .gallery-card-footer {
        gap: 0.65rem;
    }

    .sale-page .sale-grid .gallery-card-thumb {
        width: 52px;
        min-width: 52px;
        height: 52px;
    }

    .sale-page .sale-grid .gallery-card-summary {
        min-height: 52px;
        padding: 0.55rem 0.7rem;
    }
}

.breadcrumbs {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: #697588;
    font-weight: 600;
}

.breadcrumbs a {
    color: #2c3748;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    gap: 1rem;
    align-items: start;
    min-width: 0;
}

.product-gallery,
.product-info {
    border-radius: 18px;
    padding: 1rem;
    min-width: 0;
    max-width: 100%;
}

.product-main-image {
    min-height: 450px;
    border-radius: 14px;
    border: 1px solid #e3eaf5;
    background: radial-gradient(circle at 50% 12%, #fff 0%, #f1f5fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    max-width: 100%;
    max-height: 560px;
    object-fit: contain;
}

.gallery-main-link {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.product-thumbs {
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
    gap: 0.5rem;
    min-width: 0;
    max-width: 100%;
}

.thumb {
    border: 1px solid #d9e2f0;
    border-radius: 12px;
    background: #fff;
    padding: 0.3rem;
    min-height: 82px;
    display: block;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.thumb img {
    width: 100%;
    height: 100%;
    max-height: 72px;
    object-fit: contain;
}

.thumb:hover,
.thumb.active {
    border-color: #f0ad74;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(17, 25, 39, 0.12);
}

.product-info h1 {
    margin: 0.44rem 0 0;
    line-height: 1.18;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.product-price {
    margin: 0.22rem 0 0;
    font-size: 1.96rem;
    font-weight: 900;
}

.product-price-wrap {
    margin-top: 0.82rem;
}

.product-old-price {
    margin: 0;
    color: #738198;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    font-size: 1rem;
    font-weight: 700;
}

.product-flags {
    margin-top: 0.72rem;
    display: flex;
    gap: 0.46rem;
}

.product-flags .badge {
    position: static;
}

.product-points {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.35rem;
}

.product-points span {
    position: relative;
    padding-left: 1.1rem;
    color: #314053;
    font-weight: 600;
}

.product-points span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #f08c2e;
}

.product-description {
    margin-top: 1rem;
    border-top: 1px solid #e8eef8;
    padding-top: 1rem;
}

.product-description h2 {
    margin: 0 0 0.46rem;
    font-size: 1.1rem;
}

.product-description p {
    margin: 0;
    color: #4f5b6f;
}

.product-cta {
    margin-top: 1.04rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.price-actions {
    margin: 0.95rem 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.table-wrap {
    overflow: auto;
    border-color: #d4deed;
}

table {
    width: 100%;
    min-width: 690px;
    border-collapse: collapse;
}

th,
td {
    text-align: left;
    border-bottom: 1px solid #e9eff8;
    padding: 0.82rem;
}

th {
    background: #f6f9ff;
    color: #283548;
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.price-link {
    font-weight: 700;
    color: #273245;
    border-bottom: 1px dashed #d3ddeb;
}

.price-link:hover {
    border-bottom-color: #f0ae75;
    color: #a5520f;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.16rem 0.52rem;
    font-size: 0.73rem;
    font-weight: 800;
    background: #eef3fb;
    color: #3f4d63;
}

.status-new {
    background: #e7f8f1;
    color: #0e865c;
}

.status-sale {
    background: #ffe8e8;
    color: #b62424;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
}

.contact-card,
.contact-form {
    padding: 1.05rem;
    background: linear-gradient(170deg, #ffffff, #f8fbff);
}

.contact-card p {
    margin: 0;
}

.contact-card p + p {
    margin-top: 0.52rem;
}

.contact-qr {
    margin: 0.95rem 0;
    display: inline-block;
}

.contact-qr img {
    display: block;
    width: 210px;
    height: 210px;
    object-fit: contain;
    border-radius: 0;
    border: 0;
}

.map-card {
    min-height: 420px;
    overflow: hidden;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.feedback-wrap {
    max-width: 780px;
}

.contact-form h2 {
    margin: 0 0 0.72rem;
}

.contact-form form {
    display: grid;
    gap: 0.64rem;
}

.alert {
    border-radius: 10px;
    padding: 0.64rem 0.74rem;
    margin-bottom: 0.56rem;
    font-weight: 600;
}

.alert.error {
    background: #ffe8e8;
    color: #9a1e1e;
}

.alert.success {
    background: #e8f8ed;
    color: #0e7a4a;
}

.hp {
    position: absolute;
    left: -9999px;
}

.not-found-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 1.6rem;
}

.not-found-box h1 {
    margin: 0.45rem 0 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.not-found-box p {
    margin: 0.8rem 0 0;
    color: #5f6b7f;
}

.site-footer {
    margin-top: 2.3rem;
    padding: 2.2rem 0 1.3rem;
    border-top: 1px solid #e4d7c8;
    background:
        radial-gradient(620px 240px at 100% 0%, rgba(239, 127, 26, 0.18), rgba(239, 127, 26, 0) 68%),
        linear-gradient(140deg, #f3ece2 0%, #ebe1d5 100%);
    color: #232d3c;
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 1fr;
    gap: 1rem;
}

.footer-brand p {
    margin: 0.72rem 0 0;
    max-width: 52ch;
    color: #425065;
}

.footer-cta {
    margin-top: 0.92rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.footer-shell h4 {
    margin: 0 0 0.52rem;
}

.footer-shell p {
    margin: 0;
}

.footer-shell p + p {
    margin-top: 0.42rem;
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 0.88rem;
    border-top: 1px solid rgba(38, 47, 63, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
    color: #4f5c70;
    font-size: 0.88rem;
}

.footer-bottom a {
    font-weight: 700;
}

img.img-skeleton {
    opacity: 0;
    transition: opacity 0.32s ease;
}

img.img-skeleton.img-loaded {
    opacity: 1;
}

.mobile-fixed-cta {
    display: none;
}

@media (max-width: 980px) {
    body {
        background-attachment: scroll;
    }
}

@media (max-width: 1180px) {

    .hero-grid,
    .sale-showcase,
    .about-grid,
    .contact-grid,
    .footer-shell,
    .product-layout,
    .value-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider .slides,
    .sale-hero-card {
        min-height: 330px;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.42rem;
    }

    .catalog-sidebar h3 {
        grid-column: 1 / -1;
        margin-bottom: 0.1rem;
    }

    .catalog-total {
        text-align: left;
    }
}

@media (max-width: 980px) {
    .header-shell {
        min-height: 78px;
    }

    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        z-index: 150;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.24rem;
        padding: 0.9rem;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        background: #fff;
        box-shadow: 0 14px 32px rgba(16, 24, 40, 0.16);
        margin-left: 0;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 0.62rem 0.78rem;
    }

    .hero-stats,
    .sale-kpis {
        grid-template-columns: 1fr;
    }

    .promo-strip,
    .cta-band-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-toolbar-filters label {
        min-width: 100%;
    }
}

@media (max-width: 780px) {
    .section {
        padding: 3.3rem 0;
    }

    .grid.cards,
    .grid.cards.cards-view-grid,
    .grid.cards.cards-view-row {
        grid-template-columns: 1fr;
    }

    .grid.cards.cards-view-grid .card.card-shop:not(.card-hidden),
    .grid.cards.cards-view-row .card.card-shop:not(.card-hidden) {
        display: block;
    }

    .card.card-shop .card-image,
    .grid.cards.cards-view-row .card.card-shop .card-image,
    .sale-page .sale-grid.cards-view-row .card.card-shop .card-image {
        border-radius: 18px 18px 0 0;
        min-height: 230px;
    }

    .card-actions,
    .grid.cards.cards-view-row .card-actions {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .slider-btn {
        display: none;
    }

    .sale-showcase-copy h1,
    .hero-copy h1 {
        font-size: clamp(1.8rem, 8vw, 2.7rem);
        max-width: 100%;
    }

    .catalog-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-fixed-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 10px;
        z-index: 235;
        display: inline-flex;
        justify-content: center;
        border-radius: 12px;
        border: 1px solid #c95a0a;
        background: linear-gradient(180deg, #ff9a34 0%, #d85a00 100%);
        color: #fff;
        font-weight: 800;
        padding: 0.78rem 0.86rem;
        box-shadow: 0 14px 30px rgba(201, 82, 2, 0.42);
    }

    main {
        padding-bottom: 74px;
    }
}

@media (max-width: 560px) {
    .logo img,
    .logo-icon {
        height: 40px;
    }

    .logo-word {
        font-size: 1.8rem;
    }

    .logo-mark {
        font-size: 0.72rem;
        transform: translateY(0.34rem);
    }

    .hero-copy,
    .sale-showcase-copy,
    .about-text,
    .feature-list article,
    .catalog-sidebar,
    .catalog-toolbar,
    .contact-card,
    .contact-form,
    .product-gallery,
    .product-info,
    .not-found-box,
    .premium-head {
        padding: 0.95rem;
    }

    .hero-slider .slides,
    .sale-hero-card {
        min-height: 260px;
    }

    .contact-qr img {
        width: 176px;
        height: 176px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}



/* Sobachki Club theme overrides */
body.dog-theme {
    font-family: "Manrope", sans-serif;
    color: #2f241f;
    background:
        radial-gradient(920px 480px at 0% 0%, rgba(255, 214, 170, 0.58), rgba(255, 214, 170, 0) 68%),
        radial-gradient(860px 420px at 100% 0%, rgba(221, 178, 140, 0.34), rgba(221, 178, 140, 0) 66%),
        linear-gradient(180deg, #fffaf4 0%, #f7efe4 55%, #f3eadf 100%);
}

body.dog-theme::before {
    opacity: 0.1;
    background:
        radial-gradient(540px 300px at 15% 20%, rgba(145, 94, 61, 0.16), rgba(145, 94, 61, 0) 70%),
        radial-gradient(420px 280px at 82% 16%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 70%);
}

body.dog-theme::after {
    background:
        radial-gradient(360px 360px at var(--mx) var(--my), rgba(255, 228, 198, 0.24), rgba(255, 228, 198, 0) 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(108, 78, 58, 0.05) 100%);
}

body.dog-theme h1,
body.dog-theme h2,
body.dog-theme h3,
body.dog-theme .logo-word {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.01em;
}

body.dog-theme .site-header {
    background: rgba(255, 249, 242, 0.92);
    border-bottom-color: rgba(115, 78, 53, 0.16);
}

body.dog-theme .site-header::after {
    background: linear-gradient(90deg, rgba(184, 128, 93, 0), rgba(184, 128, 93, 0.88), rgba(184, 128, 93, 0));
}

body.dog-theme .logo {
    gap: 0.9rem;
}

body.dog-theme .logo-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #b7845f 0%, #7c5238 100%);
    color: #fff8f1;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 16px 32px rgba(124, 82, 56, 0.24);
}

body.dog-theme .logo-word {
    display: block;
    font-size: clamp(1.9rem, 3.1vw, 2.45rem);
    line-height: 0.95;
}

body.dog-theme .logo-sub {
    display: block;
    margin-top: 0.1rem;
    color: #7f6a5d;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.dog-theme .promo-strip,
body.dog-theme .dog-media-note,
body.dog-theme .catalog-sidebar,
body.dog-theme .contact-card,
body.dog-theme .dog-contact-panel,
body.dog-theme .contact-form,
body.dog-theme .sale-hero-card,
body.dog-theme .card-shop,
body.dog-theme .cta-band-shell,
body.dog-theme .value-card,
body.dog-theme .step-card,
body.dog-theme .catalog-toolbar,
body.dog-theme .catalog-head,
body.dog-theme .table-wrap,
body.dog-theme .product-info,
body.dog-theme .product-main-image {
    background: rgba(255, 252, 247, 0.92);
    border: 1px solid rgba(140, 102, 74, 0.14);
    box-shadow: 0 24px 50px rgba(120, 88, 65, 0.12);
}

body.dog-theme .btn {
    border-color: #85553b;
    background: linear-gradient(180deg, #c79269 0%, #88553a 100%);
    box-shadow: 0 18px 34px rgba(136, 85, 58, 0.28);
}

body.dog-theme .btn-ghost {
    color: #513829;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(136, 85, 58, 0.2);
    box-shadow: none;
}

body.dog-theme .eyebrow,
body.dog-theme .card-category,
body.dog-theme .dog-card-subtitle,
body.dog-theme .catalog-toolbar-title span,
body.dog-theme .catalog-total span {
    color: #8e6246;
}

body.dog-theme .dog-hero {
    padding-top: 2.8rem;
}

body.dog-theme .dog-strip {
    background: linear-gradient(135deg, rgba(123, 81, 54, 0.92), rgba(197, 146, 107, 0.92));
    color: #fffaf4;
    border-radius: 24px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.4rem;
}

body.dog-theme .dog-strip a {
    color: #fffaf4;
    font-weight: 700;
}

body.dog-theme .dog-copy h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.95;
    margin-bottom: 1rem;
}

body.dog-theme .dog-copy p,
body.dog-theme .dog-about-copy p,
body.dog-theme .dog-product-subtitle,
body.dog-theme .card-body p,
body.dog-theme .dog-contact-card p,
body.dog-theme .dog-contact-panel p {
    color: #6e584a;
}

body.dog-theme .dog-stats article {
    background: rgba(255, 247, 239, 0.86);
    border: 1px solid rgba(139, 98, 68, 0.12);
}

body.dog-theme .dog-slider,
body.dog-theme .sale-hero-card {
    border-radius: 32px;
    overflow: hidden;
}

body.dog-theme .dog-media-note {
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 20px;
}

body.dog-theme .quick-cat,
body.dog-theme .sale-chip,
body.dog-theme .catalog-side-link {
    background: rgba(255, 249, 241, 0.9);
    border-color: rgba(138, 95, 66, 0.12);
    color: #4d372a;
}

body.dog-theme .quick-cat:hover,
body.dog-theme .sale-chip:hover,
body.dog-theme .catalog-side-link:hover,
body.dog-theme .catalog-side-link.active,
body.dog-theme .sale-chip.active {
    background: linear-gradient(135deg, #f3e0cf, #f9efe3);
    color: #523427;
}

body.dog-theme .dog-card {
    border-radius: 28px;
    overflow: hidden;
}

body.dog-theme .card-image {
    background: linear-gradient(180deg, #f7ede2 0%, #f4e4d2 100%);
}

body.dog-theme .card-image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

body.dog-theme .dog-card-subtitle {
    font-size: 0.77rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.dog-theme .dog-signals span,
body.dog-theme .dog-product-points span {
    background: rgba(244, 229, 213, 0.8);
    color: #624735;
}

body.dog-theme .card-price,
body.dog-theme .product-price,
body.dog-theme .catalog-total strong,
body.dog-theme .sale-kpis strong {
    color: #593b2a;
}

body.dog-theme .status-chip,
body.dog-theme .badge-new,
body.dog-theme .badge-sale {
    border-radius: 999px;
}

body.dog-theme .badge-new {
    background: rgba(117, 154, 112, 0.95);
}

body.dog-theme .badge-sale,
body.dog-theme .status-sale {
    background: rgba(182, 124, 87, 0.95);
}

body.dog-theme .dog-contact-note {
    background: transparent;
    border: none;
    box-shadow: none;
}

body.dog-theme .dog-contact-panel {
    border-radius: 28px;
    padding: 2rem;
    min-height: 100%;
}

body.dog-theme .dog-feedback-page .contact-form,
body.dog-theme .dog-product-info,
body.dog-theme .dog-sale-showcase,
body.dog-theme .dog-catalog-head,
body.dog-theme .cta-band-shell {
    border-radius: 28px;
}

body.dog-theme .mobile-fixed-cta {
    background: linear-gradient(180deg, #b78059 0%, #7f4e35 100%);
}

@media (max-width: 780px) {
    body.dog-theme .logo-sub {
        display: none;
    }

    body.dog-theme .dog-copy h1 {
        font-size: clamp(2.4rem, 12vw, 3.4rem);
    }
}

body.dog-theme .dog-card-image {
    min-height: 320px;
    padding: 22px;
    border-radius: 28px 28px 0 0;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 38%),
        linear-gradient(180deg, #f8efe6 0%, #ecd8c5 100%);
}

body.dog-theme .dog-photo-glow {
    position: absolute;
    inset: 10% 12% auto;
    height: 68%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 246, 236, 0.7) 42%, rgba(255, 246, 236, 0) 74%);
    filter: blur(2px);
}

body.dog-theme .dog-photo-shell {
    position: absolute;
    inset: 20px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

body.dog-theme .dog-card-image .img-main {
    top: 22px;
    left: 22px;
    right: 22px;
    bottom: 22px;
    width: calc(100% - 44px);
    height: calc(100% - 44px);
    object-fit: cover;
    object-position: center 28%;
    border-radius: 24px;
    box-shadow: 0 22px 36px rgba(117, 83, 60, 0.18);
    transform: scale(1);
}

body.dog-theme .dog-card:hover .dog-card-image .img-main {
    opacity: 1;
    transform: scale(1.04);
}

body.dog-theme .dog-card-preview {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 24px;
    padding: 6px;
    background: rgba(255, 251, 246, 0.96);
    border: 1px solid rgba(133, 85, 59, 0.16);
    box-shadow: 0 20px 28px rgba(95, 63, 44, 0.22);
    z-index: 3;
    transform: rotate(5deg);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

body.dog-theme .dog-card-preview img {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transform: none;
}

body.dog-theme .dog-card:hover .dog-card-preview {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 0 24px 34px rgba(95, 63, 44, 0.26);
}

body.dog-theme .grid.cards.cards-view-row .dog-card-image {
    min-height: 100%;
    border-radius: 28px 0 0 28px;
}

body.dog-theme .grid.cards.cards-view-row .dog-card-image .img-main {
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
}

@media (max-width: 780px) {
    body.dog-theme .dog-card-image {
        min-height: 280px;
        padding: 16px;
    }

    body.dog-theme .dog-card-image .img-main {
        top: 16px;
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
        height: calc(100% - 32px);
    }

    body.dog-theme .dog-card-preview {
        width: 52px;
        height: 52px;
        right: 14px;
        bottom: 14px;
    }
}

body.dog-theme .dog-card-image {
    min-height: 320px;
    padding: 12px;
    border-radius: 28px 28px 0 0;
    background: #f5ede4;
}

body.dog-theme .dog-card-image::after {
    display: none;
}

body.dog-theme .dog-card-image .img-main {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    object-fit: cover;
    object-position: center 28%;
    border-radius: 22px;
    box-shadow: none;
    transform: scale(1);
    opacity: 1;
}

body.dog-theme .dog-card:hover .dog-card-image .img-main {
    opacity: 1;
    transform: scale(1.02);
}

body.dog-theme .dog-card-image .img-alt,
body.dog-theme .dog-photo-glow,
body.dog-theme .dog-photo-shell,
body.dog-theme .dog-card-preview,
body.dog-theme .badge-new {
    display: none !important;
}

body.dog-theme .grid.cards.cards-view-row .dog-card-image .img-main {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
}

@media (max-width: 780px) {
    body.dog-theme .dog-card-image {
        min-height: 280px;
        padding: 10px;
    }

    body.dog-theme .dog-card-image .img-main {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }
}

/* 2026-03 design refresh */
:root {
    --design-ink: #1c2431;
    --design-muted: #6c7284;
    --design-sand: #f5ede3;
    --design-cream: #fffaf4;
    --design-panel: rgba(255, 250, 244, 0.86);
    --design-panel-strong: rgba(255, 255, 255, 0.94);
    --design-line: rgba(84, 66, 48, 0.12);
    --design-accent: #b86a2f;
    --design-accent-deep: #8f4921;
    --design-wine: #764d43;
    --design-shadow: 0 28px 60px rgba(38, 28, 20, 0.12);
    --design-shadow-soft: 0 18px 38px rgba(38, 28, 20, 0.08);
}

body.dog-theme {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--design-ink);
    background:
        radial-gradient(900px 500px at 0% 0%, rgba(246, 198, 150, 0.34), rgba(246, 198, 150, 0) 60%),
        radial-gradient(800px 420px at 100% 0%, rgba(208, 171, 135, 0.24), rgba(208, 171, 135, 0) 58%),
        radial-gradient(760px 420px at 50% 100%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 60%),
        linear-gradient(180deg, #fdf8f2 0%, #f8f3ee 48%, #f5f8fb 100%);
}

body.dog-theme::before {
    opacity: 0.08;
}

body.dog-theme .container {
    width: min(1280px, calc(100% - 40px));
}

body.dog-theme .site-header {
    top: 16px;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    left: 0;
    right: 0;
    border: 1px solid rgba(124, 92, 64, 0.12);
    border-radius: 28px;
    background: rgba(255, 251, 247, 0.82);
    box-shadow: 0 18px 40px rgba(42, 30, 20, 0.08);
}

body.dog-theme .site-header::after {
    display: none;
}

body.dog-theme .header-shell {
    min-height: 78px;
    padding: 0 18px;
}

body.dog-theme .logo-badge {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1f2836 0%, #8f5a35 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(64, 40, 24, 0.24);
}

body.dog-theme .logo-word,
body.dog-theme .section-head h1,
body.dog-theme .section-head h2,
body.dog-theme .hero-copy h1,
body.dog-theme .cta-band-shell h2,
body.dog-theme .value-card h3,
body.dog-theme .step-card h3,
body.dog-theme .card-link h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    letter-spacing: 0;
}

body.dog-theme .logo-word {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    background: none;
    color: #1f2836;
}

body.dog-theme .logo-sub,
body.dog-theme .nav a,
body.dog-theme .section-head p,
body.dog-theme p,
body.dog-theme li,
body.dog-theme span {
    letter-spacing: -0.01em;
}

body.dog-theme .nav {
    gap: 0.35rem;
}

body.dog-theme .nav a {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: #534a42;
}

body.dog-theme .nav a:hover,
body.dog-theme .nav a.active {
    background: rgba(184, 106, 47, 0.1);
    color: #43271b;
}

body.dog-theme .nav .nav-cta {
    background: linear-gradient(135deg, #b86a2f 0%, #8f4921 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(143, 73, 33, 0.25);
}

body.dog-theme .btn {
    border-radius: 999px;
    padding: 0.92rem 1.3rem;
    border-color: rgba(122, 74, 39, 0.2);
    background: linear-gradient(135deg, #bb6d31 0%, #8d4821 100%);
    box-shadow: 0 20px 36px rgba(143, 73, 33, 0.26);
}

body.dog-theme .btn-ghost {
    background: rgba(255, 255, 255, 0.72);
    color: var(--design-ink);
    border: 1px solid rgba(124, 92, 64, 0.14);
}

body.dog-theme .section {
    padding: 5rem 0;
}

body.dog-theme .section-head {
    margin-bottom: 1.8rem;
}

body.dog-theme .eyebrow {
    color: var(--design-accent-deep);
    letter-spacing: 0.16em;
}

body.dog-theme .section-head h1,
body.dog-theme .hero-copy h1 {
    font-size: clamp(3.25rem, 5.8vw, 6rem);
    line-height: 0.96;
    max-width: 12ch;
}

body.dog-theme .section-head h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 0.98;
    max-width: 13ch;
}

body.dog-theme .hero-premium {
    padding-top: 7rem;
}

body.dog-theme .dog-strip {
    margin-bottom: 1.2rem;
    padding: 1rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 251, 246, 0.9);
    border: 1px solid var(--design-line);
    box-shadow: var(--design-shadow-soft);
}

body.dog-theme .dog-hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    align-items: stretch;
    gap: 28px;
}

body.dog-theme .dog-copy,
body.dog-theme .dog-media,
body.dog-theme .dog-catalog-head,
body.dog-theme .catalog-sidebar,
body.dog-theme .catalog-toolbar,
body.dog-theme .card.card-shop,
body.dog-theme .value-card,
body.dog-theme .step-card,
body.dog-theme .cta-band-shell,
body.dog-theme .site-footer,
body.dog-theme .about-text-wide,
body.dog-theme .contact-form,
body.dog-theme .dog-product-info,
body.dog-theme .dog-sale-showcase {
    border: 1px solid var(--design-line);
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(255, 248, 241, 0.92));
    box-shadow: var(--design-shadow);
}

body.dog-theme .dog-copy {
    padding: 2.2rem;
    border-radius: 34px;
}

body.dog-theme .hero-copy > p {
    max-width: 62ch;
    color: var(--design-muted);
    font-size: 1.04rem;
}

body.dog-theme .hero-breed-chips,
body.dog-theme .hero-editorial-band {
    display: grid;
    gap: 12px;
}

body.dog-theme .hero-breed-chips {
    grid-template-columns: repeat(auto-fit, minmax(120px, max-content));
    margin: 1.2rem 0 0.6rem;
}

body.dog-theme .hero-breed-chips span,
body.dog-theme .dog-signals span,
body.dog-theme .card-signals span,
body.dog-theme .quick-cat,
body.dog-theme .catalog-side-link,
body.dog-theme .hero-spotlight-label {
    border: 1px solid rgba(122, 74, 39, 0.14);
    background: rgba(255, 255, 255, 0.72);
    color: #58473b;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

body.dog-theme .hero-breed-chips span {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    font-weight: 700;
}

body.dog-theme .hero-checks {
    display: grid;
    gap: 0.8rem;
    margin: 1.4rem 0;
    padding: 0;
    list-style: none;
}

body.dog-theme .hero-checks li {
    position: relative;
    padding-left: 1.5rem;
}

body.dog-theme .hero-checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bc743f, #7d4424);
}

body.dog-theme .hero-actions {
    margin: 1.4rem 0;
}

body.dog-theme .dog-stats {
    gap: 14px;
}

body.dog-theme .dog-stats article {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(122, 74, 39, 0.1);
}

body.dog-theme .dog-stats strong {
    color: #342b29;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

body.dog-theme .hero-editorial-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.6rem;
}

body.dog-theme .hero-editorial-band > div {
    padding: 1rem 1.1rem;
    border-radius: 24px;
    background: rgba(33, 39, 51, 0.9);
    color: rgba(255,255,255,0.86);
}

body.dog-theme .hero-editorial-band strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #fff2e6;
}

body.dog-theme .dog-media {
    position: relative;
    padding: 1rem;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(255,255,255,0.75), rgba(255,255,255,0) 40%),
        linear-gradient(180deg, #eed7c2 0%, #d7b496 100%);
}

body.dog-theme .dog-slider {
    border-radius: 28px;
    min-height: 100%;
    box-shadow: 0 26px 60px rgba(61, 38, 21, 0.18);
}

body.dog-theme .dog-media-note,
body.dog-theme .hero-spotlight-card {
    position: absolute;
    z-index: 3;
    max-width: 240px;
    border-radius: 24px;
    padding: 1rem 1.1rem;
    background: rgba(255, 251, 247, 0.88);
    border: 1px solid rgba(122, 74, 39, 0.12);
    box-shadow: 0 18px 34px rgba(57, 35, 22, 0.12);
    backdrop-filter: blur(12px);
}

body.dog-theme .dog-media-note {
    left: 18px;
    bottom: 18px;
}

body.dog-theme .hero-spotlight-card {
    right: 18px;
    top: 18px;
}

body.dog-theme .hero-spotlight-card strong,
body.dog-theme .dog-media-note strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

body.dog-theme .hero-spotlight-card a {
    display: inline-flex;
    margin-top: 0.55rem;
    color: var(--design-accent-deep);
    font-weight: 800;
}

body.dog-theme .quick-cats-grid,
body.dog-theme .home-atmosphere-grid,
body.dog-theme .puppy-concierge-grid,
body.dog-theme .value-grid,
body.dog-theme .steps-grid {
    gap: 20px;
}

body.dog-theme .quick-cat {
    padding: 1rem 1.2rem;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.dog-theme .quick-cat:hover,
body.dog-theme .catalog-side-link:hover,
body.dog-theme .catalog-side-link.active {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(77, 50, 29, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

body.dog-theme .home-atmosphere {
    padding-top: 1rem;
}

body.dog-theme .home-atmosphere-head {
    max-width: 980px;
}

body.dog-theme .home-atmosphere-grid,
body.dog-theme .puppy-concierge-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.dog-theme .atmosphere-card,
body.dog-theme .concierge-card {
    padding: 1.6rem;
    border-radius: 28px;
    border: 1px solid var(--design-line);
    background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(249, 239, 229, 0.92));
    box-shadow: var(--design-shadow-soft);
}

body.dog-theme .atmosphere-card h3,
body.dog-theme .concierge-card strong {
    display: block;
    margin: 0 0 0.6rem;
    font-size: 1.1rem;
    color: #34261f;
}

body.dog-theme .puppy-concierge-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 22px;
    align-items: start;
    padding: 2rem;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255, 249, 241, 0.95), rgba(241, 228, 214, 0.9));
    border: 1px solid rgba(122, 74, 39, 0.12);
    box-shadow: var(--design-shadow);
}

body.dog-theme .puppy-concierge-copy h2 {
    margin-top: 0.4rem;
}

body.dog-theme .card.card-shop {
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,244,238,0.92));
}

body.dog-theme .dog-card-image {
    min-height: 250px;
    padding: 14px;
    background: linear-gradient(180deg, #f1dfcf 0%, #dfc2a8 100%);
}

body.dog-theme .dog-card-image .img-main {
    border-radius: 24px;
}

body.dog-theme .card-body {
    padding: 1.35rem 1.35rem 1.45rem;
}

body.dog-theme .card-topline,
body.dog-theme .card-meta,
body.dog-theme .card-actions {
    gap: 10px;
}

body.dog-theme .card-link h3 {
    font-size: 2rem;
    line-height: 1;
}

body.dog-theme .card-price,
body.dog-theme .catalog-total strong {
    color: #2f2320;
}

body.dog-theme .badge-sale,
body.dog-theme .status-sale {
    background: linear-gradient(135deg, #8d4a2b 0%, #67372a 100%);
}

body.dog-theme .value-card,
body.dog-theme .step-card {
    border-radius: 30px;
    padding: 1.7rem;
}

body.dog-theme .value-card::before {
    background: linear-gradient(135deg, rgba(184,106,47,0.24), rgba(184,106,47,0));
}

body.dog-theme .step-card span {
    color: var(--design-accent-deep);
}

body.dog-theme .catalog-layout {
    gap: 24px;
}

body.dog-theme .catalog-sidebar,
body.dog-theme .catalog-toolbar,
body.dog-theme .dog-catalog-head {
    border-radius: 28px;
    padding: 1.35rem;
}

body.dog-theme .catalog-side-link {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: 18px;
    margin-bottom: 0.6rem;
}

body.dog-theme select {
    border-radius: 16px;
    border: 1px solid rgba(122, 74, 39, 0.18);
    background: rgba(255,255,255,0.92);
    padding: 0.85rem 1rem;
}

body.dog-theme .site-footer {
    margin: 2rem auto 1.3rem;
    width: min(1280px, calc(100% - 32px));
    border-radius: 34px;
    padding: 2.2rem 0 0;
    background: linear-gradient(135deg, #242b38 0%, #5a4135 100%);
    color: rgba(255,255,255,0.86);
}

body.dog-theme .site-footer .logo-word,
body.dog-theme .site-footer h4,
body.dog-theme .site-footer a:hover {
    color: #fff;
}

body.dog-theme .site-footer .logo-badge {
    background: rgba(255,255,255,0.14);
    box-shadow: none;
}

body.dog-theme .footer-bottom {
    border-top-color: rgba(255,255,255,0.1);
}

body.dog-theme .mobile-fixed-cta {
    bottom: 14px;
    left: 14px;
    right: 14px;
    width: auto;
    border-radius: 999px;
    box-shadow: 0 18px 30px rgba(61, 38, 21, 0.22);
}

@media (max-width: 1024px) {
    body.dog-theme .dog-hero-grid,
    body.dog-theme .puppy-concierge-shell,
    body.dog-theme .home-atmosphere-grid,
    body.dog-theme .puppy-concierge-grid {
        grid-template-columns: 1fr;
    }

    body.dog-theme .hero-editorial-band {
        grid-template-columns: 1fr;
    }

    body.dog-theme .hero-spotlight-card,
    body.dog-theme .dog-media-note {
        position: static;
        max-width: none;
        margin-top: 12px;
    }
}

@media (max-width: 780px) {
    body.dog-theme .container {
        width: min(100% - 24px, 1280px);
    }

    body.dog-theme .site-header {
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 24px;
    }

    body.dog-theme .header-shell {
        min-height: 72px;
        padding: 0 14px;
    }

    body.dog-theme .dog-copy,
    body.dog-theme .dog-media,
    body.dog-theme .puppy-concierge-shell,
    body.dog-theme .value-card,
    body.dog-theme .step-card,
    body.dog-theme .catalog-sidebar,
    body.dog-theme .catalog-toolbar,
    body.dog-theme .dog-catalog-head,
    body.dog-theme .cta-band-shell {
        border-radius: 26px;
    }

    body.dog-theme .hero-premium {
        padding-top: 6rem;
    }

    body.dog-theme .hero-copy h1,
    body.dog-theme .section-head h1 {
        font-size: clamp(2.6rem, 15vw, 4rem);
    }

    body.dog-theme .section-head h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    body.dog-theme .dog-card-image {
        min-height: 280px;
    }

    body.dog-theme .nav.open {
        border-radius: 22px;
        background: rgba(255, 251, 247, 0.96);
        box-shadow: var(--design-shadow-soft);
    }
}

/* 2026-03 palette tuning */
:root {
    --design-ink: #2c221f;
    --design-muted: #74655e;
    --design-sand: #efe2d4;
    --design-cream: #fbf5ee;
    --design-panel: rgba(251, 245, 238, 0.88);
    --design-panel-strong: rgba(255, 251, 247, 0.96);
    --design-line: rgba(96, 70, 58, 0.12);
    --design-accent: #a7633d;
    --design-accent-deep: #7c4328;
    --design-wine: #5f3f3f;
    --design-shadow: 0 28px 60px rgba(58, 38, 28, 0.12);
    --design-shadow-soft: 0 18px 38px rgba(58, 38, 28, 0.08);
}

body.dog-theme {
    background:
        radial-gradient(920px 520px at 0% 0%, rgba(223, 183, 145, 0.34), rgba(223, 183, 145, 0) 60%),
        radial-gradient(780px 400px at 100% 0%, rgba(191, 148, 121, 0.18), rgba(191, 148, 121, 0) 58%),
        radial-gradient(760px 420px at 50% 100%, rgba(255, 250, 245, 0.72), rgba(255, 250, 245, 0) 60%),
        linear-gradient(180deg, #fcf7f1 0%, #f6efe7 48%, #f3f2ef 100%);
}

body.dog-theme .site-header {
    border-color: rgba(108, 82, 67, 0.12);
    background: rgba(252, 247, 241, 0.84);
}

body.dog-theme .logo-badge,
body.dog-theme .nav .nav-cta,
body.dog-theme .btn,
body.dog-theme .mobile-fixed-cta {
    background: linear-gradient(135deg, #a7633d 0%, #7c4328 100%);
}

body.dog-theme .logo-badge {
    box-shadow: 0 14px 30px rgba(92, 55, 35, 0.24);
}

body.dog-theme .logo-word {
    color: #332623;
}

body.dog-theme .nav a {
    color: #62534b;
}

body.dog-theme .nav a:hover,
body.dog-theme .nav a.active {
    background: rgba(167, 99, 61, 0.11);
    color: #4c2e22;
}

body.dog-theme .btn {
    border-color: rgba(124, 67, 40, 0.22);
    box-shadow: 0 20px 36px rgba(124, 67, 40, 0.24);
}

body.dog-theme .btn-ghost {
    background: rgba(255, 251, 247, 0.8);
    border-color: rgba(108, 82, 67, 0.14);
}

body.dog-theme .eyebrow,
body.dog-theme .step-card span,
body.dog-theme .hero-spotlight-card a {
    color: #7c4328;
}

body.dog-theme .dog-copy,
body.dog-theme .dog-media,
body.dog-theme .dog-catalog-head,
body.dog-theme .catalog-sidebar,
body.dog-theme .catalog-toolbar,
body.dog-theme .card.card-shop,
body.dog-theme .value-card,
body.dog-theme .step-card,
body.dog-theme .cta-band-shell,
body.dog-theme .about-text-wide,
body.dog-theme .contact-form,
body.dog-theme .dog-product-info,
body.dog-theme .dog-sale-showcase {
    background: linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(247, 239, 231, 0.94));
}

body.dog-theme .dog-strip,
body.dog-theme .dog-media-note,
body.dog-theme .hero-spotlight-card,
body.dog-theme .hero-breed-chips span,
body.dog-theme .dog-signals span,
body.dog-theme .card-signals span,
body.dog-theme .quick-cat,
body.dog-theme .catalog-side-link,
body.dog-theme select {
    background: rgba(255, 251, 247, 0.78);
    border-color: rgba(108, 82, 67, 0.14);
    color: #5f4a41;
}

body.dog-theme .hero-checks li::before,
body.dog-theme .badge-sale,
body.dog-theme .status-sale {
    background: linear-gradient(135deg, #9a5a39 0%, #6d3b2c 100%);
}

body.dog-theme .hero-editorial-band > div {
    background: linear-gradient(135deg, #4f3b39 0%, #6a4b46 100%);
    color: rgba(255, 245, 237, 0.9);
}

body.dog-theme .hero-editorial-band strong {
    color: #fff7f0;
}

body.dog-theme .dog-media {
    background:
        radial-gradient(circle at top, rgba(255,255,255,0.72), rgba(255,255,255,0) 40%),
        linear-gradient(180deg, #e8d3c0 0%, #d4b29a 100%);
}

body.dog-theme .dog-card-image {
    background: linear-gradient(180deg, #ecdcca 0%, #d8baa2 100%);
}

body.dog-theme .card-price,
body.dog-theme .catalog-total strong,
body.dog-theme .dog-stats strong,
body.dog-theme .atmosphere-card h3,
body.dog-theme .concierge-card strong {
    color: #392926;
}

body.dog-theme .puppy-concierge-shell {
    background: linear-gradient(135deg, rgba(253, 247, 240, 0.96), rgba(239, 225, 213, 0.92));
    border-color: rgba(108, 82, 67, 0.12);
}

body.dog-theme .value-card::before {
    background: linear-gradient(135deg, rgba(167, 99, 61, 0.2), rgba(167, 99, 61, 0));
}

body.dog-theme .site-footer {
    background: linear-gradient(135deg, #3b2f30 0%, #5a433d 100%);
}

/* 2026-03 spacing tuning */
body.dog-theme main {
    min-height: auto;
}

body.dog-theme .section {
    padding: 3.4rem 0;
}

body.dog-theme .hero-premium {
    padding-top: 5.8rem;
    padding-bottom: 2.5rem;
}

body.dog-theme .dog-strip {
    margin-bottom: 0.9rem;
    padding: 0.8rem 1rem;
}

body.dog-theme .dog-hero-grid {
    gap: 20px;
}

body.dog-theme .dog-copy {
    padding: 1.65rem;
}

body.dog-theme .hero-copy > p {
    font-size: 0.98rem;
    margin-bottom: 0.9rem;
}

body.dog-theme .hero-breed-chips {
    margin: 0.9rem 0 0.35rem;
    gap: 10px;
}

body.dog-theme .hero-breed-chips span,
body.dog-theme .quick-cat,
body.dog-theme .catalog-side-link {
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
}

body.dog-theme .hero-checks {
    gap: 0.55rem;
    margin: 1rem 0;
}

body.dog-theme .hero-actions {
    margin: 1rem 0;
}

body.dog-theme .dog-stats {
    gap: 10px;
}

body.dog-theme .dog-stats article {
    padding: 0.55rem 0.7rem;
}

body.dog-theme .hero-editorial-band {
    margin-top: 1rem;
    gap: 10px;
}

body.dog-theme .hero-editorial-band > div,
body.dog-theme .dog-media-note,
body.dog-theme .hero-spotlight-card {
    padding: 0.85rem 0.95rem;
}

body.dog-theme .dog-media {
    padding: 0.8rem;
}

body.dog-theme .section-head {
    margin-bottom: 1.25rem;
}

body.dog-theme .section-head h2 {
    max-width: 15ch;
}

body.dog-theme .quick-cats-grid,
body.dog-theme .home-atmosphere-grid,
body.dog-theme .puppy-concierge-grid,
body.dog-theme .value-grid,
body.dog-theme .steps-grid {
    gap: 14px;
}

body.dog-theme .home-atmosphere {
    padding-top: 0.2rem;
}

body.dog-theme .atmosphere-card,
body.dog-theme .concierge-card,
body.dog-theme .value-card,
body.dog-theme .step-card {
    padding: 1.2rem;
}

body.dog-theme .puppy-concierge-shell {
    gap: 18px;
    padding: 1.45rem;
}

body.dog-theme .card.card-shop {
    border-radius: 26px;
    box-shadow: 0 16px 30px rgba(58, 38, 28, 0.08);
}

body.dog-theme .dog-card-image {
    min-height: 220px;
    padding: 12px;
}

body.dog-theme .card-body {
    padding: 1.05rem 1.05rem 1.15rem;
}

body.dog-theme .card-link h3 {
    font-size: 1.72rem;
}

body.dog-theme .card-body p {
    margin: 0.55rem 0 0.8rem;
}

body.dog-theme .catalog-layout {
    gap: 18px;
}

body.dog-theme .catalog-sidebar,
body.dog-theme .catalog-toolbar,
body.dog-theme .dog-catalog-head,
body.dog-theme .cta-band-shell {
    padding: 1rem;
}

body.dog-theme .site-footer {
    margin-top: 1.2rem;
    padding-top: 1.6rem;
}

@media (max-width: 1024px) {
    body.dog-theme .section {
        padding: 2.9rem 0;
    }

    body.dog-theme .hero-premium {
        padding-top: 5.2rem;
    }
}

@media (max-width: 780px) {
    body.dog-theme .hero-premium {
        padding-top: 4.9rem;
        padding-bottom: 2rem;
    }

    body.dog-theme .dog-copy,
    body.dog-theme .dog-media,
    body.dog-theme .puppy-concierge-shell,
    body.dog-theme .catalog-sidebar,
    body.dog-theme .catalog-toolbar,
    body.dog-theme .dog-catalog-head,
    body.dog-theme .cta-band-shell {
        padding: 1rem;
    }

    body.dog-theme .dog-card-image {
        min-height: 248px;
    }
}

/* 2026-03 featured grid fix */
body.dog-theme .featured-puppies .grid.cards.cards-view-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

body.dog-theme .featured-puppies .grid.cards.cards-view-grid .card.card-shop,
body.dog-theme .featured-puppies .grid.cards.cards-view-grid .card.card-shop:not(.card-hidden) {
    display: block;
    width: 100%;
    max-width: none;
    min-width: 0;
}

@media (max-width: 1100px) {
    body.dog-theme .featured-puppies .grid.cards.cards-view-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    body.dog-theme .featured-puppies .grid.cards.cards-view-grid {
        grid-template-columns: 1fr;
    }
}

/* 2026-03 featured row override */
body.dog-theme .featured-puppies .grid.cards.cards-view-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    align-items: stretch;
}

body.dog-theme .featured-puppies .grid.cards.cards-view-grid .card.card-shop,
body.dog-theme .featured-puppies .grid.cards.cards-view-grid .card.card-shop:not(.card-hidden) {
    display: block;
    flex: 1 1 0;
    width: auto;
    max-width: none;
    min-width: 0;
}

@media (max-width: 1100px) {
    body.dog-theme .featured-puppies .grid.cards.cards-view-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    body.dog-theme .featured-puppies .grid.cards.cards-view-grid {
        grid-template-columns: 1fr;
    }
}

/* 2026-03 figma header_9 hero adaptation */
body.dog-theme .hero-premium {
    padding-top: 4.8rem;
    padding-bottom: 2.8rem;
}

body.dog-theme .dog-hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
    align-items: center;
    gap: clamp(28px, 5vw, 88px);
}

body.dog-theme .dog-copy,
body.dog-theme .dog-media {
    background: transparent;
    border: 0;
    box-shadow: none;
}

body.dog-theme .dog-copy {
    padding: 0.4rem 0 0.4rem 0.15rem;
    max-width: 540px;
}

body.dog-theme .dog-copy .eyebrow {
    margin-bottom: 1.2rem;
    color: rgba(57, 41, 38, 0.55);
    letter-spacing: 0.08em;
}

body.dog-theme .dog-copy h1 {
    max-width: 10ch;
    margin-bottom: 1.1rem;
    font-size: clamp(3rem, 5.1vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #2b201d;
}

body.dog-theme .hero-copy > p {
    max-width: 29rem;
    margin-bottom: 1.4rem;
    font-size: 1.06rem;
    line-height: 1.75;
    color: rgba(63, 51, 45, 0.72);
}

body.dog-theme .hero-breed-chips {
    margin: 0 0 1.5rem;
    gap: 0.7rem;
}

body.dog-theme .hero-breed-chips a,
body.dog-theme .hero-breed-chips span {
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(104, 85, 72, 0.14);
    box-shadow: 0 14px 30px rgba(92, 70, 56, 0.06);
}

body.dog-theme .hero-breed-chips a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

body.dog-theme .hero-breed-chips a:hover,
body.dog-theme .hero-breed-chips a:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(184, 91, 11, 0.28);
    box-shadow: 0 18px 34px rgba(92, 70, 56, 0.1);
}

body.dog-theme .hero-actions {
    margin: 0 0 1.65rem;
    gap: 0.85rem;
}

body.dog-theme .hero-actions .btn {
    min-width: 214px;
    padding: 1rem 1.4rem;
    border-radius: 999px;
}

body.dog-theme .dog-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

body.dog-theme .dog-stats article {
    min-height: 98px;
    padding: 1rem 1rem 0.95rem;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(104, 85, 72, 0.12);
    box-shadow: 0 18px 34px rgba(95, 71, 57, 0.07);
}

body.dog-theme .dog-stats strong {
    font-size: 1.55rem;
}

body.dog-theme .dog-media {
    justify-self: end;
    width: min(100%, 440px);
    padding: 0;
}

body.dog-theme .dog-media-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
}

body.dog-theme .dog-slider {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 52px;
    overflow: hidden;
    background: linear-gradient(180deg, #d7e8f6 0%, #bad4ec 100%);
    box-shadow: 0 32px 60px rgba(97, 76, 60, 0.16);
}

body.dog-theme .dog-slider::after {
    display: none;
}

body.dog-theme .dog-slider .slide::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(36, 24, 19, 0.1));
}

body.dog-theme .dog-media-orbit {
    position: absolute;
    right: -24px;
    bottom: 56px;
    z-index: 1;
    width: 138px;
    height: 138px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.96), rgba(235, 196, 124, 0.88));
    box-shadow: 0 24px 44px rgba(176, 128, 58, 0.22);
}

body.dog-theme .dog-media-note {
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(104, 85, 72, 0.12);
    box-shadow: 0 18px 34px rgba(95, 71, 57, 0.07);
}

body.dog-theme .dog-media-note strong {
    color: #2f2420;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    body.dog-theme .dog-copy {
        max-width: none;
    }

    body.dog-theme .dog-copy h1 {
        max-width: 12ch;
    }

    body.dog-theme .dog-media {
        justify-self: center;
    }
}

@media (max-width: 780px) {
    body.dog-theme .hero-premium {
        padding-top: 4.2rem;
        padding-bottom: 2rem;
    }

    body.dog-theme .dog-copy h1 {
        max-width: none;
        font-size: clamp(2.4rem, 11vw, 3.6rem);
    }

    body.dog-theme .hero-copy > p {
        max-width: none;
        font-size: 1rem;
        line-height: 1.65;
    }

    body.dog-theme .hero-actions .btn {
        min-width: 0;
        width: 100%;
    }

    body.dog-theme .dog-stats {
        grid-template-columns: 1fr;
    }

    body.dog-theme .dog-media {
        width: min(100%, 360px);
    }

    body.dog-theme .dog-slider {
        border-radius: 34px;
    }

    body.dog-theme .dog-media-orbit {
        width: 96px;
        height: 96px;
        right: -12px;
        bottom: 44px;
    }
}
/* 2026-03 figma hero spacing refinement */
body.dog-theme .dog-hero .container {
    max-width: 1120px;
}

body.dog-theme .dog-hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 380px);
    gap: clamp(22px, 3.4vw, 52px);
}

body.dog-theme .dog-copy {
    max-width: 600px;
}

body.dog-theme .dog-copy h1 {
    max-width: 8.5ch;
    font-size: clamp(2.9rem, 4.6vw, 4.8rem);
}

body.dog-theme .dog-media {
    width: min(100%, 380px);
}

body.dog-theme .dog-media-note {
    margin-top: 1rem;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-hero .container {
        max-width: none;
    }
}
/* 2026-03 figma hero image scale up */
body.dog-theme .dog-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    gap: clamp(18px, 2.8vw, 40px);
}

body.dog-theme .dog-media {
    width: min(100%, 460px);
}

body.dog-theme .dog-slider {
    border-radius: 56px;
}

body.dog-theme .dog-media-orbit {
    right: -28px;
    bottom: 62px;
    width: 150px;
    height: 150px;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    body.dog-theme .dog-media {
        width: min(100%, 420px);
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-media {
        width: min(100%, 360px);
    }

    body.dog-theme .dog-slider {
        border-radius: 34px;
    }

    body.dog-theme .dog-media-orbit {
        width: 96px;
        height: 96px;
        right: -12px;
        bottom: 44px;
    }
}
/* 2026-03 figma hero image taller */
body.dog-theme .dog-hero-grid {
    align-items: stretch;
}

body.dog-theme .dog-media {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

body.dog-theme .dog-media-stage {
    flex: 1 1 auto;
    min-height: 620px;
    aspect-ratio: auto;
}

body.dog-theme .dog-slider {
    height: 100%;
}

body.dog-theme .dog-slider .slides,
body.dog-theme .dog-slider .slide,
body.dog-theme .dog-slider .slide img {
    height: 100%;
}

body.dog-theme .dog-media-note {
    margin-top: 1.15rem;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-media-stage {
        min-height: 500px;
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-media-stage {
        min-height: 360px;
    }
}
/* 2026-03 figma hero image pull left */
body.dog-theme .dog-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
    gap: clamp(8px, 1.8vw, 22px);
}

body.dog-theme .dog-copy {
    max-width: 560px;
}

body.dog-theme .dog-media {
    width: min(100%, 500px);
    margin-left: -10px;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    body.dog-theme .dog-media {
        width: min(100%, 420px);
        margin-left: 0;
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-media {
        width: min(100%, 360px);
    }
}
/* 2026-03 figma hero portrait crop */
body.dog-theme .dog-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 430px);
    gap: clamp(6px, 1.2vw, 16px);
}

body.dog-theme .dog-copy {
    max-width: 540px;
}

body.dog-theme .dog-media {
    width: min(100%, 430px);
    margin-left: -6px;
}

body.dog-theme .dog-media-stage {
    min-height: 760px;
}

body.dog-theme .dog-slider {
    border-radius: 44px;
}

body.dog-theme .dog-slider .slide img {
    object-fit: cover;
    object-position: center 28%;
}

body.dog-theme .dog-media-note {
    max-width: 180px;
    margin-top: -46px;
    margin-left: 16px;
    position: relative;
    z-index: 3;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    body.dog-theme .dog-media {
        width: min(100%, 430px);
        margin-left: 0;
    }

    body.dog-theme .dog-media-stage {
        min-height: 620px;
    }

    body.dog-theme .dog-media-note {
        max-width: none;
        margin-top: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-media {
        width: min(100%, 360px);
    }

    body.dog-theme .dog-media-stage {
        min-height: 440px;
    }

    body.dog-theme .dog-media-note {
        margin-top: 0.9rem;
    }
}
/* 2026-03 figma hero overlap closer to copy */
body.dog-theme .dog-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 470px);
    gap: 0;
}

body.dog-theme .dog-copy {
    max-width: 520px;
    position: relative;
    z-index: 2;
}

body.dog-theme .dog-media {
    width: min(100%, 470px);
    margin-left: -42px;
    position: relative;
    z-index: 1;
}

body.dog-theme .dog-media-stage {
    min-height: 780px;
}

body.dog-theme .dog-slider {
    border-radius: 42px;
}

body.dog-theme .dog-slider .slide img {
    object-position: center 24%;
}

body.dog-theme .dog-media-note {
    max-width: 240px;
    margin-top: -66px;
    margin-left: 34px;
    padding: 1.25rem 1.2rem;
    border-radius: 28px;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    body.dog-theme .dog-copy {
        max-width: none;
    }

    body.dog-theme .dog-media {
        width: min(100%, 430px);
        margin-left: 0;
    }

    body.dog-theme .dog-media-stage {
        min-height: 620px;
    }

    body.dog-theme .dog-media-note {
        max-width: none;
        margin-top: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-media {
        width: min(100%, 360px);
    }

    body.dog-theme .dog-media-stage {
        min-height: 440px;
    }
}
/* 2026-03 final hero composition */
body.dog-theme .dog-hero {
    overflow: hidden;
}

body.dog-theme .dog-hero .container {
    max-width: 1180px;
}

body.dog-theme .dog-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
    align-items: end;
    gap: 14px;
}

body.dog-theme .dog-copy {
    max-width: 510px;
    padding: 0 0 0.35rem;
}

body.dog-theme .dog-copy h1 {
    max-width: 8ch;
    margin-bottom: 1rem;
    font-size: clamp(3.35rem, 5vw, 5.15rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

body.dog-theme .hero-copy > p {
    max-width: 28rem;
    margin-bottom: 1.2rem;
    font-size: 1.02rem;
    line-height: 1.68;
    color: rgba(67, 55, 49, 0.72);
}

body.dog-theme .hero-breed-chips {
    margin: 0 0 1.45rem;
}

body.dog-theme .hero-actions {
    margin: 0 0 1.45rem;
}

body.dog-theme .dog-stats {
    gap: 0.9rem;
}

body.dog-theme .dog-stats article {
    min-height: 112px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 16px 28px rgba(88, 66, 52, 0.07);
}

body.dog-theme .dog-media {
    width: min(100%, 500px);
    margin-left: -36px;
    padding: 0;
}

body.dog-theme .dog-media-stage {
    min-height: 790px;
}

body.dog-theme .dog-slider {
    border-radius: 40px;
    box-shadow: 0 32px 54px rgba(97, 76, 60, 0.14);
}

body.dog-theme .dog-slider .slide img {
    object-fit: contain;
    object-position: center center;
    transform: none;
}

body.dog-theme .dog-media-orbit {
    right: -22px;
    top: 118px;
    bottom: auto;
    width: 126px;
    height: 126px;
    opacity: 0.78;
}

body.dog-theme .dog-media-note {
    max-width: 232px;
    margin-top: -70px;
    margin-left: 28px;
    padding: 1.25rem 1.2rem;
    border-radius: 30px;
    background: rgba(255, 251, 247, 0.95);
    box-shadow: 0 22px 38px rgba(78, 57, 44, 0.12);
}

body.dog-theme .dog-media-note strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.06rem;
    line-height: 1.3;
}

body.dog-theme .dog-media-note span {
    color: rgba(64, 54, 48, 0.78);
    line-height: 1.55;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-hero .container {
        max-width: none;
    }

    body.dog-theme .dog-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    body.dog-theme .dog-copy {
        max-width: none;
    }

    body.dog-theme .dog-copy h1 {
        max-width: 10ch;
    }

    body.dog-theme .dog-media {
        width: min(100%, 440px);
        margin-left: 0;
    }

    body.dog-theme .dog-media-stage {
        min-height: 620px;
    }

    body.dog-theme .dog-media-note {
        max-width: none;
        margin-top: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-copy h1 {
        max-width: none;
        font-size: clamp(2.5rem, 10.6vw, 3.85rem);
    }

    body.dog-theme .hero-copy > p {
        max-width: none;
    }

    body.dog-theme .dog-media {
        width: min(100%, 360px);
    }

    body.dog-theme .dog-media-stage {
        min-height: 450px;
    }

    body.dog-theme .dog-slider {
        border-radius: 32px;
    }

    body.dog-theme .dog-media-orbit {
        width: 58px;
        height: 58px;
        top: 52px;
        right: -10px;
    }
}
/* 2026-03 hero image visibility fix */
body.dog-theme .dog-slider img.img-skeleton,
body.dog-theme .dog-slider .slide.active img {
    opacity: 1 !important;
}
/* 2026-03 hero photo layout rethink */
body.dog-theme .dog-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 460px);
    align-items: center;
    gap: 28px;
}

body.dog-theme .dog-copy {
    max-width: 540px;
    padding-bottom: 0.8rem;
}

body.dog-theme .dog-copy h1 {
    max-width: 8.4ch;
}

body.dog-theme .dog-media {
    width: min(100%, 460px);
    margin-left: -12px;
    align-self: center;
}

body.dog-theme .dog-media-stage {
    min-height: 680px;
    display: flex;
    align-items: stretch;
}

body.dog-theme .dog-slider {
    width: 100%;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 30px 52px rgba(86, 64, 50, 0.16);
}

body.dog-theme .dog-slider .slide img {
    object-position: center 20%;
    transform: scale(1.015);
}

body.dog-theme .dog-media-orbit {
    top: 92px;
    right: -16px;
    width: 112px;
    height: 112px;
    opacity: 0.7;
}

body.dog-theme .dog-media-note {
    max-width: 248px;
    margin-top: -34px;
    margin-left: 24px;
    padding: 1.15rem 1.15rem 1.05rem;
    border-radius: 26px;
}

body.dog-theme .dog-media-note strong {
    margin-bottom: 0.4rem;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    body.dog-theme .dog-media {
        width: min(100%, 430px);
        margin-left: 0;
    }

    body.dog-theme .dog-media-stage {
        min-height: 580px;
    }

    body.dog-theme .dog-media-note {
        max-width: 280px;
        margin-top: -26px;
        margin-left: 12px;
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-media {
        width: min(100%, 360px);
    }

    body.dog-theme .dog-media-stage {
        min-height: 430px;
    }

    body.dog-theme .dog-media-note {
        max-width: none;
        margin-top: 0.9rem;
        margin-left: 0;
    }
}
/* 2026-03 hero note + eyebrow fix */
body.dog-theme .dog-hero {
    overflow: visible;
}

body.dog-theme .dog-copy {
    padding-left: 10px;
}

body.dog-theme .dog-copy .eyebrow {
    display: inline-block;
    margin-left: 0;
    padding-left: 2px;
}

body.dog-theme .dog-media {
    position: relative;
}

body.dog-theme .dog-media-note {
    position: absolute;
    left: 22px;
    bottom: 22px;
    max-width: 180px;
    margin: 0;
    z-index: 4;
    background: rgba(255, 250, 245, 0.94);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 34px rgba(74, 56, 45, 0.16);
}

body.dog-theme .dog-media-note span {
    display: block;
    font-size: 0.98rem;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-copy {
        padding-left: 0;
    }

    body.dog-theme .dog-media-note {
        position: static;
        max-width: 280px;
        margin-top: 1rem;
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-media-note {
        max-width: none;
    }
}
/* 2026-03 hero media unified bottom panel */
body.dog-theme .dog-hero-grid {
    align-items: start;
}

body.dog-theme .dog-media {
    width: min(100%, 470px);
    margin-left: 0;
}

body.dog-theme .dog-media-stage {
    min-height: 620px;
}

body.dog-theme .dog-slider {
    border-radius: 40px;
}

body.dog-theme .dog-media-note {
    position: static;
    max-width: none;
    width: 100%;
    margin-top: 14px;
    margin-left: 0;
    padding: 1.15rem 1.2rem;
    display: grid;
    grid-template-columns: minmax(0, 170px) minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    border-radius: 24px;
    background: rgba(255, 250, 245, 0.9);
    box-shadow: 0 18px 30px rgba(78, 57, 44, 0.1);
}

body.dog-theme .dog-media-note strong {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.3;
}

body.dog-theme .dog-media-note span {
    font-size: 0.98rem;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-media {
        width: min(100%, 430px);
    }

    body.dog-theme .dog-media-stage {
        min-height: 560px;
    }

    body.dog-theme .dog-media-note {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-media {
        width: min(100%, 360px);
    }

    body.dog-theme .dog-media-stage {
        min-height: 430px;
    }
}
/* 2026-03 hero photo taller again */
body.dog-theme .dog-media-stage {
    min-height: 720px;
}

body.dog-theme .dog-slider,
body.dog-theme .dog-slider .slides,
body.dog-theme .dog-slider .slide,
body.dog-theme .dog-slider .slide img {
    height: 100%;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-media-stage {
        min-height: 600px;
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-media-stage {
        min-height: 430px;
    }
}
/* 2026-03 hero photo extended to note baseline */
body.dog-theme .dog-media-stage {
    min-height: 780px;
}

body.dog-theme .dog-media-note {
    margin-top: -72px;
    margin-left: 18px;
    width: calc(100% - 36px);
    max-width: none;
    position: relative;
    z-index: 4;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-media-stage {
        min-height: 620px;
    }

    body.dog-theme .dog-media-note {
        margin-top: 1rem;
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-media-stage {
        min-height: 430px;
    }
}

/* 2026-03 final brown palette override */
body.dog-theme {
    --accent: #8a5433;
    --accent-strong: #6f4229;
    --design-accent: #8a5433;
    --design-accent-deep: #6f4229;
}

body.dog-theme .logo-badge,
body.dog-theme .nav .nav-cta,
body.dog-theme .btn,
body.dog-theme .mobile-fixed-cta,
body.dog-theme .quick-cat::after {
    background: linear-gradient(135deg, #8a5433 0%, #6f4229 100%);
}

body.dog-theme .logo-badge,
body.dog-theme .btn,
body.dog-theme .mobile-fixed-cta,
body.dog-theme .nav .nav-cta {
    box-shadow: 0 16px 34px rgba(92, 58, 36, 0.22);
}

body.dog-theme .nav a:hover,
body.dog-theme .nav a.active,
body.dog-theme .quick-cat:hover,
body.dog-theme .sale-chip:hover,
body.dog-theme .catalog-side-link.active,
body.dog-theme .sale-chip.active {
    background: rgba(138, 84, 51, 0.12);
    color: #553322;
    border-color: rgba(138, 84, 51, 0.2);
    box-shadow: inset 3px 0 0 #8a5433;
}

body.dog-theme .sale-chip,
body.dog-theme .quick-cat,
body.dog-theme .btn-ghost {
    border-color: rgba(138, 84, 51, 0.14);
}

body.dog-theme .sale-chip,
body.dog-theme .quick-cat {
    color: #6f4229;
}

body.dog-theme .btn-ghost {
    color: #553322;
    background: rgba(255, 252, 249, 0.92);
}

body.dog-theme .btn-ghost:hover {
    background: rgba(138, 84, 51, 0.08);
    border-color: rgba(138, 84, 51, 0.22);
}

body.dog-theme .dots button.active {
    background: #8a5433;
}

body.dog-theme .slider-btn:focus-visible,
body.dog-theme .btn:focus-visible,
body.dog-theme .btn-ghost:focus-visible,
body.dog-theme .sale-chip:focus-visible,
body.dog-theme .quick-cat:focus-visible,
body.dog-theme .nav .nav-cta:focus-visible {
    outline: 2px solid rgba(138, 84, 51, 0.38);
    outline-offset: 2px;
}

/* 2026-03 hero right column compact fix */
body.dog-theme .dog-media {
    display: grid;
    grid-template-rows: auto auto;
    align-content: start;
    row-gap: 12px;
}

body.dog-theme .dog-media-stage {
    min-height: 620px;
}

body.dog-theme .dog-media-note {
    margin-top: 0;
    margin-left: 18px;
    width: calc(100% - 36px);
}

@media (max-width: 1100px) {
    body.dog-theme .dog-media-stage {
        min-height: 520px;
    }

    body.dog-theme .dog-media-note {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-media-stage {
        min-height: 430px;
    }
}

/* 2026-03 hero redesign final */
body.dog-theme .dog-hero {
    overflow: hidden;
}

body.dog-theme .dog-hero .container {
    max-width: 1180px;
}

body.dog-theme .dog-hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 500px);
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
}

body.dog-theme .dog-copy {
    max-width: 760px;
    padding: 0 0 0.4rem;
}

body.dog-theme .dog-copy .eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: rgba(73, 58, 50, 0.58);
}

body.dog-theme .dog-copy h1 {
    max-width: 13.5ch;
    margin-bottom: 1.05rem;
    font-size: clamp(2.75rem, 4vw, 4.35rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
    color: #2f221f;
}

body.dog-theme .hero-copy > p {
    max-width: 42rem;
    margin-bottom: 1.35rem;
    font-size: 1.04rem;
    line-height: 1.72;
    color: rgba(73, 61, 55, 0.74);
}

body.dog-theme .hero-breed-chips {
    margin: 0 0 1.4rem;
}

body.dog-theme .hero-actions {
    margin: 0 0 1.45rem;
}

body.dog-theme .dog-stats {
    gap: 0.9rem;
}

body.dog-theme .dog-stats article {
    min-height: 108px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(108, 82, 67, 0.08);
    box-shadow: 0 18px 34px rgba(82, 61, 49, 0.07);
}

body.dog-theme .dog-media {
    width: min(100%, 500px);
    margin: 0;
    display: block;
}

body.dog-theme .dog-media-stage {
    position: relative;
    min-height: 690px;
    padding: 18px;
    border-radius: 44px;
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.96) 0%, rgba(242, 232, 224, 0.9) 100%);
    border: 1px solid rgba(123, 91, 70, 0.1);
    box-shadow: 0 28px 54px rgba(84, 61, 48, 0.12);
}

body.dog-theme .dog-media-topbar {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    pointer-events: none;
}

body.dog-theme .dog-media-topbar span {
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 250, 246, 0.84);
    border: 1px solid rgba(120, 89, 69, 0.12);
    color: #6f4229;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    backdrop-filter: blur(10px);
}

body.dog-theme .dog-slider {
    width: 100%;
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 46px rgba(78, 58, 46, 0.16);
}

body.dog-theme .dog-slider .slides,
body.dog-theme .dog-slider .slide,
body.dog-theme .dog-slider .slide img {
    height: 100%;
}

body.dog-theme .dog-slider .slide::before {
    background: linear-gradient(180deg, rgba(30, 20, 16, 0.04) 0%, rgba(30, 20, 16, 0) 22%, rgba(30, 20, 16, 0.12) 100%);
}

body.dog-theme .dog-slider .slide img {
    object-fit: cover;
    object-position: center 22%;
    transform: scale(1.02);
}

body.dog-theme .dog-media-note {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 4;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 1.05rem 1.15rem;
    display: grid;
    grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    border-radius: 28px;
    background: rgba(255, 249, 244, 0.92);
    border: 1px solid rgba(120, 89, 69, 0.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 34px rgba(74, 54, 42, 0.14);
}

body.dog-theme .dog-media-note strong {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.28;
    color: #332622;
}

body.dog-theme .dog-media-note span {
    display: block;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(72, 58, 52, 0.8);
}

body.dog-theme .dog-media-orbit {
    right: -18px;
    top: 110px;
    bottom: auto;
    width: 118px;
    height: 118px;
    opacity: 0.58;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    body.dog-theme .dog-copy {
        max-width: none;
        padding-bottom: 0;
    }

    body.dog-theme .dog-copy h1 {
        max-width: 12ch;
    }

    body.dog-theme .dog-media {
        width: min(100%, 470px);
        margin: 0 auto;
    }

    body.dog-theme .dog-media-stage {
        min-height: 610px;
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-copy h1 {
        max-width: none;
        font-size: clamp(2.5rem, 10.8vw, 3.8rem);
    }

    body.dog-theme .hero-copy > p {
        max-width: none;
    }

    body.dog-theme .dog-stats {
        grid-template-columns: 1fr;
    }

    body.dog-theme .dog-media {
        width: min(100%, 360px);
    }

    body.dog-theme .dog-media-stage {
        min-height: 470px;
        padding: 14px;
        border-radius: 30px;
    }

    body.dog-theme .dog-media-topbar {
        top: 14px;
        left: 14px;
        right: 14px;
        gap: 8px;
    }

    body.dog-theme .dog-media-topbar span {
        padding: 0.45rem 0.75rem;
        font-size: 0.74rem;
    }

    body.dog-theme .dog-slider {
        border-radius: 24px;
    }

    body.dog-theme .dog-media-note {
        left: 14px;
        right: 14px;
        bottom: 14px;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0.6rem 0.75rem;
        border-radius: 22px;
    }

    body.dog-theme .dog-media-note strong {
        font-size: 1rem;
    }

    body.dog-theme .dog-media-note span {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    body.dog-theme .dog-media-orbit {
        width: 82px;
        height: 82px;
        top: 52px;
        right: -8px;
    }
}

/* 2026-03 hero redesign polish */
body.dog-theme .dog-media-stage {
    min-height: 620px;
}

body.dog-theme .dog-media-note {
    left: 24px;
    right: auto;
    bottom: 24px;
    width: min(260px, calc(100% - 48px));
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 1rem 1.05rem;
}

body.dog-theme .dog-media-note strong {
    font-size: 1.02rem;
}

body.dog-theme .dog-media-note span {
    font-size: 0.92rem;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-media-stage {
        min-height: 560px;
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-media-stage {
        min-height: 470px;
    }

    body.dog-theme .dog-media-note {
        left: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
    }
}

/* 2026-03 hero overlay lift */
body.dog-theme .dog-media-stage {
    min-height: 580px;
}

body.dog-theme .dog-media-note {
    bottom: 96px;
}

@media (max-width: 1100px) {
    body.dog-theme .dog-media-stage {
        min-height: 540px;
    }

    body.dog-theme .dog-media-note {
        bottom: 84px;
    }
}

@media (max-width: 780px) {
    body.dog-theme .dog-media-stage {
        min-height: 470px;
    }

    body.dog-theme .dog-media-note {
        bottom: 14px;
    }
}

/* 2026-03 hero note desktop cleanup */
@media (min-width: 781px) {
    body.dog-theme .dog-media-note {
        display: none;
    }
}

/* 2026-03 eyebrow + flat header cleanup */
body.dog-theme .dog-copy .eyebrow {
    position: relative;
    z-index: 3;
    padding-left: 4px;
    color: rgba(67, 51, 44, 0.76);
    font-weight: 700;
    letter-spacing: 0.08em;
}

body.dog-theme .site-header,
body.dog-theme .is-scrolled .site-header {
    background: #f4ede5;
    border-bottom: 1px solid rgba(109, 84, 69, 0.08);
    box-shadow: none;
}

body.dog-theme .site-header::after {
    display: none;
}

body.dog-theme .header-shell {
    background: #f4ede5;
    border: 1px solid rgba(109, 84, 69, 0.08);
    box-shadow: none;
}

body.dog-theme .nav {
    background: transparent;
    box-shadow: none;
}

body.dog-theme .logo,
body.dog-theme .nav a,
body.dog-theme .nav .nav-cta {
    box-shadow: none;
}

/* 2026-03 eyebrow clipping + hero tone match */
body.dog-theme .dog-copy .eyebrow {
    padding-top: 4px;
    line-height: 1.25;
    overflow: visible;
}

body.dog-theme .dog-hero,
body.dog-theme .dog-hero .container,
body.dog-theme .dog-hero-grid,
body.dog-theme .dog-copy,
body.dog-theme .dog-media {
    background: transparent;
}

body.dog-theme .dog-media-stage {
    background: #f3ece4;
    box-shadow: none;
}

body.dog-theme .dog-slider {
    box-shadow: 0 18px 28px rgba(84, 61, 48, 0.08);
}

/* 2026-03 eyebrow hard clipping fix */
body.dog-theme .dog-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    padding: 6px 10px 6px 12px;
    margin-left: 2px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: visible;
}

/* 2026-03 heading scale down */
body.dog-theme .dog-copy h1 {
    font-size: clamp(2.7rem, 4.1vw, 4.15rem);
    line-height: 0.97;
}

body.dog-theme .section-head h2,
body.dog-theme .puppy-concierge-copy h2,
body.dog-theme .cta-band-shell h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.45rem);
    line-height: 1.08;
}

body.dog-theme .value-card h3,
body.dog-theme .step-card h3,
body.dog-theme .atmosphere-card h3,
body.dog-theme .card-link h3,
body.dog-theme .concierge-card strong {
    font-size: 1.05rem;
    line-height: 1.3;
}

@media (max-width: 780px) {
    body.dog-theme .dog-copy h1 {
        font-size: clamp(2.2rem, 8.8vw, 3.2rem);
    }

    body.dog-theme .section-head h1,
    body.dog-theme .section-head h2,
    body.dog-theme .puppy-concierge-copy h2,
    body.dog-theme .cta-band-shell h2 {
        font-size: clamp(1.5rem, 6.2vw, 2rem);
        max-width: none;
        text-wrap: balance;
    }
}

/* 2026-03 about title downscale */
body.dog-theme .about-page .section-head h1 {
    font-size: clamp(2.3rem, 4.2vw, 3.6rem);
    line-height: 0.98;
    max-width: 12ch;
}

body.dog-theme .catalog-head h1,
body.dog-theme .section-head h1 {
    max-width: min(100%, 18ch);
}

body.dog-theme .section-head h2,
body.dog-theme .puppy-concierge-copy h2,
body.dog-theme .cta-band-shell h2 {
    max-width: min(100%, 24ch);
}


/* 2026-03 kennel branding override */
body.dog-theme .header-shell {
    grid-template-columns: minmax(0, 1.35fr) auto;
    align-items: center;
    gap: 20px;
}

body.dog-theme .logo {
    align-items: center;
    gap: 14px;
    min-width: 0;
}

body.dog-theme .logo-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    line-height: 1;
}

body.dog-theme .logo-word {
    color: #7a4a2a !important;
    font-size: clamp(1.55rem, 2.2vw, 2.3rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

body.dog-theme .logo-sub {
    color: rgba(122, 74, 42, 0.84) !important;
    margin-top: 4px;
    font-size: 0.82rem;
    line-height: 1.15;
    letter-spacing: 0.04em;
}

@media (max-width: 1200px) {
    body.dog-theme .header-shell {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    body.dog-theme .logo-word {
        font-size: clamp(1.35rem, 2vw, 1.9rem);
    }
}

@media (max-width: 980px) {
    body.dog-theme .logo-word {
        font-size: 1.35rem;
    }

    body.dog-theme .logo-sub {
        font-size: 0.76rem;
    }
}

/* 2026-03 kennel branding override */
body.dog-theme .header-shell {
    grid-template-columns: minmax(0, 1.35fr) auto;
    align-items: center;
    gap: 20px;
}

body.dog-theme .logo {
    align-items: center;
    gap: 14px;
    min-width: 0;
}

body.dog-theme .logo-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    line-height: 1;
}

body.dog-theme .logo-word {
    color: #7a4a2a !important;
    font-size: clamp(1.55rem, 2.2vw, 2.3rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

body.dog-theme .logo-sub {
    color: rgba(122, 74, 42, 0.84) !important;
    margin-top: 4px;
    font-size: 0.82rem;
    line-height: 1.15;
    letter-spacing: 0.04em;
}

@media (max-width: 1200px) {
    body.dog-theme .header-shell {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    body.dog-theme .logo-word {
        font-size: clamp(1.35rem, 2vw, 1.9rem);
    }
}

@media (max-width: 980px) {
    body.dog-theme .logo-word {
        font-size: 1.35rem;
    }

    body.dog-theme .logo-sub {
        font-size: 0.76rem;
    }
}

/* 2026-03 logo visibility hotfix */
body.dog-theme .site-header {
    overflow: visible;
}

body.dog-theme .header-shell {
    padding-top: 18px;
    padding-bottom: 18px;
    min-height: 86px;
    overflow: visible;
}

body.dog-theme .logo {
    min-height: 50px;
    overflow: visible;
}

body.dog-theme .logo-copy {
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    overflow: visible;
}

body.dog-theme .logo-word {
    display: block;
    color: #5a2f19 !important;
    font-size: clamp(1.7rem, 2.35vw, 2.35rem) !important;
    line-height: 1.06 !important;
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(255, 248, 241, 0.45);
    white-space: normal;
}

body.dog-theme .logo-sub {
    display: block;
    color: #8b5b3d !important;
    font-size: 0.84rem !important;
    line-height: 1.2 !important;
    margin-top: 0 !important;
}

@media (max-width: 1200px) {
    body.dog-theme .header-shell {
        min-height: 82px;
    }

    body.dog-theme .logo-word {
        font-size: clamp(1.45rem, 2vw, 1.95rem) !important;
    }
}

/* 2026-03 logo brown color override */
body.dog-theme .logo-word {
    color: #7b4a2c !important;
}

body.dog-theme .logo-sub {
    color: #9a6847 !important;
}

/* 2026-03 logo darker brown override */
body.dog-theme .logo-word {
    color: #5f341d !important;
}

body.dog-theme .logo-sub {
    color: #7d5136 !important;
}

/* 2026-03 logo contrast visibility override */
body.dog-theme .logo-copy {
    padding: 6px 12px 7px;
    border-radius: 14px;
    background: rgba(255, 248, 241, 0.92);
    box-shadow: 0 10px 24px rgba(95, 52, 29, 0.12);
}

body.dog-theme .logo-word {
    color: #4a2412 !important;
    font-size: clamp(1.65rem, 2.2vw, 2.2rem) !important;
    line-height: 1.08 !important;
    text-shadow: none !important;
}

body.dog-theme .logo-sub {
    color: #6f432b !important;
    font-size: 0.8rem !important;
}

/* 2026-03 logo title visibility final fix */
body.dog-theme .logo-copy {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    gap: 2px !important;
}

body.dog-theme .logo-word {
    display: block !important;
    position: relative;
    z-index: 2;
    color: #5a2f19 !important;
    font-size: clamp(1.25rem, 1.75vw, 1.8rem) !important;
    line-height: 1.02 !important;
    margin: 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    max-width: 100%;
}

body.dog-theme .logo-sub {
    display: block !important;
    color: #8a5a3d !important;
    font-size: 0.78rem !important;
    line-height: 1.15 !important;
    margin: 0 !important;
}

/* 2026-03 kennel logo hard reset */
body.dog-theme .site-header .logo-kennel {
    display: grid !important;
    grid-template-columns: 48px minmax(260px, 430px) !important;
    align-items: center !important;
    gap: 14px !important;
    flex: 0 1 492px !important;
    min-width: 0 !important;
    overflow: visible !important;
}

body.dog-theme .site-header .logo-copy-kennel {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    min-width: 0 !important;
    overflow: visible !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.dog-theme .site-header .logo-word-kennel {
    display: block !important;
    font-family: "Manrope", sans-serif !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
    color: #5a2f19 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-transform: none !important;
}

body.dog-theme .site-header .logo-sub-kennel {
    display: block !important;
    margin-top: 2px !important;
    font-family: "Manrope", sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.04em !important;
    color: #8a5a3d !important;
    text-transform: uppercase !important;
    white-space: normal !important;
}

body.dog-theme .site-header .header-shell {
    display: grid !important;
    grid-template-columns: minmax(320px, 492px) 1fr !important;
    align-items: center !important;
    column-gap: 24px !important;
    row-gap: 16px !important;
    min-height: 90px !important;
}

body.dog-theme .site-header .nav {
    justify-self: end !important;
}

@media (max-width: 1180px) {
    body.dog-theme .site-header .logo-kennel {
        grid-template-columns: 44px minmax(220px, 360px) !important;
        flex-basis: 404px !important;
    }

    body.dog-theme .site-header .logo-word-kennel {
        font-size: 17px !important;
    }

    body.dog-theme .site-header .header-shell {
        grid-template-columns: minmax(260px, 404px) 1fr !important;
    }
}

/* 2026-03 logo high-contrast brown */
body.dog-theme .site-header .logo-word-kennel {
    color: #3f1f12 !important;
    font-weight: 800 !important;
}

body.dog-theme .site-header .logo-sub-kennel {
    color: #6b4029 !important;
}

/* 2026-03 guaranteed visible kennel title */
body.dog-theme .site-header .logo-title-fixed {
    display: block !important;
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    white-space: normal !important;
    max-width: 100% !important;
    margin: 0 0 2px 0 !important;
    padding: 0 !important;
    font-family: "Manrope", sans-serif !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
    color: #3f1f12 !important;
    text-transform: none !important;
}

/* 2026-03 compact header layout */
body.dog-theme .site-header .header-shell {
    grid-template-columns: minmax(260px, 420px) 1fr !important;
    min-height: 72px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    column-gap: 18px !important;
}

body.dog-theme .site-header .logo-kennel {
    grid-template-columns: 40px minmax(200px, 1fr) !important;
    gap: 10px !important;
    flex-basis: auto !important;
}

body.dog-theme .site-header .logo-badge {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
}

body.dog-theme .site-header .logo-title-fixed {
    font-size: 17px !important;
    line-height: 1.05 !important;
}

body.dog-theme .site-header .logo-sub-kennel {
    font-size: 11px !important;
    line-height: 1.1 !important;
}

body.dog-theme .site-header .nav {
    gap: 6px !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

body.dog-theme .site-header .nav a {
    padding: 10px 12px !important;
    font-size: 0.95rem !important;
    line-height: 1.15 !important;
}

body.dog-theme .site-header .nav .nav-cta {
    padding: 10px 16px !important;
}

@media (max-width: 1280px) {
    body.dog-theme .site-header .header-shell {
        grid-template-columns: minmax(220px, 340px) 1fr !important;
        column-gap: 14px !important;
    }

    body.dog-theme .site-header .logo-title-fixed {
        font-size: 15px !important;
    }

    body.dog-theme .site-header .logo-sub-kennel {
        font-size: 10px !important;
    }

    body.dog-theme .site-header .nav a {
        padding: 9px 10px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 1160px) {
    body.dog-theme .site-header .header-shell {
        grid-template-columns: minmax(200px, 300px) 1fr !important;
    }

    body.dog-theme .site-header .nav a {
        padding: 8px 9px !important;
        font-size: 0.86rem !important;
    }

    body.dog-theme .site-header .nav .nav-cta {
        padding: 8px 13px !important;
    }
}

/* 2026-03 scroll bottom panel restore */
body.dog-theme .mobile-fixed-cta {
    display: block !important;
    position: fixed !important;
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
    width: auto !important;
    max-width: 420px;
    margin: 0 auto !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 80;
}

body.dog-theme.is-scrolled .mobile-fixed-cta {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (min-width: 981px) {
    body.dog-theme .mobile-fixed-cta {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(16px);
    }

    body.dog-theme.is-scrolled .mobile-fixed-cta {
        transform: translateX(-50%) translateY(0);
    }
}

/* 2026-03 footer visibility on desktop */
@media (min-width: 981px) {
    body.dog-theme .mobile-fixed-cta {
        display: none !important;
    }

    body.dog-theme .site-footer {
        margin-bottom: 28px !important;
    }
}

/* 2026-03 restored footer panel */
body.dog-theme .site-footer.footer-panel-restored {
    margin: 2.25rem auto 1.1rem !important;
    width: min(1280px, calc(100% - 32px));
    border-radius: 34px;
    padding: 1.9rem 0 0;
    background: linear-gradient(135deg, #4a3a37 0%, #6a4c42 100%) !important;
    color: rgba(255, 248, 242, 0.9) !important;
    box-shadow: 0 28px 50px rgba(86, 61, 52, 0.16);
}

body.dog-theme .footer-shell-restored {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr 0.95fr;
    gap: 40px;
    align-items: start;
}

body.dog-theme .footer-brand-restored p,
body.dog-theme .footer-links-restored p,
body.dog-theme .footer-contacts-restored p,
body.dog-theme .footer-links-restored a,
body.dog-theme .footer-contacts-restored a {
    color: rgba(255, 244, 238, 0.82) !important;
}

body.dog-theme .footer-logo {
    align-items: center;
    gap: 14px;
}

body.dog-theme .footer-logo-word {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    line-height: 1.1 !important;
}

body.dog-theme .footer-logo-sub {
    color: rgba(214, 185, 167, 0.78) !important;
    margin-top: 3px !important;
    font-size: 0.72rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0.04em !important;
}

body.dog-theme .footer-brand-restored p {
    margin-top: 12px;
    max-width: 36ch;
    font-size: 0.98rem;
    line-height: 1.55;
}

body.dog-theme .footer-shell-restored h4 {
    margin: 2px 0 12px;
    color: #ffffff !important;
    font-size: 1rem;
}

body.dog-theme .footer-shell-restored p + p {
    margin-top: 8px;
}

body.dog-theme .footer-panel-restored .footer-cta {
    margin-top: 18px;
    gap: 10px;
}

body.dog-theme .footer-panel-restored .btn.btn-ghost {
    background: rgba(255, 248, 242, 0.96);
    color: #5b3723;
    border-color: rgba(255,255,255,0.2);
}

body.dog-theme .footer-bottom-restored {
    margin-top: 18px;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255,255,255,0.12) !important;
    color: rgba(219, 199, 190, 0.82);
}

@media (max-width: 1024px) {
    body.dog-theme .footer-shell-restored {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* 2026-03 footer logo contrast */
body.dog-theme .site-footer .footer-logo-word,
body.dog-theme .site-footer .logo-word {
    color: #fffaf6 !important;
    font-size: 1.28rem !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
}

body.dog-theme .site-footer .footer-logo-sub,
body.dog-theme .site-footer .logo-sub {
    color: rgba(255, 222, 203, 0.88) !important;
    font-size: 0.74rem !important;
    line-height: 1.18 !important;
}

/* 2026-03 footer title simple light color */
body.dog-theme .site-footer .footer-logo-word,
body.dog-theme .site-footer .logo-word {
    color: #f7efe9 !important;
    text-shadow: none !important;
}

/* 2026-03 footer title final light fix */
body.dog-theme footer.site-footer.footer-panel-restored .footer-logo-copy .footer-logo-word,
body.dog-theme footer.site-footer.footer-panel-restored .footer-logo-word {
    color: #fbf4ee !important;
    font-size: 1.22rem !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
}

/* 2026-03 footer title guaranteed visible */
body.dog-theme .footer-logo-copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    min-width: 0 !important;
}

body.dog-theme .footer-title-fixed {
    display: block !important;
    color: #fbf4ee !important;
    font-family: "Manrope", sans-serif !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    white-space: normal !important;
    margin: 0 0 3px 0 !important;
}

body.dog-theme .footer-logo-sub {
    color: rgba(255, 222, 203, 0.88) !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
}
/* 2026-03 footer title cache-bust final */
body.dog-theme footer.site-footer.footer-panel-restored .footer-title-fixed {
    color: #fffdfb !important;
    font-size: 30px !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08) !important;
    margin-bottom: 6px !important;
}

body.dog-theme footer.site-footer.footer-panel-restored .footer-logo-copy {
    gap: 6px !important;
}

/* 2026-03 final compact header fit */
body.dog-theme .site-header,
body.dog-theme .is-scrolled .site-header {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

body.dog-theme .site-header .header-shell {
    grid-template-columns: minmax(220px, 300px) auto minmax(0, 1fr) !important;
    min-height: 68px !important;
    column-gap: 12px !important;
    align-items: center !important;
}

body.dog-theme .site-header .logo-kennel {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 10px !important;
    min-width: 0 !important;
}

body.dog-theme .site-header .logo-copy-kennel {
    min-width: 0 !important;
}

body.dog-theme .site-header .logo-title-fixed {
    font-size: 15px !important;
    line-height: 1.02 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
}

body.dog-theme .site-header .logo-sub-kennel {
    font-size: 10px !important;
    line-height: 1.08 !important;
}

body.dog-theme .site-header .nav {
    gap: 4px !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    min-width: 0 !important;
}

body.dog-theme .site-header .nav a {
    padding: 8px 10px !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    white-space: normal !important;
    text-align: center !important;
}

body.dog-theme .site-header .nav .nav-cta {
    padding: 8px 14px !important;
}

@media (min-width: 1101px) {
    body.dog-theme .site-header .nav a[href$="/waiting"] {
        max-width: 112px !important;
    }

    body.dog-theme .site-header .nav a[href$="/about"] {
        max-width: 92px !important;
    }
}

@media (max-width: 1240px) {
    body.dog-theme .site-header .header-shell {
        grid-template-columns: minmax(190px, 245px) auto minmax(0, 1fr) !important;
    }

    body.dog-theme .site-header .logo-title-fixed {
        font-size: 14px !important;
    }

    body.dog-theme .site-header .nav a {
        padding: 8px 8px !important;
        font-size: 12px !important;
    }

    body.dog-theme .site-header .nav .nav-cta {
        padding: 8px 12px !important;
    }
}

@media (max-width: 1100px) {
    body.dog-theme .site-header .header-shell {
        grid-template-columns: minmax(0, 1fr) auto !important;
    }
}
.header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
    padding: 0;
    min-width: 0;
}

.header-contacts a {
    color: #8e470a;
    text-decoration: none;
}

.header-contacts .header-phone {
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.05;
    white-space: nowrap;
}

.header-contacts .header-socials {
    margin-top: 0.12rem;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.28rem;
    align-self: flex-end;
}

.header-contacts .header-social {
    margin-top: 0.12rem;
    width: 34px;
    height: 34px;
    min-width: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    align-self: flex-end;
    border-radius: 50%;
    background: linear-gradient(180deg, #4a85c9 0%, #2f6fb9 100%);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.header-contacts .header-social-icon {
    width: 20px;
    height: 20px;
    display: block;
    flex: 0 0 auto;
}

.header-contacts .header-whatsapp {
    width: 34px;
    min-width: 34px;
}

.header-contacts .header-whatsapp .header-social-icon {
    width: 20px;
    height: 20px;
}

.header-contacts .header-vk {
    background: linear-gradient(180deg, #4a85c9 0%, #2f6fb9 100%);
    box-shadow: 0 8px 16px rgba(47, 111, 185, 0.18);
}

.header-contacts .header-whatsapp {
    background: linear-gradient(180deg, #32d46a 0%, #16a94a 100%);
    box-shadow: 0 8px 16px rgba(22, 169, 74, 0.18);
}

.header-contacts .header-max {
    background: linear-gradient(180deg, #25a9ff 0%, #0d7ee8 100%);
    box-shadow: 0 8px 16px rgba(13, 126, 232, 0.18);
}

.header-contacts .header-social:hover {
    transform: translateY(-1px);
    filter: saturate(1.02);
}

.header-contacts .header-email {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
    color: rgba(142, 71, 10, 0.72);
    white-space: nowrap;
}

.promo-banner-section {
    padding-top: 0;
}

.promo-banner-yandex {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
    gap: 2rem;
    align-items: center;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 247, 238, 0.96) 0%, rgba(255, 232, 205, 0.94) 100%);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 123, 0, 0.16);
}

.promo-banner-copy h2 {
    margin: 0.5rem 0 0.9rem;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.05;
}

.promo-banner-copy p {
    max-width: 40rem;
    margin-bottom: 1.2rem;
}

.promo-banner-media {
    position: relative;
    min-height: 280px;
}

.promo-banner-media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: var(--shadow-sm);
}

.promo-badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: #ff7b00;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 30px rgba(201, 81, 0, 0.28);
}

.product-videos-grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.product-videos-grid video {
    width: 100%;
    border-radius: 18px;
    background: #000;
    box-shadow: var(--shadow-sm);
}

.home-hero-title {
    font-size: clamp(1.85rem, 3.8vw, 3.1rem) !important;
    max-width: 16ch;
}

.hero-seo-copy {
    margin-top: 0.85rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid #eddcca;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 239, 0.96));
    color: #465365 !important;
    box-shadow: var(--shadow-sm);
}

.info-section,
.guide-section,
.delivery-section,
.faq-section,
.reviews-intro-section {
    padding-top: 2.6rem;
}

.info-card-grid,
.guide-grid {
    display: grid;
    gap: 1rem;
}

.info-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.info-card,
.guide-card,
.delivery-card,
.reviews-intro-card,
.steps-note {
    border-radius: 22px;
    border: 1px solid #dfd7ca;
    background:
        radial-gradient(520px 200px at 100% 0%, rgba(255, 150, 55, 0.12), rgba(255, 150, 55, 0) 65%),
        linear-gradient(160deg, #ffffff 0%, #fff8ef 100%);
    box-shadow: var(--shadow-sm);
}

.info-card,
.guide-card,
.delivery-card,
.reviews-intro-card {
    padding: 1.3rem;
}

.info-card h3,
.guide-card h2,
.delivery-card h2,
.reviews-intro-card h2,
.steps-note h3 {
    margin: 0.45rem 0 0;
    line-height: 1.15;
}

.info-card p,
.guide-card p,
.delivery-card p,
.reviews-intro-card p,
.steps-note p,
.section-closing {
    color: #556174;
}

.section-closing {
    margin: 1rem 0 0;
    max-width: 52rem;
}

.info-list {
    margin: 0.9rem 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.info-list li {
    position: relative;
    padding-left: 1.15rem;
    color: #2f3a4b;
}

.info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f59d44, #e67610);
}

.steps-note {
    margin-top: 1rem;
    padding: 1.15rem 1.2rem;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    border-radius: 18px;
    border: 1px solid #ddd5c8;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
    padding: 0 1.1rem;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 2rem 1rem 0;
    font-weight: 800;
    color: #222e40;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff2e2;
    color: #b85b0b;
    font-size: 1rem;
    font-weight: 800;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0 0 1rem;
    color: #5c677b;
}

.contact-cta-band {
    padding-top: 2.4rem;
}

.contact-cta-shell {
    align-items: flex-start;
}

.contact-cta-shell p {
    margin: 0.8rem 0 0;
    max-width: 46rem;
    color: #5a4d42;
}

.contact-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 220px;
}

body.dog-theme .dog-hero .dog-media-stage--contact {
    min-height: auto !important;
    height: auto !important;
}

body.dog-theme .dog-hero .dog-media-stage--contact .hero-slider {
    height: auto !important;
    aspect-ratio: 1 / 1;
}

@media (max-width: 1080px) {
    .header-shell {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .header-contacts {
        order: 3;
        width: 100%;
        align-items: flex-start;
        gap: 0.2rem;
    }
}

@media (max-width: 900px) {
    .promo-banner-yandex {
        grid-template-columns: 1fr;
    }

    .info-card-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .promo-banner-media {
        min-height: 220px;
    }

    .promo-banner-media img {
        min-height: 220px;
    }

    .header-contacts {
        padding-right: 3.6rem;
    }

    .header-contacts .header-email {
        font-size: 0.72rem;
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .header-contacts {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 1rem;
    }

    .promo-badge {
        left: 1rem;
        right: auto;
    }

    .faq-item {
        padding: 0 0.95rem;
    }

    .contact-cta-actions {
        width: 100%;
    }

    body.dog-theme .dog-hero .dog-media-stage--contact .hero-slider {
        aspect-ratio: 4 / 5;
    }
}

/* 2026-03 logo image in header */
body.dog-theme .site-header .logo-kennel {
    grid-template-columns: 56px minmax(0, 1fr) !important;
    gap: 12px !important;
}

body.dog-theme .site-header .logo-badge.logo-badge-image {
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
    border-radius: 16px !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

body.dog-theme .site-header .logo-badge.logo-badge-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 16px !important;
}

body.dog-theme .site-header .logo-title-fixed {
    font-size: 18px !important;
    line-height: 1.05 !important;
}

body.dog-theme .site-header .logo-sub-kennel {
    font-size: 11.5px !important;
    line-height: 1.12 !important;
}

body.dog-theme .site-header .header-contacts {
    justify-self: end !important;
}

body.dog-theme .site-header .header-phone {
    font-size: 0.96rem !important;
}

body.dog-theme .site-header .header-vk {
    min-height: 34px;
    padding: 0;
    font-size: 0.76rem;
}

body.dog-theme .site-header .header-social {
    width: 34px;
    height: 34px;
    min-height: 34px;
    min-width: 34px;
    padding: 0;
    font-size: 0.76rem;
}

body.dog-theme .site-header .header-whatsapp {
    width: 34px;
    min-width: 34px;
}

body.dog-theme .site-header .header-email {
    font-size: 0.75rem !important;
}

@media (max-width: 1280px) {
    body.dog-theme .site-header .logo-kennel {
        grid-template-columns: 50px minmax(0, 1fr) !important;
    }

    body.dog-theme .site-header .logo-badge.logo-badge-image {
        width: 50px !important;
        height: 50px !important;
    }

    body.dog-theme .site-header .logo-title-fixed {
        font-size: 16px !important;
    }
}

@media (max-width: 900px) {
    body.dog-theme .site-header .header-shell {
        grid-template-columns: minmax(0, 1fr) auto !important;
        row-gap: 8px !important;
    }

    body.dog-theme .site-header .logo-kennel {
        grid-column: 1 / 2 !important;
        grid-row: 1 / 2 !important;
        grid-template-columns: 46px minmax(0, 1fr) !important;
        gap: 10px !important;
    }

    body.dog-theme .site-header .logo-badge.logo-badge-image {
        width: 46px !important;
        height: 46px !important;
        border-radius: 14px !important;
    }

    body.dog-theme .site-header .logo-badge.logo-badge-image img {
        border-radius: 14px !important;
    }

    body.dog-theme .site-header .header-contacts {
        grid-column: 2 / 3 !important;
        grid-row: 1 / 2 !important;
        order: 0 !important;
        width: auto !important;
        align-items: flex-end !important;
        justify-self: end !important;
        padding-right: 3.2rem !important;
        text-align: right !important;
    }

    body.dog-theme .site-header .header-phone {
        font-size: 0.84rem !important;
    }

    body.dog-theme .site-header .header-vk {
        min-height: 32px;
        padding: 0;
        font-size: 0.72rem;
    }

    body.dog-theme .site-header .header-social {
        width: 32px;
        height: 32px;
        min-height: 32px;
        min-width: 32px;
        padding: 0;
        font-size: 0.72rem;
    }

    body.dog-theme .site-header .header-whatsapp {
        width: 32px;
        min-width: 32px;
    }

    body.dog-theme .site-header .header-email {
        font-size: 0.66rem !important;
        white-space: nowrap !important;
    }

    body.dog-theme .site-header .burger {
        grid-column: 2 / 3 !important;
        grid-row: 1 / 2 !important;
        justify-self: end !important;
        margin-left: 8px !important;
    }

    body.dog-theme .site-header .nav {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
}

@media (max-width: 640px) {
    body.dog-theme .site-header .logo-title-fixed {
        font-size: 15px !important;
    }

    body.dog-theme .site-header .logo-sub-kennel {
        font-size: 10px !important;
    }

    body.dog-theme .site-header .header-contacts {
        padding-right: 3rem !important;
    }
}

@media (max-width: 640px) {
    body.dog-theme .site-header .header-shell {
        grid-template-columns: minmax(0, 1fr) 132px 34px !important;
        align-items: start !important;
        min-height: auto !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    body.dog-theme .site-header .logo-kennel {
        grid-template-columns: 48px minmax(112px, 1fr) !important;
        align-items: start !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    body.dog-theme .site-header .logo-title-fixed {
        max-width: 150px !important;
        font-size: 16px !important;
        line-height: 1.12 !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }

    body.dog-theme .site-header .logo-sub-kennel {
        font-size: 9px !important;
        letter-spacing: 0.02em !important;
        line-height: 1.08 !important;
    }

    body.dog-theme .site-header .header-contacts {
        grid-column: 2 / 3 !important;
        padding-right: 0 !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        grid-template-rows: auto auto !important;
        row-gap: 0.16rem !important;
        align-items: start !important;
        justify-self: end !important;
        text-align: right !important;
        width: 126px !important;
    }

    body.dog-theme .site-header .header-phone {
        font-size: 0.76rem !important;
        grid-column: 1 / -1 !important;
        grid-row: 1 / 2 !important;
        justify-self: end !important;
        margin-top: 0 !important;
    }

    body.dog-theme .site-header .header-socials {
        grid-column: 1 / -1 !important;
        grid-row: 2 / 3 !important;
        display: grid !important;
        grid-template-columns: repeat(2, 32px) !important;
        grid-auto-rows: 32px !important;
        flex-direction: initial !important;
        align-items: center !important;
        justify-content: end !important;
        align-self: start !important;
        justify-self: end !important;
        gap: 0.16rem !important;
        margin-top: 0 !important;
        transform: none !important;
    }

    body.dog-theme .site-header .header-social {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        margin-top: 0 !important;
        padding: 0 !important;
    }

    body.dog-theme .site-header .header-social-icon {
        width: 20px !important;
        height: 20px !important;
    }

    body.dog-theme .site-header .header-vk {
        grid-column: 1 / 2 !important;
        grid-row: 1 / 2 !important;
    }

    body.dog-theme .site-header .header-whatsapp {
        grid-column: 2 / 3 !important;
        grid-row: 1 / 2 !important;
    }

    body.dog-theme .site-header .header-max {
        grid-column: 2 / 3 !important;
        grid-row: 2 / 3 !important;
    }

    body.dog-theme .site-header .burger {
        grid-column: 3 / 4 !important;
        margin-left: 0 !important;
    }

    body.dog-theme .site-header .header-vk {
        font-size: 0.68rem;
    }

    body.dog-theme .site-header .header-email {
        display: none !important;
    }

    body.dog-theme .hero-copy h1,
    body.dog-theme .section-head h1,
    body.dog-theme .feedback-page .section-head h1 {
        font-size: clamp(2.2rem, 10.2vw, 3rem) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.02em !important;
    }

    body.dog-theme .hero-actions,
    body.dog-theme .card-actions,
    body.dog-theme .product-cta,
    body.dog-theme .cta-band-shell {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    body.dog-theme .hero-actions .btn,
    body.dog-theme .card-actions .btn,
    body.dog-theme .product-cta .btn,
    body.dog-theme .cta-band-shell .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    body.dog-theme .dog-card-image,
    body.dog-theme .card.card-shop .card-image {
        min-height: 200px !important;
    }

    body.dog-theme .card-link h3 {
        font-size: 1.18rem !important;
        line-height: 1.12 !important;
    }

    body.dog-theme .card-body p {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
        min-height: auto !important;
    }

    body.dog-theme .card-signals {
        gap: 0.34rem !important;
    }

    body.dog-theme .card-signals span {
        font-size: 0.74rem !important;
    }

    .promo-banner-yandex {
        gap: 1rem !important;
        padding: 1rem !important;
        border-radius: 24px !important;
    }

    .promo-banner-copy h2 {
        font-size: 1.5rem !important;
        line-height: 1.02 !important;
    }

    .promo-banner-copy p {
        font-size: 0.96rem !important;
        line-height: 1.45 !important;
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-main-image {
        min-height: 280px !important;
        padding: 0.65rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .product-main-image img {
        max-height: 320px !important;
    }

    .product-thumbs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        max-width: 100% !important;
        min-width: 0 !important;
        gap: 0.5rem !important;
        padding-bottom: 0.25rem !important;
        -webkit-overflow-scrolling: touch;
    }

    .product-thumbs .thumb {
        flex: 0 0 74px !important;
        min-height: 74px !important;
    }

    .product-thumbs .thumb img {
        max-height: 64px !important;
    }

    .feedback-wrap {
        max-width: 100% !important;
    }

    .contact-form,
    body.dog-theme .dog-feedback-page .contact-form {
        padding: 1rem !important;
        border-radius: 20px !important;
    }
}
