/* ANIX front redesign — based on the temp/front mockup (Tailwind-like utilities) */

:root {
  --primary-text: #1a1a1a;
  --brand-accent: #2c3e26;
  --brand-orange: #e65c00;
  --brand-orange-hover: #cc5200;
  --bg-light: #fcfbf8;
  --bg-gray: #f6f4ef;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --border-gray: #e7e3db;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--primary-text);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0;
}

p { margin: 0; }

img { max-width: 100%; display: block; }

a { color: inherit; }

.ax-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.ax-hide { display: none !important; }

/* ---------- Header ---------- */
.ax-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #f3f4f6;
}
.ax-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}
.ax-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.ax-logo img { height: 52px; width: auto; object-fit: contain; }
.ax-logo-name { font-family: "Playfair Display", serif; font-weight: 700; letter-spacing: 0.05em; color: var(--primary-text); line-height: 1.1; }
.ax-logo-name b { color: var(--brand-accent); }
.ax-logo-sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); }
.ax-nav { display: flex; align-items: center; gap: 28px; }
.ax-nav a {
  font-size: 14px; font-weight: 500; color: var(--gray-600);
  text-decoration: none; transition: color .2s;
}
.ax-nav a:hover, .ax-nav a.active { color: var(--brand-accent); }
.ax-nav-right { display: flex; align-items: center; gap: 24px; }
.ax-phone { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--primary-text); text-decoration: none; }
.ax-phone svg { color: var(--brand-accent); flex-shrink: 0; }
.ax-nav-email { font-size: 14px; font-weight: 500; color: var(--brand-accent); text-decoration: none; }
.ax-nav-email:hover { color: var(--primary-text); }

/* Mobile */
.ax-burger { display: none; background: none; border: none; color: var(--gray-600); cursor: pointer; padding: 8px; }
.ax-mobile-menu { display: none; flex-direction: column; background: var(--bg-light); border-bottom: 1px solid #f3f4f6; padding: 12px 24px 20px; gap: 4px; }
.ax-mobile-menu.active { display: flex; }
.ax-mobile-menu a {
  font-size: 16px; font-weight: 500; color: var(--gray-600); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.ax-mobile-menu a:last-child { border-bottom: none; }
.ax-mobile-menu .ax-phone { padding: 12px 0; }

@media (max-width: 960px) {
  .ax-nav, .ax-nav-right { display: none; }
  .ax-burger { display: block; }
}

/* ---------- Buttons ---------- */
.ax-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-size: 15px; font-weight: 600; border-radius: 0;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background-color .2s, color .2s, border-color .2s;
  font-family: "Inter", sans-serif;
}
.ax-btn-orange { background: var(--brand-orange); color: #fff; }
.ax-btn-orange:hover { background: var(--brand-orange-hover); }
.ax-btn-outline { background: transparent; border-color: #d1d5db; color: var(--primary-text); }
.ax-btn-outline:hover { border-color: var(--brand-accent); color: var(--brand-accent); }
.ax-btn-accent { background: var(--brand-accent); color: #fff; }
.ax-btn-accent:hover { background: #1f2c1a; }
.ax-btn-white { background: #fff; color: var(--brand-accent); }
.ax-btn-white:hover { background: var(--bg-gray); }

/* ---------- Hero ---------- */
.ax-hero { background: var(--bg-light); }
.ax-hero-inner {
  display: flex; align-items: center; gap: 48px;
  padding: 60px 0 80px;
}
.ax-hero-left { width: 60%; }
.ax-hero-right { width: 40%; }
.ax-badge {
  display: inline-block; position: relative;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-accent); margin-bottom: 18px; padding: 4px 8px;
}
.ax-badge::before { content: ""; position: absolute; inset: 0; background: rgba(44,62,38,0.1); transform: skewX(-12deg); z-index: -1; }
.ax-hero h1 { font-size: 52px; line-height: 1.1; font-weight: 700; margin-bottom: 24px; }
.ax-hero p.ax-lead { font-size: 19px; line-height: 1.65; color: var(--gray-600); margin-bottom: 32px; max-width: 620px; }
.ax-hero-actions { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.ax-triggers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 28px; border-top: 1px solid #e5e7eb; }
.ax-trigger { display: flex; align-items: center; gap: 12px; }
.ax-trigger-ico {
  width: 42px; height: 42px; border-radius: 50%; background: var(--bg-gray);
  display: flex; align-items: center; justify-content: center; color: var(--brand-accent); flex-shrink: 0;
}
.ax-trigger div { font-size: 14px; font-weight: 500; color: var(--gray-700); line-height: 1.4; }
.ax-hero-img { position: relative; }
.ax-hero-img img { border-radius: 16px; box-shadow: 0 20px 50px -12px rgba(0,0,0,0.12); width: 100%; object-fit: cover; aspect-ratio: 3/4; }
.ax-hero-badge-card {
  position: absolute; bottom: -18px; left: -18px; background: #fff; padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 12px;
}
.ax-hero-badge-card .ax-trigger-ico { width: 46px; height: 46px; }
.ax-hero-badge-card div .u { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; }
.ax-hero-badge-card div .b { font-size: 14px; font-weight: 700; color: var(--primary-text); }

@media (max-width: 960px) {
  .ax-hero-inner { flex-direction: column; padding: 40px 0 60px; gap: 48px; }
  .ax-hero-left, .ax-hero-right { width: 100%; }
  .ax-hero h1 { font-size: 38px; }
  .ax-triggers { grid-template-columns: 1fr; gap: 16px; }
  .ax-hero-badge-card { left: 0; }
}

/* ---------- Sections ---------- */
.ax-section { padding: 64px 0; }
.ax-section-gray { background: var(--bg-gray); }
.ax-section-accent { background: var(--brand-accent); color: #fff; }
.ax-section-white { background: var(--bg-light); border-top: 1px solid #f3f4f6; }
.ax-section-head { margin-bottom: 32px; }
.ax-section-head.center { text-align: center; }
.ax-section-head h2 { font-size: 36px; font-weight: 700; color: var(--primary-text); margin-bottom: 14px; }
.ax-section-head p { color: var(--gray-600); max-width: 640px; line-height: 1.6; }
.ax-section-head.center p { margin: 0 auto; }
.ax-section-accent .ax-section-head h2 { color: #fff; }
.ax-section-accent .ax-section-head p { color: rgba(255,255,255,0.8); }
.ax-section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.ax-link-arrow { color: var(--brand-accent); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.ax-link-arrow:hover { color: var(--primary-text); }
.ax-link-arrow svg { transition: transform .2s; }
.ax-link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Grid / cards ---------- */
.ax-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ax-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; align-items: center; }
@media (max-width: 960px) { .ax-grid-3, .ax-grid-2 { grid-template-columns: 1fr; } }

.ax-feature { text-align: center; }
.ax-feature-ico {
  width: 64px; height: 64px; border-radius: 50%; background: var(--bg-gray);
  display: flex; align-items: center; justify-content: center; color: var(--brand-accent);
  margin: 0 auto 20px; transition: background-color .3s, color .3s;
}
.ax-feature:hover .ax-feature-ico { background: var(--brand-accent); color: #fff; }
.ax-feature h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.ax-feature p { color: var(--gray-600); line-height: 1.65; }

.ax-card {
  background: #fff; border-radius: 14px; overflow: hidden; cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06); border: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, transform .2s; display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.ax-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.12); border-color: rgba(44,62,38,0.2); }
.ax-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.ax-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.ax-card:hover .ax-card-img img { transform: scale(1.05); }
.ax-card-cat {
  position: absolute; top: 14px; left: 14px; z-index: 5;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  padding: 4px 12px; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--brand-accent); border-radius: 4px;
}
.ax-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.ax-card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; transition: color .2s; }
.ax-card:hover .ax-card-body h3 { color: var(--brand-accent); }
.ax-card-body p { color: var(--gray-600); margin-bottom: 16px; flex: 1; line-height: 1.55; }
.ax-card-more { color: var(--brand-accent); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.ax-card-more svg { transition: transform .2s; }
.ax-card:hover .ax-card-more svg { transform: translateX(3px); }

/* Features list (Logistics) */
.ax-feat-row { display: flex; gap: 16px; margin-bottom: 32px; }
.ax-feat-row:last-child { margin-bottom: 0; }
.ax-feat-row-ico {
  width: 48px; height: 48px; border-radius: 50%; background: var(--bg-gray);
  display: flex; align-items: center; justify-content: center; color: var(--brand-accent); flex-shrink: 0;
}
.ax-feat-row h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.ax-feat-row p { color: var(--gray-600); line-height: 1.6; }
.ax-img-frame { border-radius: 16px; overflow: hidden; }
.ax-img-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Certs */
.ax-certs { display: flex; flex-wrap: wrap; gap: 14px; margin: 24px 0; }
.ax-cert { border: 1px solid rgba(255,255,255,0.35); padding: 8px 16px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.ax-cert-light { border-color: var(--border-gray); background: #fff; color: var(--brand-accent); }
.ax-section-accent .ax-feat-row h3 { color: #fff; }
.ax-section-accent .ax-feat-row p { color: rgba(255,255,255,0.75); }
.ax-section-accent .ax-feat-row-ico { background: rgba(255,255,255,0.12); color: #fff; }

/* ---------- Modals ---------- */
.ax-modal-overlay {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 16px;
}
.ax-modal-overlay.open { display: flex; }
.ax-modal-backdrop { position: absolute; inset: 0; background: rgba(26,26,26,0.5); backdrop-filter: blur(3px); }
.ax-modal {
  position: relative; width: 100%; max-width: 560px; background: var(--bg-light);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2); padding: 32px; max-height: 92vh; overflow-y: auto;
}
.ax-modal-close {
  position: absolute; top: 20px; right: 20px; background: none; border: none;
  color: var(--gray-400); font-size: 22px; cursor: pointer; line-height: 1;
}
.ax-modal-close:hover { color: var(--primary-text); }
.ax-modal h2 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.ax-modal > p { color: var(--gray-600); margin-bottom: 28px; }
.ax-modal-xl { max-width: 1000px; padding: 0; overflow: hidden; }
.ax-modal-xl .ax-modal-close {
  top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.6); border: 1px solid var(--border-gray);
  display: flex; align-items: center; justify-content: center;
}
.ax-modal-grid { display: flex; }
.ax-modal-grid .ax-modal-img { width: 50%; flex-shrink: 0; }
.ax-modal-grid .ax-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.ax-modal-content { width: 50%; padding: 40px; overflow-y: auto; }
@media (max-width: 960px) {
  .ax-modal-grid { flex-direction: column; }
  .ax-modal-grid .ax-modal-img, .ax-modal-content { width: 100%; }
  .ax-modal-grid .ax-modal-img { height: 240px; }
}
.ax-modal .ax-modal-cat { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-accent); margin-bottom: 12px; }
.ax-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.ax-spec { background: var(--bg-gray); padding: 16px; border-left: 4px solid var(--brand-accent); }
.ax-spec .lbl { display: flex; align-items: center; gap: 8px; color: var(--brand-accent); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.ax-spec .val { font-size: 18px; font-weight: 700; color: var(--primary-text); line-height: 1.3; }
.ax-modal .ax-btn { width: 100%; }

/* ---------- Forms ---------- */
.ax-field { margin-bottom: 20px; }
.ax-field label { display: block; font-size: 14px; font-weight: 500; color: var(--gray-700); margin-bottom: 4px; }
.ax-input {
  width: 100%; border: none; border-bottom: 1px solid #d1d5db; padding: 8px 0;
  font-size: 15px; font-family: inherit; background: transparent; color: var(--primary-text);
  transition: border-color .2s; border-radius: 0;
}
.ax-input:focus { outline: none; border-color: var(--brand-accent); }
.ax-input-bordered { border: 1px solid #d1d5db; border-radius: 8px; padding: 10px 12px; }
.ax-input-bordered:focus { border-color: var(--brand-accent); }

/* ---------- Breadcrumbs / page head ---------- */
.ax-page-head { background: var(--bg-light); padding: 56px 0 40px; border-bottom: 1px solid #f3f4f6; }
.ax-page-head h1 { font-size: 40px; font-weight: 700; margin-bottom: 12px; }
.ax-page-head p { color: var(--gray-600); max-width: 700px; line-height: 1.6; }

/* ---------- Catalog filters ---------- */
.ax-filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.ax-filter-btn {
  padding: 10px 20px; border: 1px solid #d1d5db; background: #fff; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--gray-600); cursor: pointer; transition: all .2s;
}
.ax-filter-btn:hover { border-color: var(--brand-accent); color: var(--brand-accent); }
.ax-filter-btn.active { background: var(--brand-accent); color: #fff; border-color: var(--brand-accent); }

/* ---------- Catalog product cards ---------- */
.ax-catalog { align-items: stretch; }
.ax-prod {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06); border: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s; display: flex;
}
.ax-prod:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.12); border-color: rgba(44,62,38,0.2); }
.ax-prod-link { display: flex; flex-direction: column; width: 100%; text-decoration: none; color: inherit; }
.ax-prod-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-gray); }
.ax-prod-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .4s ease, transform .7s; }
.ax-prod-img img.hover { opacity: 0; }
.ax-prod:hover .ax-prod-img img.main { opacity: 0; }
.ax-prod:hover .ax-prod-img img.hover { opacity: 1; }
.ax-prod:hover .ax-prod-img img.main { transform: scale(1.05); }
.ax-prod-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.ax-prod-body h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; transition: color .2s; line-height: 1.3; }
.ax-prod:hover .ax-prod-body h3 { color: var(--brand-accent); }
.ax-prod-brix { display: flex; flex-wrap: wrap; gap: 6px 8px; margin-top: 12px; }
.ax-brix {
  display: inline-block; max-width: 100%; cursor: pointer;
  padding: 5px 11px; border-radius: 7px; font-size: 12px; font-weight: 700;
  text-decoration: none; overflow-wrap: anywhere;
  background: var(--bg-gray);
  border: 1px solid var(--border-gray);
  transition: transform .2s, border-color .2s;
}
.ax-brix:hover { transform: scale(1.04); border-color: currentColor; filter: brightness(0.97); }
.ax-brix-juice { color: #0369a1; border-left: 3px solid #38bdf8; }
.ax-brix-puree { color: #9a3412; border-left: 3px solid #fb923c; }

/* ---------- Articles ---------- */
.ax-articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 960px) { .ax-articles { grid-template-columns: 1fr; } }
.ax-article-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.ax-article-card img { border-radius: 14px; aspect-ratio: 16/10; object-fit: cover; margin-bottom: 16px; }
.ax-article-card h3 { font-size: 19px; margin-bottom: 8px; line-height: 1.35; }
.ax-article-card p { color: var(--gray-600); font-size: 14px; line-height: 1.6; }
.ax-article-subcat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-accent); margin-bottom: 8px; }
.ax-subcat { margin-bottom: 48px; }
.ax-subcat h2 { font-size: 26px; margin-bottom: 20px; }

.ax-article-body { max-width: 860px; margin: 0 auto; }
.ax-article-body img { border-radius: 12px; margin: 20px 0; }
.ax-article-body h2 { font-size: 26px; margin: 32px 0 14px; }
.ax-article-body h3 { font-size: 22px; margin: 26px 0 12px; }
.ax-article-body p, .ax-article-body li { line-height: 1.7; color: var(--gray-700); font-size: 16px; }
.ax-article-body table { border-collapse: collapse; width: 100%; margin: 16px 0; }
.ax-article-body td, .ax-article-body th { border: 1px solid #e5e7eb; padding: 8px 12px; font-size: 15px; }
.ax-article-body th { background: var(--bg-gray); }

/* ---------- Footer ---------- */
.ax-footer { background: #3d362c; color: #f4efe7; padding: 80px 0 40px; }
.ax-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 56px; }
@media (max-width: 960px) { .ax-footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.ax-footer .ax-logo-name { color: #f4efe7; }
.ax-footer .ax-logo-sub { color: rgba(244,239,231,0.55); }
.ax-footer p { color: rgba(244,239,231,0.6); font-size: 14px; line-height: 1.6; }
.ax-footer h4 { font-size: 17px; margin-bottom: 18px; color: #f4efe7; }
.ax-footer ul { list-style: none; margin: 0; padding: 0; }
.ax-footer li { margin-bottom: 12px; font-size: 14px; color: rgba(244,239,231,0.6); }
.ax-footer li a { color: rgba(244,239,231,0.6); text-decoration: none; }
.ax-footer li a:hover { color: #fff; }
.ax-footer li.ax-f-cont { display: flex; align-items: center; gap: 10px; }
.ax-footer li.ax-f-cont svg { color: #e8a33d; flex-shrink: 0; }
.ax-footer li.ax-f-cont a { color: inherit; }
.ax-footer-bottom { border-top: 1px solid rgba(244,239,231,0.14); padding-top: 28px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; font-size: 14px; color: rgba(244,239,231,0.45); }
.ax-footer-bottom a { color: rgba(244,239,231,0.45); text-decoration: none; }
.ax-footer-bottom a:hover { color: #fff; }
.ax-newsletter { display: flex; }
.ax-newsletter input {
  background: rgba(244,239,231,0.1); border: none; padding: 10px 14px; width: 100%;
  color: #f4efe7; font-size: 14px; font-family: inherit;
}
.ax-newsletter input::placeholder { color: rgba(244,239,231,0.4); }
.ax-newsletter button { background: #e8a33d; border: none; color: #3d362c; font-weight: 700; padding: 10px 16px; cursor: pointer; }
.ax-newsletter button:hover { background: #f2b65a; }

/* ---------- Misc ---------- */
.ax-note { color: var(--gray-500); font-size: 13px; }
.ax-tick { color: var(--brand-accent); font-weight: 700; }
.ax-muted { color: var(--gray-600); }
.ax-page-pad { padding: 64px 0; }
.ax-prose { max-width: 860px; margin: 0 auto; line-height: 1.75; color: var(--gray-700); font-size: 16px; }
.ax-prose h2 { font-size: 28px; margin: 32px 0 16px; color: var(--primary-text); }
.ax-prose h3 { font-size: 22px; margin: 26px 0 12px; color: var(--primary-text); }
.ax-prose p { margin-bottom: 16px; }
.ax-prose ul, .ax-prose ol { margin: 0 0 16px; padding-left: 22px; }
.ax-prose li { margin-bottom: 8px; }
.ax-prose table { border-collapse: collapse; width: 100%; margin: 16px 0; }
.ax-prose td, .ax-prose th { border: 1px solid #e5e7eb; padding: 10px 12px; font-size: 15px; text-align: left; vertical-align: top; }
.ax-prose th { background: var(--bg-gray); font-weight: 600; }

/* Utility page (policy etc) */
.ax-util { max-width: 900px; margin: 0 auto; }

/* ---------- Product page ---------- */
.ax-back { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-accent); font-weight: 600; text-decoration: none; font-size: 15px; }
.ax-back:hover { color: var(--primary-text); }
.ax-crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-500); flex-wrap: wrap; }
.ax-crumbs a { color: var(--gray-500); text-decoration: none; }
.ax-crumbs a:hover { color: var(--brand-accent); }
.ax-crumbs .current { color: var(--primary-text); font-weight: 600; }
.ax-prod-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-bottom: 72px; }
@media (max-width: 960px) { .ax-prod-hero { grid-template-columns: 1fr; gap: 32px; } }
.ax-prod-gallery-main { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 16px; background: var(--bg-gray); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.ax-prod-gallery-main img { transition: opacity .5s ease, transform .5s ease; }
@media (max-width: 768px) { .ax-prod-gallery-main { aspect-ratio: auto; } }
.ax-prod-info h1.ax-prod-h1 { font-size: 38px; line-height: 1.15; margin: 18px 0 16px; }
@media (max-width: 768px) { .ax-prod-info h1.ax-prod-h1 { font-size: 26px; } }
.ax-prod-desc { color: var(--gray-700); line-height: 1.7; font-size: 16px; }
.ax-prod-desc p { margin-bottom: 10px; }
.ax-prod-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0; }
@media (max-width: 480px) { .ax-prod-meta { grid-template-columns: 1fr; } }
.ax-meta-item { background: var(--bg-gray); padding: 14px 16px; border-left: 4px solid var(--brand-accent); }
.ax-meta-item .lbl { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand-accent); margin-bottom: 4px; }
.ax-meta-item .val { font-size: 16px; font-weight: 700; color: var(--primary-text); line-height: 1.3; }
.ax-prod-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ax-switcher { position: relative; display: inline-flex; background: var(--bg-gray); border: 1px solid var(--border-gray); border-radius: 999px; padding: 4px; margin-bottom: 6px; }
.ax-switcher-bg { position: absolute; top: 4px; left: 4px; width: calc(50% - 4px); height: calc(100% - 8px); background: var(--brand-accent); border-radius: 999px; transition: transform .3s ease; }
.ax-switcher-item { position: relative; width: 120px; padding: 10px 0; text-align: center; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-600); cursor: pointer; transition: color .3s; z-index: 1; }
.ax-switcher-item.active { color: #fff; }
.ax-prod-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
@media (max-width: 960px) { .ax-prod-layout { grid-template-columns: 1fr; } }
.ax-prod-block { margin-bottom: 48px; }
.ax-prod-block h2 { font-size: 26px; margin-bottom: 20px; }
.ax-ticklist { list-style: none; margin: 0; padding: 0; }
.ax-ticklist li { position: relative; padding-left: 28px; margin-bottom: 14px; color: var(--gray-700); line-height: 1.6; font-size: 16px; }
.ax-ticklist li::before { content: ""; position: absolute; left: 0; top: 10px; width: 12px; height: 12px; background: var(--brand-accent); border-radius: 50%; }
.ax-ticklist li strong { color: var(--primary-text); }
.ax-side-card { background: var(--bg-gray); border: 1px solid var(--border-gray); border-radius: 14px; padding: 24px; margin-bottom: 28px; }
.ax-side-card h3 { font-size: 19px; margin-bottom: 16px; }
.ax-spec-group-title { font-size: 13px; font-weight: 800; color: var(--brand-accent); text-transform: uppercase; letter-spacing: 1px; margin: 20px 0 12px; display: flex; align-items: center; gap: 8px; }
.ax-spec-group-title::after { content: ""; flex: 1; height: 1px; background: var(--border-gray); }
.ax-spec-group:first-child .ax-spec-group-title { margin-top: 0; }
.ax-doc-link { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border-gray); color: var(--primary-text); padding: 12px 14px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 13px; margin-bottom: 10px; transition: border-color .2s, background .2s; }
.ax-doc-link:hover { border-color: var(--brand-accent); background: #f5f7f4; }
.ax-doc-link svg { color: var(--brand-accent); flex-shrink: 0; }
.ax-side-note { padding: 16px; background: #fffbeb; border: 1px solid #fef3c7; border-radius: 8px; color: #92400e; font-size: 14px; }
.ax-side-link { color: var(--gray-700); text-decoration: none; font-size: 14px; font-weight: 600; padding: 8px 0; border-bottom: 1px solid var(--border-gray); transition: color .2s; }
.ax-side-link:hover { color: var(--brand-accent); }

/* Quick Calc widget */
.ax-qc-tabs { display: flex; border: 1px solid var(--border-gray); border-radius: 8px; overflow: hidden; margin-bottom: 16px; }
.ax-qc-tabs button { flex: 1; padding: 12px; border: none; background: var(--bg-light); font-size: 11px; font-weight: 800; color: var(--gray-600); cursor: pointer; border-bottom: 2px solid transparent; }
.ax-qc-tabs button.active { background: #f5f7f4; color: var(--brand-accent); border-bottom-color: var(--brand-accent); }
.ax-qc-label { display: block; font-size: 11px; font-weight: 800; color: var(--gray-600); text-transform: uppercase; margin-bottom: 8px; }
.ax-qc-radio { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-700); cursor: pointer; background: #fff; padding: 8px 10px; border-radius: 6px; border: 1px solid var(--border-gray); }
.ax-qc-radio input { accent-color: var(--brand-accent); }
.ax-qc-input { width: 100%; padding: 12px; border: 1px solid var(--border-gray); border-radius: 8px; font-size: 15px; font-weight: 700; font-family: inherit; box-sizing: border-box; margin-bottom: 8px; }
.ax-qc-input:focus { outline: none; border-color: var(--brand-accent); }

/* Quick Calc modal */
.ax-qc-overlay { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); align-items: center; justify-content: center; }
.ax-qc-content { position: relative; background: #fff; padding: 40px; border-radius: 16px; max-width: 400px; width: 90%; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.ax-qc-res { font-size: 48px; font-weight: 900; color: var(--brand-accent); margin: 20px 0; font-family: inherit; }
.ax-qc-close { position: absolute; top: 20px; right: 20px; font-size: 24px; cursor: pointer; color: var(--gray-400); }

/* Order modal */
.ax-order-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999999; background: rgba(26,26,26,0.6); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; }
.ax-order-box { position: relative; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; background: #fff; border-radius: 16px; padding: 32px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.ax-order-box h2 { font-size: 26px; margin-bottom: 8px; text-align: center; margin-top: 6px; }
.ax-order-box .ax-modal-close { top: 16px; right: 18px; }

/* Warehouse cards */
.ax-warehouse { padding: 30px; display: flex; flex-direction: column; gap: 14px; }
.ax-warehouse-num { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-accent); color: #fff; font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; }
.ax-warehouse h3 { font-size: 20px; font-weight: 700; line-height: 1.45; }
.ax-warehouse .ax-muted { line-height: 1.6; }

/* FAQ */
.ax-faq-item { background: #fff; border: 1px solid var(--border-gray); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.ax-faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 17px; font-weight: 600; color: var(--primary-text); text-align: left; }
.ax-faq-ico { width: 26px; height: 26px; border-radius: 50%; background: var(--bg-gray); color: var(--brand-accent); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 400; transition: transform .25s; flex-shrink: 0; }
.ax-faq-item.open .ax-faq-ico { transform: rotate(45deg); }
.ax-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.ax-faq-a p { padding: 0 24px 22px; color: var(--gray-600); line-height: 1.65; }
.ax-faq-item.open .ax-faq-a { max-height: 600px; }

/* Seasonality (product page) */
.ax-seasonality { margin-top: 20px; padding: 18px 20px; background: #fdfdfd; border: 1px dashed var(--border-gray); border-radius: 12px; }
.ax-seasonality-title { font-weight: 700; font-size: 14px; color: var(--primary-text); margin-bottom: 12px; }
.ax-seasonality-list { display: flex; flex-direction: column; gap: 10px; }
.ax-seasonality-item { display: flex; align-items: flex-start; gap: 10px; }
.ax-seasonality-dot { min-width: 12px; width: 12px; height: 12px; border-radius: 50%; margin-top: 4px; }
.ax-seasonality-dot-north { background: var(--brand-accent); }
.ax-seasonality-dot-tropics { background: var(--brand-orange); }
.ax-seasonality-region { font-size: 13px; font-weight: 700; color: var(--primary-text); }
.ax-seasonality-months { font-size: 13px; color: var(--gray-600); }

/* Why choose us (home) */
.ax-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ax-why-item { background: #fff; border: 1px solid var(--border-gray); padding: 30px; }
.ax-why-ico {
  width: 52px; height: 52px; border-radius: 50%; background: var(--bg-gray);
  display: flex; align-items: center; justify-content: center; color: var(--brand-accent); margin-bottom: 18px;
}
.ax-why-item h3 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700; color: var(--primary-text); margin-bottom: 8px; }
.ax-why-item p { color: var(--gray-600); line-height: 1.6; font-size: 15px; margin: 0; }
@media (max-width: 960px) { .ax-why { grid-template-columns: 1fr; } }

/* Product story (home) */
.ax-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.ax-story-step { display: flex; gap: 16px; align-items: flex-start; }
.ax-story-num { font-family: 'Playfair Display', serif; font-size: 42px; line-height: 1; color: var(--brand-orange); font-weight: 700; min-width: 62px; }
.ax-story-step h3 { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700; color: var(--brand-accent); margin: 0 0 6px; }
.ax-story-step p { color: var(--gray-600); line-height: 1.65; font-size: 15px; }

/* Geography (home) */
.ax-geo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.ax-geo-item { display: flex; gap: 16px; align-items: flex-start; }
.ax-geo-item h3 { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700; color: var(--brand-accent); margin: 0 0 6px; }
.ax-geo-item p { color: var(--gray-600); line-height: 1.65; font-size: 15px; }

@media (max-width: 900px) {
  .ax-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ax-geo { grid-template-columns: 1fr; }
  .ax-trust-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .ax-grid-4 { grid-template-columns: 1fr; }
  .ax-trust-inner { grid-template-columns: 1fr; }
}

/* Scroll reveal (like original Tilda fadeinup) */
.ax-reveal, .ax-reveal-left, .ax-reveal-right, .ax-reveal-zoom { transition: opacity .7s cubic-bezier(.19,1,.22,1), transform .7s cubic-bezier(.19,1,.22,1); will-change: opacity, transform; }
.js .ax-reveal, .js .ax-reveal-left, .js .ax-reveal-right, .js .ax-reveal-zoom { opacity: 0; }
.js .ax-reveal { transform: translateY(28px); }
.js .ax-reveal-left { transform: translateX(-36px); }
.js .ax-reveal-right { transform: translateX(36px); }
.js .ax-reveal-zoom { transform: scale(.94); }
.ax-reveal.ax-in, .ax-reveal-left.ax-in, .ax-reveal-right.ax-in, .ax-reveal-zoom.ax-in { opacity: 1; transform: none; }
.ax-trust-inner > :nth-child(2), .ax-grid-3 > :nth-child(2), .ax-grid-4 > :nth-child(2), .ax-geo > :nth-child(2) { transition-delay: .1s; }
.ax-trust-inner > :nth-child(3), .ax-grid-3 > :nth-child(3), .ax-grid-4 > :nth-child(3), .ax-geo > :nth-child(3) { transition-delay: .2s; }
.ax-trust-inner > :nth-child(4), .ax-grid-4 > :nth-child(4) { transition-delay: .3s; }
.ax-trust-inner > :nth-child(5) { transition-delay: .4s; }

/* Centered hero (lab-style) with entrance animation */
.ax-hero-centered { text-align: center; padding: 70px 20px 56px; }
.ax-page-head .ax-hero-title { font-size: 52px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; max-width: 900px; margin: 0 auto 14px; }
.ax-page-head .ax-hero-sub { font-size: 18px; color: var(--gray-600); max-width: 680px; margin: 0 auto; line-height: 1.6; }
.ax-hero-centered .ax-hero-title, .ax-hero-centered .ax-hero-sub, .ax-hero-centered .ax-badge { opacity: 0; animation: axFadeUp 1.1s cubic-bezier(.19,1,.22,1) forwards; }
.ax-hero-centered .ax-badge { animation-delay: .1s; }
.ax-hero-centered .ax-hero-title { animation-delay: .2s; }
.ax-hero-centered .ax-hero-sub { animation-delay: .35s; }
@keyframes axFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

.ax-hero-left > .ax-reveal:nth-child(1) { transition-delay: .05s; }
.ax-hero-left > .ax-reveal:nth-child(2) { transition-delay: .15s; }
.ax-hero-left > .ax-reveal:nth-child(3) { transition-delay: .25s; }
.ax-hero-left > .ax-reveal:nth-child(4) { transition-delay: .35s; }
.ax-hero-left > .ax-reveal:nth-child(5) { transition-delay: .45s; }
.ax-grid-2 > .ax-reveal:nth-child(2) { transition-delay: .15s; }