@font-face {
    font-family: "Philosopher";
    src: url("../fonts/philosopher-regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Philosopher";
    src: url("../fonts/philosopher-bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Philosopher";
    src: url("../fonts/philosopher-italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Philosopher";
    src: url("../fonts/philosopher-bolditalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

:root {
    --ink: #111;
    --coal: #1c1915;
    --paper: #f4ead9;
    --paper-2: #fbf8f1;
    --kraft: #c7a46b;
    --kraft-dark: #7d5a33;
    --white: #fff;
    --muted: #756a5b;
    --line: rgba(17, 17, 17, .14);
    --shadow: 0 20px 60px rgba(17, 17, 17, .16);
    --radius: 8px;
    --max: 1470px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper-2);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.55;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .07;
    background-image: radial-gradient(#111 1px, transparent 1px);
    background-size: 16px 16px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--kraft-dark);
}

button,
input {
    font: inherit;
}

.skip-link,
.screen-reader-text {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 9999;
    background: #fff;
    color: #111;
    padding: 10px 14px;
}

.top-notice {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    padding: 7px 18px;
    background: #111;
    color: #f4ead9;
    font-size: 13px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 248, 241, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(17, 17, 17, .1);
}

.header-inner {
    max-width: var(--max);
    margin: auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Philosopher", Georgia, serif;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--kraft);
    color: #111;
    font-family: "Philosopher", Georgia, serif;
    font-size: 25px;
}

.brand-text {
    font-size: 28px;
}

.brand img {
    max-height: 58px;
    width: auto;
}

.brand-logo-img {
    display: block;
    max-width: 190px;
    max-height: 70px;
    object-fit: contain;
}

.main-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list a {
    font-weight: 700;
    font-size: 14px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn,
.menu-toggle {
    border: 1px solid var(--line);
    background: #fff;
    color: #111;
    border-radius: var(--radius);
    min-width: 42px;
    height: 42px;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 0 10px;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    background: #111;
}

.cart-link,
.catalog-link {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 9px 12px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    font-weight: 800;
}

.catalog-link {
    min-height: 42px;
}

.cart-link strong {
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
}

.search-panel {
    border-top: 1px solid var(--line);
    padding: 12px 24px;
}

.search-form {
    max-width: var(--max);
    margin: auto;
    display: flex;
    gap: 8px;
}

.search-form label {
    flex: 1;
}

.search-form input {
    width: 100%;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 14px;
    background: #fff;
}

.search-form button,
.btn,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: var(--radius);
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    transition: .2s ease;
}

.btn:hover,
.button:hover,
.woocommerce a.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(17, 17, 17, .16);
    color: #fff;
}

.btn-light {
    background: var(--paper);
    color: #111;
    border-color: var(--paper);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .4);
}

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: end;
    background: #111;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(17, 17, 17, .98), rgba(17, 17, 17, .66)),
        url("../img/visual-coffee.svg") right 10% center / min(46vw, 680px) auto no-repeat,
        radial-gradient(circle at 80% 20%, rgba(199, 164, 107, .32), transparent 36%);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 170px;
    background: linear-gradient(0deg, #fbf8f1, transparent);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    width: 100%;
    margin: auto;
    padding: 120px 24px 150px;
}

.hero h1,
.section h2,
.split-section h2,
.page-header h1,
.story-card h2 {
    font-family: "Philosopher", Georgia, serif;
    font-weight: 700;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(48px, 7.4vw, 118px);
    line-height: .92;
}

.hero-copy {
    max-width: 760px;
    color: #eadfc9;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--kraft-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
}

.hero .eyebrow {
    color: var(--kraft);
}

.steam {
    position: absolute;
    bottom: 80px;
    width: 160px;
    height: 360px;
    border-left: 2px solid rgba(244, 234, 217, .22);
    filter: blur(.2px);
    border-radius: 50%;
    animation: steam 8s infinite ease-in-out;
}

.steam-a {
    right: 18%;
}

.steam-b {
    right: 28%;
    animation-delay: 1.6s;
}

.steam-c {
    right: 8%;
    animation-delay: 3s;
}

@keyframes steam {
    0% {
        transform: translateY(90px) scale(.7);
        opacity: 0;
    }
    35% {
        opacity: .7;
    }
    100% {
        transform: translateY(-180px) scale(1.25);
        opacity: 0;
    }
}

.section,
.split-section,
.page-shell,
.shop-shell {
    max-width: var(--max);
    margin: auto;
    padding: 82px 24px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 28px;
}

.section h2,
.split-section h2,
.page-header h1 {
    font-size: clamp(34px, 4.4vw, 68px);
    line-height: 1;
    margin: 0 0 14px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.category-card,
.location-card,
.post-card,
.feature-panel,
.triptych article,
.product-card,
.category-seo-block,
.filter-widget {
    background: rgba(244, 234, 217, .72);
    border: 1px solid rgba(125, 90, 51, .22);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .7) inset;
}

.category-card {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: linear-gradient(135deg, rgba(199, 164, 107, .18), transparent);
    transition: .2s ease;
}

.category-card span {
    font-family: "Philosopher", Georgia, serif;
    font-size: 28px;
    font-weight: 700;
}

.category-card small {
    color: var(--muted);
    font-size: 14px;
}

.category-card:hover,
.location-card:hover,
.mahorka-product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.brand-gallery {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 18px;
    padding-top: 44px;
    padding-bottom: 44px;
}

.brand-photo {
    margin: 0;
    min-height: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
}

.brand-photo-large {
    min-height: 460px;
}

.brand-photo img,
.inline-photo img,
.about-card-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inline-photo {
    margin: 18px 0;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-card-photo {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    margin: 0 0 18px;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 42px;
    align-items: center;
}

.coffee-band {
    background: #16130f;
    color: #fff;
    max-width: none;
    padding-left: max(24px, calc((100vw - var(--max)) / 2));
    padding-right: max(24px, calc((100vw - var(--max)) / 2));
}

.coffee-band p {
    color: #eadfc9;
    font-size: 18px;
}

.visual-card {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.visual-card img {
    display: block;
    width: 100%;
}

.image-stories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.story-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.story-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.story-card div {
    padding: 24px;
}

.story-card h2 {
    font-size: clamp(30px, 3.2vw, 52px);
    line-height: 1;
    margin: 0 0 12px;
}

.product-grid,
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    content: none !important;
    display: none !important;
}

.mahorka-product-card,
.woocommerce ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .2s ease;
}

.product-card-media {
    display: block;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #f4ead9, #fff);
    overflow: hidden;
    position: relative;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}

.product-card-media .catalog-logo {
    object-fit: contain;
    padding: 15%;
    filter: none;
    opacity: .92;
}

.product-card-body,
.woocommerce ul.products li.product .product-card-body {
    padding: 16px;
    text-align: center;
}

.woocommerce ul.products li.product h2,
.woocommerce-loop-product__title {
    font-family: "Philosopher", Georgia, serif !important;
    font-size: 24px !important;
    line-height: 1.15;
}

.price {
    color: #111 !important;
    font-weight: 900 !important;
}

.showcase-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 28px;
    margin-top: 12px;
    padding: 10px 14px;
    border: 1px solid #111;
    border-radius: var(--radius);
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.badge {
    display: inline-block;
    background: #111;
    color: #fff;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 800;
}

.text-columns {
    columns: 2;
    column-gap: 42px;
    font-size: 18px;
}

.quiet-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.quiet-links a {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-weight: 800;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.location-card strong {
    font-family: "Philosopher", Georgia, serif;
    font-size: 26px;
}

.location-card a {
    font-weight: 900;
    color: var(--kraft-dark);
}

.note {
    color: var(--muted);
}

.reviews-faq {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px;
}

.reviews blockquote {
    margin: 0 0 14px;
    padding: 22px;
    border-left: 4px solid var(--kraft);
    background: #fff;
}

.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 10px;
}

.faq summary {
    cursor: pointer;
    font-weight: 900;
}

.post-grid {
    display: grid;
    gap: 18px;
}

.post-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.post-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
}

.post-card-compact {
    display: block;
    background: #fff;
    overflow: hidden;
    padding: 0;
}

.post-card-compact > div {
    padding: 20px;
}

.post-card-compact h3 {
    font-family: "Philosopher", Georgia, serif;
    font-size: 28px;
    line-height: 1.1;
    margin: 0 0 10px;
}

.post-card-media {
    min-height: 190px;
    background: #e9ddc8;
}

.post-card-compact .post-card-media {
    display: block;
    min-height: 220px;
}

.post-date {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.text-link {
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer {
    background: #111;
    color: #f4ead9;
    margin-top: 70px;
}

.footer-inner {
    max-width: var(--max);
    margin: auto;
    padding: 58px 24px;
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr 1fr;
    gap: 32px;
}

.footer-inner h2 {
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 0 0 8px;
}

.footer-warning {
    color: #c7a46b;
}

.newsletter {
    display: flex;
    gap: 8px;
}

.newsletter input {
    min-width: 0;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, .18);
    background: #1f1b16;
    color: #fff;
    border-radius: var(--radius);
    padding: 0 12px;
}

.newsletter button {
    border: 0;
    border-radius: var(--radius);
    background: var(--kraft);
    color: #111;
    font-weight: 900;
}

.footer-bottom {
    max-width: var(--max);
    margin: auto;
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    color: #b8aa94;
}

.breadcrumbs {
    max-width: var(--max);
    margin: 24px auto 18px;
    font-size: 14px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0 24px;
    margin: 0;
}

.page-shell > .breadcrumbs,
.shop-shell > .breadcrumbs {
    max-width: none;
    margin: 0 0 18px;
}

.page-shell > .breadcrumbs ol,
.shop-shell > .breadcrumbs ol {
    padding: 0;
}

.breadcrumbs li::after {
    content: "/";
    margin-left: 8px;
    color: var(--muted);
}

.breadcrumbs li:last-child::after {
    display: none;
}

.page-header {
    max-width: 880px;
    margin-bottom: 32px;
}

.shop-page-header {
    margin-bottom: 28px;
}

.entry-content-wrap {
    max-width: 860px;
}

.entry-content {
    font-size: 18px;
}

.entry-content a {
    text-decoration: underline;
}

.featured-image img {
    border-radius: var(--radius);
}

.shop-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 28px;
}

.shop-sidebar {
    position: sticky;
    top: 124px;
    align-self: start;
}

.shop-sidebar h2 {
    font-family: "Philosopher", Georgia, serif;
}

.filter-title {
    margin: 0 0 10px;
}

.widget_price_filter,
.woocommerce-widget-layered-nav-list__item .count {
    display: none !important;
}

.shop-tools {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.woocommerce-result-count {
    color: var(--muted);
}

.woocommerce .quantity .qty {
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.woocommerce div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    width: auto !important;
    float: none !important;
}

.category-seo-block {
    margin-top: 34px;
}

.subcategories-section {
    margin-bottom: 34px;
}

.compact-head {
    margin-bottom: 18px;
}

.mahorka-subcategories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mahorka-subcategories .woocommerce-loop-category__title {
    margin-bottom: 0;
}

.woocommerce-loop-category__title .count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    margin-left: 8px;
    border-radius: 999px;
    background: #f4ead9;
    color: #7d5a33;
    font-size: 13px;
}

.single-logo-card {
    min-height: 520px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f4ead9, #fff);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 44px;
}

.single-logo-card img {
    max-width: min(420px, 82%);
    width: 100%;
    height: auto;
}

.mahorka-restricted-product .woocommerce-product-details__short-description img,
.mahorka-restricted-product .woocommerce-Tabs-panel img,
.mahorka-restricted-product .product_meta img {
    display: none !important;
}

.woocommerce nav.woocommerce-pagination {
    margin-top: 34px;
}

.woocommerce nav.woocommerce-pagination ul,
.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    border: 0;
    margin: 0;
    padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
    margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.pagination .page-numbers {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: #111;
    font-weight: 900;
    padding: 8px 12px;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #111;
    color: #fff;
}

.contact-hero-grid,
.about-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 24px;
    margin: 42px 0 20px;
}

.contact-lead,
.about-grid article,
.map-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.contact-lead h2,
.about-grid h2 {
    font-family: "Philosopher", Georgia, serif;
    font-size: 34px;
    line-height: 1;
    margin: 0 0 12px;
}

.map-card {
    padding: 0;
    overflow: hidden;
}

.yandex-map-embed {
    width: 100%;
    min-height: 420px;
    background: #f4ead9;
}

.yandex-map-embed iframe,
.yandex-map-embed > * {
    width: 100% !important;
    max-width: 100% !important;
}

.map-card .yandex-map-embed {
    height: 100%;
    min-height: 520px;
}

.home-map {
    margin-top: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}

.contact-list-section {
    padding-left: 0;
    padding-right: 0;
}

.about-grid {
    grid-template-columns: repeat(3, 1fr);
}

.about-coffee-band {
    margin-top: 50px;
}

.about-coffee-band .visual-card {
    background: #f4ead9;
    padding: 28px;
}

.coffee-minsk-page .page-header {
    max-width: 980px;
}

.age-gate {
    position: fixed;
    z-index: 999;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(17, 17, 17, .76);
    padding: 20px;
}

.age-card {
    max-width: 520px;
    background: #fbf8f1;
    border: 1px solid var(--kraft);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.age-kicker {
    color: var(--kraft-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
}

.age-card h2 {
    font-family: "Philosopher", Georgia, serif;
    font-size: 40px;
    margin: 8px 0;
}

.age-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.age-card .btn-ghost {
    color: #111;
    border-color: #111;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: .6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

:focus-visible {
    outline: 3px solid var(--kraft);
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .category-grid,
    .location-grid,
    .product-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-grid-three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .top-notice {
        display: block;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 100%;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 16px;
        display: none;
    }

    .main-nav.is-open {
        display: block;
    }

    .nav-list {
        display: grid;
        gap: 12px;
    }

    .header-inner {
        gap: 12px;
    }

    .header-actions {
        margin-left: auto;
    }

    .split-section,
    .image-stories,
    .brand-gallery,
    .contact-hero-grid,
    .about-grid,
    .reviews-faq,
    .shop-layout,
    .woocommerce div.product {
        grid-template-columns: 1fr;
    }

    .brand-photo,
    .brand-photo-large {
        min-height: 320px;
    }

    .shop-sidebar {
        position: static;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

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

    .text-columns {
        columns: 1;
    }
}

@media (max-width: 560px) {
    .hero {
        min-height: 680px;
    }

    .hero::before {
        background:
            linear-gradient(115deg, rgba(17, 17, 17, .98), rgba(17, 17, 17, .72)),
            url("../img/visual-coffee.svg") right -170px top 40px / 420px auto no-repeat;
    }

    .hero-inner {
        padding: 95px 16px 120px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-copy {
        font-size: 17px;
    }

    .category-grid,
    .location-grid,
    .product-grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .section,
    .split-section,
    .page-shell,
    .shop-shell {
        padding: 52px 16px;
    }

    .header-inner {
        padding: 12px 14px;
    }

    .brand-text {
        font-size: 23px;
    }

    .brand-logo-img {
        max-width: 150px;
    }

    .cart-link span {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: grid;
        gap: 8px;
    }

    .newsletter,
    .search-form {
        display: grid;
    }

    .section-head {
        display: block;
    }
}
