/* cmsms stylesheet: Design modified: 03/26/26 23:16:04 */
/* =========================================================
   ACIG LOG
   BASE / TOKENS
========================================================= */
:root {
  --acig-green: #005c2e;
  --acig-green-2: #0a7a43;
  --acig-green-soft: #e6f4ec;
  --acig-yellow: #f7e300;
  --acig-yellow-soft: #fff9c8;
  --acig-ink: #102117;
  --acig-text: #23352b;
  --acig-muted: #667a6f;
  --acig-line: #d8e5dc;
  --acig-white: #ffffff;
  --acig-bg: #f7faf7;
  --acig-bg-2: #f1f7f2;
  --acig-card: rgba(255,255,255,.82);
  --acig-card-strong: rgba(255,255,255,.88);
  --acig-border: rgba(0,92,46,.08);
  --acig-border-strong: rgba(0,92,46,.16);
  --acig-shadow: 0 22px 60px rgba(0, 61, 28, .10);
  --acig-shadow-soft: 0 14px 30px rgba(0, 61, 28, .07);
  --acig-shadow-hover: 0 26px 50px rgba(0,61,28,.12);
  --acig-radius: 26px;
  --acig-radius-lg: 30px;
  --acig-radius-xl: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--acig-bg);
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--acig-text);
  background:
    radial-gradient(circle at top left, rgba(247, 227, 0, .12), transparent 22%),
    radial-gradient(circle at top right, rgba(0, 92, 46, .08), transparent 28%),
    linear-gradient(180deg, #fbfdfb 0%, #f5faf6 45%, #f1f7f2 100%);
}

a {
  text-decoration: none;
}

.acig-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 22px;
}

.acig-section {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
}

.uk-border-rounded{
  border-radius: var(--acig-radius-lg);
}

/* =========================================================
   TYPOGRAPHY / COMMON UI
========================================================= */
.acig-badge,
.acig-template-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--acig-border);
  color: var(--acig-green);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: var(--acig-shadow-soft);
}

.acig-heading {
  margin: 18px 0 22px;
  font-size: clamp(2.4rem, 4.4vw, 5.3rem);
  line-height: .94;
  letter-spacing: -.06em;
  font-weight: 900;
  color: var(--acig-ink);
}

.acig-heading .accent,
.acig-logistics-copy .section-title span {
  display: block;
  background: linear-gradient(90deg, var(--acig-green) 0%, #2c8f58 52%, #7a8e12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.acig-lead,
.section-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--acig-muted);
  max-width: 720px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--acig-green);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .82rem;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  color: var(--acig-ink);
  font-weight: 900;
}

.acig-block-title {
  margin: 0 0 14px;
  color: var(--acig-ink);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.mini-label {
  display: block;
  margin-bottom: 8px;
  color: #6a7d72;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.mini-title {
  margin: 0;
  color: var(--acig-ink);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 800;
}

.mini-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #4e6658;
  font-size: .9rem;
}

.acig-separator {
  height: 1px;
  background: var(--acig-border);
  margin: 22px 0;
}

/* =========================================================
   BUTTONS
========================================================= */
.acig-btn-primary,
.acig-btn-secondary,
.acig-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 16px;
  font-size: .96rem;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: .28s ease;
  border: 0;
}

.acig-btn-primary {
  background: linear-gradient(135deg, var(--acig-green), #198b50);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0,92,46,.18);
}

.acig-btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 22px 44px rgba(0,92,46,.22);
}

.acig-btn-secondary {
  background: var(--acig-yellow);
  color: #243014;
  box-shadow: 0 14px 30px rgba(247,227,0,.24);
}

.acig-btn-secondary:hover {
  transform: translateY(-2px);
  color: #243014;
}

.acig-btn-outline {
  background: rgba(255,255,255,.72);
  color: var(--acig-green);
  border: 1px solid rgba(0,92,46,.10);
  box-shadow: var(--acig-shadow-soft);
}

.acig-btn-outline:hover {
  transform: translateY(-2px);
  color: var(--acig-green);
  background: #fff;
}

/* =========================================================
   CARDS / COMMON COMPONENTS
========================================================= */
.acig-surface,
.glass-card,
.feature-card,
.category-card,
.product-card,
.shop-card,
.city-card,
.insight-card,
.seller-card,
.route-card,
.map-card,
.cta-panel,
.number-card,
.footer-card,
.hero-float,
.hero-float-sm,
.acig-card,
.acig-panel,
.acig-stat,
.acig-side-card,
.acig-product-card,
.acig-product-summary,
.acig-logistics-box,
.acig-home-product-card,
.acig-logistics-step,
.acig-logistics-highlight {
  background: var(--acig-card);
  border: 1px solid var(--acig-border);
  box-shadow: var(--acig-shadow);
  backdrop-filter: blur(16px);
}

.feature-card,
.category-card,
.product-card,
.shop-card,
.city-card,
.insight-card,
.seller-card,
.route-card,
.map-card,
.acig-product-card,
.acig-home-product-card,
.acig-logistics-step,
.acig-related-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.feature-card:hover,
.category-card:hover,
.product-card:hover,
.shop-card:hover,
.city-card:hover,
.insight-card:hover,
.seller-card:hover,
.acig-product-card:hover,
.acig-home-product-card:hover,
.acig-logistics-step:hover,
.acig-related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--acig-shadow-hover);
  border-color: var(--acig-border-strong);
}

.acig-chip-list,
.acig-tag-list,
.acig-feature-list,
.acig-product-badges,
.acig-meta-row,
.shop-meta,
.acig-route-days,
.acig-logistics-badges,
.products-filter,
.acig-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.acig-chip,
.acig-tag,
.acig-feature-list span,
.acig-product-badges span,
.acig-meta-row span,
.shop-meta span,
.city-tag,
.acig-route-days span,
.acig-logistics-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--acig-border);
  color: #395647;
  font-size: .84rem;
  font-weight: 700;
  box-shadow: var(--acig-shadow-soft);
}

/* =========================================================
   HEADER / NAVIGATION
========================================================= */
.acig-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--acig-border);
}

.acig-navbar {
  padding: 14px 0;
}

.acig-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--acig-ink);
  font-weight: 900;
  letter-spacing: -.03em;
}

.acig-brand-mark,
.acig-offcanvas-brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--acig-green), #1a8c52);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 14px 32px rgba(0,92,46,.22);
}

.acig-brand-mark {
  position: relative;
  overflow: hidden;
}

.acig-brand-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.22), transparent 55%);
  pointer-events: none;
}

.acig-brand small {
  display: block;
  color: var(--acig-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.acig-nav-links a {
  color: #355145;
  font-weight: 700;
  font-size: .95rem;
  transition: .25s ease;
}

.acig-nav-links a:hover {
  color: var(--acig-green);
}

/* =========================================================
   OFFCANVAS / MOBILE MENU
========================================================= */
.acig-offcanvas-bar.uk-offcanvas-bar {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,250,246,.98));
  color: var(--acig-text);
  padding: 24px 22px 28px;
  width: 320px;
  box-shadow: -18px 0 40px rgba(0,61,28,.12);
}

.acig-offcanvas-close.uk-offcanvas-close {
  color: var(--acig-green);
  top: 18px;
  right: 18px;
}

.acig-offcanvas-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 36px;
}

.acig-offcanvas-brand h3 {
  margin: 0 0 4px;
  color: var(--acig-ink);
  font-size: 1.15rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.03em;
}

.acig-offcanvas-brand p {
  margin: 0;
  color: var(--acig-muted);
  font-size: .82rem;
  line-height: 1.45;
}

.acig-offcanvas-nav {
  margin-top: 28px !important;
}

.acig-offcanvas-link {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px !important;
  border-radius: 14px;
  color: #355145 !important;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.4;
  transition: .25s ease;
  text-transform: none;
}

.acig-offcanvas-link:hover,
.acig-offcanvas-nav > li.uk-active > .acig-offcanvas-link,
.acig-offcanvas-subnav > li.uk-active > .acig-offcanvas-link,
.acig-offcanvas-nav > li > .acig-offcanvas-link.uk-active,
.acig-offcanvas-subnav > li > .acig-offcanvas-link.uk-active {
  background: rgba(0,92,46,.06);
  color: var(--acig-green) !important;
}

.acig-offcanvas-nav > li.uk-parent > .acig-offcanvas-link,
.acig-offcanvas-subnav > li.uk-parent > .acig-offcanvas-link {
  font-weight: 800;
}

.acig-offcanvas-subnav {
  margin-top: 6px;
  padding-left: 14px;
}

.acig-offcanvas-subnav .acig-offcanvas-link {
  font-size: .92rem;
  padding: 11px 12px !important;
  color: #4c6759 !important;
}

.acig-offcanvas-bar .uk-nav-divider {
  margin: 8px 0;
  border-top-color: var(--acig-border);
}

.acig-offcanvas-footer {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--acig-border);
}

.acig-offcanvas-cta {
  width: 100%;
}

.acig-offcanvas-nav.uk-nav-parent-icon > li.uk-parent > a::after {
  margin-left: auto;
  opacity: .7;
}

.acig-offcanvas-nav.uk-nav-parent-icon > li.uk-open > a::after {
  opacity: 1;
}

/* =========================================================
   HOME / HERO
========================================================= */
.hero {
  padding-top: 42px;
  padding-bottom: 70px;
}

.hero-stats,
.hero-category-grid,
.products-toolbar,
.products-filter {
  gap: 16px;
}

.hero-stats {
  margin-top: 34px;
  max-width: 760px;
}

.stat-card {
  padding: 22px 20px 18px;
  border-radius: 22px;
}

.stat-card strong,
.acig-stat strong,
.number-card strong {
  display: block;
  color: var(--acig-ink);
  font-weight: 900;
  letter-spacing: -.04em;
}

.stat-card strong {
  font-size: 1.65rem;
}

.stat-card span,
.acig-stat span,
.number-card span {
  display: block;
  margin-top: 6px;
  color: var(--acig-muted);
}

.hero-visual {
  position: relative;
  min-height: 690px;
  border-radius: 36px;
  overflow: hidden;
  background: #e8f2eb;
  border: 1px solid rgba(0,92,46,.10);
  box-shadow: 0 30px 70px rgba(0,61,28,.14);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .95;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.18) 35%, rgba(247,250,247,.68) 100%),
    linear-gradient(135deg, rgba(0,92,46,.06), rgba(247,227,0,.09));
  pointer-events: none;
}

.hero-float,
.hero-float-sm {
  position: absolute;
  z-index: 2;
  border-radius: 24px;
}

.hero-float {
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px;
}

.hero-float-sm {
  padding: 16px 18px;
  width: 230px;
}

.hero-float-top-left {
  top: 22px;
  left: 22px;
}

.hero-float-top-right {
  top: 22px;
  right: 22px;
}

.route-points {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acig-green), #1c8f51);
  box-shadow: 0 0 0 6px rgba(0,92,46,.10);
}

.route-line {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, rgba(0,92,46,.75), rgba(247,227,0,.95));
}

.hero-chip {
  padding: 14px;
  border-radius: 18px;
  background: rgba(245,250,246,.95);
  border: 1px solid rgba(0,92,46,.07);
}

.hero-chip strong {
  display: block;
  color: var(--acig-ink);
  font-weight: 800;
  margin-bottom: 6px;
  font-size: .92rem;
}

.hero-chip span {
  display: block;
  color: var(--acig-muted);
  font-size: .82rem;
  line-height: 1.45;
}

/* =========================================================
   HOME / FEATURE BLOCKS
========================================================= */
.feature-card,
.category-card,
.shop-card,
.seller-card,
.insight-card,
.route-card,
.map-card {
  border-radius: 28px;
  overflow: hidden;
}

.feature-card,
.acig-logistics-step,
.acig-logistics-highlight,
.category-card,
.shop-card,
.seller-card,
.insight-card,
.route-card,
.map-card,
.cta-panel,
.acig-panel,
.acig-store-intro,
.acig-product-summary {
  padding: 30px;
}

.feature-icon,
.category-icon,
.seller-icon,
.route-step-icon,
.acig-logistics-step-icon,
.acig-logistics-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--acig-green);
  border: 1px solid var(--acig-border);
  background: linear-gradient(135deg, rgba(0,92,46,.10), rgba(247,227,0,.32));
}

.feature-icon,
.category-icon,
.seller-icon,
.route-step-icon,
.acig-logistics-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  font-size: 28px;
}

.acig-logistics-highlight-icon {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  font-size: 30px;
}

.feature-card h3,
.category-card h3,
.shop-card h3,
.seller-card h3,
.insight-card h3,
.acig-logistics-step h3,
.acig-logistics-highlight h3,
.acig-side-card h3,
.acig-product-card h3,
.acig-store-mini h4,
.route-step h4,
.city-card h4 {
  margin: 0 0 12px;
  color: var(--acig-ink);
  font-weight: 800;
  letter-spacing: -.02em;
}

.feature-card h3,
.category-card h3,
.shop-card h3,
.seller-card h3,
.insight-card h3 {
  font-size: 1.22rem;
}

.feature-card p,
.category-card p,
.shop-card p,
.seller-card p,
.insight-card p,
.city-card p,
.acig-logistics-step p,
.acig-logistics-highlight p,
.acig-panel p,
.acig-side-card p,
.acig-product-summary p,
.acig-product-card p {
  margin: 0;
  color: var(--acig-muted);
  line-height: 1.72;
}

.category-card {
  position: relative;
  height: 100%;
}

.category-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--acig-yellow-soft);
  color: #5a5a11;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: 1px solid rgba(117,104,0,.08);
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.products-filter a {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: #466353;
  border: 1px solid var(--acig-border);
  font-size: .9rem;
  font-weight: 700;
  box-shadow: var(--acig-shadow-soft);
}

.products-filter a.active,
.products-filter a:hover {
  background: linear-gradient(135deg, var(--acig-green), #198b50);
  color: #fff;
  border-color: transparent;
}

.product-card,
.acig-product-card,
.acig-related-card,
.acig-home-product-card {
  height: 100%;
}

.product-image-wrap,
.acig-home-product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image-wrap img,
.acig-home-product-image img,
.acig-product-card img,
.acig-related-card img,
.shop-logo img,
.acig-store-banner img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.product-image-wrap img,
.acig-home-product-image img {
  height: 100%;
  transition: transform .45s ease;
}

.product-card:hover .product-image-wrap img,
.acig-home-product-card:hover .acig-home-product-image img {
  transform: scale(1.06);
}

.product-image-wrap::after,
.acig-home-product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-image-wrap::after {
  background: linear-gradient(180deg, rgba(255,255,255,0) 35%, rgba(255,255,255,.22) 100%);
}

.acig-home-product-image::after {
  background: linear-gradient(180deg, rgba(255,255,255,0) 40%, rgba(255,255,255,.20) 100%);
}

.product-badge,
.product-store,
.acig-home-product-badge,
.acig-home-product-store {
  position: absolute;
  z-index: 3;
  left: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--acig-border);
  box-shadow: var(--acig-shadow-soft);
}

.product-badge,
.product-store {
  left: 16px;
  padding: 8px 12px;
}

.acig-home-product-badge,
.acig-home-product-store {
  padding: 8px 11px;
}

.product-badge,
.acig-home-product-badge {
  top: 14px;
  color: var(--acig-green);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-store,
.acig-home-product-store {
  bottom: 14px;
  color: #395647;
  font-size: .8rem;
  font-weight: 700;
}

.product-body,
.acig-product-body,
.acig-home-product-body {
  padding: 22px;
}

.acig-home-product-body {
  padding: 20px;
}

.product-title,
.acig-home-product-body h3,
.acig-related-body h4 {
  margin: 0 0 10px;
  color: var(--acig-ink);
  font-weight: 800;
  letter-spacing: -.02em;
}

.product-title {
  font-size: 1.14rem;
}

.acig-home-product-body h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.product-desc,
.acig-home-product-body p,
.acig-related-body p {
  margin: 0 0 16px;
  color: var(--acig-muted);
  line-height: 1.65;
}

.product-desc {
  min-height: 54px;
  font-size: .94rem;
}

.acig-home-product-body p {
  min-height: 46px;
  font-size: .92rem;
}

.product-actions,
.acig-home-product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fake-price,
.acig-home-product-foot strong,
.acig-product-price {
  color: var(--acig-ink);
  font-size: 1rem;
  font-weight: 900;
}

.fake-price small,
.acig-product-price-big small {
  display: block;
  margin-top: 4px;
  color: var(--acig-muted);
  font-weight: 600;
}

.shop-card {
  height: 100%;
}

.shop-head,
.acig-store-id {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.shop-logo,
.acig-store-logo,
.acig-store-mini-logo {
  flex-shrink: 0;
  border: 1px solid var(--acig-border);
  background: linear-gradient(135deg, rgba(0,92,46,.12), rgba(247,227,0,.42));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acig-green);
  font-weight: 900;
}

.shop-logo {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  font-size: 1.4rem;
}

.acig-store-logo {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  font-size: 1.7rem;
}

.acig-store-mini-logo {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  font-size: 1.4rem;
}

/* =========================================================
   HOME / LOGISTICS SECTION
========================================================= */
.logistics-wrap,
.acig-logistics-hero,
.acig-logistics-strip {
  gap: 28px;
}

.route-card,
.map-card,
.acig-logistics-box {
  position: relative;
  overflow: hidden;
}

.route-card,
.map-card {
  padding: 32px;
}

.route-step,
.acig-logistics-highlight {
  gap: 18px;
  align-items: start;
}

.route-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  margin-top: 22px;
}

.fake-map,
.acig-route-map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--acig-border);
  background:
    linear-gradient(rgba(0,92,46,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,92,46,.05) 1px, transparent 1px),
    linear-gradient(180deg, #fbfefb, #f0f7f2);
  background-size: 40px 40px, 40px 40px, auto;
}

.fake-map {
  min-height: 430px;
  margin-top: 18px;
}

.acig-route-map {
  min-height: 390px;
  background-size: 42px 42px, 42px 42px, auto;
}

.map-line,
.acig-map-line {
  position: absolute;
  transform-origin: left center;
  z-index: 1;
  opacity: .95;
  background: linear-gradient(90deg, rgba(0,92,46,.92), rgba(247,227,0,.95));
}

.map-line {
  height: 2px;
}

.acig-map-line {
  height: 3px;
  border-radius: 999px;
}

.map-point,
.acig-map-core,
.acig-map-city {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.acig-map-core,
.acig-map-city {
  z-index: 3;
}

.map-pin,
.acig-map-pin {
  border-radius: 50%;
  display: block;
  margin: 0 auto 8px;
  border: 2px solid rgba(255,255,255,.92);
  background: linear-gradient(135deg, var(--acig-green), #1d9152);
}

.map-pin {
  width: 18px;
  height: 18px;
  box-shadow: 0 0 0 8px rgba(0,92,46,.08);
}

.acig-map-pin {
  width: 18px;
  height: 18px;
  box-shadow: 0 0 0 8px rgba(0,92,46,.08);
}

.acig-map-pin-core {
  width: 22px;
  height: 22px;
  box-shadow: 0 0 0 11px rgba(247,227,0,.22);
}

.map-point strong,
.acig-map-core strong,
.acig-map-city strong {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--acig-border);
  color: var(--acig-ink);
  font-size: .82rem;
  font-weight: 800;
  box-shadow: var(--acig-shadow-soft);
  white-space: nowrap;
}

.city-card {
  padding: 18px;
  height: 100%;
}

.city-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.city-status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acig-green), #1d9152);
  box-shadow: 0 0 0 7px rgba(0,92,46,.08);
}

.cta-panel {
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(247,227,0,.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(0,92,46,.10), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(246,251,247,.88));
}

.cta-panel::after {
  content: '';
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,227,0,.18), transparent 68%);
  pointer-events: none;
}

.number-card {
  padding: 24px;
  border-radius: 22px;
  text-align: center;
  background: rgba(255,255,255,.8);
}

.number-card strong {
  font-size: 2rem;
}

.number-card span {
  font-size: .92rem;
}

/* =========================================================
   HOME / PRODUCTS GRID
========================================================= */
.acig-home-products {
  padding-top: 34px;
}

.acig-home-products-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.acig-home-products-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acig-home-product-link {
  color: var(--acig-green);
  font-size: .9rem;
  font-weight: 800;
}

.acig-home-product-link:hover {
  color: var(--acig-green-2);
}

/* =========================================================
   PÁGINA DA LOJA
========================================================= */
.acig-store-banner,
.acig-store-banner-card {
  position: relative;
  min-height: 520px;
  border-radius: var(--acig-radius-xl);
  overflow: hidden;
  border: 1px solid var(--acig-border);
  box-shadow: 0 30px 70px rgba(0,61,28,.14);
  background: #e8f2eb;
}

.acig-store-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.16) 36%, rgba(247,250,247,.88) 100%),
    linear-gradient(135deg, rgba(0,92,46,.06), rgba(247,227,0,.10));
  pointer-events: none;
}

.acig-store-floating {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--acig-border);
  box-shadow: var(--acig-shadow);
  backdrop-filter: blur(16px);
}

.acig-store-id h1,
.acig-product-summary h1 {
  margin: 0 0 8px;
  color: var(--acig-ink);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: .96;
  letter-spacing: -.05em;
  font-weight: 900;
}

.acig-store-intro,
.acig-side-card {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.acig-store-intro::before,
.acig-side-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(247,227,0,.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(0,92,46,.08), transparent 24%);
  pointer-events: none;
}

.acig-store-copy,
.acig-side-card > * {
  position: relative;
  z-index: 2;
}

.acig-store-copy p {
  margin: 0 0 24px;
  color: var(--acig-muted);
  line-height: 1.82;
  font-size: 1rem;
}

.acig-stats-grid,
.acig-route-mini {
  gap: 16px;
}

.acig-stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
}

.acig-side-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.acig-side-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--acig-border);
  color: #3c5a4b;
  font-size: .95rem;
}

.acig-side-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.acig-side-list strong {
  color: var(--acig-ink);
  font-weight: 800;
}

.acig-logistics-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(247,227,0,.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(0,92,46,.08), transparent 24%);
  pointer-events: none;
}

.acig-logistics-box > * {
  position: relative;
  z-index: 2;
}

.acig-route-mini div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,92,46,.07);
  text-align: center;
  box-shadow: var(--acig-shadow-soft);
}

.acig-route-mini strong {
  display: block;
  color: var(--acig-ink);
  font-size: .96rem;
  font-weight: 800;
}

.acig-route-mini span {
  display: block;
  margin-top: 6px;
  color: var(--acig-muted);
  font-size: .8rem;
  line-height: 1.35;
}

/* =========================================================
   PÁGINA DO PRODUTO
========================================================= */
.acig-product-summary {
  border-radius: var(--acig-radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(245,250,246,.88));
  position: sticky;
  top: 110px;
}

.acig-product-price-big {
  margin: 0 0 14px;
  color: var(--acig-ink);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -.05em;
}

.acig-product-price-big small {
  font-size: .86rem;
  letter-spacing: 0;
}

.acig-store-mini {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--acig-border);
  box-shadow: var(--acig-shadow-soft);
}

.acig-related-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--acig-border);
  box-shadow: var(--acig-shadow);
}

.acig-related-card img {
  height: 210px;
}

.acig-related-body {
  padding: 18px;
}

/* =========================================================
   GALERIA DO PRODUTO
========================================================= */
.acig-product-gallery {
  width: 100%;
}

.acig-gallery-slideshow {
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: var(--acig-radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--acig-border);
  box-shadow: var(--acig-shadow);
}

.acig-gallery-slideshow li,
.acig-gallery-main-image {
  border-radius: var(--acig-radius-lg);
  overflow: hidden;
}

.acig-gallery-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--acig-border);
  color: var(--acig-green);
  box-shadow: var(--acig-shadow-soft);
  backdrop-filter: blur(8px);
  transition: .25s ease;
}

.acig-gallery-arrow:hover {
  background: #fff;
  color: var(--acig-green);
  transform: scale(1.05);
}

.acig-thumbs {
  gap: 14px;
}

.acig-thumbs > * {
  padding-left: 0 !important;
}

.acig-thumbs li {
  margin-top: 0 !important;
}

.acig-thumbs li a {
  display: block;
  border-radius: 20px;
}

.acig-gallery-thumb {
  position: relative;
  width: 92px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--acig-border);
  box-shadow: var(--acig-shadow-soft);
  transition: .25s ease;
}

.acig-gallery-thumb:hover {
  transform: translateY(-2px);
  border-color: var(--acig-border-strong);
  box-shadow: 0 18px 34px rgba(0,61,28,.10);
}

.acig-thumbs .uk-active .acig-gallery-thumb {
  border-color: rgba(0,92,46,.24);
  box-shadow: 0 0 0 2px rgba(0,92,46,.08), 0 18px 34px rgba(0,61,28,.10);
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  padding: 34px 0 52px;
  border-top: 1px solid rgba(0,92,46,.07);
}

.footer-card {
  padding: 26px;
  border-radius: 24px;
}

.footer-links a {
  color: #345246;
  font-weight: 700;
  margin-right: 18px;
}

.footer-links a:hover {
  color: var(--acig-green);
}

.uk-dotnav > * > * {
  width: 10px;
  height: 10px;
  border: 0;
  background: rgba(0,92,46,.18);
}

.uk-dotnav > .uk-active > * {
  background: linear-gradient(135deg, var(--acig-green), #2d8d58);
}

/* =========================================================
   RESPONSIVO
========================================================= */
@media (max-width: 1199px) {
  .hero-visual {
    min-height: 580px;
  }

  .acig-product-summary {
    position: static;
  }
}

@media (max-width: 959px) {
  .acig-section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 30px;
  }

  .products-toolbar {
    align-items: flex-start;
  }

  .hero-float-sm {
    width: calc(100% - 44px);
    left: 22px !important;
    right: 22px !important;
  }

  .hero-float-top-right {
    top: 126px;
  }
}

@media (max-width: 767px) {
  .acig-section {
    padding: 70px 0;
  }

  .acig-route-top,
  .acig-store-id {
    flex-direction: column;
    align-items: flex-start;
  }

  .acig-route-footer,
  .acig-logistics-highlight {
    grid-template-columns: 1fr;
  }

  .acig-route-map {
    min-height: 320px;
  }
}

@media (max-width: 639px) {
  .acig-container {
    padding: 0 16px;
  }

  .acig-heading {
    font-size: 2.5rem;
    line-height: 1;
  }

  .hero-visual {
    min-height: 620px;
    border-radius: 28px;
  }

  .feature-card,
  .category-card,
  .product-card,
  .shop-card,
  .route-card,
  .map-card,
  .seller-card,
  .insight-card,
  .cta-panel,
  .acig-product-summary {
    border-radius: 22px;
  }

  .product-actions,
  .acig-home-product-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .products-filter a {
    width: calc(50% - 5px);
    text-align: center;
  }

  .acig-gallery-thumb {
    width: 74px;
  }

  .acig-gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .acig-store-banner {
    min-height: 420px;
  }

  .acig-store-logo {
    width: 74px;
    height: 74px;
  }
}

.acig-route-card {
	  border-radius: 34px;
	  background:
	    linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,250,245,.92));
	  border: 1px solid rgba(0,92,46,.08);
	  box-shadow: 0 30px 70px rgba(0,61,28,.14);
	  overflow: hidden;
	  position: relative;
	}

	.acig-route-card::before {
	  content: '';
	  position: absolute;
	  inset: 0;
	  background:
	    radial-gradient(circle at top left, rgba(247,227,0,.14), transparent 22%),
	    radial-gradient(circle at bottom right, rgba(0,92,46,.08), transparent 28%);
	  pointer-events: none;
	}

	.acig-route-main {
	  padding: 26px;
	}

	.acig-route-top {
	  display: flex;
	  justify-content: space-between;
	  align-items: flex-start;
	  gap: 20px;
	  margin-bottom: 24px;
	  position: relative;
	  z-index: 2;
	}

	.acig-route-top h3 {
	  margin: 4px 0 0;
	  color: var(--acig-ink);
	  font-size: 1.4rem;
	  line-height: 1.15;
	  letter-spacing: -.03em;
	  font-weight: 900;
	}

	.acig-route-status {
	  display: inline-flex;
	  align-items: center;
	  gap: 8px;
	  padding: 10px 14px;
	  border-radius: 999px;
	  background: rgba(255,255,255,.88);
	  border: 1px solid rgba(0,92,46,.08);
	  color: var(--acig-green);
	  font-size: .84rem;
	  font-weight: 800;
	  white-space: nowrap;
	  box-shadow: var(--acig-shadow-soft);
	}

	.acig-route-map {
	  position: relative;
	  min-height: 390px;
	  border-radius: 28px;
	  overflow: hidden;
	  border: 1px solid rgba(0,92,46,.08);
	  background:
	    linear-gradient(rgba(0,92,46,.05) 1px, transparent 1px),
	    linear-gradient(90deg, rgba(0,92,46,.05) 1px, transparent 1px),
	    linear-gradient(180deg, #fbfefb, #eff7f1);
	  background-size: 42px 42px, 42px 42px, auto;
	  position: relative;
	  z-index: 2;
	}

	.acig-map-core,
	.acig-map-city {
	  position: absolute;
	  transform: translate(-50%, -50%);
	  text-align: center;
	  z-index: 3;
	}

	.acig-map-core {
	  left: 50%;
	  top: 48%;
	}

	.acig-city-1 {
	  left: 78%;
	  top: 36%;
	}

	.acig-city-2 {
	  left: 76%;
	  top: 62%;
	}

	.acig-city-3 {
	  left: 54%;
	  top: 78%;
	}

	.acig-city-4 {
	  left: 26%;
	  top: 60%;
	}

	.acig-map-pin {
	  width: 18px;
	  height: 18px;
	  border-radius: 50%;
	  display: block;
	  margin: 0 auto 8px;
	  background: linear-gradient(135deg, var(--acig-green), #198b50);
	  border: 2px solid rgba(255,255,255,.92);
	  box-shadow: 0 0 0 8px rgba(0,92,46,.08);
	}

	.acig-map-pin-core {
	  width: 22px;
	  height: 22px;
	  box-shadow: 0 0 0 11px rgba(247,227,0,.22);
	}

	.acig-map-core strong,
	.acig-map-city strong {
	  display: inline-block;
	  padding: 8px 12px;
	  border-radius: 999px;
	  background: rgba(255,255,255,.95);
	  border: 1px solid rgba(0,92,46,.08);
	  color: var(--acig-ink);
	  font-size: .82rem;
	  font-weight: 800;
	  box-shadow: var(--acig-shadow-soft);
	}

	.acig-map-line {
	  position: absolute;
	  height: 3px;
	  border-radius: 999px;
	  transform-origin: left center;
	  background: linear-gradient(90deg, rgba(0,92,46,.92), rgba(247,227,0,.95));
	  z-index: 1;
	  opacity: .95;
	}

	.acig-line-1 {
	  left: 50%;
	  top: 48%;
	  width: 145px;
	  transform: rotate(-16deg);
	}

	.acig-line-2 {
	  left: 50%;
	  top: 48%;
	  width: 145px;
	  transform: rotate(18deg);
	}

	.acig-line-3 {
	  left: 50%;
	  top: 48%;
	  width: 118px;
	  transform: rotate(84deg);
	}

	.acig-line-4 {
	  left: 50%;
	  top: 48%;
	  width: 150px;
	  transform: rotate(150deg);
	}

	.acig-route-footer {
	  display: grid;
	  grid-template-columns: repeat(3, 1fr);
	  gap: 14px;
	  margin-top: 18px;
	  position: relative;
	  z-index: 2;
	}
