:root {
    --ink: #26261f;
    --muted: #706d62;
    --paper: #fffaf1;
    --cream: #f2ead8;
    --rose: #ef4b27;
    --rose-dark: #df3213;
    --sage: #5f850f;
    --sage-light: #dfe8c6;
    --gold: #bd7e31;
    --line: rgba(56, 60, 37, .14);
    --white: #fffefa;
    --shadow: 0 22px 60px rgba(66, 59, 33, .11);
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 0 20%, rgba(239, 75, 39, .06), transparent 30rem),
        var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.announcement { color: #fff9ed; background: var(--sage); font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.announcement__inner { display: flex; justify-content: space-between; padding: 9px 0; }
.announcement__aside { color: #cfc5bb; }

.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(255, 250, 241, .94); backdrop-filter: blur(14px); }
.site-header__inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: 190px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.main-nav a { position: relative; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.main-nav a::after { content: ''; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--rose); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover::after { transform: scaleX(1); }
.cart-link { position: relative; display: flex; align-items: center; gap: 10px; min-width: 146px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.45); }
.cart-link svg { width: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.cart-link__text { display: flex; flex-direction: column; line-height: 1.2; }
.cart-link__text strong { font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.cart-link__text small { color: var(--muted); font-size: 11px; }
.cart-link__count { position: absolute; top: -6px; right: -3px; display: grid; min-width: 21px; height: 21px; padding: 0 5px; place-items: center; border: 2px solid var(--paper); border-radius: 12px; color: white; background: var(--rose-dark); font-size: 10px; }

.messages { position: relative; z-index: 10; margin-top: 18px; }
.message { display: flex; align-items: center; gap: 11px; padding: 13px 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 8px 30px rgba(65,47,39,.07); font-size: 14px; }
.message + .message { margin-top: 8px; }
.message__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
.message--warning .message__dot, .message--error .message__dot { background: var(--rose-dark); }

.hero { min-height: 610px; background-image: linear-gradient(90deg, rgba(255,250,241,.99) 0%, rgba(255,250,241,.94) 36%, rgba(255,250,241,.14) 68%), var(--hero-image); background-position: center; background-size: cover; }
.hero__inner { display: flex; min-height: 610px; align-items: center; }
.hero__content { width: 49%; padding: 66px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--rose-dark); font-size: 11px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.hero h1, .section-heading h1, .page-heading h1, .product-detail h1, .success-page h1 { margin: 18px 0 20px; font-family: var(--serif); font-size: clamp(45px, 5.2vw, 76px); font-weight: 400; letter-spacing: -.035em; line-height: .98; }
.hero h1 em { color: var(--rose-dark); font-weight: 400; }
.hero__content > p { max-width: 560px; color: #5f5650; font-family: var(--serif); font-size: 20px; line-height: 1.6; }
.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 18px; padding: 0 27px; border: 0; border-radius: 2px; cursor: pointer; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--rose-dark); box-shadow: 0 12px 25px rgba(223,50,19,.2); }
.button--primary:hover { background: #c92d11; }
.button--wide { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 9px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 600; }
.text-link span { color: var(--rose-dark); font-size: 19px; }
.text-link--center { justify-content: center; padding: 8px 0; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); transform: translateY(-1px); }
.values > div { display: flex; gap: 18px; align-items: flex-start; padding: 27px 30px; }
.values > div + div { border-left: 1px solid var(--line); }
.values > div > span { color: var(--gold); font-family: var(--serif); font-size: 14px; }
.values p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.values strong { display: block; margin-bottom: 4px; color: var(--ink); font-family: var(--serif); font-size: 17px; font-weight: 500; }

.catalog { padding-top: 100px; padding-bottom: 120px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.section-heading h1 { margin-bottom: 0; font-size: clamp(40px, 4.5vw, 62px); }
.section-heading > p { margin: 0 0 10px; color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.category-nav { display: flex; gap: 9px; margin: 42px 0 36px; overflow-x: auto; padding-bottom: 4px; }
.category-nav a { flex: 0 0 auto; padding: 10px 17px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.5); font-size: 12px; transition: .2s ease; }
.category-nav a:hover, .category-nav a.is-active { color: #fff; border-color: var(--ink); background: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 24px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card__media { position: relative; display: block; height: 310px; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover img { transform: scale(1.035); }
.product-card__badge { position: absolute; top: 17px; left: 17px; padding: 6px 9px; border-radius: 2px; color: var(--ink); background: rgba(255,253,249,.88); backdrop-filter: blur(8px); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.category-avtorskie-ukrasheniya { background: linear-gradient(145deg, #eadbd5, #c9a29c); }
.category-businy-i-kamni { background: linear-gradient(145deg, #e3e0d4, #aab29c); }
.category-furnitura { background: linear-gradient(145deg, #eee2ca, #c8a570); }
.category-instrumenty-i-niti { background: linear-gradient(145deg, #d9d4cf, #9e8f86); }
.category-nabory-dlya-tvorchestva { background: linear-gradient(145deg, #ead9cc, #b9a294); }
.product-placeholder { position: absolute; inset: 0; display: grid; place-items: center; }
.product-placeholder::before { content: ''; position: absolute; width: 142px; height: 142px; border: 2px solid rgba(255,255,255,.75); border-radius: 50%; box-shadow: inset 0 0 0 18px rgba(255,255,255,.08), 0 24px 35px rgba(66,47,41,.12); }
.product-placeholder::after { content: ''; width: 44px; height: 58px; border: 7px solid rgba(255,253,247,.85); border-radius: 55% 55% 48% 48%; background: rgba(185,139,82,.38); transform: rotate(-16deg); box-shadow: 48px -25px 0 -11px rgba(255,253,247,.62), -50px 29px 0 -13px rgba(143,78,73,.32); }
.product-placeholder i { position: absolute; width: 18px; height: 18px; border: 3px solid rgba(255,255,255,.8); border-radius: 50%; }
.product-placeholder i:nth-child(1) { transform: translate(-63px,-31px); }
.product-placeholder i:nth-child(2) { transform: translate(65px,27px); }
.product-placeholder i:nth-child(3) { transform: translate(-28px,68px); }
.product-card__body { padding: 24px 24px 22px; }
.product-card__category { color: var(--rose-dark); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.product-card h2 { min-height: 58px; margin: 9px 0 8px; font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.2; }
.product-card h2 a:hover { color: var(--rose-dark); }
.product-card__body > p { min-height: 66px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--line); }
.product-card__footer > strong { font-family: var(--serif); font-size: 21px; font-weight: 500; }
.round-link { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--rose-dark); transition: .2s ease; }
.round-link:hover { color: white; border-color: var(--rose-dark); background: var(--rose-dark); }

.detail-page { padding-top: 30px; padding-bottom: 110px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; padding: 17px 0 28px; color: var(--muted); font-size: 12px; }
.breadcrumbs a:hover { color: var(--rose-dark); }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 72px; align-items: start; }
.product-detail__visual { position: sticky; top: 115px; display: grid; min-height: 620px; place-items: center; overflow: hidden; }
.product-detail__visual > img { width: 100%; height: 620px; object-fit: cover; }
.product-placeholder--large::before { width: 260px; height: 260px; border-width: 3px; }
.product-placeholder--large::after { width: 80px; height: 104px; border-width: 11px; box-shadow: 85px -42px 0 -21px rgba(255,253,247,.62), -88px 49px 0 -24px rgba(143,78,73,.32); }
.product-placeholder--large i { width: 27px; height: 27px; border-width: 4px; }
.product-placeholder--large i:nth-child(1) { transform: translate(-112px,-57px); }
.product-placeholder--large i:nth-child(2) { transform: translate(116px,47px); }
.product-placeholder--large i:nth-child(3) { transform: translate(-50px,122px); }
.visual-note { position: absolute; right: 22px; bottom: 20px; padding: 7px 12px; color: var(--muted); background: rgba(255,253,249,.84); font-family: var(--serif); font-size: 13px; font-style: italic; }
.product-detail__content { padding-top: 30px; }
.product-detail h1 { margin-top: 16px; font-size: clamp(44px, 5vw, 68px); }
.product-detail__lead { color: var(--muted); font-family: var(--serif); font-size: 18px; line-height: 1.75; }
.product-detail__price { margin: 26px 0 8px; font-family: var(--serif); font-size: 35px; }
.stock { display: flex; align-items: center; gap: 8px; color: var(--sage); font-size: 12px; }
.stock i { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px rgba(120,134,107,.13); }
.properties { margin: 34px 0; border-top: 1px solid var(--line); }
.properties > div { display: grid; grid-template-columns: 1fr 1.5fr; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.properties dt { color: var(--muted); }
.properties dd { margin: 0; font-weight: 500; }
.add-form { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: end; padding: 24px; background: var(--cream); }
.add-form label, .cart-item__quantity label { display: flex; flex-direction: column; gap: 6px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.quantity-select { min-width: 76px; height: 52px; padding: 0 14px; border: 1px solid var(--line); border-radius: 2px; color: var(--ink); background: var(--white); }
.detail-note { margin: 22px 0 0; color: var(--muted); font-family: var(--serif); font-size: 13px; font-style: italic; }

.page-space { min-height: 620px; padding-top: 70px; padding-bottom: 120px; }
.page-heading { max-width: 740px; margin-bottom: 45px; }
.page-heading h1, .success-page h1 { margin: 12px 0; font-size: clamp(46px, 5vw, 68px); }
.page-heading p { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 18px; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 42px; align-items: start; }
.cart-items { border-top: 1px solid var(--line); }
.cart-item { display: grid; grid-template-columns: 112px minmax(180px, 1fr) 115px 100px 32px; gap: 20px; align-items: center; padding: 23px 0; border-bottom: 1px solid var(--line); }
.cart-item__visual { position: relative; display: grid; width: 112px; height: 112px; place-items: center; overflow: hidden; }
.cart-item__visual img { width: 100%; height: 100%; object-fit: cover; }
.mini-placeholder { width: 47px; height: 47px; border: 8px solid rgba(255,255,255,.8); border-radius: 50%; box-shadow: 23px -14px 0 -14px rgba(143,78,73,.45); }
.cart-item__info h2 { margin: 4px 0; font-family: var(--serif); font-size: 21px; font-weight: 500; line-height: 1.2; }
.cart-item__info > span { color: var(--muted); font-size: 12px; }
.cart-item__quantity .quantity-select { width: 80px; min-width: 0; height: 40px; }
.link-button { padding: 0; border: 0; border-bottom: 1px solid var(--line); color: var(--rose-dark); background: none; cursor: pointer; font-size: 11px; }
.cart-item__quantity .link-button { margin-top: 5px; }
.cart-item__total { font-family: var(--serif); font-size: 19px; font-weight: 500; text-align: right; }
.remove-button { width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); background: transparent; cursor: pointer; font-size: 20px; line-height: 1; }
.remove-button:hover { color: white; border-color: var(--rose-dark); background: var(--rose-dark); }
.order-summary, .checkout-summary { position: sticky; top: 115px; padding: 29px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.order-summary__row { display: flex; justify-content: space-between; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.order-summary__row strong { color: var(--ink); }
.order-summary__total { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 22px 0; font-family: var(--serif); font-size: 18px; }
.order-summary__total strong { font-size: 28px; font-weight: 500; }
.order-summary form { margin-top: 12px; text-align: center; }
.link-button--muted { color: var(--muted); }

.empty-state { padding: 90px 24px; border: 1px solid var(--line); background: var(--white); text-align: center; }
.empty-state > span:first-child { color: var(--gold); font-size: 35px; }
.empty-state h2 { margin: 12px 0; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.empty-state p { max-width: 500px; margin: 0 auto 25px; color: var(--muted); }
.empty-state--cart { min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.empty-state__bead { width: 75px; height: 75px; border: 13px solid var(--rose); border-radius: 50%; box-shadow: 50px 8px 0 -23px var(--sage), -49px 10px 0 -23px var(--gold); }

.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 52px; align-items: start; }
.checkout-form { padding: 38px; border: 1px solid var(--line); background: var(--white); }
.form-section-heading { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 23px; }
.form-section-heading:not(:first-child) { margin-top: 42px; padding-top: 35px; border-top: 1px solid var(--line); }
.form-section-heading > span { color: var(--gold); font-family: var(--serif); }
.form-section-heading h2 { margin: 0; font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.2; }
.form-section-heading p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.field--wide { grid-column: 1 / -1; }
.field-input { width: 100%; height: 50px; padding: 0 14px; border: 1px solid var(--line); border-radius: 2px; outline: none; color: var(--ink); background: var(--paper); transition: border .2s, box-shadow .2s; }
.field-input:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(183,110,103,.1); }
.errorlist { margin: 0; padding: 0; color: #9b3f3a; font-size: 11px; font-weight: 400; letter-spacing: 0; list-style: none; text-transform: none; }
.checkout-form__actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 38px; }
.checkout-summary__item { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 15px; line-height: 1.3; }
.checkout-summary__item small { color: var(--muted); }
.checkout-summary__item strong { flex: 0 0 auto; font-weight: 500; }
.checkout-summary > p { margin: 7px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }

.success-page { min-height: 720px; padding-top: 85px; padding-bottom: 120px; text-align: center; }
.success-mark { display: grid; width: 92px; height: 92px; margin: 0 auto 28px; place-items: center; border: 1px solid var(--sage); border-radius: 50%; }
.success-mark::before { content: ''; position: absolute; width: 70px; height: 70px; border: 1px dashed rgba(120,134,107,.5); border-radius: 50%; }
.success-mark span { position: relative; color: var(--sage); font-family: var(--serif); font-size: 34px; }
.success-page__lead { max-width: 610px; margin: 0 auto; color: var(--muted); font-family: var(--serif); font-size: 19px; }
.success-card { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 680px; margin: 40px auto 35px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: var(--white); }
.success-card > div { display: flex; flex-direction: column; gap: 5px; padding: 21px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; }
.success-card span { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.success-card strong { font-family: var(--serif); font-size: 16px; font-weight: 500; }

.site-footer { color: #dfd6cc; background: var(--ink); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 80px; padding-top: 64px; padding-bottom: 50px; }
.brand--footer img { width: 210px; filter: brightness(0) invert(1); opacity: .92; }
.site-footer p { max-width: 400px; color: #a99e95; font-size: 13px; }
.site-footer h2 { margin: 0 0 14px; color: white; font-family: var(--serif); font-size: 17px; font-weight: 500; }
.site-footer__grid > div > a { display: block; margin: 8px 0; color: #bfb5ac; font-size: 13px; }
.site-footer__grid > div > a:hover { color: white; }
.site-footer__bottom { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.1); color: #8f857d; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 980px) {
    .main-nav { display: none; }
    .hero, .hero__inner { min-height: 530px; }
    .hero { background-image: linear-gradient(90deg, rgba(248,241,231,.98), rgba(248,241,231,.82) 55%, rgba(248,241,231,.2)), var(--hero-image); }
    .hero__content { width: 68%; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-detail { gap: 40px; }
    .product-detail__visual { min-height: 520px; }
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .order-summary, .checkout-summary { position: static; }
    .cart-item { grid-template-columns: 95px minmax(160px, 1fr) 105px 90px 30px; gap: 14px; }
    .cart-item__visual { width: 95px; height: 95px; }
}

@media (max-width: 700px) {
    .shell { width: min(100% - 28px, 1180px); }
    .announcement__aside, .cart-link__text { display: none; }
    .announcement__inner { justify-content: center; text-align: center; }
    .site-header__inner { min-height: 70px; }
    .brand img { width: 145px; }
    .cart-link { min-width: 48px; width: 48px; height: 44px; padding: 0; justify-content: center; }
    .hero, .hero__inner { min-height: 600px; }
    .hero { background-image: linear-gradient(180deg, rgba(248,241,231,.98) 0%, rgba(248,241,231,.9) 55%, rgba(248,241,231,.32)), var(--hero-image); background-position: 62% center; }
    .hero__inner { align-items: flex-start; }
    .hero__content { width: 100%; padding-top: 70px; }
    .hero h1 { font-size: 48px; }
    .hero__content > p { font-size: 17px; }
    .hero__actions { flex-direction: column; align-items: flex-start; gap: 21px; }
    .values { grid-template-columns: 1fr; }
    .values > div + div { border-top: 1px solid var(--line); border-left: 0; }
    .catalog { padding-top: 70px; padding-bottom: 80px; }
    .section-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
    .section-heading h1 { font-size: 43px; }
    .section-heading > p { margin: 0; }
    .category-nav { margin-top: 28px; }
    .product-grid { grid-template-columns: 1fr; }
    .product-card__media { height: 340px; }
    .product-detail { grid-template-columns: 1fr; }
    .product-detail__visual { position: relative; top: 0; min-height: 420px; }
    .product-detail__content { padding-top: 0; }
    .add-form { grid-template-columns: 1fr; }
    .cart-item { position: relative; grid-template-columns: 85px 1fr; padding-right: 36px; }
    .cart-item__visual { width: 85px; height: 85px; }
    .cart-item__quantity { grid-column: 2; }
    .cart-item__total { grid-column: 2; text-align: left; }
    .cart-item > form:last-child { position: absolute; top: 20px; right: 0; }
    .checkout-form { padding: 24px 18px; }
    .form-grid { grid-template-columns: 1fr; }
    .field--wide { grid-column: auto; }
    .checkout-form__actions { align-items: stretch; flex-direction: column-reverse; }
    .success-card { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Dom Elfa brand system */
.main-nav a { font-weight: 650; }
.cart-link { background: var(--white); transition: border-color .2s ease, transform .2s ease; }
.cart-link:hover { border-color: var(--sage); transform: translateY(-1px); }
.cart-link svg { stroke: #4f7107; }
.hero h1 { max-width: 760px; }
.eyebrow { color: #4f7107; font-weight: 700; }
.eyebrow::before { height: 2px; background: var(--rose); }
.button { border-radius: 999px; }
.values { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; transform: translateY(-24px); }
.values > div > span {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #4f7107;
    background: var(--sage-light);
}
.catalog { padding-top: 78px; }
.category-nav a { border-radius: 999px; }
.category-nav a:hover { color: #4f7107; border-color: var(--sage); background: var(--white); }
.category-nav a.is-active { color: white; border-color: #4f7107; background: #4f7107; }
.product-card { border-radius: 20px; }
.product-card:hover { border-color: rgba(95,133,15,.35); }
.product-card__badge { border-radius: 999px; color: #4f7107; font-weight: 700; }
.product-card__category { color: #4f7107; }
.product-card__footer > strong, .product-detail__price, .cart-item__total, .order-summary__total strong { color: var(--rose-dark); }
.round-link { color: #4f7107; }
.round-link:hover { border-color: var(--sage); background: var(--sage); }
.product-detail__visual, .cart-item__visual { border-radius: 20px; }
.visual-note { border-radius: 999px; color: #4f7107; }
.stock { color: #5f850f; }
.stock i { background: #5f850f; box-shadow: 0 0 0 4px rgba(95,133,15,.13); }
.add-form { border-radius: 18px; background: var(--sage-light); }
.quantity-select, .field-input { border-radius: 12px; }
.order-summary, .checkout-summary, .checkout-form, .empty-state { border-radius: 20px; }
.link-button { color: #4f7107; }
.form-section-heading > span {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #4f7107;
    background: var(--sage-light);
}
.field-input:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(95,133,15,.12); }
.success-mark { background: var(--sage-light); }
.success-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; }
.site-footer { color: #dfe8c7; background: #304604; }
.brand--footer { width: fit-content; padding: 8px 14px; border-radius: 14px; background: var(--paper); }
.brand--footer img { width: 190px; filter: none; opacity: 1; }
.site-footer p { color: #bccb96; }
.site-footer__grid > div > a { color: #d3ddba; }
.site-footer__bottom { color: #9eae78; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
