/* Upanuntsi Fast Store — mobile first, no external font requests. */
:root {
  --up-green: #2e975c;
  --up-green-dark: #226b49;
  --up-green-soft: #e9f4ed;
  --up-cream: #faf6ec;
  --up-cream-deep: #f2ebdd;
  --up-white: #fff;
  --up-ink: #17211b;
  --up-muted: #66736b;
  --up-border: #dfe6e1;
  --up-danger: #b9413e;
  --up-shadow: 0 16px 42px rgba(28, 63, 43, .1);
  --up-radius-sm: 12px;
  --up-radius: 20px;
  --up-radius-lg: 30px;
  --up-container: 1380px;
  --up-header-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--up-ink);
  background: var(--up-cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.up-drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg.up-icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { clip: auto !important; width: auto; height: auto; padding: 12px 16px; margin: 12px; overflow: visible; background: #fff; color: #000; z-index: 99999; }
.up-container { width: min(100% - 28px, var(--up-container)); margin-inline: auto; }
.up-main { min-height: 50vh; }

/* Header */
.up-header { position: sticky; top: 0; z-index: 80; background: rgba(250, 246, 236, .96); border-bottom: 1px solid rgba(34,107,73,.1); backdrop-filter: blur(16px); }
.admin-bar .up-header { top: 32px; }
.up-header__main { min-height: var(--up-header-height); display: grid; grid-template-columns: 44px minmax(120px, 1fr) auto; align-items: center; gap: 12px; }
.up-icon-button { display: inline-grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid var(--up-border); border-radius: 50%; background: var(--up-white); cursor: pointer; }
.up-icon-button:hover { border-color: var(--up-green); color: var(--up-green-dark); }
.up-brand { min-width: 0; }
.up-brand .custom-logo-link { display: inline-flex; align-items: center; }
.up-brand .custom-logo { width: auto; max-width: 150px; max-height: 48px; object-fit: contain; }
.up-brand__fallback { font-size: clamp(21px, 4vw, 30px); font-weight: 900; letter-spacing: -.05em; color: var(--up-green-dark); white-space: nowrap; }
.up-header__meta { display: flex; align-items: center; gap: 8px; }
.up-contact, .up-account-link { display: none; }
.up-cart-link { display: inline-flex; align-items: center; gap: 10px; min-height: 46px; padding: 8px 10px; border: 1px solid var(--up-border); border-radius: 14px; background: var(--up-white); }
.up-cart-link__icon { position: relative; display: inline-grid; place-items: center; }
.up-cart-link__count, .up-mobile-cart__count { position: absolute; top: -9px; right: -11px; min-width: 19px; height: 19px; padding: 0 5px; display: grid; place-items: center; border: 2px solid var(--up-white); border-radius: 99px; color: #fff; background: var(--up-green); font-size: 10px; line-height: 1; font-weight: 800; }
.up-cart-link__text { display: none; }
.up-header__search--desktop { display: none; }
.up-header__search--mobile { padding-bottom: 12px; }
.up-search { position: relative; display: grid; grid-template-columns: 42px minmax(0,1fr) auto; align-items: center; min-height: 48px; border: 1px solid var(--up-border); border-radius: 16px; background: var(--up-white); box-shadow: 0 5px 20px rgba(28,63,43,.05); }
.up-search:focus-within { border-color: var(--up-green); box-shadow: 0 0 0 3px rgba(46,151,92,.12); }
.up-search__icon { width: 21px; height: 21px; margin-left: 15px; fill: none; stroke: var(--up-muted); stroke-width: 1.8; stroke-linecap: round; }
.up-search__input { min-width: 0; width: 100%; height: 46px; padding: 0 10px; border: 0; outline: 0; color: var(--up-ink); background: transparent; }
.up-search__input::placeholder { color: #8a958f; }
.up-search__submit { height: 38px; margin-right: 5px; padding: 0 14px; border: 0; border-radius: 11px; color: #fff; background: var(--up-green); font-size: 13px; font-weight: 800; cursor: pointer; }
.up-search__results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 120; max-height: min(520px, 70vh); overflow: auto; padding: 8px; border: 1px solid var(--up-border); border-radius: 18px; background: #fff; box-shadow: var(--up-shadow); }
.up-search__status { padding: 22px 16px; color: var(--up-muted); text-align: center; }
.up-search-list { display: grid; gap: 4px; }
.up-search-result { display: grid; grid-template-columns: 62px minmax(0,1fr); gap: 11px; align-items: center; padding: 7px; border-radius: 13px; }
.up-search-result:hover { background: var(--up-green-soft); }
.up-search-result img { width: 62px; height: 62px; object-fit: contain; border: 1px solid #edf0ee; border-radius: 10px; background: #fff; }
.up-search-result__content { min-width: 0; display: grid; gap: 5px; }
.up-search-result__content > strong { overflow: hidden; font-size: 14px; white-space: nowrap; text-overflow: ellipsis; }
.up-search-result__meta { display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.up-search-result__meta small { font-size: 11px; }
.is-in-stock { color: var(--up-green-dark); }
.is-out-of-stock { color: var(--up-danger); }
.up-search-result__price { font-size: 13px; font-weight: 800; white-space: nowrap; }
.up-search__all { width: 100%; margin-top: 6px; padding: 11px 14px; border: 0; border-radius: 12px; background: var(--up-cream); color: var(--up-green-dark); font-weight: 800; cursor: pointer; }
.up-category-nav { display: none; }

/* Drawer */
.up-drawer-overlay { position: fixed; inset: 0; z-index: 150; background: rgba(10,24,16,.48); backdrop-filter: blur(3px); }
.up-drawer { position: fixed; top: 0; bottom: 0; left: 0; z-index: 160; width: min(92vw, 410px); transform: translateX(-103%); display: grid; grid-template-rows: auto 1fr; background: #fff; box-shadow: 20px 0 60px rgba(0,0,0,.18); transition: transform .24s ease; }
.up-drawer[aria-hidden="false"] { transform: translateX(0); }
.up-drawer__head { min-height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--up-border); }
.up-drawer__head strong { font-size: 24px; }
.up-drawer__body { overflow: auto; padding: 14px 16px 28px; }
.up-drawer__all, .up-drawer__categories a { display: grid; grid-template-columns: minmax(0,1fr) auto auto; gap: 9px; align-items: center; min-height: 48px; padding: 10px 12px; border-radius: 12px; }
.up-drawer__all { margin-bottom: 8px; color: #fff; background: var(--up-green); font-weight: 800; }
.up-drawer__categories a { border-bottom: 1px solid #edf0ee; }
.up-drawer__categories a:hover { background: var(--up-green-soft); }
.up-drawer__categories small { color: var(--up-muted); font-size: 12px; }
.up-drawer__categories .up-icon, .up-drawer__all .up-icon { width: 17px; height: 17px; }

/* Mobile navigation */
.up-mobile-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; display: grid; grid-template-columns: repeat(5,1fr); min-height: 64px; padding: 5px max(6px, env(safe-area-inset-right)) calc(5px + env(safe-area-inset-bottom)) max(6px, env(safe-area-inset-left)); border-top: 1px solid var(--up-border); background: rgba(255,255,255,.97); box-shadow: 0 -10px 30px rgba(28,63,43,.09); backdrop-filter: blur(14px); }
.up-mobile-nav a, .up-mobile-nav button { position: relative; display: grid; place-items: center; align-content: center; gap: 2px; min-width: 0; padding: 0; border: 0; background: transparent; color: var(--up-muted); font-size: 10px; cursor: pointer; }
.up-mobile-nav .up-icon { width: 21px; height: 21px; }
.up-mobile-cart__icon { position: relative; display: inline-grid; }
.woocommerce-checkout .up-mobile-nav { display: none; }
.woocommerce-checkout .up-footer { padding-bottom: 48px; }

/* Hero */
.up-hero { overflow: hidden; padding: 30px 0 42px; }
.up-hero__grid { display: grid; gap: 30px; }
.up-hero__content { align-self: center; }
.up-eyebrow { display: inline-block; margin-bottom: 10px; color: var(--up-green-dark); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.up-hero h1 { max-width: 830px; margin: 0; font-size: clamp(38px, 9.5vw, 82px); line-height: .98; letter-spacing: -.055em; }
.up-hero__content > p { max-width: 680px; margin: 20px 0 0; color: var(--up-muted); font-size: clamp(16px,3.8vw,20px); }
.up-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.up-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 21px; border: 1px solid transparent; border-radius: 14px; font-weight: 850; cursor: pointer; transition: transform .15s ease, background .15s ease, border-color .15s ease; }
.up-button:hover { transform: translateY(-1px); }
.up-button--primary { color: #fff; background: var(--up-green); }
.up-button--primary:hover { background: var(--up-green-dark); }
.up-button--ghost { border-color: var(--up-border); background: rgba(255,255,255,.58); }
.up-button--ghost:hover { border-color: var(--up-green); }
.up-hero__facts { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin-top: 28px; }
.up-hero__facts span { display: grid; align-content: start; min-height: 84px; padding: 12px 10px; border: 1px solid rgba(34,107,73,.12); border-radius: 14px; background: rgba(255,255,255,.5); color: var(--up-muted); font-size: 11px; }
.up-hero__facts strong { color: var(--up-ink); font-size: 14px; }
.up-hero__visual { position: relative; min-height: 360px; border-radius: var(--up-radius-lg); background: var(--up-green); box-shadow: var(--up-shadow); isolation: isolate; }
.up-hero__shape { position: absolute; border-radius: 50%; filter: blur(.2px); opacity: .28; }
.up-hero__shape--one { width: 260px; height: 260px; top: -80px; right: -50px; background: #f3d992; }
.up-hero__shape--two { width: 190px; height: 190px; bottom: -45px; left: -25px; background: #fff; }
.up-hero-product { position: absolute; display: grid; place-items: center; border-radius: 24px; background: #fff; box-shadow: 0 16px 32px rgba(10,40,25,.18); }
.up-hero-product img { width: 100%; height: 100%; padding: 8%; object-fit: contain; }
.up-hero-product--1 { width: 52%; aspect-ratio: 1; top: 10%; left: 8%; transform: rotate(-5deg); }
.up-hero-product--2 { width: 42%; aspect-ratio: 1; top: 25%; right: 7%; transform: rotate(5deg); }
.up-hero-product--3 { width: 34%; aspect-ratio: 1; bottom: 7%; left: 31%; transform: rotate(-1deg); }
.up-hero__note { position: absolute; left: 18px; right: 18px; bottom: 14px; z-index: 5; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.91); color: var(--up-green-dark); font-size: 12px; font-weight: 800; text-align: center; }

/* Sections and categories */
.up-section { padding: 46px 0; }
.up-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.up-section-heading h2 { margin: 0; font-size: clamp(27px,5vw,46px); line-height: 1.04; letter-spacing: -.04em; }
.up-section-heading .up-eyebrow { margin-bottom: 5px; }
.up-section-heading > a { display: none; align-items: center; gap: 3px; color: var(--up-green-dark); font-weight: 800; white-space: nowrap; }
.up-section-heading > a .up-icon { width: 17px; }
.up-section--categories { background: #fff; }
.up-category-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.up-category-card { min-width: 0; padding: 10px; border: 1px solid var(--up-border); border-radius: 18px; background: var(--up-cream); transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.up-category-card:hover { transform: translateY(-2px); border-color: rgba(46,151,92,.5); box-shadow: 0 12px 26px rgba(28,63,43,.08); }
.up-category-card__image { aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; margin-bottom: 10px; border-radius: 13px; background: #fff; }
.up-category-card__image img { width: 100%; height: 100%; object-fit: cover; }
.up-category-card__placeholder { display: grid; place-items: center; width: 54%; aspect-ratio: 1; border-radius: 50%; color: #fff; background: var(--up-green); font-size: 42px; font-weight: 900; }
.up-category-card strong { display: block; overflow: hidden; font-size: 14px; white-space: nowrap; text-overflow: ellipsis; }
.up-category-card small { color: var(--up-muted); font-size: 11px; }
.up-product-section--soft { background: var(--up-green-soft); }

/* WooCommerce archive and cards */
.up-woocommerce-main { padding: 26px 0 62px; }
.woocommerce .woocommerce-breadcrumb { margin: 0 0 16px; color: var(--up-muted); font-size: 12px; }
.woocommerce-products-header__title.page-title, .woocommerce .product_title, .up-page-header h1 { margin: 0 0 22px; font-size: clamp(32px,7vw,62px); line-height: 1.02; letter-spacing: -.045em; }
.woocommerce .woocommerce-result-count { color: var(--up-muted); font-size: 13px; }
.woocommerce .woocommerce-ordering select { min-height: 42px; padding: 0 36px 0 13px; border: 1px solid var(--up-border); border-radius: 12px; background: #fff; }
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin: 0 !important; padding: 0 !important; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product { position: relative; min-width: 0; width: auto !important; float: none !important; display: flex; flex-direction: column; margin: 0 !important; padding: 8px; border: 1px solid var(--up-border); border-radius: 17px; background: #fff; transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.woocommerce ul.products li.product:hover { transform: translateY(-2px); border-color: rgba(46,151,92,.45); box-shadow: 0 14px 28px rgba(28,63,43,.08); }
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link { display: flex; flex-direction: column; flex: 1; }
.woocommerce ul.products li.product a img { width: 100%; aspect-ratio: 1; margin: 0 0 9px !important; border-radius: 12px; background: #fff; object-fit: contain; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 2.75em; margin: 0 !important; padding: 0 !important; display: -webkit-box; overflow: hidden; color: var(--up-ink); font-size: 13px !important; font-weight: 750; line-height: 1.38; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.woocommerce ul.products li.product .price { margin: 8px 0 10px !important; color: var(--up-ink) !important; font-size: 16px !important; font-weight: 900 !important; }
.woocommerce ul.products li.product .price del { color: var(--up-muted); font-size: 11px; opacity: .7; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce ul.products li.product .button { display: flex; align-items: center; justify-content: center; min-height: 41px; margin: auto 0 0 !important; padding: 8px 10px !important; border-radius: 11px !important; color: #fff !important; background: var(--up-green) !important; font-size: 12px !important; font-weight: 850 !important; line-height: 1.1 !important; }
.woocommerce ul.products li.product .button:hover { background: var(--up-green-dark) !important; }
.woocommerce ul.products li.product .added_to_cart { padding: 7px 0 0; color: var(--up-green-dark); font-size: 12px; font-weight: 800; text-align: center; }
.up-product-badges { position: absolute; top: 14px; left: 14px; z-index: 3; display: flex; flex-wrap: wrap; gap: 4px; pointer-events: none; }
.up-badge { display: inline-flex; align-items: center; min-height: 24px; padding: 0 8px; border-radius: 99px; color: #fff; background: var(--up-green-dark); font-size: 10px; font-weight: 900; }
.up-badge--sale { background: var(--up-danger); }
.up-badge--new { color: var(--up-green-dark); background: #dff3b5; }
.up-badge--muted { background: #7a847e; }
.woocommerce nav.woocommerce-pagination { margin-top: 28px; }
.woocommerce nav.woocommerce-pagination ul { border: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0; border: 1px solid var(--up-border); border-radius: 10px; background: #fff; }
.woocommerce nav.woocommerce-pagination ul li span.current { color: #fff; border-color: var(--up-green); background: var(--up-green); }
.up-pagination--enhanced { display: none; }
.up-load-more-wrap { display: grid; place-items: center; margin-top: 30px; }
.up-button--load-more { min-width: min(100%, 260px); color: #fff; background: var(--up-green); }
.up-button--load-more:disabled { cursor: default; opacity: .6; transform: none; }
.up-load-more-wrap.is-complete .up-button--load-more { color: var(--up-green-dark); background: var(--up-green-soft); }

/* Product detail */
.woocommerce div.product { padding-top: 12px; }
.woocommerce div.product div.images img { border-radius: 18px; background: #fff; }
.woocommerce div.product .summary { padding: 8px 0; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--up-ink); font-size: 26px; font-weight: 900; }
.woocommerce div.product form.cart .button { min-height: 50px; padding: 0 24px; border-radius: 13px; background: var(--up-green); }
.woocommerce div.product form.cart .button:hover { background: var(--up-green-dark); }
.woocommerce .quantity .qty { min-height: 50px; border: 1px solid var(--up-border); border-radius: 13px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { border-color: var(--up-border); border-radius: 10px 10px 0 0; background: #fff; }

/* Cart, checkout and account */
.woocommerce table.shop_table { overflow: hidden; border-color: var(--up-border); border-radius: 16px; background: #fff; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select { min-height: 46px; padding: 10px 12px; border: 1px solid var(--up-border); border-radius: 11px; background: #fff; }
.woocommerce form .form-row textarea { min-height: 120px; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit { border-radius: 11px; }
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce #respond input#submit.alt { background: var(--up-green); }
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover { background: var(--up-green-dark); }
.woocommerce-info, .woocommerce-message { border-top-color: var(--up-green); background: #fff; }
.woocommerce-info::before, .woocommerce-message::before { color: var(--up-green); }

/* Benefits, footer and content */
.up-benefits__grid { display: grid; gap: 10px; }
.up-benefits article { min-height: 210px; padding: 22px; border-radius: 20px; color: #fff; background: var(--up-green-dark); }
.up-benefits article:nth-child(2) { color: var(--up-ink); background: #fff; }
.up-benefits article:nth-child(3) { color: var(--up-ink); background: #eddcaa; }
.up-benefits article > span { font-size: 12px; font-weight: 900; opacity: .7; }
.up-benefits h2 { margin: 42px 0 8px; font-size: 23px; letter-spacing: -.03em; }
.up-benefits p { margin: 0; opacity: .82; }
.up-page-shell { padding: 36px 0 70px; }
.up-prose { max-width: 900px; }
.up-prose > *:first-child { margin-top: 0; }
.up-prose img { border-radius: 18px; }
.up-content-card { display: grid; overflow: hidden; margin-bottom: 18px; border: 1px solid var(--up-border); border-radius: 18px; background: #fff; }
.up-content-card__image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.up-content-card__body { padding: 20px; }
.up-content-card h2 { margin: 0 0 8px; }
.up-content-card p { color: var(--up-muted); }
.up-text-link { display: inline-flex; align-items: center; gap: 3px; color: var(--up-green-dark); font-weight: 800; }
.up-text-link .up-icon { width: 17px; }
.up-empty-state { display: grid; place-items: center; min-height: 55vh; padding: 60px 20px; text-align: center; }
.up-empty-state--inline { min-height: 320px; }
.up-empty-state__code { color: var(--up-green); font-size: clamp(80px,20vw,180px); font-weight: 950; line-height: .8; opacity: .22; }
.up-empty-state h1, .up-empty-state h2 { margin: 18px 0 8px; }
.up-empty-state p { margin: 0 0 22px; color: var(--up-muted); }
.up-empty-state .up-search { width: min(100%, 640px); }
.up-footer { padding: 48px 0 calc(86px + env(safe-area-inset-bottom)); color: rgba(255,255,255,.82); background: #13251b; }
.up-footer__grid { display: grid; gap: 30px; }
.up-footer__name { color: #fff; font-size: 30px; font-weight: 950; letter-spacing: -.05em; }
.up-footer__brand p { max-width: 390px; }
.up-footer h2 { margin: 0 0 12px; color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; }
.up-footer ul { margin: 0; padding: 0; list-style: none; }
.up-footer li + li { margin-top: 7px; }
.up-footer a:hover { color: #fff; }
.up-footer__contacts { color: #fff; }
.up-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }

@media (min-width: 560px) {
  .up-container { width: min(100% - 40px, var(--up-container)); }
  .up-category-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .woocommerce ul.products { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
  .up-benefits__grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .up-footer__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (min-width: 782px) {
  .admin-bar .up-header { top: 32px; }
  .up-hero__grid { grid-template-columns: minmax(0,1.12fr) minmax(340px,.88fr); align-items: center; }
  .up-hero__visual { min-height: 470px; }
  .up-category-grid { grid-template-columns: repeat(5,minmax(0,1fr)); }
  .up-section-heading > a { display: inline-flex; }
  .up-content-card { grid-template-columns: 280px minmax(0,1fr); }
  .up-content-card__image img { height: 100%; aspect-ratio: auto; }
}

@media (min-width: 1024px) {
  :root { --up-header-height: 70px; }
  body { padding-bottom: 0; }
  .up-header__main { width: 100%; max-width: none; padding-left: clamp(28px, 4.5vw, 88px); padding-right: 14px; grid-template-columns: 190px minmax(340px,1fr) auto; gap: 20px; }
  .up-header__menu { display: none; }
  .up-brand .custom-logo { max-width: 176px; max-height: 48px; }
  .up-header__search--desktop { display: block; }
  .up-header__search--mobile { display: none; }
  .up-header__meta { justify-self: end; gap: 9px; }
  .up-contact, .up-account-link { display: inline-flex; align-items: center; gap: 9px; }
  .up-contact small, .up-account-link small, .up-cart-link small { display: block; color: var(--up-muted); font-size: 10px; font-weight: 600; }
  .up-contact strong, .up-account-link strong, .up-cart-link strong { display: block; font-size: 13px; white-space: nowrap; }
  .up-account-link { padding-left: 11px; border-left: 1px solid var(--up-border); }
  .up-cart-link { min-height: 44px; padding: 6px 11px; }
  .up-cart-link__text { display: block; }
  .up-category-nav { display: block; height: 46px; min-height: 46px; overflow: hidden; border-top: 1px solid rgba(34,107,73,.08); border-bottom: 0; background: #fff; }
  .up-category-nav__inner { position: relative; width: 100%; max-width: none; height: 46px; min-height: 46px; margin-inline: 0; display: grid; grid-template-columns: auto minmax(0,1fr); align-items: stretch; overflow: hidden; }
  .up-category-nav__catalog { position: relative; z-index: 3; align-self: stretch; width: 144px; max-width: 144px; height: 46px; min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 8px; border: 0; color: #fff; background: var(--up-green); box-shadow: 8px 0 18px rgba(23,33,27,.07); font-size: 12.5px; font-weight: 850; line-height: 1; white-space: nowrap; cursor: pointer; }
  .up-category-nav__catalog .up-icon { width: 19px; }
  .up-category-nav__scroller { min-width: 0; height: 46px; min-height: 46px; overflow-x: auto; overflow-y: hidden; overscroll-behavior-inline: contain; scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; cursor: grab; touch-action: pan-x; }
  .up-category-nav__scroller::-webkit-scrollbar { display: none; }
  .up-category-nav__scroller:active, .up-category-nav__scroller.is-dragging { cursor: grabbing; }
  .up-category-nav__scroller:focus-visible { outline: 2px solid var(--up-green); outline-offset: -2px; }
  .up-category-nav__track { min-width: max-content; height: 46px; min-height: 46px; display: flex; align-items: center; gap: 22px; padding: 0 22px 0 10px; }
  .up-category-nav__track > a { flex: 0 0 auto; font-size: 13px; font-weight: 700; white-space: nowrap; user-select: none; }
  .up-category-nav__track > a:hover { color: var(--up-green); }
  .up-category-nav__scroller::after { content: ''; position: sticky; right: 0; float: right; width: 28px; height: 46px; margin-left: -28px; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,0), #fff 90%); }
  .up-mobile-nav { display: none; }
  .up-hero { margin-top: 0; padding: 34px 0 62px; }
  .up-section--categories { display: none; }
  .up-hero__actions .up-button--ghost { display: none; }
  .up-hero__facts span { min-height: 96px; padding: 16px; font-size: 12px; }
  .up-hero__facts strong { font-size: 17px; }
  .up-section { padding: 72px 0; }
  .up-category-grid { grid-template-columns: repeat(5,minmax(0,1fr)); gap: 16px; }
  .up-category-card { padding: 13px; border-radius: 22px; }
  .up-category-card strong { font-size: 15px; }
  .woocommerce ul.products { grid-template-columns: repeat(5,minmax(0,1fr)); gap: 16px; }
  .woocommerce ul.products li.product { padding: 12px; border-radius: 20px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 14px !important; }
  .woocommerce ul.products li.product .price { font-size: 18px !important; }
  .up-benefits article { min-height: 280px; padding: 30px; }
  .up-benefits h2 { margin-top: 90px; font-size: 28px; }
  .up-footer { padding: 68px 0 28px; }
  .up-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

@media (min-width: 1280px) {
  .up-header__main { grid-template-columns: 220px minmax(440px,1fr) auto; }
  .up-category-grid { grid-template-columns: repeat(10,minmax(0,1fr)); }
  .up-category-card strong { font-size: 13px; }
  .up-category-card small { font-size: 10px; }
}

@media (max-width: 782px) {
  .admin-bar .up-header { top: 46px; }
}

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