:root {
    --brown: #5F2A24;
    --brown-dark: #3F1B16;
    --brown-soft: #7A3B32;
    --gold: #EEBC5A;
    --gold-dark: #DFA53C;
    --gold-soft: #F6D68C;
    --cream: #FBF5E9;
    --cream2: #FFFCF6;
    --text: #2C1912;
    --text-soft: #7A6259;
    --white: #ffffff;
    --radius: 18px;
    --radius-sm: 10px;
    --shadow: 0 10px 30px rgba(63, 27, 22, 0.10);
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Comfortaa', sans-serif;
    color: var(--brown);
    margin: 0;
    line-height: 1.25;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

img.ph {
    background: linear-gradient(135deg, #f1ded3, #e7c9ae);
    object-fit: cover;
    color: var(--text-soft);
    font-size: 13px;
    text-align: center;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    color: var(--brown-soft);
    font-weight: 700;
    font-size: 14px;
}

section {
    padding: 76px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: 32px;
}

.section-head p {
    color: var(--text-soft);
    margin-top: 10px;
    max-width: 520px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--brown);
    white-space: nowrap;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--gold);
}
.breadcrumbs {
    font-size: 14px;
    color: var(--text-soft);
    margin: 0 0 16px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.breadcrumbs a {
    color: var(--brown-soft);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--brown);
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--text-soft);
}

.breadcrumbs .sep {
    color: #ccc;
    font-weight: 300;
}
.link-arrow svg {
    transition: transform .2s ease;
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn-primary {
    background: var(--brown);
    color: var(--gold-soft);
}

.btn-primary:hover {
    background: var(--brown-dark);
    box-shadow: 0 8px 20px rgba(63, 27, 22, .25);
}

.btn-outline {
    background: transparent;
    color: var(--brown);
    border: 2px solid var(--brown);
}

.btn-outline:hover {
    background: var(--brown);
    color: var(--cream);
}

.btn-gold {
    background: var(--gold);
    color: var(--brown-dark);
}

.btn-gold:hover {
    background: var(--gold-dark);
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--brown);
    color: var(--cream);
}

.top-line {
    background: var(--brown-dark);
    font-size: 13px;
    padding: 7px 0;
    color: var(--gold-soft);
}

.top-line .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.top-line a {
    opacity: .9;
}

.top-line a:hover {
    opacity: 1;
    text-decoration: underline;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 15px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--cream);
    flex-shrink: 0;
}

.logo img {
    width: auto;
    height: 70px;
    /* background: var(--gold); */
}

.logo span {
    display: block;
}

.logo small {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .03em;
    color: var(--gold-soft);
}

nav.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

nav.main-nav>ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav.main-nav>ul>li {
    position: relative;
}

nav.main-nav>ul>li>a,
nav.main-nav .dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    color: var(--cream);
    transition: background .15s ease;
}

nav.main-nav>ul>li>a:hover,
nav.main-nav .dropdown-btn:hover {
    background: rgba(255, 255, 255, .10);
}

.dropdown-btn svg {
    transition: transform .2s ease;
}

li.dropdown.open .dropdown-btn svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(63, 27, 22, .20);
    padding: 10px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

li.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text);
    font-weight: 600;
    font-size: 14.5px;
}

.dropdown-menu li a:hover {
    background: var(--cream);
    color: var(--brown);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.nav-actions-social {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-actions-social img {
    width: 30px;
    border-radius: 100px;
    transition: all .3s;
}
.nav-actions-social img:hover {
    transform: translateY(-2px);
}
.nav-phone {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 15px;
    color: var(--cream);
}

.nav-phone small {
    font-weight: 600;
    font-size: 11px;
    color: var(--gold-soft);
}

.icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, .16);
}

.cart-count {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 11px;
    font-weight: 800;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
}

.hero {
    padding: 35px 0 65px 0;
    background: #fff;
}

.hero-top {
    margin-bottom: 36px;
}

.hero-top h1 {
    font-size: 40px;
}


.hero-split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cat-tile {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px 14px 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cat-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(63, 27, 22, .14);
}

.cat-tile img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: contain;
    padding: 10px;
    background: #FBDEA3;
    border: 3px solid var(--brown);
}

.cat-tile span {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--brown);
}

.hero-banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gold);
    min-height: 320px;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.hero-banner .badge {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 2;
    background: var(--brown);
    color: var(--gold-soft);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13.5px;
}

.hero-banner .caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    background: rgba(63, 27, 22, .86);
    color: var(--cream);
    padding: 16px 18px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.hero-banner .caption strong {
    font-family: 'Comfortaa', sans-serif;
    font-size: 14px;
    margin-bottom: 4px;
}

.hero-banner .caption span {
    font-size: 13.5px;
    color: var(--gold-soft);
}

.products {
    background-color: #fbdea3;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(63, 27, 22, .16);
}

.product-media {
    position: relative;
    aspect-ratio: 1/1;
    height: 250px;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 11.5px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 100px;
}

.product-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.product-body h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15.5px;
    color: var(--text);
    min-height: 40px;
}

.product-price {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--brown);
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    gap: 5px;
}

.product-price small {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--text-soft);
    text-decoration: line-through;
    margin-left: 6px;
}

.product-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.qty {
    display: flex;
    align-items: center;
    border: 1.5px solid #E9DCCB;
    border-radius: 100px;
    overflow: hidden;
    flex-shrink: 0;
}

.qty button {
    width: 30px;
    height: 34px;
    font-size: 16px;
    font-weight: 700;
    color: var(--brown);
}

.qty button:hover {
    background: var(--cream);
}

.qty input {
    width: 26px;
    text-align: center;
    border: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
    -moz-appearance: textfield;
}

.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-btn {
    flex: 1;
    background: var(--brown);
    color: var(--gold-soft);
    border-radius: 100px;
    height: 34px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background .15s ease;
}

.add-btn:hover {
    background: var(--brown-dark);
}

.add-btn.added {
    background: #4C7A4E;
    color: #fff;
}

.marketplace-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.mp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1.5px solid #EEE1CC;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    color: var(--brown);
    box-shadow: var(--shadow);
    transition: transform .15s ease, border-color .15s ease;
    overflow: hidden;
}

.mp-btn:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.mp-btn img {
    width: 30px;
    height: 30px;
    border-radius: 6px;
}

.advantages {
    background: #fff;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.adv-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, .35);
    border-radius: var(--radius-sm);
    padding: 26px 22px;
}

.adv-icon {
    width: 54px;
    height: 54px;
    color: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-card h3 {
    font-size: 17px;
}

.adv-card p {
    color: var(--brown-dark);
    font-size: 14px;
    opacity: .85;
}

.questions {
    background: #fbdea3;
    color: var(--brown);
}

.q-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: center;
}

.q-wrap h2 {
    color: var(--brown-dark);
    font-size: 32px;
}
.q-wrap .eyebrow {
    color: #3F1B16 !important;
}
.q-wrap p {
    color: var(--brown) !important;
    margin-top: 16px;
    font-size: 15.5px;
    max-width: 400px;
}

.q-perks {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.q-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--brown-soft);
}

.q-perks svg {
    flex-shrink: 0;
    color: var(--brown-dark);
}

form.contact-form {
    background: var(--cream2);
    border-radius: var(--radius);
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 6px;
}

.field input,
.field textarea {
    width: 100%;
    border: 1.5px solid #E9DCCB;
    background: var(--white);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--text);
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    outline: 2px solid var(--gold);
    border-color: transparent;
}

.form-note {
    font-size: 12px;
    color: var(--text-soft);
}

.form-msg {
    font-size: 14px;
    font-weight: 700;
    color: #4C7A4E;
    display: none;
}

.form-msg.show {
    display: block;
}
#delivery {
    background-color: #fff;
}
.delivery-split {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.delivery-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    box-shadow: var(--shadow);
}

.delivery-item .d-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    flex-shrink: 0;
}

.delivery-item h3 {
    font-size: 16px;
}

.delivery-item p {
    color: var(--text-soft);
    font-size: 14px;
    margin-top: 4px;
}

.delivery-banner {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    /* background: var(--gold-soft); */
    min-height: 280px;
}

.delivery-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    inset: 0;
}

.articles {
    background: #fbdea3;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(63, 27, 22, .14);
}

.article-media {
    aspect-ratio: 1/1;
    position: relative;
    height: 250px;
}

.article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-media span {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brown);
    color: var(--gold-soft);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 100px;
}

.article-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.article-body time {
    font-size: 12px;
    color: var(--text-soft);
}

.article-body h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15.5px;
    color: var(--text);
}

.article-body .link-arrow {
    margin-top: auto;
    font-size: 13.5px;
}

footer {
    background: var(--brown-dark);
    color: var(--cream);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-about .logo {
    color: var(--cream);
    margin-bottom: 14px;
}

.footer-about p {
    color: #D9C3B8;
    font-size: 14px;
    max-width: 280px;
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease;
}

.social-row a:hover {
    background: var(--gold);
    color: var(--brown-dark);
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.footer-cols h4 {
    color: var(--gold-soft);
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: .01em;
}

.footer-cols ul li {
    margin-bottom: 10px;
}

.footer-cols ul li a {
    color: #E8D8CE;
    font-size: 14.5px;
    transition: color .15s ease;
}

.footer-cols ul li a:hover {
    color: var(--gold);
}

.footer-contacts h4 {
    color: var(--gold-soft);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-contacts .phone {
    font-family: 'Comfortaa', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cream);
}

.footer-contacts .addr {
    color: #D9C3B8;
    font-size: 14px;
    margin-top: 10px;
    max-width: 240px;
}

.footer-mp {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-mp img {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .08);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 22px 0;
    font-size: 13px;
    color: #B79A8D;
}

.footer-bottom a {
    color: #B79A8D;
}

.footer-bottom a:hover {
    color: var(--gold);
}

.to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 200;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brown);
    color: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(63, 27, 22, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.marketplace-links {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.mp-btn-link {
  flex: 1;
  text-align: center;
  padding: 6px 0;
  border-radius: 100px;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  transition: opacity 0.15s ease, transform 0.15s ease;
  text-decoration: none;
}

.mp-btn-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.mp-btn-link.ozon {
  background: #005BFF;
}

.mp-btn-link.wb {
      background: linear-gradient(97.26deg, #ed3cca .49%, #df34d2 14.88%, #d02bd9 29.27%, #bf22e1 43.14%, #ae1ae8 57.02%, #9a10f0 70.89%, #8306f7 84.76%, #7c1af8 99.15%), linear-gradient(rgba(0, 0, 0, .05), rgba(0, 0, 0, .05));
}
@media (max-width:1080px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-banner {
        min-height: 240px;
    }

    .delivery-split {
        grid-template-columns: 1fr;
    }

    .delivery-banner {
        min-height: 220px;
    }

    .q-wrap {
        grid-template-columns: 1fr;
    }

    footer .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:860px) {
    nav.main-nav {
        position: fixed;
        inset: 0 0 0 auto;
        top: 0;
        height: 100vh;
        width: 280px;
        background: var(--brown-dark);
        padding: 90px 24px 24px;
        transform: translateX(100%);
        transition: transform .25s ease;
        z-index: 150;
    }

    nav.main-nav.open {
        transform: translateX(0);
    }

    nav.main-nav>ul {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, .06);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 4px;
    }

    li.dropdown.open .dropdown-menu {
        display: block;
    }

    .burger {
        display: flex;
    }

    .nav-phone {
        display: none;
    }

    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:640px) {
    section {
        padding: 52px 0;
    }
    .top-line {
        display: none;
    }
    .section-head h2,
    .q-wrap h2 {
        font-size: 26px;
    }
    .nav-actions-social {
        display: none;
    }
    .logo img {
        height: 55px;
    }
    .hero-top h1 {
        font-size: 30px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cat-tile img {
        height: 60px;
        width: 60px;
    }
    .cat-tile {
        padding: 5px;
    }
    .adv-grid {
        grid-template-columns: 1fr;
    }
    .add-btn {
        padding: 9px 10px;
        width: 100%;
    }
    .product-body {
        padding: 10px 8px;
    }
    .qty {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .article-grid {
        grid-template-columns: 1fr;
    }

    form.contact-form {
        grid-template-columns: 1fr;
        padding: 22px;
    }
    .product-media {
        height: 180px;
    }
    .product-row {
        flex-direction: column;
    }
    .container {
        padding: 0 15px;
    }
    .footer-cols {
        grid-template-columns: 1fr;
    }

    .marketplace-row {
        flex-direction: column;
        align-items: stretch;
    }
    .navbar {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

    .catalog-layout {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 30px;
      align-items: start;
    }
    .filter-sidebar {
      background: #fff;
      border-radius: var(--radius);
      padding: 24px 16px;
      box-shadow: var(--shadow);
      position: sticky;
      top: 100px;
    }
    .filter-sidebar h3 {
      font-size: 18px;
      margin-bottom: 18px;
      color: var(--brown);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .filter-sidebar h3 svg {
      color: var(--gold);
    }
    .filter-group {
      border-bottom: 1px solid #eee5d9;
      padding: 12px 0;
    }
    .filter-group:last-child {
      border-bottom: none;
    }
    .filter-group summary {
      font-weight: 700;
      font-size: 16px;
      color: var(--brown);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 4px 0;
      list-style: none;
    }
    .filter-group summary::-webkit-details-marker {
      display: none;
    }
    .filter-group summary::after {
      content: "›";
      font-size: 22px;
      transition: transform 0.2s;
      color: var(--gold-dark);
    }
    .filter-group[open] summary::after {
      transform: rotate(90deg);
    }
    .filter-group .sub-group {
      padding-left: 16px;
      margin-top: 8px;
    }
    .filter-group .sub-group details {
      border-left: 2px solid #eedbc8;
      padding-left: 12px;
      margin: 6px 0;
    }
    .filter-group .sub-group summary {
      font-weight: 600;
      font-size: 14.5px;
      color: var(--brown-soft);
    }
    .filter-group .sub-group ul {
      margin: 8px 0 4px;
    }
    .filter-group .sub-group ul li {
      margin: 6px 0;
    }
    .filter-group .sub-group ul li a {
      font-size: 14px;
      color: var(--text-soft);
      transition: color 0.1s;
      display: block;
      padding: 4px 6px;
      border-radius: 6px;
    }
    .filter-group .sub-group ul li a:hover {
      background: var(--cream);
      color: var(--brown);
    }
    .filter-banner {
      margin-top: 28px;
      border: 2px dashed #dccfc2;
      border-radius: var(--radius-sm);
      padding: 32px 16px;
      text-align: center;
      color: var(--text-soft);
      font-weight: 600;
      background: #fcf8f2;
      font-size: 14px;
    }
    .filter-banner span {
      display: block;
      font-size: 28px;
      margin-bottom: 6px;
    }
    .catalog-products {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    .catalog-products .product-grid {
      margin-top: 0;
    }
    @media (max-width: 1024px) {
      .catalog-layout {
        grid-template-columns: 1fr;
      }
      .filter-sidebar {
        position: relative;
        top: 0;
        width: 100%;
      }
      .filter-banner {
        display: none;
      }
    }
    @media (max-width: 600px) {
      .product-grid {
        grid-template-columns: 1fr 1fr;
      }
      .catalog-products .product-grid {
        gap: 14px;
      }
    }
    .custom-checkbox {
            display: flex;
            align-items: center;
            align-items: flex-start;
            gap: 5px;
            margin: 18px 0 22px;
            cursor: pointer;
            font-size: 14px;
            color: var(--text-soft);
            line-height: 1.4;
            user-select: none;
        }

        .custom-checkbox input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
            pointer-events: none;
        }

        .custom-checkbox .checkmark {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            border-radius: 6px;
            border: 2px solid #D5C4B4;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
            margin-top: 1px;
            position: relative;
        }

        .custom-checkbox .checkmark svg {
            width: 12px;
            height: 12px;
            fill: none;
            stroke: var(--white);
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
            transform: scale(0);
            transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .custom-checkbox input:checked+.checkmark {
            background: var(--brown);
            border-color: var(--brown);
        }

        .custom-checkbox input:checked+.checkmark svg {
            transform: scale(1);
        }

        .custom-checkbox .checkmark:hover {
            border-color: var(--gold);
        }

        .custom-checkbox input:focus-visible+.checkmark {
            box-shadow: 0 0 0 3px rgba(238, 188, 90, 0.4);
        }

        .custom-checkbox a {
            color: var(--brown);
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s;
        }

        .custom-checkbox a:hover {
            color: var(--brown-soft);
        }