:root {
    --cream: #ffffff;
    --paper: #fff9ef;
    --ink: #213128;
    --muted: #646b62;
    --green: #243d2c;
    --green-2: #314b36;
    --sage: #b9c0a3;
    --accent: #c3754d;
    --gold: #e7bc7c;
    --line: #ecdfcb;
    --surface: #fffaf3;
    --surface-strong: #fff4e7;
    --green-soft: #eef3e8;
    --accent-2: #d8966f;
    --line-strong: #dccbb3;
    --shadow: 0 18px 45px rgba(58, 42, 25, 0.08);
    --shadow-strong: 0 22px 60px rgba(45, 33, 22, 0.13);
    --ring: 0 0 0 4px rgba(195, 117, 77, 0.14);
}

body.site-body {
    min-height: 100vh;
    color: var(--ink);
    background: var(--cream);
    font-family: "Nunito Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
    overflow-x: clip;
}

.site-navbar {
    background: rgba(255, 253, 249, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    box-shadow: 0 6px 26px rgba(58, 42, 25, 0.04);
    padding: 0.85rem 0;
}

.navbar-brand {
    min-width: 210px;
    color: var(--ink);
    font-size: 1.5rem;
}

.brand-mark {
    color: var(--accent);
    font-size: 2.15rem;
    line-height: 1;
    align-items: center;
    background: #f3dcc8;
    border-radius: 14px;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.brand-name {
    display: block;
    color: var(--ink);
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: 1.38rem;
    font-weight: 800;
    line-height: 1;
}

.navbar-brand small {
    display: block;
    color: var(--muted);
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: 1.38rem;
    font-weight: 800;
    line-height: 1;
}

.site-navbar .nav-link {
    color: #17251d;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
}

.site-navbar .nav-link.active,
.site-navbar .nav-link:hover {
    color: var(--accent);
    background: #f4e6d7;
}

.nav-icon-link {
    color: var(--ink);
    display: inline-flex;
    font-size: 1.45rem;
    text-decoration: none;
}

.btn-cart,
.btn-primary-soft {
    align-items: center;
    background: var(--green);
    border: 0;
    border-radius: 18px;
    color: #fff;
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 900;
    gap: 0.45rem;
    letter-spacing: 0.01em;
    min-height: 46px;
    padding: 0.78rem 1.42rem;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(36, 61, 44, 0.18);
}

.btn-cart:hover,
.btn-primary-soft:hover {
    background: var(--green-2);
    color: #fff;
    transform: translateY(-1px);
}

.cart-badge {
    background: #d4ab7b;
    color: #fff;
    margin-left: 0.2rem;
    position: static;
}

.btn-outline-soft {
    align-items: center;
    background: rgba(255, 250, 242, 0.82);
    border: 1px solid #d9cbb8;
    border-radius: 18px;
    color: var(--green);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 900;
    gap: 0.45rem;
    letter-spacing: 0.01em;
    min-height: 46px;
    padding: 0.78rem 1.35rem;
    text-transform: uppercase;
}

.btn-outline-soft:hover {
    background: var(--surface-strong);
    border-color: var(--line-strong);
    color: var(--green);
    transform: translateY(-1px);
}

/* ===== Hero ===== */
.hero-section {
    background: var(--cream);
    overflow: hidden;
    padding-top: 2.2rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 420px;
    align-items: center;
    overflow: hidden;
}

.hero-copy {
    padding: 2rem 0;
}

.hero-copy h1 {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: clamp(3.45rem, 5.4vw, 4.7rem);
    font-weight: 900;
    line-height: 1.03;
    margin: 0 0 1.2rem;
}

.hero-copy h1 span {
    color: var(--accent);
}

.hero-copy p {
    color: var(--muted);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 1.6rem;
    max-width: 440px;
}

.hero-actions {
    align-items: center;
    display: flex;
    gap: 0.85rem;
}

.hero-visual {
    align-items: end;
    display: flex;
    justify-content: center;
    min-height: 380px;
    position: relative;
}

.hero-visual img {
    bottom: 0;
    filter: drop-shadow(0 22px 24px rgba(59, 42, 24, 0.08));
    max-height: 430px;
    max-width: 100%;
    object-fit: contain;
    position: absolute;
    right: 0;
    width: 100%;
}

/* ===== Home Search ===== */
.home-search-section {
    margin: 2rem 0 3rem;
    position: relative;
    z-index: 5;
}

.home-search-form {
    align-items: center;
    background: var(--cream);
    border: 1px solid var(--line-strong);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(58, 42, 25, 0.1);
    display: flex;
    gap: 0.75rem;
    margin: 0 auto;
    max-width: 820px;
    padding: 0.55rem 0.6rem 0.55rem 1rem;
}

.home-search-form:focus-within {
    border-color: var(--accent-2);
    box-shadow: var(--ring), 0 22px 52px rgba(50, 38, 24, 0.12);
}

.home-search-icon {
    align-items: center;
    background: #f4e5d1;
    border-radius: 50%;
    color: var(--accent);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1.05rem;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.home-search-form input {
    background: transparent;
    border: 0;
    color: var(--ink);
    flex: 1;
    font-size: 1rem;
    min-height: 50px;
    outline: none;
}

.home-search-form input::placeholder {
    color: #8f877b;
}

.home-search-form button {
    background: var(--green);
    border: 0;
    border-radius: 16px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    min-height: 50px;
    padding: 0 1.55rem;
    text-transform: uppercase;
}

.home-search-form button:hover {
    background: var(--green-2);
    color: #fff;
}

/* ===== Features ===== */
.features-strip {
    margin: 3rem 0 2.5rem;
    position: relative;
    z-index: 4;
}

.features-grid {
    background: linear-gradient(135deg, #213828 0%, var(--green) 54%, #304a36 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-strong);
    color: #fff;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, 1fr);
    padding: 1.32rem 1.85rem;
}

.features-grid div {
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    display: grid;
    gap: 0.05rem 0.85rem;
    grid-template-columns: auto 1fr;
    padding: 0.75rem 0;
}

.features-grid div:last-child {
    border-right: 0;
}

.features-grid span {
    color: var(--gold);
    font-size: 2.05rem;
    grid-row: span 2;
}

.features-grid strong {
    font-size: 0.86rem;
}

.features-grid small {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
}

/* ===== Sections ===== */
.univers-section,
.products-section,
.promo-section {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 1.65rem;
    text-align: center;
}

.section-title h2,
.products-heading h2 {
    color: var(--ink);
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: clamp(1.95rem, 3vw, 2.25rem);
    font-weight: 900;
    margin: 0;
}

.section-title h2 span,
.products-heading h2 span {
    color: var(--accent);
    font-family: "Nunito Sans", "Segoe UI", system-ui, sans-serif;
    font-size: 1.3rem;
}

.section-title p {
    color: var(--muted);
    margin: 0.35rem 0 0;
    font-weight: 600;
}

/* ===== Univers ===== */
.univers-grid {
    display: grid;
    gap: 1.62rem;
    grid-template-columns: repeat(4, 1fr);
}

.univers-card {
    background: var(--paper);
    border: 1px solid rgba(234, 223, 206, 0.75);
    border-radius: 20px;
    box-shadow: 0 12px 26px rgba(50, 38, 24, 0.05);
    color: var(--ink);
    display: block;
    min-height: 278px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.univers-card:hover {
    border-color: var(--line-strong);
    box-shadow: 0 22px 42px rgba(50, 38, 24, 0.1);
    transform: translateY(-5px);
}

.univers-image {
    height: 172px;
    overflow: hidden;
}

.univers-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}

.univers-card:hover .univers-image img {
    transform: scale(1.04);
}

.univers-card::after {
    background: var(--paper);
    border-radius: 50% 50% 0 0;
    bottom: 67px;
    content: "";
    height: 58px;
    left: -8%;
    position: absolute;
    width: 116%;
}

.univers-paw {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(50, 38, 24, 0.08);
    color: var(--green-2);
    display: inline-flex;
    font-size: 1.25rem;
    height: 48px;
    justify-content: center;
    left: 18px;
    position: absolute;
    top: 140px;
    width: 48px;
    z-index: 2;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.univers-card:hover .univers-paw {
    background: var(--green);
    color: #fff;
    transform: rotate(-8deg) scale(1.04);
}

.univers-content {
    padding: 1rem 1.25rem 1.25rem;
    position: relative;
    z-index: 2;
}

.univers-content h3 {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 900;
    margin: 0 0 0.75rem;
}

.univers-content span {
    background: rgba(255, 253, 249, 0.74);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: #6b6256;
    display: inline-flex;
    font-size: 0.78rem;
    padding: 0.4rem 0.72rem;
}

/* ===== Products ===== */
.catalogue-shell {
    display: block;
}

.catalogue-main {
    border-top: 1px solid #e5cda9;
    padding-top: 0.95rem;
}

.products-heading {
    margin-bottom: 1.5rem;
    text-align: center;
}

.carousel-btn {
    align-items: center;
    background: #fffdf9;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(58, 42, 25, 0.1);
    border-radius: 50%;
    color: var(--green);
    display: inline-flex;
    font-size: 1.55rem;
    height: 42px;
    justify-content: center;
    line-height: 1;
    padding: 0 0 0.14rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    z-index: 3;
}

.carousel-btn:hover {
    background: #fffdf9;
    border-color: #dccdb8;
    color: var(--accent);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn:disabled {
    cursor: default;
    opacity: 0.38;
    pointer-events: none;
}

.products-carousel-wrap {
    max-width: 100%;
    padding: 0 50px;
    position: relative;
}

.products-carousel {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.products-grid {
    display: grid;
    gap: 1.35rem 1.45rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.products-track {
    display: flex;
    flex-wrap: nowrap;
}

.products-track .product-item {
    flex: 0 0 calc((100% - 4.35rem) / 4);
    scroll-snap-align: start;
}

.product-card {
    background: #fffaf5;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(50, 38, 24, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.product-card:hover {
    border-color: var(--line-strong);
    box-shadow: 0 22px 42px rgba(50, 38, 24, 0.1);
    transform: translateY(-5px);
}

.product-image {
    align-items: center;
    background: linear-gradient(180deg, #fffdf9 0%, #fff4e7 100%);
    display: flex;
    height: 158px;
    justify-content: center;
    position: relative;
    text-decoration: none;
}

.product-image img {
    max-height: 136px;
    max-width: 82%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-image > span {
    color: var(--accent);
    font-size: 3rem;
}

.promo-badge {
    background: var(--accent);
    border-radius: 999px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.35rem 0.55rem;
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
}

.product-category {
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 900;
    margin-bottom: 0.38rem;
    text-transform: uppercase;
}

.product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem;
}

.product-body h3 {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.32;
    margin: 0 0 0.75rem;
    min-height: 2.35rem;
}

.product-body h3 a {
    color: #27332b;
    text-decoration: none;
}

.product-bottom {
    margin-top: auto;
}

.product-bottom small {
    color: var(--muted);
    display: block;
    text-decoration: line-through;
}

.product-bottom strong {
    color: #111c16;
    display: block;
    font-size: 1.16rem;
    margin-bottom: 0.75rem;
}

.add-cart-btn {
    align-items: center;
    background: var(--green);
    border: 0;
    border-radius: 999px;
    color: #fff;
    display: flex;
    font-size: 0.76rem;
    font-weight: 900;
    justify-content: space-between;
    letter-spacing: 0.01em;
    min-height: 36px;
    padding: 0.48rem 0.85rem;
    width: 100%;
}

.add-cart-btn:hover {
    background: var(--green-2);
    color: #fff;
    transform: translateY(-1px);
}

/* ===== Mini Cart ===== */
.mini-cart-panel {
    align-self: start;
    background: #fff9ef;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(50, 38, 24, 0.06);
    padding: 1.25rem;
}

.mini-cart-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.mini-cart-head h3 {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: 1.28rem;
    font-weight: 900;
    margin: 0;
}

.mini-cart-head span {
    background: #d8a776;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    height: 26px;
    justify-content: center;
    width: 26px;
}

.mini-cart-empty {
    border-bottom: 1px solid var(--line);
    padding-bottom: 1rem;
}

.mini-cart-empty p,
.mini-cart-panel small {
    color: var(--muted);
    display: block;
    font-size: 0.82rem;
    margin: 0.35rem 0 0;
    text-align: center;
}

.delivery-note {
    background: #f8dfb8;
    border-radius: 10px;
    margin: 1rem 0;
    padding: 0.9rem;
    text-align: center;
}

.delivery-note strong,
.delivery-note span {
    display: block;
    font-size: 0.83rem;
}

/* ===== Promo Banner ===== */
.promo-banner {
    align-items: center;
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 253, 249, 0.5), transparent 10rem),
        linear-gradient(100deg, #f6dcc1 0%, #fff0dc 54%, #f4d8ae 100%);
    border: 1px solid #f0d5b7;
    border-radius: 18px 18px 62px 18px;
    box-shadow: 0 20px 45px rgba(84, 56, 31, 0.08);
    display: grid;
    grid-template-columns: 1fr minmax(230px, 0.75fr) auto;
    min-height: 230px;
    overflow: hidden;
    padding: 1.35rem 2.35rem;
    position: relative;
}

.promo-banner .eyebrow {
    color: var(--accent);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.promo-banner h2 {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 2.45rem);
    font-weight: 900;
    line-height: 1.02;
    margin: 0 0 1.15rem;
}

.btn-accent {
    background: var(--accent);
    border: 0;
    border-radius: 12px;
    color: #fff;
    font-weight: 900;
    padding: 0.72rem 1.5rem;
}

.btn-accent:hover {
    background: #b96442;
    color: #fff;
    transform: translateY(-1px);
}

.promo-banner img {
    align-self: end;
    max-height: 210px;
    object-fit: contain;
    width: 100%;
}

.promo-banner > strong {
    align-items: center;
    background: #46674d;
    border-radius: 50%;
    box-shadow: 0 14px 26px rgba(36, 61, 44, 0.16);
    color: #fff;
    display: inline-flex;
    flex-direction: column;
    font-size: 1rem;
    height: 122px;
    justify-content: center;
    line-height: 1;
    text-align: center;
    width: 122px;
}

.promo-banner > strong span {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: 2.3rem;
}

/* ===== Footer ===== */
.site-footer {
    background: #fff9ef;
    border-top: 1px solid var(--line);
    margin-top: 5rem;
    padding: 2rem 0;
}

.footer-inner {
    align-items: center;
    color: #756f66;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.78rem;
    gap: 1rem 2rem;
}

.footer-inner a {
    color: #756f66;
    margin-left: auto;
    text-decoration: none;
}

.footer-inner a + a {
    margin-left: 0;
}

.footer-inner a:hover {
    color: var(--accent);
}

.footer-social {
    margin-left: auto;
}

.empty-products {
    color: var(--muted);
    grid-column: 1 / -1;
    padding: 3rem 0;
    text-align: center;
}

/* ===== 404 ===== */
.not-found-page {
    background:
        radial-gradient(circle at 82% 18%, rgba(195, 117, 77, 0.12), transparent 17rem),
        radial-gradient(circle at 12% 82%, rgba(185, 192, 163, 0.22), transparent 18rem),
        linear-gradient(180deg, #fffdf9 0%, #fff6ea 100%);
    min-height: calc(100vh - 180px);
    padding: 4.5rem 0 4rem;
    position: relative;
}

.not-found-page::before {
    background-image: linear-gradient(90deg, rgba(36, 61, 44, 0.045) 1px, transparent 1px);
    background-size: 72px 100%;
    content: "";
    inset: 0;
    opacity: 0.45;
    pointer-events: none;
    position: absolute;
}

.not-found-shell {
    align-items: center;
    display: grid;
    gap: clamp(2rem, 5vw, 4.5rem);
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    min-height: 500px;
    position: relative;
    z-index: 1;
}

.not-found-copy {
    max-width: 560px;
}

.not-found-kicker {
    background: #fffaf3;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--accent);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    margin-bottom: 1.2rem;
    padding: 0.48rem 0.85rem;
    text-transform: uppercase;
}

.not-found-copy h1 {
    color: var(--ink);
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: clamp(2.75rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: 1;
    margin: 0 0 1.2rem;
    max-width: 620px;
}

.not-found-copy p {
    color: var(--muted);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.55;
    margin: 0 0 1.35rem;
    max-width: 520px;
}

.not-found-search {
    align-items: center;
    background: #fffdf9;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 0.5rem;
    margin: 1.7rem 0 1.1rem;
    max-width: 530px;
    padding: 0.5rem;
}

.not-found-search:focus-within {
    border-color: var(--accent-2);
    box-shadow: var(--ring), var(--shadow);
}

.not-found-search span {
    align-items: center;
    background: #f4e5d1;
    border-radius: 12px;
    color: var(--accent);
    display: inline-flex;
    flex: 0 0 auto;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.not-found-search input {
    background: transparent;
    border: 0;
    color: var(--ink);
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    min-height: 46px;
    min-width: 0;
    outline: none;
}

.not-found-search button {
    background: var(--accent);
    border: 0;
    border-radius: 14px;
    color: #fff;
    flex: 0 0 auto;
    font-size: 0.8rem;
    font-weight: 900;
    min-height: 46px;
    padding: 0 1.2rem;
    text-transform: uppercase;
}

.not-found-search button:hover {
    background: #b96442;
    transform: translateY(-1px);
}

.not-found-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.not-found-visual {
    align-items: center;
    background: #fffaf3;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    display: grid;
    grid-template-rows: auto 1fr auto;
    justify-content: center;
    min-height: 430px;
    overflow: hidden;
    padding: 1.4rem;
    position: relative;
}

.not-found-visual::after {
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--green));
    bottom: 0;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    right: 0;
}

.not-found-code {
    color: var(--green);
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: clamp(4.8rem, 11vw, 7.5rem);
    font-weight: 900;
    line-height: 0.9;
    opacity: 0.14;
    text-align: center;
    white-space: nowrap;
}

.not-found-image-frame {
    align-items: center;
    aspect-ratio: 1 / 1;
    background: #f7e5cd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    margin: -0.8rem auto 0.8rem;
    max-width: 310px;
    overflow: hidden;
    width: min(82%, 310px);
}

.not-found-image-frame img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.not-found-visual p {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin: 0 0 0.35rem;
    text-align: center;
    text-transform: uppercase;
}

/* ===== Search Page ===== */
.search-shell {
    display: grid;
    gap: 1.9rem;
    grid-template-columns: 240px minmax(0, 1fr);
}

.search-sidebar {
    align-self: start;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(50, 38, 24, 0.06);
    padding: 1.15rem;
}

.filter-block {
    border-bottom: 1px solid var(--line);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.filter-block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 900;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.filter-item {
    align-items: center;
    color: #4a4a4a;
    cursor: pointer;
    display: flex;
    font-size: 0.85rem;
    gap: 0.55rem;
    margin: 0;
}

.filter-item:hover {
    color: var(--accent);
}

.filter-item input[type="checkbox"],
.filter-item input[type="radio"] {
    accent-color: var(--green);
    cursor: pointer;
    flex-shrink: 0;
    height: 16px;
    margin: 0;
    width: 16px;
}

.filter-item span {
    line-height: 1.3;
}

.search-main {
    border-top: 1px solid #e5cda9;
    padding-top: 0.95rem;
}

.breadcrumb {
    --bs-breadcrumb-divider: '>';
    font-size: 0.82rem;
}

.breadcrumb-item a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--ink);
    font-weight: 900;
}

/* ===== Misc ===== */
.hover-scale {
    transition: transform 0.2s;
}

.hover-scale:hover {
    transform: scale(1.02);
}

.table th {
    font-weight: 900;
    color: #495057;
}

/* ===== Media Queries ===== */
@media (max-width: 991.98px) {
    .hero-layout,
    .catalogue-shell,
    .promo-banner,
    .not-found-shell,
    .search-shell {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding-bottom: 1rem;
    }

    .hero-visual {
        min-height: 320px;
    }

    .hero-visual img {
        height: 330px;
        right: 0;
        width: 100%;
    }

    .home-search-form {
        max-width: 100%;
    }

    .features-grid,
    .univers-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-track .product-item {
        flex-basis: calc((100% - 1.45rem) / 2);
    }

    .products-carousel-wrap {
        padding: 0 42px;
    }

    .features-grid div:nth-child(2) {
        border-right: 0;
    }

    .features-grid div:nth-child(n+3) {
        margin-top: 1rem;
    }

    .mini-cart-panel {
        display: none;
    }

    .not-found-page {
        padding-top: 3.5rem;
    }

    .not-found-shell {
        min-height: auto;
    }

    .not-found-copy {
        max-width: none;
    }

    .not-found-visual {
        min-height: 380px;
    }

    .not-found-code {
        font-size: 6rem;
    }

    .not-found-image-frame {
        max-width: 280px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 0;
    }

    .hero-layout {
        height: auto;
        min-height: 320px;
    }

    .hero-visual {
        height: 320px;
        min-height: 320px;
    }

    .hero-visual img {
        height: 320px;
    }

    .hero-copy h1 {
        font-size: 2.65rem;
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .hero-actions,
    .btn-primary-soft,
    .btn-outline-soft {
        width: 100%;
    }

    .btn-primary-soft,
    .btn-outline-soft {
        justify-content: center;
    }

    .home-search-section {
        margin: 0 0 1rem;
    }

    .home-search-form {
        border-radius: 12px;
        gap: 0.35rem;
        padding: 0.4rem;
    }

    .home-search-form input {
        font-size: 0.92rem;
        min-height: 40px;
    }

    .home-search-form input::placeholder {
        font-size: 0.82rem;
    }

    .home-search-form button {
        border-radius: 10px;
        font-size: 0.75rem;
        min-height: 38px;
        padding: 0 0.9rem;
    }

    .features-grid,
    .univers-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-track .product-item {
        flex-basis: 86%;
    }

    .products-carousel-wrap {
        padding: 0 34px;
    }

    .carousel-btn {
        height: 36px;
        width: 36px;
    }

    .features-grid div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
        padding: 0.75rem 0;
    }

    .features-grid div:last-child {
        border-bottom: 0;
    }

    .promo-banner {
        padding: 1.4rem;
    }

    .promo-banner > strong {
        position: absolute;
        right: 1rem;
        top: 1rem;
        transform: scale(0.78);
    }

    .footer-inner,
    .footer-social,
    .footer-inner a {
        margin-left: 0;
    }

    .brand-mark {
        height: 42px;
        width: 42px;
    }

    .promo-banner > strong {
        height: 96px;
        width: 96px;
    }

    .not-found-page {
        padding: 2.8rem 0 2.5rem;
    }

    .not-found-copy h1 {
        font-size: 2.55rem;
    }

    .not-found-search {
        align-items: stretch;
        border-radius: 14px;
        display: grid;
        grid-template-columns: 44px 1fr;
    }

    .not-found-search button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .not-found-actions,
    .not-found-actions .btn {
        width: 100%;
    }

    .not-found-actions .btn {
        justify-content: center;
    }

    .not-found-visual {
        min-height: 320px;
        padding: 1rem;
    }

    .not-found-code {
        font-size: 4.7rem;
    }

    .not-found-image-frame {
        margin-top: -0.4rem;
        width: min(78%, 230px);
    }
}

/* ===== Polished UI Pass ===== */
::selection {
    background: rgba(195, 117, 77, 0.22);
}

a,
button,
.btn,
input,
select {
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.container {
    max-width: 1180px;
}

.form-control,
.form-select {
    background-color: #fffdf9;
    border-color: var(--line);
    border-radius: 12px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-2);
    box-shadow: var(--ring);
}
