:root { --canvas: #ffffff;
--ink: #000000;
--ink-2: rgb(0 0 0 / 64%); --ink-3: rgb(0 0 0 / 56%); --line: rgb(0 0 0 / 12%);
--line-strong: rgb(0 0 0 / 18%);
--hover: rgb(0 0 0 / 5%);
--press: rgb(0 0 0 / 9%);
--band: rgb(0 0 0 / 4%); --scrim: rgb(0 0 0 / 44%); --ok: #1f6f43;
--error: #b3261e;
--focus: #0b57d0; --radius: 8px;
--radius-lg: 12px;
--page: 1200px;
--measure: 68ch;
--gutter: 24px;
--header-offset: 64px;
--font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
Arial, "Noto Sans", sans-serif;
}
@media (min-width: 900px) {
:root { --gutter: 48px; }
} *, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
margin: 0;
background: var(--canvas);
color: var(--ink);
font-family: var(--font);
font-size: 17px;
line-height: 1.6;
font-weight: 400;
-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
h1, h2, h3, h4 {
margin: 0 0 12px;
color: var(--ink);
font-weight: 600;
letter-spacing: -0.011em;
text-wrap: balance;
}
h1 {
font-size: clamp(30px, 4.2vw, 46px);
line-height: 1.1;
letter-spacing: -0.022em;
margin-bottom: 20px;
}
h2 {
font-size: clamp(23px, 2.6vw, 30px);
line-height: 1.2;
letter-spacing: -0.018em;
margin-bottom: 16px;
}
h3 { font-size: 19px; line-height: 1.3; }
h4 { font-size: 17px; line-height: 1.35; }
p, ul, ol { margin: 0 0 16px; }
p, li { max-width: var(--measure); }
ul, ol { padding-left: 20px; }
li { margin-bottom: 6px; }
a {
color: inherit;
text-decoration: underline;
text-underline-offset: 3px;
text-decoration-color: var(--line-strong);
transition: text-decoration-color 0.15s ease, color 0.15s ease;
}
a:hover { text-decoration-color: currentColor; }
:focus-visible {
outline: 2px solid var(--focus);
outline-offset: 2px;
border-radius: 3px;
}
strong { font-weight: 600; }
hr {
border: 0;
border-top: 1px solid var(--line);
margin: 40px 0;
} header {
position: sticky;
top: 0;
z-index: 100;
background: var(--canvas);
border-bottom: 1px solid var(--line);
color: var(--ink);
}
nav {
max-width: var(--page);
margin: 0 auto;
padding: 12px var(--gutter);
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}
.logo-container {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 2px;
min-width: 0;
}
.logo {
font-size: 17px;
font-weight: 600;
letter-spacing: -0.014em;
text-transform: none;
color: var(--ink);
background: none;
padding: 0;
border-radius: 0;
}
.logo a { text-decoration: none; color: inherit; }
.logo a:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-header {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: baseline;
gap: 4px 16px;
font-size: 14px;
color: var(--ink-3);
text-align: left;
}
.contact-header a {
color: var(--ink-2);
font-size: 14px;
font-weight: 400;
text-decoration: none;
}
.contact-header a:hover { color: var(--ink); text-decoration: underline; }
header .nav-links { display: flex; align-items: center; gap: 4px; }
header .nav-links a,
header .nav-links .nav-menu a {
display: inline-flex;
align-items: center;
min-height: 40px;
color: var(--ink-2);
text-decoration: none;
font-weight: 500;
font-size: 15px;
line-height: 1.2;
padding: 8px 10px;
border-radius: 6px;
white-space: nowrap;
}
header .nav-links a:hover,
header .nav-links .nav-menu a:hover { color: var(--ink); background: var(--hover); }
header .nav-links a:active { background: var(--press); } .nav-menu, .footer-menu { list-style: none; margin: 0; padding: 0; display: flex; }
.nav-menu { gap: 4px; align-items: center; } .nav-menu li, .footer-menu li { display: flex; margin: 0; max-width: none; }
.burger {
display: none;
width: 40px;
height: 40px;
align-items: center;
justify-content: center;
font-size: 20px;
line-height: 1;
color: var(--ink);
cursor: pointer;
border-radius: 6px;
user-select: none;
}
.burger:hover { background: var(--hover); } section {
max-width: var(--page);
margin: 0 auto;
padding: 72px var(--gutter);
background: transparent;
border-radius: 0;
box-shadow: none;
scroll-margin-top: calc(var(--header-offset) + 16px);
}
@media (min-width: 900px) {
section { padding: 112px var(--gutter); }
} body > section:nth-of-type(even) {
position: relative;
max-width: none;
padding-left: max(var(--gutter), calc((100% - var(--page)) / 2 + var(--gutter)));
padding-right: max(var(--gutter), calc((100% - var(--page)) / 2 + var(--gutter)));
background: var(--band);
}
.header-section,
.page-main { text-align: left; margin-top: 0; } .page-main { padding-top: 40px; }
@media (min-width: 900px) { .page-main { padding-top: 56px; } }
.header-section p,
.page-main > p { max-width: var(--measure); }
.header-section p:first-of-type {
font-size: clamp(18px, 2vw, 21px);
line-height: 1.5;
color: var(--ink-2);
}
.section-title { margin-bottom: 8px; }
.section-lead,
.section-subtitle {
margin: 0 0 32px;
max-width: var(--measure);
color: var(--ink-2);
font-size: 18px;
opacity: 1;
}
.intro-text { width: auto; margin: 0; padding: 0; max-width: none; text-align: left; }
.intro-text h1, .intro-text p { width: auto; margin: 0 0 16px; padding: 0; text-align: left; }
.hero-benefits { margin: 16px 0 0; padding-left: 20px; } section > * + h2,
.page-main > * + h2 { margin-top: 64px; }
section > * + h3,
.page-main > * + h3 { margin-top: 36px; }
section > .breadcrumbs + h2,
.page-main > .breadcrumbs + h2 { margin-top: 0; } .breadcrumbs {
display: flex;
flex-wrap: wrap;
align-items: baseline;
gap: 0 6px;
margin: 0 0 20px;
font-size: 14px;
color: var(--ink-3);
white-space: normal;
}
.breadcrumbs a { color: var(--ink-3); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumbs .sep { margin: 0 2px; color: var(--ink-3); opacity: 1; }
.breadcrumbs .current { color: var(--ink-2); font-weight: 500; } .order-btn,
.show-details-btn,
.search-submit,
.modal-content button[type="submit"] {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 44px;
padding: 10px 20px;
font: inherit;
font-size: 15px;
font-weight: 500;
color: var(--canvas);
background: var(--ink);
border: 1px solid var(--ink);
border-radius: var(--radius);
cursor: pointer;
text-decoration: none;
transition: background 0.15s ease, color 0.15s ease;
}
.order-btn:hover,
.show-details-btn:hover,
.search-submit:hover,
.modal-content button[type="submit"]:hover { background: rgb(0 0 0 / 82%); border-color: rgb(0 0 0 / 82%); }
.order-btn.secondary {
color: var(--ink);
background: transparent;
border-color: var(--line-strong);
}
.order-btn.secondary:hover { background: var(--hover); border-color: var(--ink); }
.order-btn[disabled], button[disabled] { opacity: 1; color: var(--ink-3); background: var(--hover); border-color: var(--line); cursor: not-allowed; } .filters {
display: flex;
flex-wrap: wrap;
gap: 8px;
justify-content: flex-start;
margin: 0 0 40px;
}
.filter-btn {
padding: 7px 14px;
min-height: 36px;
font: inherit;
font-size: 14px;
font-weight: 500;
color: var(--ink-2);
background: transparent;
border: 1px solid var(--line-strong);
border-radius: 999px;
cursor: pointer;
transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.filter-btn:hover { background: var(--hover); color: var(--ink); }
.filter-btn.active {
color: var(--canvas);
background: var(--ink);
border-color: var(--ink);
} .catalog-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 48px 32px;
}
.product {
display: grid;
grid-template-rows: auto auto 1fr auto auto;
gap: 10px;
align-content: start;
padding: 0;
background: transparent;
border: 0;
border-radius: 0;
text-align: left;
color: var(--ink);
}
.product.hidden { display: none; }
.product-image {
position: relative;
width: 100%;
aspect-ratio: 4 / 3;
height: auto;
overflow: hidden;
border-radius: var(--radius);
background: var(--band); }
.product-image > a { display: block; width: 100%; height: 100%; }
.product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product h3 {
margin: 6px 0 0;
font-size: 16px;
font-weight: 500;
line-height: 1.35;
color: var(--ink);
}
.product h3 a { color: inherit; text-decoration: none; }
.product h3 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.product .product-description {
margin: 0;
font-size: 14px;
line-height: 1.5;
color: var(--ink-2);
}
.product [itemprop="offers"],
.product p[itemprop="offers"] {
margin: 0;
font-size: 17px;
font-weight: 500;
color: var(--ink);
} .product .order-btn {
width: 100%;
color: var(--ink);
background: transparent;
border-color: var(--line-strong);
}
.product .order-btn:hover { background: var(--hover); border-color: var(--ink); }
.zoom-btn {
position: absolute;
top: 8px;
right: 8px;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
font: inherit;
font-size: 18px;
line-height: 1;
color: var(--ink);
background: rgb(255 255 255 / 92%);
border: 1px solid var(--line);
border-radius: 999px;
cursor: pointer;
}
.zoom-btn:hover { background: var(--canvas); border-color: var(--line-strong); } .product-hero {
display: grid;
grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr);
gap: 48px;
align-items: start;
margin: 24px 0 56px;
}
.product-hero .product-image { aspect-ratio: 1 / 1; border-radius: var(--radius-lg); }
.price-big {
margin: 0 0 6px;
font-size: 32px;
font-weight: 600;
line-height: 1.1;
letter-spacing: -0.02em;
color: var(--ink);
font-variant-numeric: tabular-nums;
}
.stock-label {
margin: 0 0 24px;
font-size: 15px;
font-weight: 500;
color: var(--ok);
}
.spec-table {
width: 100%;
border-collapse: collapse;
margin: 0 0 24px;
}
.spec-table td {
padding: 10px 0;
border: 0;
border-bottom: 1px solid var(--line);
font-size: 15px;
color: var(--ink);
vertical-align: top;
}
.spec-table td:first-child { width: 45%; padding-right: 16px; color: var(--ink-2); }
.spec-table tr:last-child td { border-bottom: 0; }
.product-hero .order-btn { width: 100%; min-height: 48px; font-size: 16px; }
.linkbox { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.linkbox a {
padding: 7px 14px;
font-size: 14px;
color: var(--ink-2);
border: 1px solid var(--line-strong);
border-radius: 999px;
text-decoration: none;
}
.linkbox a:hover { background: var(--hover); color: var(--ink); } .delivery-text, .faq-text, .return-text { padding: 0; }
.delivery-text h3, .faq-list h3, .return-text h3 {
margin: 32px 0 8px;
font-size: 18px;
font-weight: 600;
color: var(--ink);
}
.delivery-text p, .delivery-text li,
.return-text p, .return-text li,
.faq-list p { line-height: 1.65; color: var(--ink); }
.tip {
margin: 20px 0;
padding: 16px 20px;
max-width: var(--measure);
border-left: 2px solid var(--ink);
background: var(--band);
border-radius: 0 var(--radius) var(--radius) 0;
}
.contact-line { margin-top: 24px; } .faq-list { column-gap: 56px; }
@media (min-width: 1000px) { .faq-list { columns: 2; } }
.faq-list h3 {
break-after: avoid;
break-inside: avoid;
margin-top: 28px;
font-size: 17px;
}
.faq-list h3:first-child { margin-top: 0; }
.faq-list p { break-inside: avoid; margin-bottom: 0; color: var(--ink-2); }
.faq-item { margin-bottom: 0; border-bottom: 1px solid var(--line); }
.faq-item h3 { padding: 14px 0; background: none; color: var(--ink); cursor: pointer; }
.faq-item h3:hover { background: none; text-decoration: underline; }
.faq-item p { display: none; padding: 0 0 14px; margin: 0; color: var(--ink-2); }
.faq-item.active p { display: block; } .hidden-data { display: block; margin-top: 8px; }
.hidden-data p { color: var(--ink); margin: 0 0 6px; font-size: 15px; }
.hidden-data p strong { color: var(--ink-2); font-weight: 400; }
.show-details-btn { display: none; } .modal {
display: none;
position: fixed;
inset: 0;
z-index: 200;
padding: 16px 12px;
background: var(--scrim);
overflow-y: auto;
-webkit-overflow-scrolling: touch;
align-items: center;
justify-content: center;
}
.modal.active { display: flex; }
.modal-content {
position: relative;
width: min(520px, 92vw);
max-width: 520px;
margin: auto;
max-height: calc(100dvh - 32px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
overflow: auto;
-webkit-overflow-scrolling: touch;
padding: 32px;
text-align: left;
background: var(--canvas);
border-radius: var(--radius-lg);
box-shadow: 0 12px 32px rgb(0 0 0 / 12%);
transform: none;
}
.modal-content h3 {
margin: 0 0 24px;
font-size: 22px;
font-weight: 600;
color: var(--ink);
}
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label {
display: block;
margin-bottom: 6px;
font-size: 14px;
font-weight: 500;
color: var(--ink-2);
}
input, textarea, select {
width: 100%;
padding: 11px 12px;
font: inherit;
font-size: 16px;
color: var(--ink);
background: var(--canvas);
border: 1px solid var(--line-strong);
border-radius: var(--radius);
}
input::placeholder, textarea::placeholder { color: var(--ink-3); }
input:hover, textarea:hover { border-color: rgb(0 0 0 / 30%); }
textarea { resize: vertical; min-height: 110px; }
.modal-content input:not([type="checkbox"]):not([type="radio"]),
.modal-content textarea { width: 100%; box-sizing: border-box; }
.modal-content button[type="submit"] { width: 100%; min-height: 48px; font-size: 16px; }
.close-btn {
position: absolute;
top: 12px;
right: 12px;
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
font: inherit;
font-size: 22px;
line-height: 1;
color: var(--ink-2);
background: none;
border: 0;
border-radius: 6px;
cursor: pointer;
}
.close-btn:hover { color: var(--ink); background: var(--hover); }
#consent-block, .consent {
display: block;
margin: 12px 0 20px;
padding: 0;
background: none;
border: 0;
border-radius: 0;
}
#consent-block .consent__label, .consent__label {
display: flex;
gap: 10px;
align-items: flex-start;
}
.consent__text { font-size: 14px; line-height: 1.5; color: var(--ink-2); max-width: none; }
.consent a { color: var(--ink); text-decoration: underline; }
.consent__error { margin-top: 6px; font-size: 13px; color: var(--error); }
#consent-block input[type="checkbox"],
.consent input[type="checkbox"] {
-webkit-appearance: none;
appearance: none;
flex: 0 0 auto;
width: 20px;
height: 20px;
margin: 2px 0 0;
padding: 0;
position: relative;
background: var(--canvas);
border: 1px solid var(--line-strong);
border-radius: 4px;
cursor: pointer;
}
#consent-block input[type="checkbox"]:checked,
.consent input[type="checkbox"]:checked { background: var(--ink); border-color: var(--ink); }
#consent-block input[type="checkbox"]:checked::after,
.consent input[type="checkbox"]:checked::after {
content: "";
position: absolute;
left: 6px;
top: 2px;
width: 5px;
height: 10px;
border: solid var(--canvas);
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
.hp-field {
position: absolute !important;
left: -10000px !important;
width: 1px !important;
height: 1px !important;
overflow: hidden !important;
}
.image-modal {
display: none;
position: fixed;
inset: 0;
z-index: 300;
align-items: center;
justify-content: center;
padding: 24px;
background: rgb(0 0 0 / 88%);
}
.image-modal.active { display: flex; }
.image-modal img { max-width: 92%; max-height: 92%; border-radius: var(--radius); }
.image-modal .close-btn {
top: 16px;
right: 16px;
width: 40px;
height: 40px;
font-size: 24px;
color: #fff;
background: rgb(255 255 255 / 14%);
}
.image-modal .close-btn:hover { background: rgb(255 255 255 / 24%); color: #fff; }
html.overlay-open, body.overlay-open { overflow: hidden !important; } footer {
margin-top: 24px;
padding: 56px max(var(--gutter), calc((100% - var(--page)) / 2 + var(--gutter)));
background: var(--canvas);
color: var(--ink-2);
border-top: 1px solid var(--line);
text-align: left;
}
footer p, #footer-counter {
margin: 0 0 20px;
font-size: 15px;
font-weight: 400;
color: var(--ink-2);
max-width: var(--measure);
}
.footer-links {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: flex-start;
gap: 8px 24px;
}
.footer-links a, .footer-menu a {
display: inline-flex;
align-items: center;
min-height: 24px;
font-size: 15px;
line-height: 1.5;
font-weight: 400;
color: var(--ink-2);
text-decoration: none;
}
.footer-links a:hover, .footer-menu a:hover { color: var(--ink); text-decoration: underline; }
.footer-menu { flex-wrap: wrap; align-items: center; gap: 8px 24px; }
.footer-meta { margin: 0 0 16px; font-size: 14px; color: var(--ink-3); }
.footer-meta a { color: var(--ink-2); }
.footer-sep { margin: 0 8px; color: var(--ink-3); }
.to-top-btn {
position: fixed;
right: 20px;
bottom: 20px;
z-index: 90;
width: 44px;
height: 44px;
display: none;
padding: 0;
text-align: center;
line-height: 42px;
font: inherit;
font-size: 17px;
color: var(--ink);
background: rgb(255 255 255 / 92%);
border: 1px solid var(--line-strong);
border-radius: 999px;
cursor: pointer;
backdrop-filter: blur(6px);
}
.to-top-btn:hover { background: var(--canvas); border-color: var(--ink); } .screen-reader-text {
position: absolute !important;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip-path: inset(50%);
white-space: nowrap;
}
.skip-link:focus {
position: fixed !important;
top: 12px;
left: 12px;
z-index: 999;
width: auto;
height: auto;
clip-path: none;
padding: 10px 16px;
background: var(--canvas);
border: 1px solid var(--ink);
border-radius: var(--radius);
} @media (max-width: 900px) {
.product-hero { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 820px) {
nav { padding: 10px var(--gutter); gap: 12px; }
.burger { display: flex; }
header .nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
flex-direction: column;
align-items: stretch;
gap: 0;
padding: 8px var(--gutter) 16px;
background: var(--canvas);
border-bottom: 1px solid var(--line);
box-shadow: 0 8px 24px rgb(0 0 0 / 8%);
}
header .nav-links.active { display: flex; }
header .nav-links a, header .nav-links .nav-menu a {
padding: 12px 8px;
font-size: 16px;
border-radius: 6px;
}
.nav-menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
.contact-header { font-size: 13px; }
.contact-header a { font-size: 13px; }
}
@media (max-width: 600px) {
:root { --gutter: 20px; }
footer { padding-left: var(--gutter); padding-right: var(--gutter); }
body { font-size: 16px; }
section { padding: 56px var(--gutter); }
.catalog-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 32px 20px; }
.modal-content { padding: 24px 20px; }
.price-big { font-size: 28px; }
footer { padding-top: 40px; padding-bottom: 40px; }
.contact-header { flex-direction: column; gap: 2px; }
}
@media (max-width: 380px) {
.catalog-grid { grid-template-columns: 1fr; }
.logo { font-size: 16px; }
} @media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
} @media print {
header, footer, .to-top-btn, .filters, .modal, .image-modal { display: none !important; }
section { padding: 0; }
} main { display: block; } main > section:first-child { padding-top: 40px; padding-bottom: 0; }
@media (min-width: 900px) { main > section:first-child { padding-top: 56px; } } .search-form {
display: flex;
gap: 8px;
align-items: stretch;
max-width: 520px;
margin: 24px 0 0;
}
.search-field { flex: 1 1 auto; min-height: 44px; }
.search-submit { flex: 0 0 auto; white-space: nowrap; } .blog-list { display: block; }
.post-card {
display: grid;
grid-template-columns: 260px minmax(0, 1fr);
gap: 8px 32px;
align-items: start;
padding: 40px 0;
background: transparent;
border: 0;
border-bottom: 1px solid var(--line);
}
.blog-list .post-card:first-child { padding-top: 0; }
.blog-list .post-card:last-child { border-bottom: 0; }
.post-card > .product-image {
grid-row: 1 / span 4;
grid-column: 1;
width: 100%;
align-self: start; aspect-ratio: 4 / 3;
margin: 4px 0 0;
}
.post-card > :not(.product-image) { grid-column: 2; } .post-card:not(:has(.product-image)) { grid-template-columns: 1fr; }
.post-card:not(:has(.product-image)) > * { grid-column: 1; }
.post-card h2 {
margin: 0 0 6px;
font-size: clamp(21px, 2.2vw, 26px);
line-height: 1.25;
}
.post-card h2 a { text-decoration: none; }
.post-card h2 a:hover { text-decoration: underline; text-underline-offset: 4px; }
.post-meta {
margin: 0 0 12px;
font-size: 14px;
color: var(--ink-3);
}
.post-excerpt {
margin: 0 0 16px;
color: var(--ink-2);
max-width: var(--measure);
}
.post-card .order-btn {
justify-self: start;
width: auto;
background: transparent;
color: var(--ink);
border-color: var(--line-strong);
}
.post-card .order-btn:hover { background: var(--hover); border-color: var(--ink); } .single .post-card,
.page .post-card {
display: block;
padding: 0;
border-bottom: 0;
}
.post-tax {
margin: 0 0 24px;
font-size: 14px;
color: var(--ink-3);
}
.post-tax a { color: var(--ink-2); }
.tax-label { color: var(--ink-3); }
.tax-sep { margin: 0 8px; color: var(--ink-3); }
.single .post-card > .product-image,
.page .post-card > .product-image {
aspect-ratio: 16 / 9;
margin: 0 0 40px;
border-radius: var(--radius-lg);
}
.entry-content { max-width: var(--measure); }
.entry-content > * { max-width: 100%; }
.entry-content h2 { margin-top: 48px; }
.entry-content h3 { margin-top: 32px; }
.entry-content img { border-radius: var(--radius); }
.entry-content figure { margin: 32px 0; }
.entry-content figcaption { margin-top: 8px; font-size: 14px; color: var(--ink-3); }
.entry-content blockquote {
margin: 32px 0;
padding: 0 0 0 20px;
border-left: 2px solid var(--ink);
font-size: 19px;
line-height: 1.5;
}
.entry-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.entry-content th, .entry-content td {
padding: 10px 12px 10px 0;
border-bottom: 1px solid var(--line);
text-align: left;
font-size: 15px;
}
.entry-content th { font-weight: 500; color: var(--ink-2); }
.entry-content code, .entry-content pre {
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 14px;
}
.entry-content pre {
padding: 16px;
overflow-x: auto;
background: var(--band);
border-radius: var(--radius);
}
.post-divider { margin: 56px 0 40px; } .cta-card {
display: grid;
gap: 20px;
max-width: var(--measure);
margin: 0 0 48px;
padding: 32px;
background: var(--band);
border-radius: var(--radius-lg);
}
.cta-title { margin: 0 0 8px; font-size: 21px; }
.cta-text { margin: 0; color: var(--ink-2); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-actions .order-btn { width: auto; }
.cta-actions .order-btn:not(.secondary) {
color: var(--canvas);
background: var(--ink);
border-color: var(--ink);
}
.cta-actions .order-btn:not(.secondary):hover { background: rgb(0 0 0 / 82%); border-color: rgb(0 0 0 / 82%); }
.cta-actions .order-btn.secondary { background: transparent; }
.post-after-links { margin: 0 0 56px; }
.post-back-link { font-size: 15px; color: var(--ink-2); text-decoration: none; }
.post-back-link:hover { color: var(--ink); text-decoration: underline; } .related-posts { margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--line); }
.related-posts .section-title { margin-bottom: 32px; font-size: 21px; }
.related-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 40px 32px;
}
.related-item a { display: block; text-decoration: none; color: inherit; }
.related-item .thumb {
aspect-ratio: 4 / 3;
overflow: hidden;
margin-bottom: 12px;
border-radius: var(--radius);
background: var(--band);
}
.related-item .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.related-item h3 { margin: 0 0 4px; font-size: 17px; font-weight: 500; line-height: 1.35; }
.related-item a:hover h3 { text-decoration: underline; text-underline-offset: 3px; }
.related-item .post-meta { margin: 0 0 6px; }
.related-item__excerpt { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink-2); } .pagination, .navigation { margin-top: 48px; } .pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 40px;
min-height: 40px;
padding: 0 12px;
font-size: 15px;
color: var(--ink-2);
text-decoration: none;
border: 1px solid var(--line-strong);
border-radius: var(--radius);
}
.page-numbers:hover { background: var(--hover); color: var(--ink); }
.page-numbers.current {
color: var(--canvas);
background: var(--ink);
border-color: var(--ink);
font-weight: 500;
}
.page-numbers.dots { border-color: transparent; } .not-found-wrap {
max-width: var(--page);
margin: 0 auto;
padding: 96px var(--gutter);
}
.not-found-wrap p { color: var(--ink-2); }
.not-found-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.not-found-actions .order-btn { width: auto; }
.not-found-actions .order-btn:not(.primary) {
background: transparent;
color: var(--ink);
border-color: var(--line-strong);
}
.not-found-actions .order-btn:not(.primary):hover { background: var(--hover); border-color: var(--ink); } .admin-bar header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar header { top: 46px; } } @media (max-width: 700px) {
.post-card {
grid-template-columns: 1fr;
gap: 12px;
padding: 32px 0;
}
.post-card > .product-image { grid-row: auto; grid-column: 1; order: -1; margin: 0 0 4px; }
.post-card > :not(.product-image) { grid-column: 1; }
.cta-card { padding: 24px 20px; }
.related-posts { margin-top: 56px; }
.not-found-wrap { padding: 64px var(--gutter); }
}