1846 lines
32 KiB
CSS
1846 lines
32 KiB
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
max-width: 100%;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
img,
|
|
iframe {
|
|
max-width: 100%;
|
|
}
|
|
|
|
:root {
|
|
--page-max: 1440px;
|
|
--page-gap: 24px;
|
|
--panel-radius: 8px;
|
|
--brand-green: #173d2c;
|
|
--brand-green-2: #27634a;
|
|
--brand-red: #c43d31;
|
|
--brand-red-soft: #fff2ef;
|
|
--ink: #17211c;
|
|
--muted: #657469;
|
|
--line: #dfe5da;
|
|
--paper: #fffefa;
|
|
--wash: #f4f6ef;
|
|
--shadow-soft: 0 12px 30px rgba(23, 61, 44, 0.06);
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
font-family: "Segoe UI", Arial, sans-serif;
|
|
color: var(--ink);
|
|
background:
|
|
linear-gradient(180deg, #ffffff 0, var(--wash) 360px),
|
|
var(--wash);
|
|
}
|
|
|
|
.site-topbar {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 20;
|
|
border-bottom: 1px solid var(--line);
|
|
background: rgba(255, 254, 250, 0.96);
|
|
box-shadow: 0 10px 30px rgba(23, 61, 44, 0.06);
|
|
backdrop-filter: blur(14px);
|
|
}
|
|
|
|
.site-topbar-inner {
|
|
width: min(var(--page-max), calc(100% - (var(--page-gap) * 2)));
|
|
display: grid;
|
|
grid-template-columns: minmax(190px, 260px) minmax(360px, 1fr) minmax(260px, 340px);
|
|
gap: 24px;
|
|
align-items: center;
|
|
margin: 0 auto;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.brand-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
width: fit-content;
|
|
font-size: 22px;
|
|
font-weight: 800;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.brand-link:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.brand-link img {
|
|
display: block;
|
|
width: clamp(178px, 15vw, 238px);
|
|
height: auto;
|
|
}
|
|
|
|
.brand-link small {
|
|
max-width: 190px;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
line-height: 1.25;
|
|
color: var(--brand-green);
|
|
}
|
|
|
|
.brand-link > span > span {
|
|
color: var(--brand-red);
|
|
}
|
|
|
|
.main-nav {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
justify-content: center;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.main-nav a {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-height: 34px;
|
|
border-radius: 999px;
|
|
padding: 8px 13px;
|
|
color: #243229;
|
|
}
|
|
|
|
.main-nav a:hover {
|
|
background: #eef4ea;
|
|
color: var(--brand-green);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.topbar-contacts {
|
|
display: grid;
|
|
gap: 4px;
|
|
justify-items: end;
|
|
font-size: 12px;
|
|
line-height: 1.35;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.topbar-contacts a {
|
|
font-size: 17px;
|
|
font-weight: 800;
|
|
color: var(--brand-green);
|
|
}
|
|
|
|
.smart-search-bar {
|
|
border-bottom: 1px solid var(--line);
|
|
background:
|
|
linear-gradient(90deg, rgba(23, 61, 44, 0.05), rgba(196, 61, 49, 0.05)),
|
|
var(--paper);
|
|
}
|
|
|
|
.smart-search-inner {
|
|
width: min(var(--page-max), calc(100% - (var(--page-gap) * 2)));
|
|
margin: 0 auto;
|
|
padding: 14px 0;
|
|
}
|
|
|
|
.smart-search-form {
|
|
display: grid;
|
|
grid-template-columns: 150px minmax(0, 1fr);
|
|
gap: 8px 16px;
|
|
align-items: center;
|
|
}
|
|
|
|
.smart-search-label {
|
|
font-size: 18px;
|
|
font-weight: 900;
|
|
color: var(--brand-green);
|
|
}
|
|
|
|
.smart-search-control {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) 76px auto;
|
|
gap: 8px;
|
|
align-items: center;
|
|
border: 1px solid #cdd8c7;
|
|
border-radius: 8px;
|
|
padding: 7px;
|
|
background: #ffffff;
|
|
box-shadow: 0 14px 34px rgba(23, 61, 44, 0.08);
|
|
}
|
|
|
|
.smart-search-control input {
|
|
width: 100%;
|
|
min-height: 46px;
|
|
border: 0;
|
|
padding: 0 10px;
|
|
font: inherit;
|
|
font-size: 17px;
|
|
outline: none;
|
|
background: transparent;
|
|
}
|
|
|
|
.voice-search-button,
|
|
.smart-search-submit {
|
|
min-height: 46px;
|
|
border: 0;
|
|
border-radius: 8px;
|
|
font: inherit;
|
|
font-weight: 900;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.voice-search-button {
|
|
padding: 0 12px;
|
|
font-size: 13px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
background: #f2f6ee;
|
|
}
|
|
|
|
.voice-search-button:hover {
|
|
background: #e7efe2;
|
|
}
|
|
|
|
.voice-search-button.is-listening {
|
|
color: #ffffff;
|
|
background: var(--brand-red);
|
|
}
|
|
|
|
.smart-search-submit {
|
|
padding: 0 20px;
|
|
color: #ffffff;
|
|
background: var(--brand-green);
|
|
}
|
|
|
|
.smart-search-submit:hover {
|
|
background: #102f21;
|
|
}
|
|
|
|
.smart-search-form p {
|
|
grid-column: 2;
|
|
margin: 0;
|
|
font-size: 13px;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.category-mega-bar {
|
|
position: relative;
|
|
z-index: 19;
|
|
border-bottom: 1px solid var(--line);
|
|
background: rgba(255, 254, 250, 0.96);
|
|
backdrop-filter: blur(14px);
|
|
}
|
|
|
|
.category-mega-inner {
|
|
width: min(var(--page-max), calc(100% - (var(--page-gap) * 2)));
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 7px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto;
|
|
padding: 10px 0;
|
|
overflow: visible;
|
|
}
|
|
|
|
.mega-item {
|
|
position: relative;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.mega-root {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: auto;
|
|
min-width: 96px;
|
|
max-width: 190px;
|
|
min-height: 38px;
|
|
border-radius: 999px;
|
|
padding: 8px 13px;
|
|
font-size: 13px;
|
|
line-height: 1.15;
|
|
font-weight: 850;
|
|
color: var(--brand-green);
|
|
text-align: center;
|
|
white-space: normal;
|
|
}
|
|
|
|
.mega-root:hover,
|
|
.mega-item:focus-within .mega-root,
|
|
.mega-item:hover .mega-root {
|
|
background: #edf4ea;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.mega-submenu {
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
z-index: 30;
|
|
width: 300px;
|
|
max-height: 72vh;
|
|
margin: 0;
|
|
padding: 12px 10px 10px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
list-style: none;
|
|
background: var(--paper);
|
|
box-shadow: 0 22px 60px rgba(23, 61, 44, 0.14);
|
|
overflow: visible;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transform: translateY(6px);
|
|
pointer-events: none;
|
|
transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
|
|
}
|
|
|
|
.mega-item:hover > .mega-submenu,
|
|
.mega-item:focus-within > .mega-submenu {
|
|
display: grid;
|
|
gap: 4px;
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transform: translateY(0);
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.mega-submenu li {
|
|
position: relative;
|
|
}
|
|
|
|
.mega-submenu a {
|
|
display: flex;
|
|
align-items: center;
|
|
min-height: 32px;
|
|
border-radius: 7px;
|
|
padding: 7px 9px;
|
|
font-size: 13px;
|
|
font-weight: 750;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.mega-submenu a:hover {
|
|
background: #f2f6ee;
|
|
color: var(--brand-green);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.mega-submenu.depth-2,
|
|
.mega-submenu.depth-3 {
|
|
top: -10px;
|
|
left: 100%;
|
|
max-height: min(70vh, 520px);
|
|
overflow: visible;
|
|
transform: translateX(6px);
|
|
}
|
|
|
|
.mega-item:nth-last-child(-n+3) > .mega-submenu {
|
|
right: 0;
|
|
left: auto;
|
|
}
|
|
|
|
.mega-item:nth-last-child(-n+3) .mega-submenu.depth-2,
|
|
.mega-item:nth-last-child(-n+3) .mega-submenu.depth-3 {
|
|
right: 100%;
|
|
left: auto;
|
|
transform: translateX(-6px);
|
|
}
|
|
|
|
.mega-submenu li:hover > .mega-submenu,
|
|
.mega-submenu li:focus-within > .mega-submenu {
|
|
display: grid;
|
|
gap: 4px;
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transform: translateX(0);
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.site-utility {
|
|
width: min(var(--page-max), calc(100% - (var(--page-gap) * 2)));
|
|
display: flex;
|
|
gap: 14px;
|
|
align-items: center;
|
|
margin: 18px auto 0;
|
|
}
|
|
|
|
.back-button {
|
|
appearance: none;
|
|
border: 1px solid #cfd8c9;
|
|
border-radius: 8px;
|
|
padding: 10px 12px;
|
|
font: inherit;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: var(--brand-green);
|
|
background: #ffffff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.back-button:hover {
|
|
border-color: #9fb194;
|
|
background: #f5f8f1;
|
|
}
|
|
|
|
.breadcrumbs {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 7px;
|
|
align-items: center;
|
|
min-width: 0;
|
|
font-size: 14px;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.breadcrumbs a {
|
|
color: var(--brand-green);
|
|
}
|
|
|
|
.breadcrumbs-separator {
|
|
color: #a3ad9d;
|
|
}
|
|
|
|
.page {
|
|
min-height: 100vh;
|
|
padding: var(--page-gap) var(--page-gap) 56px;
|
|
}
|
|
|
|
.primary-link {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.start-screen {
|
|
width: min(var(--page-max), 100%);
|
|
margin: 0 auto;
|
|
padding: 32px;
|
|
border: 1px solid #d9dfd3;
|
|
border-radius: 8px;
|
|
background: var(--paper);
|
|
}
|
|
|
|
.start-screen.wide {
|
|
width: min(var(--page-max), 100%);
|
|
margin: 0 auto;
|
|
border: 0;
|
|
padding: 0;
|
|
background: transparent;
|
|
}
|
|
|
|
.eyebrow {
|
|
margin: 0 0 8px;
|
|
font-size: 14px;
|
|
color: var(--muted);
|
|
}
|
|
|
|
h1 {
|
|
margin: 0 0 16px;
|
|
font-size: 40px;
|
|
font-weight: 850;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
p {
|
|
font-size: 18px;
|
|
line-height: 1.55;
|
|
}
|
|
|
|
h2 {
|
|
margin: 0 0 16px;
|
|
font-size: 22px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
h3 {
|
|
margin: 0 0 8px;
|
|
font-size: 17px;
|
|
}
|
|
|
|
a {
|
|
color: var(--brand-green);
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.status-box {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
margin-top: 24px;
|
|
padding: 14px 16px;
|
|
border-radius: 8px;
|
|
background: #eef4ea;
|
|
}
|
|
|
|
.status-box.success {
|
|
background: #e8f5ec;
|
|
color: #145a2a;
|
|
}
|
|
|
|
.status-box.danger {
|
|
background: #fff0ee;
|
|
color: #8a1f11;
|
|
}
|
|
|
|
.primary-button {
|
|
appearance: none;
|
|
border: 0;
|
|
border-radius: 8px;
|
|
padding: 14px 18px;
|
|
margin-top: 18px;
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: #ffffff;
|
|
background: var(--brand-green);
|
|
cursor: pointer;
|
|
box-shadow: 0 10px 22px rgba(22, 60, 43, 0.16);
|
|
}
|
|
|
|
.primary-button:hover {
|
|
background: #0f2f20;
|
|
}
|
|
|
|
.secondary-button {
|
|
appearance: none;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid #b9c6b1;
|
|
border-radius: 8px;
|
|
padding: 13px 16px;
|
|
font-size: 16px;
|
|
font-weight: 800;
|
|
color: var(--brand-green);
|
|
background: var(--paper);
|
|
}
|
|
|
|
.secondary-button:hover {
|
|
background: #f5f8f1;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.home-hero {
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
|
|
gap: 40px;
|
|
align-items: center;
|
|
min-height: 340px;
|
|
padding: 46px 54px;
|
|
border-radius: 8px;
|
|
color: var(--ink);
|
|
border: 1px solid var(--line);
|
|
background:
|
|
linear-gradient(90deg, rgba(255, 254, 250, 0.98), rgba(255, 254, 250, 0.92)),
|
|
var(--paper);
|
|
box-shadow: 0 22px 60px rgba(23, 61, 44, 0.1);
|
|
}
|
|
|
|
.hero-copy {
|
|
min-width: 0;
|
|
}
|
|
|
|
.hero-media {
|
|
display: grid;
|
|
place-items: center;
|
|
align-self: stretch;
|
|
min-height: 280px;
|
|
border: 1px solid #d7dfd1;
|
|
border-radius: 8px;
|
|
background:
|
|
linear-gradient(180deg, rgba(244, 246, 239, 0.86), rgba(255, 254, 250, 1)),
|
|
var(--wash);
|
|
}
|
|
|
|
.hero-media img {
|
|
display: block;
|
|
width: min(100%, 520px);
|
|
height: auto;
|
|
}
|
|
|
|
.storage-status {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(220px, 0.7fr));
|
|
gap: 16px;
|
|
margin-top: 18px;
|
|
}
|
|
|
|
.arrival-card,
|
|
.temperature-card {
|
|
position: relative;
|
|
overflow: hidden;
|
|
min-height: 128px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
padding: 20px 22px;
|
|
background: var(--paper);
|
|
box-shadow: var(--shadow-soft);
|
|
}
|
|
|
|
.arrival-card {
|
|
color: #ffffff;
|
|
background:
|
|
linear-gradient(135deg, rgba(23, 61, 44, 0.96), rgba(39, 99, 74, 0.92)),
|
|
var(--brand-green);
|
|
}
|
|
|
|
.arrival-card::after,
|
|
.temperature-card::after {
|
|
content: "";
|
|
position: absolute;
|
|
right: 18px;
|
|
bottom: 16px;
|
|
width: 86px;
|
|
height: 86px;
|
|
border-radius: 50%;
|
|
background: rgba(255, 255, 255, 0.13);
|
|
}
|
|
|
|
.arrival-card span,
|
|
.temperature-card span {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
font-size: 12px;
|
|
font-weight: 850;
|
|
color: inherit;
|
|
opacity: 0.78;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
}
|
|
|
|
.arrival-card strong,
|
|
.temperature-card strong {
|
|
display: block;
|
|
font-size: clamp(26px, 3vw, 40px);
|
|
line-height: 1;
|
|
}
|
|
|
|
.arrival-card p,
|
|
.temperature-card p {
|
|
position: relative;
|
|
z-index: 1;
|
|
max-width: 520px;
|
|
margin: 12px 0 0;
|
|
color: inherit;
|
|
opacity: 0.82;
|
|
}
|
|
|
|
.temperature-card {
|
|
color: var(--brand-green);
|
|
}
|
|
|
|
.temperature-card strong {
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
.temperature-card.freezer strong {
|
|
color: #1e5f84;
|
|
}
|
|
|
|
.temperature-card.chiller strong {
|
|
color: var(--brand-green);
|
|
}
|
|
|
|
.home-hero::before {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 5px;
|
|
margin-bottom: 0;
|
|
border-radius: 999px;
|
|
background: linear-gradient(90deg, var(--brand-green) 0 64%, var(--brand-red) 64% 100%);
|
|
}
|
|
|
|
.home-hero h1 {
|
|
margin-bottom: 12px;
|
|
color: var(--brand-green);
|
|
font-size: clamp(46px, 5vw, 74px);
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.home-hero .eyebrow {
|
|
color: var(--brand-red);
|
|
font-weight: 800;
|
|
}
|
|
|
|
.hero-lead {
|
|
max-width: 820px;
|
|
margin: 0;
|
|
font-size: clamp(24px, 2.3vw, 36px);
|
|
line-height: 1.25;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.hero-points {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
margin-top: 22px;
|
|
}
|
|
|
|
.hero-points span {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-height: 34px;
|
|
border: 1px solid #d7dfd1;
|
|
border-radius: 999px;
|
|
padding: 7px 12px;
|
|
font-size: 14px;
|
|
font-weight: 800;
|
|
color: var(--brand-green);
|
|
background: #f8faf5;
|
|
}
|
|
|
|
.hero-button {
|
|
display: inline-flex;
|
|
margin-top: 0;
|
|
background: var(--brand-green);
|
|
color: #ffffff;
|
|
}
|
|
|
|
.hero-button:hover {
|
|
background: #102f21;
|
|
}
|
|
|
|
.home-banners,
|
|
.promo-strip {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 12px;
|
|
margin-top: 18px;
|
|
}
|
|
|
|
.home-banner,
|
|
.promo-strip div,
|
|
.price-request-panel {
|
|
padding: 18px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--paper);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.home-banner {
|
|
display: grid;
|
|
grid-template-rows: 96px auto auto;
|
|
gap: 9px;
|
|
min-height: 232px;
|
|
overflow: hidden;
|
|
padding-top: 0;
|
|
}
|
|
|
|
.home-banner::before {
|
|
content: "";
|
|
display: block;
|
|
margin: 0 -18px 8px;
|
|
border-bottom: 1px solid var(--line);
|
|
background-color: var(--wash);
|
|
background-position: center;
|
|
background-size: cover;
|
|
}
|
|
|
|
.delivery-image::before {
|
|
background-image: url("/assets/images/brand-delivery.svg");
|
|
}
|
|
|
|
.region-image::before {
|
|
background-image: url("/assets/images/brand-hero-products.svg");
|
|
}
|
|
|
|
.day-image::before,
|
|
.payment-image::before {
|
|
background-image: url("/assets/images/brand-price.svg");
|
|
}
|
|
|
|
.home-banner strong,
|
|
.promo-strip strong {
|
|
color: var(--ink);
|
|
}
|
|
|
|
.home-banner span,
|
|
.promo-strip span,
|
|
.promo-strip small {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.home-banner {
|
|
border-top: 3px solid transparent;
|
|
}
|
|
|
|
.home-banner:hover,
|
|
.promo-strip div:hover {
|
|
border-color: #cdd8c7;
|
|
box-shadow: var(--shadow-soft);
|
|
}
|
|
|
|
.home-banner:first-child {
|
|
border-top-color: var(--brand-red);
|
|
}
|
|
|
|
.promo-strip {
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
}
|
|
|
|
.promo-strip div {
|
|
display: grid;
|
|
gap: 5px;
|
|
}
|
|
|
|
.promo-strip strong {
|
|
font-size: 22px;
|
|
}
|
|
|
|
.price-request-panel {
|
|
display: grid;
|
|
grid-template-columns: 180px minmax(0, 1fr) auto;
|
|
gap: 18px;
|
|
align-items: center;
|
|
margin-top: 18px;
|
|
background: var(--paper);
|
|
}
|
|
|
|
.price-request-image {
|
|
min-height: 104px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: url("/assets/images/brand-price.svg") center / cover no-repeat var(--wash);
|
|
}
|
|
|
|
.content-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 18px;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.panel {
|
|
padding: 20px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--paper);
|
|
box-shadow: var(--shadow-soft);
|
|
}
|
|
|
|
.products-panel {
|
|
margin-top: 18px;
|
|
}
|
|
|
|
.section-heading {
|
|
display: flex;
|
|
gap: 16px;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.section-heading .eyebrow,
|
|
.section-heading h2 {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.subtle-link {
|
|
flex: 0 0 auto;
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.muted {
|
|
margin: 0;
|
|
font-size: 15px;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.category-list {
|
|
display: grid;
|
|
gap: 7px;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.category-list .category-list {
|
|
display: grid;
|
|
gap: 6px;
|
|
margin: 8px 0 0;
|
|
padding: 0 0 0 14px;
|
|
list-style: none;
|
|
}
|
|
|
|
.category-list li {
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.category-list a {
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.category-list li.is-current > a,
|
|
.category-list a.is-current-link {
|
|
display: inline-block;
|
|
border-radius: 6px;
|
|
padding: 3px 6px;
|
|
color: #ffffff;
|
|
background: var(--brand-green);
|
|
}
|
|
|
|
.category-list.depth-1 li {
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.category-list.depth-2 {
|
|
padding-left: 8px;
|
|
}
|
|
|
|
.category-list.depth-2 li {
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.category-details summary {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
min-height: 28px;
|
|
border-radius: 7px;
|
|
padding: 2px 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.category-details summary:hover {
|
|
background: #eef4ea;
|
|
}
|
|
|
|
.category-details summary a {
|
|
min-width: 0;
|
|
}
|
|
|
|
.category-details summary::marker {
|
|
color: #7a856f;
|
|
}
|
|
|
|
.settings-list {
|
|
display: grid;
|
|
gap: 12px;
|
|
margin: 0;
|
|
}
|
|
|
|
.settings-list div {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 12px;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.settings-list dt {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.settings-list dd {
|
|
margin: 0;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.product-grid,
|
|
.admin-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.product-card,
|
|
.admin-tile {
|
|
min-height: 96px;
|
|
padding: 16px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--paper);
|
|
box-shadow: 0 10px 24px rgba(22, 60, 43, 0.05);
|
|
}
|
|
|
|
.product-card p {
|
|
margin: 0 0 10px;
|
|
font-size: 14px;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.product-card .product-category {
|
|
margin-bottom: 8px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
color: #7a856f;
|
|
}
|
|
|
|
.price-line {
|
|
display: block;
|
|
margin-bottom: 6px;
|
|
font-size: 14px;
|
|
color: #2d372f;
|
|
}
|
|
|
|
.old-price {
|
|
display: inline-block;
|
|
margin-right: 8px;
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
color: #8b9485;
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.price-tiers {
|
|
display: grid;
|
|
gap: 6px;
|
|
margin: 12px 0 0;
|
|
padding: 10px 0 0;
|
|
border-top: 1px solid #e3e8de;
|
|
list-style: none;
|
|
}
|
|
|
|
.price-tiers li {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 8px;
|
|
align-items: baseline;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.price-tiers span {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.price-tiers strong {
|
|
color: var(--brand-green);
|
|
}
|
|
|
|
.admin-tile {
|
|
display: grid;
|
|
place-items: center;
|
|
min-height: 72px;
|
|
font-weight: 700;
|
|
text-align: center;
|
|
}
|
|
|
|
.catalog-layout,
|
|
.admin-layout {
|
|
width: min(var(--page-max), 100%);
|
|
margin: 0 auto;
|
|
display: grid;
|
|
grid-template-columns: 300px minmax(0, 1fr);
|
|
gap: 20px;
|
|
align-items: start;
|
|
}
|
|
|
|
.catalog-sidebar,
|
|
.catalog-content {
|
|
min-width: 0;
|
|
}
|
|
|
|
.sticky-panel {
|
|
position: sticky;
|
|
top: 98px;
|
|
max-height: calc(100vh - 116px);
|
|
overflow: auto;
|
|
}
|
|
|
|
.catalog-heading {
|
|
padding: 24px;
|
|
margin-bottom: 18px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--paper);
|
|
box-shadow: var(--shadow-soft);
|
|
}
|
|
|
|
.catalog-heading h1 {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.catalog-product-grid {
|
|
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
|
}
|
|
|
|
.text-page {
|
|
width: min(var(--page-max), 100%);
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.info-page {
|
|
width: min(var(--page-max), 100%);
|
|
display: grid;
|
|
gap: 18px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.info-hero {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) 260px;
|
|
gap: 28px;
|
|
align-items: center;
|
|
border-radius: 8px;
|
|
padding: 38px;
|
|
color: #ffffff;
|
|
background: var(--brand-green);
|
|
box-shadow: 0 18px 44px rgba(22, 60, 43, 0.16);
|
|
}
|
|
|
|
.info-hero h1 {
|
|
margin-bottom: 14px;
|
|
color: #ffffff;
|
|
font-size: 48px;
|
|
}
|
|
|
|
.info-hero p {
|
|
max-width: 760px;
|
|
margin: 0;
|
|
}
|
|
|
|
.info-hero .eyebrow {
|
|
color: #d8eadc;
|
|
}
|
|
|
|
.payment-hero {
|
|
background: #263b55;
|
|
}
|
|
|
|
.contacts-hero {
|
|
background: #4d392a;
|
|
}
|
|
|
|
.info-visual {
|
|
display: grid;
|
|
place-items: center;
|
|
min-height: 210px;
|
|
border: 1px solid rgba(255, 255, 255, 0.25);
|
|
border-radius: 8px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
text-align: center;
|
|
}
|
|
|
|
.info-visual span {
|
|
display: block;
|
|
width: 82px;
|
|
height: 52px;
|
|
border: 4px solid #ffffff;
|
|
border-radius: 8px;
|
|
box-shadow: 32px 36px 0 -18px #ffffff, -34px 34px 0 -20px #ffffff;
|
|
}
|
|
|
|
.info-visual strong {
|
|
display: block;
|
|
margin-top: 18px;
|
|
font-size: 32px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.info-visual small {
|
|
display: block;
|
|
margin-top: 6px;
|
|
color: #dfe8dc;
|
|
}
|
|
|
|
.info-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 18px;
|
|
}
|
|
|
|
.info-grid.three {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
|
|
.info-card {
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
padding: 24px;
|
|
background: var(--paper);
|
|
box-shadow: var(--shadow-soft);
|
|
}
|
|
|
|
.info-card.compact {
|
|
min-height: 190px;
|
|
}
|
|
|
|
.info-card p {
|
|
margin: 0 0 12px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.info-card p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.info-card-visual {
|
|
height: 118px;
|
|
margin-bottom: 18px;
|
|
border-radius: 8px;
|
|
background: #eef4ea;
|
|
}
|
|
|
|
.delivery-city {
|
|
background:
|
|
linear-gradient(90deg, rgba(29, 93, 59, 0.2), rgba(29, 93, 59, 0.04)),
|
|
repeating-linear-gradient(90deg, #dfe8dc 0 22px, transparent 22px 44px);
|
|
}
|
|
|
|
.delivery-region {
|
|
background:
|
|
linear-gradient(135deg, rgba(38, 59, 85, 0.2), rgba(38, 59, 85, 0.04)),
|
|
repeating-linear-gradient(135deg, #dfe8dc 0 20px, transparent 20px 46px);
|
|
}
|
|
|
|
.payment-cash {
|
|
background:
|
|
linear-gradient(90deg, rgba(29, 93, 59, 0.16), rgba(29, 93, 59, 0.04)),
|
|
radial-gradient(circle at 22% 50%, var(--brand-green) 0 24px, transparent 25px);
|
|
}
|
|
|
|
.payment-scale {
|
|
background:
|
|
linear-gradient(90deg, rgba(77, 57, 42, 0.16), rgba(77, 57, 42, 0.04)),
|
|
linear-gradient(#dfe8dc 0 0) center 68% / 58% 10px no-repeat;
|
|
}
|
|
|
|
.clean-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
margin: 0 0 14px;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.clean-list li {
|
|
position: relative;
|
|
padding-left: 20px;
|
|
font-size: 16px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.clean-list li::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0.65em;
|
|
left: 0;
|
|
width: 7px;
|
|
height: 7px;
|
|
border-radius: 50%;
|
|
background: var(--brand-red);
|
|
}
|
|
|
|
.delivery-calculator {
|
|
display: grid;
|
|
gap: 18px;
|
|
}
|
|
|
|
.calculator-note {
|
|
max-width: 260px;
|
|
font-size: 13px;
|
|
line-height: 1.45;
|
|
color: #687466;
|
|
text-align: right;
|
|
}
|
|
|
|
.calculator-form {
|
|
display: grid;
|
|
grid-template-columns: 1.4fr 0.75fr 1fr 0.6fr;
|
|
gap: 14px;
|
|
align-items: end;
|
|
}
|
|
|
|
.calculator-form label {
|
|
display: grid;
|
|
gap: 7px;
|
|
font-size: 14px;
|
|
font-weight: 800;
|
|
color: #394437;
|
|
}
|
|
|
|
.calculator-form input,
|
|
.calculator-form select {
|
|
width: 100%;
|
|
border: 1px solid #cfd8c9;
|
|
border-radius: 8px;
|
|
padding: 12px;
|
|
font: inherit;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.calculator-form .checkbox-label {
|
|
align-self: center;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.calculator-result {
|
|
display: grid;
|
|
gap: 5px;
|
|
border-radius: 8px;
|
|
padding: 18px;
|
|
color: #ffffff;
|
|
background: var(--brand-green);
|
|
}
|
|
|
|
.calculator-result strong {
|
|
font-size: 22px;
|
|
}
|
|
|
|
.calculator-result span {
|
|
line-height: 1.45;
|
|
color: #d8eadc;
|
|
}
|
|
|
|
.contact-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 18px;
|
|
}
|
|
|
|
.contact-card.wide {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.contact-list {
|
|
display: grid;
|
|
gap: 16px;
|
|
margin: 0;
|
|
}
|
|
|
|
.contact-list div {
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.contact-list dt {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.contact-list dd {
|
|
margin: 0;
|
|
font-size: 24px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.route-card {
|
|
display: grid;
|
|
gap: 18px;
|
|
}
|
|
|
|
.route-layout {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
|
|
gap: 20px;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.map-frame {
|
|
overflow: hidden;
|
|
min-height: 360px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #eef4ea;
|
|
}
|
|
|
|
.map-frame iframe {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 360px;
|
|
border: 0;
|
|
}
|
|
|
|
.route-steps {
|
|
display: grid;
|
|
align-content: start;
|
|
gap: 16px;
|
|
border-radius: 8px;
|
|
padding: 22px;
|
|
background: #f7f8f4;
|
|
}
|
|
|
|
.route-steps ol {
|
|
display: grid;
|
|
gap: 12px;
|
|
margin: 0;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.route-steps li {
|
|
font-size: 16px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.text-page-header,
|
|
.text-page-body {
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--paper);
|
|
box-shadow: var(--shadow-soft);
|
|
}
|
|
|
|
.text-page-header {
|
|
padding: 30px;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.text-page-header h1 {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.text-page-header p:last-child {
|
|
max-width: 880px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.text-page-body {
|
|
display: grid;
|
|
gap: 0;
|
|
padding: 8px 30px 30px;
|
|
}
|
|
|
|
.text-page-body section,
|
|
.text-page-body > p {
|
|
max-width: 920px;
|
|
}
|
|
|
|
.text-page-body section {
|
|
padding: 24px 0;
|
|
border-bottom: 1px solid #e5eadf;
|
|
}
|
|
|
|
.text-page-body section:last-of-type {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.text-page-body p {
|
|
margin: 0 0 12px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.text-page-body p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.notice-panel {
|
|
margin-top: 10px;
|
|
border: 1px solid #ead8c4 !important;
|
|
border-radius: 8px;
|
|
padding: 22px !important;
|
|
background: #fffaf2;
|
|
}
|
|
|
|
.thanks-text {
|
|
margin: 22px 0 0 !important;
|
|
font-weight: 800;
|
|
color: var(--brand-green);
|
|
}
|
|
|
|
.admin-form {
|
|
display: grid;
|
|
gap: 14px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.admin-form label {
|
|
display: grid;
|
|
gap: 6px;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: #394437;
|
|
}
|
|
|
|
.admin-form input,
|
|
.admin-form select,
|
|
.admin-form textarea {
|
|
width: 100%;
|
|
border: 1px solid #cfd8c9;
|
|
border-radius: 8px;
|
|
padding: 11px 12px;
|
|
font: inherit;
|
|
font-size: 15px;
|
|
background: var(--paper);
|
|
}
|
|
|
|
.admin-form textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
.checkbox-label {
|
|
display: flex !important;
|
|
grid-template-columns: none;
|
|
gap: 8px !important;
|
|
align-items: center;
|
|
}
|
|
|
|
.checkbox-label input {
|
|
width: auto;
|
|
}
|
|
|
|
.admin-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.admin-list div {
|
|
display: grid;
|
|
gap: 4px;
|
|
padding: 12px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--paper);
|
|
}
|
|
|
|
.admin-list span {
|
|
font-size: 13px;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.site-footer {
|
|
margin-top: 28px;
|
|
color: #dfe8dc;
|
|
background: linear-gradient(180deg, #17241c, #101a14);
|
|
}
|
|
|
|
.site-footer-inner {
|
|
width: min(var(--page-max), calc(100% - (var(--page-gap) * 2)));
|
|
display: grid;
|
|
grid-template-columns: 1.15fr 1.25fr 1fr 1.2fr;
|
|
gap: 34px;
|
|
margin: 0 auto;
|
|
padding: 42px 0 34px;
|
|
}
|
|
|
|
.footer-logo {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-height: 42px;
|
|
border-radius: 8px;
|
|
padding: 8px 10px;
|
|
background: var(--paper);
|
|
}
|
|
|
|
.footer-logo img {
|
|
display: block;
|
|
width: 150px;
|
|
height: auto;
|
|
}
|
|
|
|
.footer-logo span {
|
|
font-size: 24px;
|
|
font-weight: 800;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.footer-brand p,
|
|
.footer-column p {
|
|
margin: 12px 0 0;
|
|
font-size: 14px;
|
|
line-height: 1.55;
|
|
color: #b8c5b5;
|
|
}
|
|
|
|
.footer-column h2 {
|
|
margin: 0 0 14px;
|
|
font-size: 15px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.footer-contacts {
|
|
display: grid;
|
|
gap: 12px;
|
|
margin: 0;
|
|
}
|
|
|
|
.footer-contacts div {
|
|
display: grid;
|
|
gap: 3px;
|
|
}
|
|
|
|
.footer-contacts dt {
|
|
font-size: 12px;
|
|
color: #91a08c;
|
|
}
|
|
|
|
.footer-contacts dd {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.site-footer a {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.site-footer a:hover {
|
|
color: #d8eadc;
|
|
}
|
|
|
|
.footer-links {
|
|
display: grid;
|
|
align-content: start;
|
|
gap: 9px;
|
|
}
|
|
|
|
.footer-links a {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.footer-action {
|
|
display: inline-flex;
|
|
width: fit-content;
|
|
margin-top: 18px;
|
|
border: 1px solid #526457;
|
|
border-radius: 8px;
|
|
padding: 11px 14px;
|
|
font-size: 14px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.footer-action:hover {
|
|
border-color: #d8eadc;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.site-footer-bottom {
|
|
border-top: 1px solid #2b362f;
|
|
padding: 16px 24px 18px;
|
|
text-align: center;
|
|
}
|
|
|
|
.site-footer-bottom p {
|
|
max-width: var(--page-max);
|
|
margin: 6px auto 0;
|
|
font-size: 12px;
|
|
line-height: 1.5;
|
|
color: #9eaa9a;
|
|
}
|
|
|
|
.site-footer-bottom p:first-child {
|
|
margin-top: 0;
|
|
color: #c7d2c3;
|
|
}
|
|
|
|
@media (max-width: 1180px) {
|
|
.site-topbar-inner {
|
|
grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
|
|
}
|
|
|
|
.topbar-contacts {
|
|
grid-column: 1 / -1;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px 18px;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.home-banners {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.storage-status {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.calculator-form {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.site-footer-inner {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
.catalog-layout,
|
|
.admin-layout,
|
|
.info-hero,
|
|
.info-grid,
|
|
.info-grid.three,
|
|
.contact-grid,
|
|
.route-layout {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.sticky-panel {
|
|
position: static;
|
|
max-height: none;
|
|
}
|
|
|
|
.info-visual {
|
|
min-height: 170px;
|
|
}
|
|
|
|
.home-hero {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.hero-media {
|
|
min-height: 240px;
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
:root {
|
|
--page-gap: 16px;
|
|
}
|
|
|
|
.site-utility {
|
|
width: calc(100% - (var(--page-gap) * 2));
|
|
display: grid;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.site-topbar-inner,
|
|
.home-banners,
|
|
.promo-strip,
|
|
.price-request-panel {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.site-topbar-inner {
|
|
width: calc(100% - (var(--page-gap) * 2));
|
|
justify-items: start;
|
|
gap: 12px;
|
|
}
|
|
|
|
.brand-link {
|
|
width: 100%;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.brand-link img {
|
|
width: 210px;
|
|
}
|
|
|
|
.smart-search-form,
|
|
.smart-search-form p {
|
|
grid-template-columns: 1fr;
|
|
grid-column: 1;
|
|
}
|
|
|
|
.smart-search-control {
|
|
grid-template-columns: minmax(0, 1fr) 76px;
|
|
}
|
|
|
|
.smart-search-submit {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.category-mega-bar {
|
|
position: relative;
|
|
}
|
|
|
|
.category-mega-inner {
|
|
width: calc(100% - (var(--page-gap) * 2));
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.mega-root {
|
|
min-width: 0;
|
|
max-width: 180px;
|
|
min-height: 36px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.mega-submenu {
|
|
width: min(320px, calc(100vw - 32px));
|
|
}
|
|
|
|
.mega-submenu.depth-2,
|
|
.mega-submenu.depth-3 {
|
|
position: static;
|
|
width: 100%;
|
|
max-height: none;
|
|
margin-top: 4px;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.main-nav {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.topbar-contacts {
|
|
display: grid;
|
|
justify-items: start;
|
|
}
|
|
|
|
.hero-lead {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.home-hero {
|
|
padding: 28px;
|
|
min-height: auto;
|
|
}
|
|
|
|
.hero-media {
|
|
min-height: 190px;
|
|
}
|
|
|
|
.home-banner {
|
|
min-height: 212px;
|
|
}
|
|
|
|
.home-hero h1 {
|
|
font-size: 40px;
|
|
}
|
|
|
|
.settings-list div {
|
|
grid-template-columns: 1fr;
|
|
gap: 2px;
|
|
}
|
|
|
|
.section-heading {
|
|
display: grid;
|
|
}
|
|
|
|
.content-grid,
|
|
.calculator-form {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.info-hero {
|
|
padding: 28px;
|
|
}
|
|
|
|
.info-hero h1 {
|
|
font-size: 38px;
|
|
}
|
|
|
|
.info-visual {
|
|
min-height: 160px;
|
|
}
|
|
|
|
.calculator-note {
|
|
max-width: none;
|
|
text-align: left;
|
|
}
|
|
|
|
.site-footer-inner {
|
|
width: calc(100% - (var(--page-gap) * 2));
|
|
grid-template-columns: 1fr;
|
|
gap: 26px;
|
|
}
|
|
|
|
.text-page-header,
|
|
.text-page-body,
|
|
.info-card,
|
|
.catalog-heading,
|
|
.panel {
|
|
padding: 18px;
|
|
}
|
|
}
|