:root {
    --aogfc-brand-primary: #075b20;
    --aogfc-brand-accent: #ff6900;
    --aogfc-blue: var(--aogfc-brand-primary);
    --aogfc-blue-dark: color-mix(in srgb, var(--aogfc-brand-primary) 82%, #000);
    --aogfc-blue-deep: color-mix(in srgb, var(--aogfc-brand-primary) 68%, #000);
    --aogfc-blue-soft: color-mix(in srgb, var(--aogfc-brand-primary) 9%, #fff);
    --aogfc-red: var(--aogfc-brand-accent);
    --aogfc-red-dark: color-mix(in srgb, var(--aogfc-brand-accent) 84%, #000);
    --aogfc-red-soft: color-mix(in srgb, var(--aogfc-brand-accent) 8%, #fff);
    --aogfc-green: var(--aogfc-brand-primary);
    --aogfc-green-dark: color-mix(in srgb, var(--aogfc-brand-primary) 82%, #000);
    --aogfc-green-soft: color-mix(in srgb, var(--aogfc-brand-primary) 9%, #fff);
    --aogfc-leaf: var(--aogfc-brand-accent);
    --aogfc-leaf-dark: color-mix(in srgb, var(--aogfc-brand-accent) 84%, #000);
    --aogfc-leaf-soft: color-mix(in srgb, var(--aogfc-brand-accent) 8%, #fff);
    --aogfc-text: #17221b;
    --aogfc-muted: #617067;
    --aogfc-border: #d8e4db;
    --aogfc-container: 1350px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--aogfc-text);
    font-family: "Be Vietnam Pro", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 16px;
    line-height: 1.55;
    background: #fff;
}
a { color: inherit; text-decoration: none; transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; height: auto; display: block; }
.aogfc-container { width: min(var(--aogfc-container), calc(100% - 48px)); margin-inline: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.aogfc-site-header { position: sticky; top: 0; z-index: 90; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.14); }
.aogfc-header-top { background: var(--aogfc-green-soft); color: var(--aogfc-green-dark); }
.aogfc-header-top__inner { height: 101px; display: grid; grid-template-columns: 410px 385px 1fr auto; align-items: center; gap: 42px; }
.aogfc-logo img { width: 218px; max-height: 78px; object-fit: contain; }
@media (min-width: 1025px) {
    .aogfc-logo img { transform: scale(1.2); transform-origin: left center; }
}
.aogfc-search { display: flex; align-items: center; width: 100%; }
.aogfc-search input { width: 100%; height: 40px; border: 2px solid #fff; border-right: 0; border-radius: 22px 0 0 22px; padding: 0 16px; outline: 0; font-size: 15px; }
.aogfc-search button { height: 40px; border: 2px solid #fff; border-left: 0; background: var(--aogfc-green); color: #fff; min-width: 48px; border-radius: 0 22px 22px 0; display: grid; place-items: center; cursor: pointer; }
.aogfc-header-contact { display: flex; align-items: center; justify-content: flex-end; gap: 34px; }
.aogfc-contact-pill { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--aogfc-green-dark); white-space: nowrap; }
.aogfc-contact-pill > span { width: 54px; height: 54px; border-radius: 50%; background: #fff; color: var(--aogfc-green); display: grid; place-items: center; flex: 0 0 auto; box-shadow: 0 0 0 1px rgba(7,143,47,.14); }
.aogfc-contact-pill strong { display: block; font-size: 19px; line-height: 1; text-transform: uppercase; }
.aogfc-contact-pill small { display: block; margin-top: 7px; font-size: 15px; line-height: 1; font-weight: 700; }
.aogfc-menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(7,91,32,.35); background: transparent; color: var(--aogfc-green-dark); border-radius: 6px; font-size: 25px; }

.aogfc-main-nav { border-bottom: 1px solid var(--aogfc-border); background: #fff; }
.aogfc-menu { margin: 0; padding: 0; list-style: none; display: flex; justify-content: center; align-items: center; min-height: 63px; }
.aogfc-menu > li { position: relative; flex: 0 0 auto; }
.aogfc-menu > li + li::before { content: ""; width: 1px; height: 18px; background: var(--aogfc-green); opacity: .65; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.aogfc-menu > li > a { display: block; padding: 18px 28px; font-size: 20px; line-height: 1.2; text-transform: uppercase; font-weight: 900; white-space: nowrap; }
.aogfc-menu > li:hover > a { color: var(--aogfc-green); }
.aogfc-menu > .menu-item-has-children > a::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 7px; border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor; transform: translateY(-3px) rotate(45deg); }
.aogfc-mega { position: absolute; left: 50%; top: 100%; transform: translateX(-50%) translateY(12px); width: min(920px, calc(100vw - 48px)); display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 24px; background: #fff; border: 1px solid var(--aogfc-border); box-shadow: 0 18px 45px rgba(0,0,0,.18); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s; }
.has-mega.is-open .aogfc-mega { opacity: 0; visibility: hidden; pointer-events: none; }
.aogfc-mega h3 { margin: 0 0 10px; color: var(--aogfc-green); font-size: 17px; text-transform: uppercase; }
.aogfc-mega a { display: block; padding: 5px 0; color: #333; font-size: 14px; }
.aogfc-mega a:hover { color: var(--aogfc-green); }

.aogfc-hero { min-height: 700px; position: relative; display: grid; place-items: center; overflow: hidden; background: #070707; color: #fff; text-align: center; }
.aogfc-hero--image-only { aspect-ratio: 2400 / 804; min-height: 0; display: block; background: #fff; }
.aogfc-hero__slides { position: absolute; inset: 0; }
.aogfc-hero--image-only .aogfc-hero__slides { position: static; height: 100%; }
.aogfc-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.aogfc-hero--image-only .aogfc-hero__bg { opacity: 0; object-fit: cover; transition: opacity .6s ease; }
.aogfc-hero__bg.is-active, .aogfc-hero:not(.aogfc-hero--slider) .aogfc-hero__bg { opacity: .62; }
.aogfc-hero--image-only .aogfc-hero__bg.is-active, .aogfc-hero--image-only:not(.aogfc-hero--slider) .aogfc-hero__bg { opacity: 1; }
.aogfc-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle, rgba(0,0,0,.14), rgba(0,0,0,.62)); }
.aogfc-hero--image-only::after { display: none; }
.aogfc-hero__content { position: relative; z-index: 1; width: min(760px, calc(100% - 32px)); margin-top: -20px; }
.aogfc-hero h1 { margin: 0 0 14px; font-size: clamp(30px, 3vw, 43px); line-height: 1.1; font-weight: 900; text-transform: uppercase; }
.aogfc-hero p { margin: 0 auto 26px; max-width: 720px; font-weight: 800; }
.aogfc-hero__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.aogfc-slider-dots { position: absolute; z-index: 2; left: 0; right: 0; bottom: 18px; display: flex; justify-content: center; gap: 10px; }
.aogfc-slider-dots span { width: 11px; height: 11px; border-radius: 50%; border: 2px solid #fff; opacity: .8; box-shadow: 0 1px 4px rgba(0,0,0,.25); }
.aogfc-slider-dots span.is-active, .aogfc-slider-dots span:first-child { background: #fff; }
.aogfc-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 22px; border-radius: 6px; background: var(--aogfc-green); color: #fff; font-weight: 900; text-transform: uppercase; font-size: 14px; border: 2px solid var(--aogfc-green); }
.aogfc-btn:hover { background: var(--aogfc-green-dark); transform: translateY(-1px); }
.aogfc-btn--ghost { background: transparent; border-color: #fff; }
.aogfc-btn--light { background: #fff; color: var(--aogfc-green); border-color: #fff; }

.aogfc-benefits { background: #fff; padding: 36px 0 34px; }
.aogfc-benefits__grid { display: grid; grid-template-columns: 240px repeat(4, 1fr); gap: 16px; align-items: stretch; }
.aogfc-benefits__cta { background: var(--aogfc-green); color: #fff; border-radius: 10px; padding: 28px 22px; text-align: center; display: grid; align-content: center; }
.aogfc-benefits__cta h2 { margin: 0 0 18px; font-size: 22px; line-height: 1.35; }
.aogfc-benefit-card { text-align: center; padding: 0 20px 24px; border-left: 1px solid var(--aogfc-border); }
.aogfc-benefit-card__icon { min-height: 72px; color: var(--aogfc-green); font-size: 58px; line-height: 1; }
.aogfc-benefit-card__image { width: 100%; aspect-ratio: 1.45; object-fit: cover; border-radius: 8px; margin-bottom: 18px; box-shadow: 0 8px 22px rgba(7,91,32,.12); }
.aogfc-benefit-card h3 { margin: 10px 0; font-size: 19px; }
.aogfc-benefit-card p { margin: 0; font-size: 14px; color: #333; }

.aogfc-category-showcase { padding: 0 0 66px; }
.aogfc-category-showcase__grid { display: grid; grid-template-columns: 1.08fr 1fr; gap: 22px; }
.aogfc-video-card, .aogfc-category-card { position: relative; overflow: hidden; border-radius: 8px; min-height: 244px; background: var(--aogfc-green); }
.aogfc-video-card { min-height: 514px; }
.aogfc-video-card img, .aogfc-category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.aogfc-video-card:hover img, .aogfc-category-card:hover img { transform: scale(1.04); }
.aogfc-video-card span { position: absolute; inset: auto auto 45% 45%; width: 62px; height: 62px; border: 3px solid #fff; border-radius: 50%; color: #fff; display: grid; place-items: center; font-size: 24px; }
.aogfc-category-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.aogfc-category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,143,47,0) 20%, rgba(7,91,32,.9) 100%); }
.aogfc-category-card span { position: absolute; z-index: 1; left: 0; right: 0; bottom: 32px; text-align: center; color: #fff; font-size: 20px; font-weight: 900; text-transform: uppercase; }

.aogfc-section-head { text-align: center; margin: 20px auto 34px; max-width: 920px; }
.aogfc-section-head h2, .aogfc-lined-title { position: relative; margin: 0 0 16px; text-align: center; font-size: 25px; text-transform: uppercase; font-weight: 900; }
.aogfc-section-head p { margin: 0 auto; color: #333; max-width: 900px; }
.aogfc-featured-products { padding: 68px 0 58px; }
.aogfc-product-section { margin-top: 32px; }
.aogfc-product-section__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 0 0 16px; }
.aogfc-product-section__head h3 { color: var(--aogfc-green); font-size: 22px; margin: 0; text-transform: uppercase; }
.aogfc-product-section__nav { display: none; align-items: center; gap: 8px; }
.aogfc-product-section__nav button { width: 38px; height: 38px; border: 1px solid var(--aogfc-border); border-radius: 50%; background: #fff; color: var(--aogfc-green); font-size: 25px; line-height: 1; cursor: pointer; }
.aogfc-product-section__nav button:hover { background: var(--aogfc-green); color: #fff; }
.aogfc-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.aogfc-product-card { border: 1px solid var(--aogfc-border); background: #fff; transition: box-shadow .25s ease, transform .25s ease; overflow: hidden; }
.aogfc-product-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,.12); transform: translateY(-3px); }
.aogfc-product-card__image { display: block; aspect-ratio: 3 / 4; overflow: hidden; background: #f5f5f5; }
.aogfc-product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.aogfc-product-card:hover img { transform: scale(1.04); }
.aogfc-product-card__body { padding: 13px 13px 16px; text-align: center; }
.aogfc-product-card__cat { display: inline-block; margin-bottom: 7px; color: var(--aogfc-green); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.aogfc-product-card h3 { margin: 0 0 8px; font-size: 15px; line-height: 1.35; font-weight: 900; min-height: 41px; }
.aogfc-product-card p { margin: 0 0 10px; color: #515b56; font-size: 13px; line-height: 1.45; }
.aogfc-product-card__price { display: inline-flex; min-height: 28px; align-items: center; padding: 0 12px; border-radius: 999px; background: var(--aogfc-blue-soft); color: var(--aogfc-green); font-size: 13px; font-weight: 900; }
.aogfc-center { text-align: center; margin-top: 26px; }

.aogfc-process { padding: 55px 0; background: var(--aogfc-green); color: #fff; }
.aogfc-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.aogfc-process article { display: grid; grid-template-columns: 45px minmax(0, 1fr); column-gap: 14px; align-items: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); border-radius: 8px; padding: 24px; }
.aogfc-process span { width: 45px; height: 45px; border-radius: 50%; background: #fff; color: var(--aogfc-green); display: grid; place-items: center; font-weight: 900; font-size: 24px; }
.aogfc-process h3 { margin: 0; line-height: 1.25; text-transform: uppercase; }
.aogfc-process p { grid-column: 1 / -1; margin-top: 16px; }

.aogfc-why-detail { padding: 58px 0; background: #fff; }
.aogfc-why-detail__panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 38px; align-items: center; padding: 24px; border-radius: 8px; background: #fff; box-shadow: 0 10px 34px rgba(7,91,32,.08); }
.aogfc-why-detail__list { display: grid; }
.aogfc-why-detail__item { display: grid; grid-template-columns: 74px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--aogfc-border); }
.aogfc-why-detail__item:first-child { padding-top: 0; }
.aogfc-why-detail__item:last-child { border-bottom: 0; padding-bottom: 0; }
.aogfc-why-detail__number { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--aogfc-green); color: #fff; font-size: 34px; line-height: 1; font-weight: 900; font-family: Arial, sans-serif; }
.aogfc-why-detail__item h3 { margin: 0 0 7px; color: var(--aogfc-text); font-size: 18px; text-transform: uppercase; }
.aogfc-why-detail__item p { margin: 0; color: #333; font-size: 16px; line-height: 1.7; }
.aogfc-why-detail__media { margin: 0; }
.aogfc-why-detail__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; display: block; }
.aogfc-blog-archive { background: #fff; }
.aogfc-blog-hero { position: relative; padding: 44px 0 34px; background: #fff; border-bottom: 10px solid var(--aogfc-green-dark); overflow: hidden; }
.aogfc-blog-hero .aogfc-breadcrumb, .aogfc-single-hero .aogfc-breadcrumb { margin-bottom: 18px; }
.aogfc-blog-hero::after { content: ""; position: absolute; right: -80px; top: -80px; width: 420px; height: 92px; border-radius: 0 0 0 8px; background: var(--aogfc-green-dark); box-shadow: 0 18px 38px rgba(7,91,32,.16); }
.aogfc-blog-hero .aogfc-container { position: relative; z-index: 1; }
.aogfc-blog-hero__content { max-width: 1180px; padding-left: 30px; border-left: 4px solid var(--aogfc-green); }
.aogfc-eyebrow { margin: 0 0 8px; color: var(--aogfc-green); font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
.aogfc-blog-hero h1 { margin: 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.18; text-transform: none; color: #111; }
.aogfc-blog-hero p:last-child { margin: 18px 0 0; max-width: 1120px; color: #222; font-size: 17px; line-height: 1.7; }
.aogfc-blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 318px; gap: 32px; align-items: start; padding: 38px 0 0; }
.aogfc-blog-main { min-width: 0; }
.aogfc-featured-post { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr); margin-bottom: 26px; overflow: hidden; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 18px 38px rgba(7,91,32,.08); }
.aogfc-featured-post__image { min-height: 350px; background: var(--aogfc-blue-soft); overflow: hidden; }
.aogfc-featured-post__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.aogfc-featured-post:hover .aogfc-featured-post__image img { transform: scale(1.035); }
.aogfc-featured-post__body { display: flex; flex-direction: column; justify-content: flex-start; padding: 28px 30px; }
.aogfc-post-badge { width: fit-content; margin-bottom: 12px; padding: 6px 12px; border-radius: 999px; background: var(--aogfc-blue-soft); color: var(--aogfc-green); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.aogfc-featured-post h2 { margin: 0 0 12px; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.18; color: var(--aogfc-text); }
.aogfc-featured-post h2 a:hover { color: var(--aogfc-green); }
.aogfc-featured-post p { margin: 12px 0 0; color: #526158; font-size: 16px; line-height: 1.65; }
.aogfc-post-meta, .aogfc-post-card__meta, .aogfc-single-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; color: var(--aogfc-green-dark); font-weight: 850; font-size: 13px; }
.aogfc-post-meta span::before, .aogfc-post-card__meta span::before, .aogfc-single-meta span + span::before { content: ''; display: inline-block; width: 5px; height: 5px; margin: 0 8px 2px 0; border-radius: 50%; background: var(--aogfc-green); }
.aogfc-read-more, .aogfc-post-card__more { width: fit-content; margin-top: 18px; color: var(--aogfc-green); font-weight: 900; text-transform: uppercase; font-size: 13px; }
.aogfc-read-more::after, .aogfc-post-card__more::after { content: '›'; margin-left: 7px; font-size: 18px; line-height: 0; }
.aogfc-read-more:hover, .aogfc-post-card__more:hover { color: var(--aogfc-green-dark); transform: translateX(2px); }
.aogfc-post-grid--archive { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.aogfc-post-card { border-radius: 8px; box-shadow: 0 10px 24px rgba(7,91,32,.06); }
.aogfc-post-card__image { aspect-ratio: 1.48; }
.aogfc-post-card__image img, .aogfc-post-card > img { aspect-ratio: 1.48; transition: transform .35s ease; }
.aogfc-post-card:hover img { transform: scale(1.04); }
.aogfc-post-card__body { padding: 18px; }
.aogfc-post-card__cat { display: inline-flex; margin-bottom: 9px; color: var(--aogfc-green); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.aogfc-post-card h3 { margin: 0 0 9px; font-size: 18px; line-height: 1.35; min-height: 48px; }
.aogfc-post-card h3 a:hover { color: var(--aogfc-green); }
.aogfc-post-card p { margin: 12px 0 0; color: #617067; font-size: 14px; line-height: 1.6; }
.aogfc-blog-sidebar, .aogfc-single-post__sidebar { position: sticky; top: 148px; display: grid; gap: 18px; }
.aogfc-sidebar-block, .aogfc-sidebar-cta { border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; padding: 22px; box-shadow: 0 12px 28px rgba(7,91,32,.06); }
.aogfc-sidebar-block h3, .aogfc-sidebar-cta h3 { margin: 0 0 14px; color: var(--aogfc-green-dark); text-transform: uppercase; font-size: 18px; line-height: 1.25; }
.aogfc-sidebar-block--compact { padding: 20px; }
.aogfc-category-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.aogfc-category-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 12px; border-radius: 7px; background: var(--aogfc-blue-soft); color: #35483b; font-weight: 850; }
.aogfc-category-list small { min-width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--aogfc-green); font-size: 12px; font-weight: 900; }
.aogfc-category-list .is-active a, .aogfc-category-list a:hover { background: var(--aogfc-green); color: #fff; box-shadow: 0 8px 18px rgba(7,143,47,.18); }
.aogfc-category-list .is-active small, .aogfc-category-list a:hover small { color: var(--aogfc-green-dark); }
.aogfc-sidebar-cta { background: var(--aogfc-green-dark); color: #fff; }
.aogfc-sidebar-cta h3, .aogfc-sidebar-cta p { color: #fff; }
.aogfc-sidebar-cta p { margin: 0 0 16px; line-height: 1.65; }
.aogfc-sidebar-cta .aogfc-btn { background: #fff; color: var(--aogfc-green); border-color: #fff; cursor: pointer; }
.aogfc-single-post { padding: 0 0 58px; background: linear-gradient(180deg, var(--aogfc-blue-soft) 0%, #fff 420px); }
.aogfc-single-hero { padding: 40px 0 34px; background: var(--aogfc-blue-soft); border-bottom: 1px solid var(--aogfc-border); }
.aogfc-single-hero__copy { max-width: 980px; }
.aogfc-single-hero h1 { margin: 0 0 14px; max-width: 980px; color: var(--aogfc-green-dark); font-size: clamp(32px, 4.3vw, 56px); line-height: 1.08; letter-spacing: 0; }
.aogfc-single-hero__copy > p { margin: 0 0 18px; max-width: 820px; color: #526158; font-size: 18px; line-height: 1.65; }
.aogfc-single-post__layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; align-items: start; padding-top: 34px; }
.aogfc-single-post__main { min-width: 0; }
.aogfc-single-thumb-wrap { margin: 0 0 26px; overflow: hidden; border-radius: 8px; border: 1px solid var(--aogfc-border); background: var(--aogfc-blue-soft); box-shadow: 0 18px 38px rgba(7,91,32,.08); }
.aogfc-single-thumb { width: 100%; max-height: 540px; object-fit: cover; margin: 0; border-radius: 0; }
.aogfc-single-post__content { margin-top: 0; padding: 34px 38px; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 14px 32px rgba(7,91,32,.055); color: #314439; font-size: 18px; line-height: 1.82; }
.aogfc-content-body.aogfc-single-post__content { margin-top: 0; font-size: 18px; line-height: 1.82; }
.aogfc-single-post__content > *:first-child { margin-top: 0; }
.aogfc-single-post__content h2, .aogfc-single-post__content h3 { color: var(--aogfc-green-dark); line-height: 1.25; }
.aogfc-single-post__content h2 { margin: 34px 0 12px; font-size: 28px; }
.aogfc-single-post__content h3 { margin: 26px 0 10px; font-size: 22px; }
.aogfc-single-post__content p { margin: 0 0 18px; }
.aogfc-single-post__content ul, .aogfc-single-post__content ol { padding-left: 24px; margin: 0 0 20px; }
.aogfc-single-post__content li { margin-bottom: 8px; }
.aogfc-single-post__content blockquote { margin: 24px 0; padding: 18px 22px; border-left: 4px solid var(--aogfc-green); background: var(--aogfc-blue-soft); border-radius: 0 8px 8px 0; color: var(--aogfc-green-dark); font-weight: 800; }
.aogfc-single-post__content img { border-radius: 8px; margin: 22px 0; }
.aogfc-related-list { display: grid; gap: 12px; }
.aogfc-related-link { display: grid; grid-template-columns: 74px 1fr; gap: 12px; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--aogfc-border); }
.aogfc-related-link:last-child { padding-bottom: 0; border-bottom: 0; }
.aogfc-related-link img, .aogfc-related-link__placeholder { width: 74px; height: 58px; object-fit: cover; border-radius: 6px; background: var(--aogfc-blue-soft); }
.aogfc-related-link strong { display: block; color: #263b2d; font-size: 14px; line-height: 1.35; }
.aogfc-related-link small { display: block; margin-top: 5px; color: var(--aogfc-green); font-weight: 850; }
.aogfc-related-link:hover strong { color: var(--aogfc-green); }
.aogfc-sidebar-cta--single { overflow: hidden; }
.aogfc-gallery, .aogfc-news-section, .aogfc-contact-section, .aogfc-text-image, .aogfc-faq, .aogfc-archive, .aogfc-page, .aogfc-single, .aogfc-single-product { padding: 58px 0; }
.aogfc-gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; align-items: center; }
.aogfc-gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; border: 1px solid var(--aogfc-border); background: #fff; }
.aogfc-gallery--logos .aogfc-gallery-grid img { aspect-ratio: 245 / 113; object-fit: contain; padding: 12px; }
.aogfc-gallery--certificates { background: var(--aogfc-green); color: #fff; }
.aogfc-gallery--certificates .aogfc-gallery-grid { grid-template-columns: repeat(5, 1fr); }

.aogfc-post-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.aogfc-news-section__head { display: grid; gap: 12px; justify-items: center; margin-bottom: 34px; }
.aogfc-news-section__head .aogfc-lined-title { margin-bottom: 0; }
.aogfc-news-section__nav { display: none; align-items: center; gap: 8px; }
.aogfc-news-section__nav button { width: 38px; height: 38px; border: 1px solid var(--aogfc-border); border-radius: 50%; background: #fff; color: var(--aogfc-green); font-size: 25px; line-height: 1; cursor: pointer; }
.aogfc-news-section__nav button:hover { background: var(--aogfc-green); color: #fff; }
.aogfc-post-card { border: 1px solid var(--aogfc-border); background: #fff; transition: transform .25s ease, box-shadow .25s ease; overflow: hidden; border-radius: 8px; box-shadow: 0 10px 24px rgba(7,91,32,.06); }
.aogfc-post-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(7,91,32,.12); }
.aogfc-post-card__image { display: block; aspect-ratio: 1.48; overflow: hidden; background: #f5f5f5; }
.aogfc-post-card__image img, .aogfc-post-card > img { width: 100%; aspect-ratio: 1.48; object-fit: cover; transition: transform .35s ease; }
.aogfc-post-card__body { padding: 18px; }
.aogfc-post-card h3 { margin: 0 0 9px; font-size: 18px; line-height: 1.35; min-height: 48px; }
.aogfc-post-card time, .aogfc-post-meta { color: var(--aogfc-green); font-weight: 800; font-size: 13px; }
.aogfc-post-card p { margin: 12px 0 0; color: #617067; font-size: 14px; line-height: 1.6; }

.aogfc-post-grid.aogfc-post-grid--archive { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.aogfc-contact-box { background: var(--aogfc-blue-soft); border: 1px solid var(--aogfc-border); border-radius: 8px; padding: 36px; text-align: center; }
.aogfc-contact-box h2 { margin: 0 0 8px; text-transform: uppercase; color: var(--aogfc-green); }
.aogfc-lead-form { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 12px; margin-top: 22px; }
.aogfc-lead-form input { height: 44px; border: 1px solid #d8e7dc; border-radius: 4px; padding: 0 14px; }
.aogfc-lead-form button { border: 0; border-radius: 4px; background: var(--aogfc-green); color: #fff; font-weight: 900; padding: 0 18px; cursor: pointer; }

.aogfc-page-title { margin: 0 0 15px; font-size: clamp(30px, 4vw, 44px); line-height: 1.15; color: var(--aogfc-green); text-transform: uppercase; }
.aogfc-page-intro { max-width: 860px; color: #444; }
.aogfc-breadcrumb { margin-bottom: 18px; font-size: 14px; color: var(--aogfc-muted); }
.aogfc-breadcrumb a { color: var(--aogfc-green); font-weight: 800; }
.aogfc-product-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 28px; padding: 4px 0 24px; border-bottom: 1px solid var(--aogfc-border); }
.aogfc-product-toolbar .aogfc-breadcrumb { margin: 0; font-size: 20px; text-transform: uppercase; color: #111; }
.aogfc-product-toolbar .aogfc-breadcrumb a { color: #111; font-weight: 400; }
.aogfc-product-toolbar .aogfc-breadcrumb span:last-child { font-weight: 900; }
.aogfc-product-toolbar__actions { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.aogfc-product-toolbar__actions p { margin: 0; color: #111; font-size: 17px; }
.aogfc-product-sort select { min-width: 255px; height: 48px; padding: 0 44px 0 16px; border: 1px solid #dce7df; border-radius: 0; background: #fff; color: #1f2937; font: inherit; font-size: 16px; cursor: pointer; }
.aogfc-product-sort select:focus { outline: 2px solid rgba(7,143,47,.18); border-color: var(--aogfc-green); }
.aogfc-layout { display: grid; grid-template-columns: 280px 1fr; gap: 34px; align-items: start; }
.aogfc-sidebar { border: 1px solid var(--aogfc-border); border-radius: 6px; padding: 18px; background: #fff; position: sticky; top: 150px; }
.aogfc-sidebar h3 { margin-top: 0; color: var(--aogfc-green); text-transform: uppercase; font-size: 18px; }
.aogfc-sidebar ul { list-style: none; padding: 0; margin: 0; }
.aogfc-sidebar li, .aogfc-side-link { display: block; border-bottom: 1px solid var(--aogfc-border); padding: 9px 0; }
.aogfc-sidebar a:hover, .aogfc-sidebar .current-cat > a { color: var(--aogfc-green); font-weight: 900; }
.aogfc-product-cat-sidebar { padding: 0; overflow: hidden; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 12px 28px rgba(7,91,32,.06); }
.aogfc-product-cat-sidebar__head { padding: 12px 16px; background: var(--aogfc-blue-soft); color: var(--aogfc-green-dark); font-size: 15px; font-weight: 750; text-transform: uppercase; border-bottom: 1px solid var(--aogfc-border); }
.aogfc-product-cat-list { list-style: none; padding: 6px; margin: 0; display: grid; gap: 3px; }
.aogfc-product-cat-list__item { border: 0; border-radius: 7px; overflow: hidden; background: #fff; padding: 0; }
.aogfc-product-cat-list__row { display: grid; grid-template-columns: 1fr 30px; align-items: center; min-height: 42px; border: 1px solid transparent; border-radius: 7px; background: #fff; transition: background .18s ease, border-color .18s ease, box-shadow .18s ease; }
.aogfc-product-cat-list__parent { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 6px 9px 12px; color: #263b2d; font-weight: 550; line-height: 1.2; }
.aogfc-product-cat-list__parent small, .aogfc-product-cat-children small { min-width: 22px; height: 22px; border-radius: 999px; display: grid; place-items: center; background: var(--aogfc-blue-soft); color: var(--aogfc-green); font-size: 11px; font-weight: 900; flex: 0 0 auto; }
.aogfc-cat-toggle { position: relative; width: 28px; height: 28px; margin-right: 4px; border: 0; border-radius: 50%; background: var(--aogfc-blue-soft); cursor: pointer; }
.aogfc-cat-toggle::before { content: ''; position: absolute; left: 50%; top: 50%; width: 7px; height: 7px; border-right: 2px solid var(--aogfc-green); border-bottom: 2px solid var(--aogfc-green); transform: translate(-50%, -65%) rotate(45deg); transition: transform .18s ease; }
.aogfc-cat-toggle:hover { background: #e8f4eb; }
.aogfc-product-cat-list__item.is-open .aogfc-cat-toggle::before { transform: translate(-50%, -35%) rotate(225deg); }
.aogfc-product-cat-list__item.is-active-parent > .aogfc-product-cat-list__row,
.aogfc-product-cat-list__item.is-open > .aogfc-product-cat-list__row { background: var(--aogfc-blue-soft); border-color: var(--aogfc-border); box-shadow: inset 3px 0 0 var(--aogfc-green); }
.aogfc-product-cat-list__item.is-active-parent > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent,
.aogfc-product-cat-list__item.is-open > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent { color: var(--aogfc-green-dark); }
.aogfc-product-cat-children { display: none; list-style: none; margin: 1px 0 5px 12px; padding: 3px 0 3px 9px; border-left: 1px solid var(--aogfc-border); }
.aogfc-product-cat-list__item.is-open > .aogfc-product-cat-children { display: grid; gap: 2px; }
.aogfc-product-cat-children li { padding: 0; border: 0; }
.aogfc-product-cat-children a { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 7px 8px 7px 10px; border-radius: 6px; color: #526158; background: transparent; font-weight: 550; line-height: 1.2; }
.aogfc-product-cat-children a:hover { background: var(--aogfc-blue-soft); color: var(--aogfc-green); }
.aogfc-product-cat-children .is-current a { background: var(--aogfc-green); color: #fff; box-shadow: 0 6px 14px rgba(7,143,47,.16); }
.aogfc-product-cat-children a:hover small, .aogfc-product-cat-children .is-current small { background: #fff; color: var(--aogfc-green-dark); }
.aogfc-product-cat-list__row:hover { background: var(--aogfc-blue-soft); border-color: var(--aogfc-border); }
.aogfc-product-cat-list__row:hover .aogfc-product-cat-list__parent { color: var(--aogfc-green); }
.aogfc-load-more-wrap { margin-top: 30px; text-align: center; }
.aogfc-load-more { min-height: 44px; padding: 0 28px; border: 2px solid var(--aogfc-green); border-radius: 999px; background: var(--aogfc-green); color: #fff; font-weight: 900; text-transform: uppercase; cursor: pointer; box-shadow: 0 10px 20px rgba(7,143,47,.16); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.aogfc-load-more:hover:not(:disabled) { background: var(--aogfc-green-dark); transform: translateY(-1px); box-shadow: 0 14px 26px rgba(7,91,32,.18); }
.aogfc-load-more:disabled { cursor: default; opacity: .78; }
.aogfc-load-more.is-done { background: var(--aogfc-blue-soft); color: var(--aogfc-green-dark); border-color: var(--aogfc-border); box-shadow: none; }
.aogfc-product-archive__head {
    margin: 0 0 22px;
    padding: 22px 0 18px;
    border-bottom: 1px solid var(--aogfc-border);
}
.aogfc-product-archive__head h1 {
    margin: 0 0 9px;
    color: var(--aogfc-green-dark);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-product-archive__head p {
    max-width: 900px;
    margin: 0;
    color: #617067;
    font-size: 16px;
    line-height: 1.65;
}
.aogfc-product-archive__seo { margin-top: 38px; }
.aogfc-seo-block, .aogfc-content-body { margin-top: 34px; font-size: 17px; }
.aogfc-content-body p,
.aogfc-content-body li,
.aogfc-editor-content p,
.aogfc-editor-content li,
.aogfc-contact-page-head__content p,
.aogfc-static-flex-intro__content p,
.aogfc-seo-block p,
.aogfc-seo-block li,
.aogfc-static-content p,
.aogfc-static-content li,
.aogfc-single-post__content p,
.aogfc-single-post__content li,
.aogfc-product-content p,
.aogfc-product-content li,
.aogfc-product-excerpt p,
.aogfc-product-note span,
.aogfc-page-intro,
.aogfc-single-hero__copy > p,
.aogfc-about-letter__inner p {
    text-align: justify;
    text-justify: inter-word;
}

.aogfc-content-body img { border-radius: 8px; }
.aogfc-single-thumb { width: 100%; border-radius: 8px; margin: 22px 0; }
.aogfc-single-product { background: linear-gradient(180deg, #f5faf6 0, #fff 420px); }
.aogfc-product-detail { display: grid; grid-template-columns: minmax(0, 47%) minmax(0, 1fr); gap: 34px; align-items: start; }
.aogfc-product-gallery { display: grid; gap: 14px; }
.aogfc-product-gallery__main { position: relative; display: block; width: 100%; aspect-ratio: 819 / 1024; max-height: none; padding: 0; overflow: hidden; border: 1px solid var(--aogfc-border); border-radius: 8px; background: var(--aogfc-blue-soft); cursor: zoom-in; box-shadow: 0 16px 34px rgba(7,91,32,.08); }
.aogfc-product-gallery__main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .35s ease; }
.aogfc-product-gallery__main:hover img { transform: scale(1.03); }
.aogfc-product-thumbs { display: grid; grid-auto-flow: column; grid-auto-columns: 86px; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.aogfc-product-thumb { aspect-ratio: 1; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 7px; background: var(--aogfc-blue-soft); cursor: pointer; opacity: .72; transition: border-color .18s ease, opacity .18s ease, transform .18s ease; }
.aogfc-product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aogfc-product-thumb:hover, .aogfc-product-thumb.is-active { border-color: var(--aogfc-green); opacity: 1; transform: translateY(-1px); }
.aogfc-product-detail__summary { display: flex; flex-direction: column; justify-content: flex-start; padding: 28px 30px; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 16px 34px rgba(7,91,32,.07); }
.aogfc-product-detail__cat { align-self: flex-start; margin-bottom: 12px; padding: 6px 12px; border-radius: 999px; background: var(--aogfc-blue-soft); color: var(--aogfc-green); font-weight: 900; font-size: 13px; text-transform: uppercase; }
.aogfc-product-detail__summary h1 { margin: 0 0 14px; color: var(--aogfc-green-dark); font-size: clamp(30px, 3vw, 42px); line-height: 1.16; }
.aogfc-product-excerpt { color: #314439; font-size: 18px; line-height: 1.75; }
.aogfc-product-excerpt p { margin: 0; }
.aogfc-product-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; width: 100%; margin-top: 26px; }
.aogfc-product-actions .aogfc-btn { position: relative; isolation: isolate; width: 100%; min-height: 58px; padding: 0 18px; border: 0; border-radius: 8px; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: #fff; font-size: 15px; font-weight: 900; line-height: 1.15; text-align: center; white-space: nowrap; box-shadow: 0 16px 28px rgba(7,91,32,.18); }
.aogfc-product-actions .aogfc-btn::before { display: inline-grid; place-items: center; flex: 0 0 32px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.18); color: #fff; font-size: 17px; line-height: 1; box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); }
.aogfc-product-actions .aogfc-btn::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.28) 42%, rgba(255,255,255,0) 68%); transform: translateX(-120%) skewX(-18deg); transition: transform .55s ease; }
.aogfc-product-actions .aogfc-popup-open { background: linear-gradient(135deg, #063d8f 0%, #0865c9 58%, #0b84e8 100%); box-shadow: 0 18px 30px rgba(7,143,47,.28), 0 8px 0 rgba(7,91,32,.08); }
.aogfc-product-actions .aogfc-popup-open::before { content: "\270E"; }
.aogfc-product-actions .aogfc-btn--zalo { background: linear-gradient(135deg, #10b8e8 0%, #17a7f3 48%, #0874d8 100%); box-shadow: 0 18px 30px rgba(20,168,244,.27), 0 8px 0 rgba(7,143,47,.07); }
.aogfc-product-actions .aogfc-btn--zalo::before { content: "Z"; font-size: 16px; font-weight: 900; font-style: italic; }
.aogfc-product-actions .aogfc-btn:hover,
.aogfc-product-actions .aogfc-btn:focus-visible { color: #fff; transform: translateY(-2px); box-shadow: 0 22px 38px rgba(7,91,32,.24); }
.aogfc-product-actions .aogfc-btn:hover::after,
.aogfc-product-actions .aogfc-btn:focus-visible::after { transform: translateX(120%) skewX(-18deg); }
.aogfc-product-note { display: grid; gap: 6px; margin-top: 22px; padding: 16px 18px; border-left: 4px solid var(--aogfc-green); border-radius: 0 8px 8px 0; background: var(--aogfc-blue-soft); color: #3d5144; }
.aogfc-product-note strong { color: var(--aogfc-green-dark); }
.aogfc-product-brand-box {
    margin-top: 18px;
    padding: 18px 22px;
    border: 1px dashed var(--aogfc-header-accent, #ff6900);
    background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
    color: #111;
}
.aogfc-product-brand-box ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 18px;
}
.aogfc-product-brand-box li {
    color: #111;
    font-size: 15px;
    line-height: 1.55;
}
.aogfc-product-content { padding: 32px 36px; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 12px 28px rgba(7,91,32,.055); }
.aogfc-product-content figure,
.aogfc-product-content .wp-block-image {
    max-width: 100%;
}
.aogfc-product-content img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.aogfc-related-products { position: relative; margin-top: 42px; padding: 34px 0 14px; }
.aogfc-related-products__head { margin-bottom: 20px; text-align: center; }
.aogfc-related-products__head h2 { margin: 0; color: var(--aogfc-green-dark); font-size: clamp(24px, 2.6vw, 34px); text-transform: uppercase; }
.aogfc-related-products__nav { position: absolute; left: -21px; right: -21px; top: calc(50% + 54px); z-index: 3; display: flex; justify-content: space-between; gap: 8px; pointer-events: none; }
.aogfc-related-products__nav button { pointer-events: auto; width: 42px; height: 42px; border: 1px solid var(--aogfc-border); border-radius: 50%; background: #fff; color: var(--aogfc-green); font-size: 28px; line-height: 1; cursor: pointer; box-shadow: 0 10px 24px rgba(7,91,32,.14); transition: background .18s ease, color .18s ease, transform .18s ease; }
.aogfc-related-products__nav button:hover { background: var(--aogfc-green); color: #fff; transform: translateY(-1px); }
.aogfc-related-products__slider { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 66px) / 4); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 2px 18px; scrollbar-width: none; }
.aogfc-related-products__slider::-webkit-scrollbar { display: none; }
.aogfc-related-products__slider .aogfc-product-card { scroll-snap-align: start; min-width: 0; }
.aogfc-quote-popup__product { display: grid; grid-template-columns: 128px 1fr; gap: 18px; align-items: center; margin-bottom: 18px; }
.aogfc-quote-popup__product img { width: 128px; aspect-ratio: 1; object-fit: cover; border-radius: 8px; border: 1px solid var(--aogfc-border); }
.aogfc-quote-popup__product span { display: block; margin-bottom: 5px; color: var(--aogfc-green); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.aogfc-quote-popup__product h2 { margin: 0 0 8px; text-transform: none; line-height: 1.25; }
.aogfc-lightbox { position: fixed; inset: 0; z-index: 240; display: none; align-items: center; justify-content: center; padding: 26px; }
.aogfc-lightbox.is-open { display: flex; }
.aogfc-lightbox__backdrop { position: absolute; inset: 0; border: 0; background: rgba(0,20,48,.76); cursor: zoom-out; }
.aogfc-lightbox__dialog { position: relative; max-width: min(1040px, 94vw); max-height: 90vh; }
.aogfc-lightbox__dialog img { display: block; max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 8px; background: #fff; box-shadow: 0 24px 70px rgba(0,0,0,.34); }
.aogfc-lightbox__close { position: absolute; top: -18px; right: -18px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #fff; color: var(--aogfc-green-dark); font-size: 30px; line-height: 1; cursor: pointer; box-shadow: 0 8px 22px rgba(0,0,0,.2); }
.aogfc-empty { grid-column: 1 / -1; text-align: center; padding: 36px; border: 1px dashed #b7daf5; border-radius: 8px; background: var(--aogfc-blue-soft); }
.aogfc-not-found { min-height: 520px; display: grid; place-items: center; text-align: center; padding: 70px 0; }
.aogfc-search--page { max-width: 580px; margin: 22px auto; }

.aogfc-popup { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.aogfc-popup.is-open { display: flex; }
.aogfc-popup__backdrop { position: absolute; inset: 0; background: rgba(0,24,55,.58); }
.aogfc-popup__dialog { position: relative; width: min(520px, 100%); background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.aogfc-popup__close { position: absolute; top: 12px; right: 14px; border: 0; background: transparent; color: var(--aogfc-green-dark); font-size: 30px; line-height: 1; cursor: pointer; }
.aogfc-popup__dialog h2 { margin: 0 0 8px; color: var(--aogfc-green-dark); text-transform: uppercase; font-size: 24px; }
.aogfc-popup__dialog p { margin: 0 0 18px; color: #444; }
.aogfc-popup-form { display: grid; gap: 13px; }
.aogfc-popup-form label { display: grid; gap: 6px; font-weight: 800; color: var(--aogfc-green-dark); }
.aogfc-popup-form input, .aogfc-popup-form textarea { width: 100%; border: 1px solid var(--aogfc-border); border-radius: 6px; padding: 11px 12px; font: inherit; }
.aogfc-popup-form textarea { resize: vertical; }
.aogfc-site-footer { display: block; }
.aogfc-pagination { margin-top: 28px; }
.aogfc-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.aogfc-pagination a, .aogfc-pagination span { min-width: 34px; height: 34px; display: inline-grid; place-items: center; border: 1px solid var(--aogfc-border); border-radius: 4px; padding: 0 10px; }
.aogfc-pagination .current { background: var(--aogfc-green); color: #fff; border-color: var(--aogfc-green); }
@media (max-width: 1024px) {
    .aogfc-header-top__inner { height: 88px; grid-template-columns: 220px minmax(250px, 1fr) auto; gap: 22px; }
    .aogfc-header-contact { gap: 18px; }
    .aogfc-contact-pill > span { width: 46px; height: 46px; }
    .aogfc-contact-pill strong { font-size: 15px; }
    .aogfc-contact-pill small { font-size: 12px; margin-top: 6px; }
    .aogfc-menu > li > a { padding-inline: 18px; font-size: 15px; }
    .aogfc-benefits__grid { grid-template-columns: repeat(2, 1fr); }
    .aogfc-benefits__cta { grid-column: 1 / -1; }
    .aogfc-product-grid, .aogfc-post-grid { grid-template-columns: repeat(3, 1fr); }
    .aogfc-inner-hero__grid, .aogfc-about-capacity__grid, .aogfc-contact-main__grid { grid-template-columns: 1fr; }
    .aogfc-value-grid, .aogfc-about-steps { grid-template-columns: repeat(2, 1fr); }
    .aogfc-product-toolbar { align-items: flex-start; flex-direction: column; }
    .aogfc-product-toolbar__actions { width: 100%; justify-content: space-between; margin-left: 0; }
    .aogfc-blog-layout, .aogfc-single-post__layout { grid-template-columns: 1fr; }
    .aogfc-blog-sidebar, .aogfc-single-post__sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
    .aogfc-featured-post { grid-template-columns: 1fr; }
    .aogfc-post-grid.aogfc-post-grid--archive { grid-template-columns: repeat(2, 1fr); }
    .aogfc-gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .aogfc-product-detail { grid-template-columns: 1fr; }
    .aogfc-product-detail__summary { justify-content: flex-start; }
    .aogfc-related-products__slider { grid-auto-columns: calc((100% - 44px) / 3); }
}

@media (max-width: 760px) {
    .aogfc-container { width: min(100% - 24px, var(--aogfc-container)); }
    .aogfc-header-top__inner { height: auto; min-height: 76px; grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 8px; }
    .aogfc-logo { grid-column: 2; justify-self: center; }
    .aogfc-logo img { width: clamp(170px, 48vw, 190px); max-height: 56px; }
    .aogfc-search { display: none; }
    .aogfc-header-contact { display: none; }
    .aogfc-menu-toggle { display: block; grid-column: 3; justify-self: end; }
    .aogfc-main-nav { display: none; }
    .aogfc-main-nav.is-open { display: block; }
    .aogfc-menu { display: block; min-height: 0; padding: 8px 0; }
    .aogfc-menu > li + li::before { display: none; }
    .aogfc-menu > li > a { padding: 12px 0; border-bottom: 1px solid var(--aogfc-border); font-size: 15px; }
    .aogfc-mega { position: static; transform: none; width: 100%; opacity: 1; pointer-events: auto; display: none; grid-template-columns: 1fr; box-shadow: none; padding: 12px; }
    .has-mega.is-open .aogfc-mega { display: grid; opacity: 1; visibility: visible; pointer-events: auto; }
    .aogfc-hero { min-height: 520px; }
    .aogfc-hero--image-only { min-height: 0; aspect-ratio: 2400 / 804; }
    .aogfc-hero h1 { font-size: 30px; }
    .aogfc-benefits__grid, .aogfc-category-showcase__grid, .aogfc-category-cards, .aogfc-process-grid, .aogfc-layout, .aogfc-product-detail, .aogfc-why-detail__panel { grid-template-columns: 1fr; }
    .aogfc-why-detail__panel { padding: 18px; gap: 24px; }
    .aogfc-why-detail__item { grid-template-columns: 58px 1fr; gap: 16px; }
    .aogfc-why-detail__number { width: 48px; height: 48px; font-size: 28px; }
    .aogfc-benefit-card { border-left: 0; border-top: 1px solid var(--aogfc-border); padding-top: 18px; }
    .aogfc-video-card { min-height: 360px; }
    .aogfc-product-grid, .aogfc-post-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .aogfc-product-section__head { align-items: center; }
    .aogfc-product-section__head h3 { font-size: 19px; line-height: 1.25; }
    .aogfc-product-section__nav { display: flex; flex: 0 0 auto; }
    .aogfc-product-section .aogfc-product-grid { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 14px) / 2); grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 2px 2px 16px; scrollbar-width: none; }
    .aogfc-product-section .aogfc-product-grid::-webkit-scrollbar { display: none; }
    .aogfc-product-section .aogfc-product-card { scroll-snap-align: start; min-width: 0; }
    .aogfc-news-section__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
    .aogfc-news-section__head .aogfc-lined-title { flex: 1 1 auto; margin: 0; text-align: left; font-size: 22px; line-height: 1.25; }
    .aogfc-news-section__nav { display: flex; flex: 0 0 auto; }
    .aogfc-news-section .aogfc-post-grid { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 14px) / 2); grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 2px 2px 16px; scrollbar-width: none; }
    .aogfc-news-section .aogfc-post-grid::-webkit-scrollbar { display: none; }
    .aogfc-news-section .aogfc-post-card { scroll-snap-align: start; min-width: 0; }
    .aogfc-news-section .aogfc-post-card__body { padding: 12px; }
    .aogfc-news-section .aogfc-post-card h3 { font-size: 14px; line-height: 1.35; min-height: 0; }
    .aogfc-news-section .aogfc-post-card p { font-size: 13px; line-height: 1.5; }
    .aogfc-inner-hero, .aogfc-static-hero { padding: 34px 0; }
    .aogfc-inner-hero h1, .aogfc-static-hero h1 { font-size: 30px; }
    .aogfc-inner-hero p:not(.aogfc-eyebrow), .aogfc-static-hero__copy > p:last-child { font-size: 16px; }
    .aogfc-value-grid, .aogfc-about-steps, .aogfc-capacity-stats, .aogfc-logo-strip, .aogfc-contact-form { grid-template-columns: 1fr; }
    .aogfc-about-values, .aogfc-about-capacity, .aogfc-about-process, .aogfc-about-partners, .aogfc-contact-main { padding: 36px 0; }
    .aogfc-contact-form-card, .aogfc-contact-info-panel, .aogfc-contact-quick { padding: 20px; }
    .aogfc-contact-map iframe { height: 300px; }
    .aogfc-product-toolbar__actions { align-items: stretch; flex-direction: column; gap: 12px; }
    .aogfc-product-sort select { width: 100%; min-width: 0; }
    .aogfc-product-toolbar .aogfc-breadcrumb { font-size: 17px; }
    .aogfc-blog-hero { padding: 34px 0 30px; }
    .aogfc-blog-layout { padding-top: 28px; }
    .aogfc-single-post__layout { padding-top: 24px; }
    .aogfc-single-hero { padding: 30px 0 26px; }
    .aogfc-single-hero h1 { font-size: 30px; }
    .aogfc-single-post__content, .aogfc-static-content { padding: 24px 18px; font-size: 16px; line-height: 1.75; }
    .aogfc-single-post__content h2 { font-size: 24px; }
    .aogfc-featured-post__image { min-height: 240px; }
    .aogfc-featured-post__body { padding: 22px; }
    .aogfc-blog-sidebar, .aogfc-single-post__sidebar { grid-template-columns: 1fr; }
    .aogfc-gallery-grid, .aogfc-gallery--certificates .aogfc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .aogfc-lead-form { grid-template-columns: 1fr; }
    .aogfc-single-product { padding-top: 18px; }
    .aogfc-product-detail__summary { padding: 24px; }
    .aogfc-product-content {
        padding: 24px 18px;
    }
    .aogfc-product-content figure,
    .aogfc-product-content .wp-block-image,
    .aogfc-product-content .aligncenter,
    .aogfc-product-content .alignnone,
    .aogfc-product-content .size-medium,
    .aogfc-product-content .size-large {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0;
        margin-right: 0;
    }
    .aogfc-product-content img {
        width: 100% !important;
        max-width: 100% !important;
    }
    .aogfc-product-excerpt p { text-align: left; }
    .aogfc-product-actions { grid-template-columns: 1fr; max-width: none; }
    .aogfc-product-actions .aogfc-btn { width: 100%; min-height: 54px; font-size: 14px; }
    .aogfc-product-actions .aogfc-btn::before { flex-basis: 28px; width: 28px; height: 28px; font-size: 15px; }
    .aogfc-related-products__head { align-items: flex-start; }
    .aogfc-related-products__slider { grid-auto-columns: calc((100% - 14px) / 2); gap: 14px; }
    .aogfc-quote-popup__product { grid-template-columns: 88px 1fr; }
    .aogfc-quote-popup__product img { width: 88px; }
    .aogfc-sidebar { position: static; }
    .aogfc-product-card h3 { min-height: auto; }
}

@media (max-width: 430px) {
    .aogfc-product-grid, .aogfc-post-grid, .aogfc-post-grid.aogfc-post-grid--archive { grid-template-columns: 1fr; }
    .aogfc-product-section .aogfc-product-grid { grid-auto-columns: calc((100% - 14px) / 2); grid-template-columns: none; }
    .aogfc-news-section .aogfc-post-grid { grid-auto-columns: calc((100% - 14px) / 2); grid-template-columns: none; }
    .aogfc-category-card { min-height: 220px; }
}

/* Data-driven navigation and production empty states */
.aogfc-menu .menu-item-has-children { position: relative; }
.aogfc-menu .sub-menu { position: absolute; left: 0; top: 100%; transform: translateY(12px); width: min(920px, calc(100vw - 48px)); min-width: 240px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px 22px; padding: 22px; margin: 0; list-style: none; background: #fff; border: 1px solid var(--aogfc-border); box-shadow: 0 18px 45px rgba(0,0,0,.18); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s; z-index: 20; }
.aogfc-menu .menu-item-has-children.is-open > .sub-menu { opacity: 0; visibility: hidden; pointer-events: none; }
.aogfc-menu .sub-menu .sub-menu { position: static; transform: none; opacity: 1; visibility: hidden; pointer-events: none; width: auto; min-width: 0; display: block; padding: 6px 0 0; border: 0; box-shadow: none; }
.aogfc-menu .sub-menu *, .aogfc-mega * { pointer-events: none; }
.aogfc-menu .sub-menu a { display: block; padding: 6px 0; color: #333; font-size: 14px; text-transform: none; font-weight: 800; }
.aogfc-menu .sub-menu > li > a { color: var(--aogfc-green); text-transform: uppercase; font-weight: 900; }
.aogfc-menu .sub-menu .sub-menu a { color: #333; text-transform: none; font-weight: 700; }
.aogfc-menu .sub-menu a:hover { color: var(--aogfc-green); }
.aogfc-product-card__placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--aogfc-muted); font-weight: 800; background: var(--aogfc-blue-soft); }
/* Desktop hover dropdown */
@media (min-width: 761px) {
    .has-mega.is-hover .aogfc-mega {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }
    .aogfc-menu .menu-item-has-children.is-hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}
    .aogfc-menu .menu-item-has-children.is-hover > .sub-menu li,
    .aogfc-menu .menu-item-has-children.is-hover > .sub-menu a,
    .aogfc-menu .menu-item-has-children.is-hover > .sub-menu .sub-menu {
        visibility: visible;
    }
@media (max-width: 760px) {
    .aogfc-product-archive__head { margin-bottom: 16px; padding: 16px 0 14px; }
    .aogfc-product-archive__head h1 { font-size: 23px; }
    .aogfc-product-archive__head p { font-size: 14px; line-height: 1.55; }
    .aogfc-menu .sub-menu { position: static; transform: none; width: 100%; min-width: 0; opacity: 1; pointer-events: none; display: none; grid-template-columns: 1fr; box-shadow: none; padding: 10px 14px; }
    .aogfc-menu .menu-item-has-children.is-open > .sub-menu { display: grid; opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
    .aogfc-menu .menu-item-has-children.is-open > .sub-menu,
    .aogfc-menu .menu-item-has-children.is-open > .sub-menu * { visibility: visible; pointer-events: auto; }
}
/* About and contact pages */
.aogfc-inner-hero { padding: 54px 0; background: linear-gradient(180deg, var(--aogfc-blue-soft) 0%, #fff 100%); border-bottom: 1px solid var(--aogfc-border); }
.aogfc-inner-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); gap: 42px; align-items: center; }
.aogfc-inner-hero .aogfc-breadcrumb { margin-bottom: 18px; }
.aogfc-inner-hero h1 { margin: 0; max-width: 780px; color: var(--aogfc-green-dark); font-size: clamp(34px, 4.5vw, 58px); line-height: 1.08; text-transform: uppercase; }
.aogfc-inner-hero p:not(.aogfc-eyebrow) { margin: 16px 0 0; max-width: 760px; color: #526158; font-size: 18px; line-height: 1.7; }
.aogfc-inner-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.aogfc-inner-hero__media { margin: 0; border-radius: 8px; overflow: hidden; box-shadow: 0 18px 42px rgba(7,91,32,.12); }
.aogfc-inner-hero__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.aogfc-about-values, .aogfc-about-process, .aogfc-contact-main { padding: 58px 0; }
.aogfc-value-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.aogfc-value-card { position: relative; padding: 24px 20px; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 12px 28px rgba(7,91,32,.055); }
.aogfc-value-card span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 18px; border-radius: 50%; background: var(--aogfc-blue-soft); color: var(--aogfc-green); font-weight: 900; }
.aogfc-value-card h3 { margin: 0 0 9px; color: var(--aogfc-green-dark); font-size: 18px; }
.aogfc-value-card p { margin: 0; color: #617067; line-height: 1.65; }
.aogfc-about-capacity { padding: 64px 0; background: var(--aogfc-blue-soft); border-block: 1px solid var(--aogfc-border); }
.aogfc-about-capacity__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: center; }
.aogfc-about-capacity__copy h2 { margin: 0 0 14px; color: var(--aogfc-green-dark); font-size: clamp(28px, 3vw, 42px); line-height: 1.15; text-transform: uppercase; }
.aogfc-about-capacity__copy p:not(.aogfc-eyebrow) { margin: 0; color: #526158; font-size: 17px; line-height: 1.75; }
.aogfc-capacity-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.aogfc-capacity-stats div { padding: 16px; border-radius: 8px; background: #fff; border: 1px solid var(--aogfc-border); }
.aogfc-capacity-stats strong { display: block; color: var(--aogfc-green); font-size: 28px; line-height: 1; }
.aogfc-capacity-stats span { display: block; margin-top: 8px; color: #526158; font-size: 13px; font-weight: 800; line-height: 1.45; }
.aogfc-capacity-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.aogfc-capacity-gallery img { width: 100%; height: 100%; min-height: 210px; object-fit: cover; border-radius: 8px; border: 1px solid var(--aogfc-border); }
.aogfc-capacity-gallery img:first-child { grid-row: span 2; }
.aogfc-about-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; counter-reset: steps; }
.aogfc-about-steps article { padding: 24px 20px; border-radius: 8px; background: var(--aogfc-green-dark); color: #fff; }
.aogfc-about-steps span { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 18px; border-radius: 50%; background: #fff; color: var(--aogfc-green); font-size: 22px; font-weight: 900; }
.aogfc-about-steps h3 { margin: 0 0 10px; font-size: 18px; text-transform: uppercase; }
.aogfc-about-steps p { margin: 0; color: rgba(255,255,255,.86); line-height: 1.65; }
.aogfc-about-partners { padding: 58px 0 70px; background: #fff; }
.aogfc-logo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.aogfc-logo-strip img { width: 100%; aspect-ratio: 245 / 113; object-fit: contain; padding: 14px; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 8px 20px rgba(7,91,32,.045); }
.aogfc-contact-quick, .aogfc-contact-form-card, .aogfc-contact-info-panel { border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 14px 32px rgba(7,91,32,.07); }
.aogfc-contact-quick { padding: 28px; }
.aogfc-contact-quick h2, .aogfc-contact-form-card h2, .aogfc-contact-info-panel h2 { margin: 0 0 16px; color: var(--aogfc-green-dark); font-size: 22px; text-transform: uppercase; }
.aogfc-contact-quick p { margin: 0; padding: 13px 0; border-bottom: 1px solid var(--aogfc-border); color: #35483b; font-size: 16px; }
.aogfc-contact-quick p:last-child { border-bottom: 0; }
.aogfc-contact-quick span, .aogfc-contact-info-panel strong { display: block; color: var(--aogfc-green); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.aogfc-contact-main__grid { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 28px; align-items: start; }
.aogfc-contact-form-card { padding: 30px; }
.aogfc-contact-form-card > p { margin: 0 0 20px; color: #617067; }
.aogfc-contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 0; }
.aogfc-contact-form input, .aogfc-contact-form textarea { width: 100%; border: 1px solid #d8e7dc; border-radius: 6px; padding: 0 14px; font: inherit; }
.aogfc-contact-form input { height: 46px; }
.aogfc-contact-form textarea { grid-column: 1 / -1; padding-top: 12px; resize: vertical; }
.aogfc-contact-form button { width: fit-content; min-height: 44px; grid-column: 1 / -1; border-radius: 6px; }
.aogfc-contact-info-panel { padding: 26px; }
.aogfc-contact-info-panel ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.aogfc-contact-info-panel li { padding-bottom: 12px; border-bottom: 1px solid var(--aogfc-border); }
.aogfc-contact-info-panel li:last-child { border-bottom: 0; }
.aogfc-contact-info-panel span, .aogfc-contact-info-panel a { color: #35483b; font-weight: 800; }
.aogfc-contact-note { margin-top: 22px; padding: 18px; border-radius: 8px; background: var(--aogfc-blue-soft); color: #526158; }
.aogfc-contact-note strong { color: var(--aogfc-green-dark); }
.aogfc-contact-note p { margin: 8px 0 0; }
.aogfc-contact-map { padding: 0 0 64px; }
.aogfc-contact-map iframe { width: 100%; height: 380px; border: 0; border-radius: 8px; box-shadow: 0 14px 34px rgba(7,91,32,.08); }
@media (max-width: 1024px) {
    .aogfc-inner-hero__grid,
    .aogfc-about-capacity__grid,
    .aogfc-contact-main__grid { grid-template-columns: 1fr; }
    .aogfc-editor-page__grid { grid-template-columns: 1fr; }
    .aogfc-editor-side { position: static; }
    .aogfc-value-grid,
    .aogfc-about-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Tapdeco three-column footer */
.aogfc-site-footer {
    border-top: 0;
    color: #fff;
    background:
        radial-gradient(circle at 88% 8%, rgba(255, 105, 0, .14), transparent 26%),
        linear-gradient(135deg, #063d27 0%, #032f20 58%, #022719 100%);
}

.aogfc-site-footer__main {
    padding: 50px 0 42px;
}

.aogfc-site-footer__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 76px);
    align-items: start;
}

.aogfc-site-footer__logo {
    display: block;
    width: min(100%, 360px);
    max-width: none;
    min-height: 0;
    margin: 0 0 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.aogfc-site-footer__logo img {
    display: block;
    width: min(100%, 340px);
    max-width: none;
    max-height: none;
    height: auto;
    object-fit: contain;
}

.aogfc-site-footer__brand h2,
.aogfc-site-footer__address h2,
.aogfc-site-footer__quote h2 {
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.aogfc-site-footer__intro,
.aogfc-site-footer__address p,
.aogfc-site-footer__quote p {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.75;
}

.aogfc-site-footer__address p:first-of-type,
.aogfc-site-footer__quote p:first-of-type {
    margin-top: 0;
}

.aogfc-site-footer__address strong {
    color: #fff;
}

.aogfc-site-footer__contact {
    gap: 12px;
}

.aogfc-site-footer__contact li {
    grid-template-columns: 28px minmax(0, 1fr);
    color: rgba(255, 255, 255, .9);
}

.aogfc-site-footer__contact-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 105, 0, .65);
    color: #ff7a1a;
    background: transparent;
    box-shadow: none;
}
.aogfc-site-footer__contact--office {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.aogfc-site-footer__contact--office li {
    align-items: start;
}
.aogfc-site-footer__contact-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
    color: #58675d;
    font-size: 13px;
    line-height: 1.55;
}
.aogfc-site-footer__contact-copy strong {
    color: #263b2d;
    font-size: 12px;
    font-weight: 850;
}

.aogfc-site-footer a,
.aogfc-site-footer__contact a {
    color: #fff;
}

.aogfc-site-footer a:hover,
.aogfc-site-footer a:focus-visible {
    color: #ff9a52;
}

.aogfc-site-footer__text-link {
    display: inline-flex;
    margin-top: 20px;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
}

.aogfc-site-footer__text-link::after {
    content: "→";
}

.aogfc-site-footer__quote-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-top: 24px;
}

.aogfc-site-footer__quote-btn {
    display: inline-flex;
    min-height: 48px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ff6900;
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(255, 105, 0, .2);
    font-size: 14px;
    font-weight: 850;
    text-transform: uppercase;
}

.aogfc-site-footer__quote-btn:hover,
.aogfc-site-footer__quote-btn:focus-visible {
    background: #ff812e;
    color: #fff !important;
    transform: translateY(-1px);
}

.aogfc-site-footer__quote-link {
    font-size: 14px;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.aogfc-site-footer__bottom {
    min-height: 54px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .12);
    color: rgba(255, 255, 255, .76);
}

@media (max-width: 960px) {
    .aogfc-site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 46px;
    }

    .aogfc-site-footer__quote {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .aogfc-site-footer__main {
        padding: 36px 0 28px;
    }

    .aogfc-site-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .aogfc-site-footer__quote {
        grid-column: auto;
    }

    .aogfc-site-footer__brand {
        padding-bottom: 0;
    }

    .aogfc-site-footer__logo {
        width: min(100%, 320px);
        margin-bottom: 24px;
    }

    .aogfc-site-footer__logo img {
        width: min(100%, 300px);
    }

    .aogfc-site-footer__bottom {
        padding: 14px 0 20px;
    }
}

@media (max-width: 760px) {
    .aogfc-inner-hero, .aogfc-static-hero { padding: 34px 0; }
    .aogfc-inner-hero__grid,
    .aogfc-static-hero--about .aogfc-static-hero__grid,
    .aogfc-about-capacity__grid,
    .aogfc-contact-main__grid,
    .aogfc-value-grid,
    .aogfc-about-steps,
    .aogfc-capacity-stats,
    .aogfc-logo-strip,
    .aogfc-contact-form { grid-template-columns: minmax(0, 1fr); }
    .aogfc-inner-hero h1, .aogfc-static-hero h1 { font-size: 30px; }
    .aogfc-inner-hero p:not(.aogfc-eyebrow), .aogfc-static-hero__copy > p:last-child { font-size: 16px; }
    .aogfc-about-values,
    .aogfc-about-capacity,
    .aogfc-about-process,
    .aogfc-about-partners,
    .aogfc-contact-main { padding: 36px 0; }
    .aogfc-editor-page__body { padding: 28px 0 42px; }
    .aogfc-editor-page__grid { gap: 18px; }
    .aogfc-editor-content h2 { font-size: 23px; }
    .aogfc-editor-content h3 { font-size: 19px; }
    .aogfc-editor-content p,
    .aogfc-editor-content li { font-size: 15px; line-height: 1.68; }
    .aogfc-editor-side { padding: 20px; }
    .aogfc-contact-form-card,
    .aogfc-contact-info-panel,
    .aogfc-contact-quick { padding: 20px; }
    .aogfc-contact-form textarea,
    .aogfc-contact-form button { grid-column: auto; }
    .aogfc-contact-map iframe { height: 300px; }
}
/* Compact single post header */
.aogfc-single.aogfc-single-post { padding: 0 0 58px; }
.aogfc-single-post .aogfc-single-hero { padding: 22px 0 24px; }
.aogfc-single-post .aogfc-single-hero .aogfc-breadcrumb { margin-bottom: 12px; }
.aogfc-single-post .aogfc-single-hero__copy { max-width: 1180px; }
.aogfc-single-post .aogfc-single-hero h1 { max-width: 1180px; margin-bottom: 12px; font-size: clamp(34px, 4vw, 52px); }
.aogfc-single-post .aogfc-single-hero__copy > p { max-width: 980px; margin-bottom: 12px; }
.aogfc-single-post .aogfc-single-post__layout { padding-top: 12px; }
.aogfc-single-post .aogfc-single-thumb-wrap { margin: 0 0 20px; }
.aogfc-single-post .aogfc-single-thumb-wrap .aogfc-single-thumb { margin: 0; border-radius: 0; width: 100%; max-height: 540px; object-fit: cover; }

@media (max-width: 760px) {
    .aogfc-single-post .aogfc-single-hero { padding: 22px 0; }
    .aogfc-single-post .aogfc-single-post__layout { padding-top: 14px; }
}
.aogfc-static-page { padding: 0 0 58px; background: linear-gradient(180deg, var(--aogfc-blue-soft) 0, #fff 430px); }
.aogfc-static-hero { padding: 46px 0 42px; border-bottom: 1px solid var(--aogfc-border); background: radial-gradient(circle at 86% 12%, rgba(7,143,47,.12), transparent 30%), var(--aogfc-blue-soft); }
.aogfc-static-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .52fr); gap: 34px; align-items: center; }
.aogfc-static-hero__grid--single { grid-template-columns: minmax(0, 1fr); }
.aogfc-static-hero__copy { min-width: 0; }
.aogfc-static-hero .aogfc-breadcrumb { margin-bottom: 16px; }
.aogfc-static-hero h1 { margin: 0; max-width: 840px; color: var(--aogfc-green-dark); font-size: clamp(34px, 4.2vw, 56px); line-height: 1.1; text-transform: uppercase; }
.aogfc-static-hero__copy > p:last-child { margin: 16px 0 0; max-width: 820px; color: #405148; font-size: 18px; line-height: 1.7; }
.aogfc-static-hero__media { margin: 0; overflow: hidden; border-radius: 8px; border: 1px solid var(--aogfc-border); background: #fff; box-shadow: 0 18px 42px rgba(7,91,32,.12); }
.aogfc-static-hero__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.aogfc-static-hero--about { padding: 0; border-bottom: 0; background: #fff; }
.aogfc-static-hero--about .aogfc-static-hero__media { width: 100%; border: 0; border-radius: 0; box-shadow: none; }
.aogfc-static-hero--about .aogfc-static-hero__media--banner img { width: 100%; aspect-ratio: 2172 / 724; object-fit: cover; }
.aogfc-static-hero__panel { position: relative; padding: 28px; border-radius: 8px; background: var(--aogfc-green-dark); color: #fff; box-shadow: 0 20px 44px rgba(7,91,32,.18); overflow: hidden; }
.aogfc-static-hero__panel::after { content: ""; position: absolute; right: -46px; bottom: -46px; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,255,255,.1); }
.aogfc-static-hero__panel span { display: inline-flex; margin-bottom: 12px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.12); color: var(--aogfc-green-soft); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.aogfc-static-hero__panel strong { display: block; max-width: 360px; font-size: 26px; line-height: 1.25; }
.aogfc-static-hero__panel p { position: relative; z-index: 1; margin: 14px 0 0; color: rgba(255,255,255,.88); line-height: 1.65; }
.aogfc-static-content { margin: 34px auto 0; max-width: 1040px; padding: 34px 38px; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 16px 34px rgba(7,91,32,.065); color: #314439; font-size: 18px; line-height: 1.82; }
.aogfc-static-content > *:first-child { margin-top: 0; }
.aogfc-static-content h2, .aogfc-static-content h3 { color: var(--aogfc-green-dark); line-height: 1.28; }
.aogfc-static-content h2 { margin: 32px 0 12px; font-size: 28px; }
.aogfc-static-content h3 { margin: 24px 0 10px; font-size: 22px; }
.aogfc-static-content p { margin: 0 0 18px; }
.aogfc-static-content ul, .aogfc-static-content ol { margin: 0 0 20px; padding-left: 24px; }
.aogfc-static-content li { margin-bottom: 8px; }
.aogfc-static-content blockquote { margin: 24px 0; padding: 18px 22px; border-left: 4px solid var(--aogfc-green); border-radius: 0 8px 8px 0; background: var(--aogfc-blue-soft); color: var(--aogfc-green-dark); font-weight: 800; }
.aogfc-static-content img { max-width: 100%; height: auto; border-radius: 8px; }
.aogfc-editor-page__body { padding: 42px 0 64px; }
.aogfc-editor-page__grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 28px; align-items: start; }
.aogfc-editor-content { color: #314439; }
.aogfc-editor-content > *:first-child { margin-top: 0; }
.aogfc-editor-content h2,
.aogfc-editor-content h3,
.aogfc-editor-content h4 { color: var(--aogfc-green-dark); line-height: 1.25; }
.aogfc-editor-content h2 { margin: 30px 0 12px; font-size: 28px; text-transform: uppercase; }
.aogfc-editor-content h3 { margin: 24px 0 10px; font-size: 22px; }
.aogfc-editor-content p { margin: 0 0 17px; line-height: 1.78; }
.aogfc-editor-content ul,
.aogfc-editor-content ol { margin: 0 0 20px; padding-left: 24px; }
.aogfc-editor-content li { margin-bottom: 8px; line-height: 1.7; }
.aogfc-editor-content a { color: var(--aogfc-green); font-weight: 800; }
.aogfc-editor-content--compact { margin: 4px 0 18px; padding: 16px 0 4px; border-top: 1px solid #e2eee5; }
.aogfc-editor-content--compact h2 { font-size: 22px; }
.aogfc-editor-content--compact p { font-size: 15px; line-height: 1.68; }
.aogfc-editor-side { position: sticky; top: 118px; padding: 24px; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 14px 32px rgba(7,91,32,.07); }
.aogfc-editor-side h2 { margin: 0 0 16px; color: var(--aogfc-green-dark); font-size: 20px; line-height: 1.25; text-transform: uppercase; }
.aogfc-editor-side ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.aogfc-editor-side li { padding-bottom: 12px; border-bottom: 1px solid var(--aogfc-border); }
.aogfc-editor-side li:last-child { border-bottom: 0; }
.aogfc-editor-side span { display: block; margin-bottom: 5px; color: var(--aogfc-green); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.aogfc-editor-side strong,
.aogfc-editor-side a { color: #35483b; font-weight: 800; line-height: 1.55; }
.aogfc-editor-side__btn { width: 100%; margin-top: 18px; justify-content: center; }
.aogfc-editor-page--about .aogfc-editor-side { padding: 18px; border-color: #cce3d2; background: #f5faf6; box-shadow: 0 16px 34px rgba(7,91,32,.1); }
.aogfc-editor-page--about .aogfc-editor-side h2 { margin-bottom: 14px; color: var(--aogfc-green-dark); font-size: 22px; text-align: center; }
.aogfc-editor-page--about .aogfc-editor-side ul { gap: 8px; }
.aogfc-editor-page--about .aogfc-editor-side li { position: relative; padding: 10px 12px 10px 15px; border: 1px solid #e0ede3; border-radius: 8px; background: #fff; box-shadow: 0 7px 16px rgba(7,91,32,.05); overflow: hidden; }
.aogfc-editor-page--about .aogfc-editor-side li::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(180deg, var(--aogfc-red), var(--aogfc-green)); }
.aogfc-editor-page--about .aogfc-editor-side li:last-child { border-bottom: 1px solid #e0ede3; }
.aogfc-editor-page--about .aogfc-editor-side span { margin-bottom: 5px; color: var(--aogfc-red); font-size: 12px; }
.aogfc-editor-page--about .aogfc-editor-side strong,
.aogfc-editor-page--about .aogfc-editor-side a { display: block; color: #314439; font-size: 15px; font-weight: 900; overflow-wrap: anywhere; }
.aogfc-editor-page--about .aogfc-editor-side a.aogfc-editor-side__btn { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 50px; margin-top: 14px; padding: 0 16px; border: 0; border-radius: 8px; background: linear-gradient(135deg, #ff6900 0%, #087c31 100%); color: #fff; font-size: 17px; font-weight: 900; line-height: 1.2; text-align: center; white-space: nowrap; box-shadow: 0 16px 30px rgba(255,105,0,.3), 0 10px 24px rgba(7,143,47,.24); text-transform: uppercase; }
.aogfc-editor-page--about .aogfc-editor-side a.aogfc-editor-side__btn::before { content: "\260E"; margin-right: 9px; font-size: 20px; line-height: 1; }
.aogfc-editor-page--about .aogfc-editor-side a.aogfc-editor-side__btn:hover { color: #fff; background: linear-gradient(135deg, #e85f00 0%, #075b20 100%); box-shadow: 0 20px 34px rgba(255,105,0,.34), 0 12px 28px rgba(7,143,47,.28); transform: translateY(-2px); }
@media (max-width: 1024px) {
    .aogfc-editor-page__grid { grid-template-columns: minmax(0, 1fr); }
    .aogfc-editor-side { position: static; }
    .aogfc-static-flex-sidebar .aogfc-container { grid-template-columns: minmax(0, 1fr); }
}
.aogfc-static-flexible { padding-bottom: 58px; }
.aogfc-static-flex-banner { width: 100%; background: #fff; overflow: hidden; }
.aogfc-static-flex-banner picture,
.aogfc-static-flex-banner img { display: block; width: 100%; }
.aogfc-static-flex-banner img { aspect-ratio: 2172 / 724; object-fit: cover; }
.aogfc-static-flex-intro { padding: 52px 0 28px; background: linear-gradient(180deg, var(--aogfc-red-soft) 0%, #fff 100%); text-align: center; }
.aogfc-static-flex-intro .aogfc-breadcrumb { justify-content: center; }
.aogfc-static-flex-intro .aogfc-eyebrow { color: var(--aogfc-red); }
.aogfc-static-flex-intro h1 { margin: 0; color: var(--aogfc-green-dark); font-size: clamp(40px, 5.8vw, 78px); line-height: 1; font-weight: 900; text-transform: uppercase; }
.aogfc-static-flex-intro h2 { max-width: 980px; margin: 18px auto 0; color: var(--aogfc-green-dark); font-size: clamp(26px, 3vw, 42px); line-height: 1.18; text-transform: uppercase; }
.aogfc-static-flex-intro__content { max-width: 920px; margin: 24px auto 0; color: #314439; font-size: 18px; line-height: 1.82; }
.aogfc-static-flex-content { padding: 34px 0; }
.aogfc-static-flex-content .aogfc-static-content { margin-top: 0; }
.aogfc-static-flex-sidebar { padding: 42px 0 64px; }
.aogfc-static-flex-sidebar .aogfc-container { width: min(1180px, calc(100% - 48px)); grid-template-columns: minmax(0, 1fr) 300px; gap: 24px; }
.aogfc-static-flex-sidebar .aogfc-static-content { margin-top: 0; max-width: none; padding: 30px 34px; }
.aogfc-static-flex-sidebar .aogfc-static-content h2:first-child { margin-top: 0; font-size: clamp(26px, 2.4vw, 34px); }
.aogfc-static-flex-contact { padding: 34px 0; }
.aogfc-static-flex-contact .aogfc-contact-form-card { width: min(100%, 980px); margin-inline: auto; padding: 28px; border-radius: 8px; box-shadow: 0 16px 36px rgba(7,91,32,.075); }
.aogfc-static-flex-contact .aogfc-contact-form-card h2,
.aogfc-static-flex-contact .aogfc-contact-form-card > p { text-align: center; }
.aogfc-static-flex-contact .aogfc-contact-form-card > p { max-width: 720px; margin-inline: auto; color: #526158; font-size: 17px; line-height: 1.65; }
.aogfc-static-flex-quick { padding: 34px 0; }
.aogfc-static-flex-quick .aogfc-editor-side { position: static; width: min(100%, 980px); margin-inline: auto; padding: 30px; border-color: #d8e9db; background: linear-gradient(180deg, #fff 0%, #fbfdfb 100%); box-shadow: 0 18px 42px rgba(7,91,32,.09); }
.aogfc-static-flex-quick .aogfc-editor-side h2 { margin: 0 0 22px; color: var(--aogfc-green-dark); font-size: clamp(24px, 2.4vw, 32px); text-align: center; letter-spacing: 0; }
.aogfc-static-flex-quick .aogfc-editor-side ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.aogfc-static-flex-quick .aogfc-editor-side li { position: relative; min-height: 104px; padding: 18px 18px 18px 20px; border: 1px solid #e0ede3; border-radius: 8px; background: #fff; box-shadow: 0 8px 18px rgba(7,91,32,.045); overflow: hidden; }
.aogfc-static-flex-quick .aogfc-editor-side li::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(180deg, var(--aogfc-red), var(--aogfc-green)); }
.aogfc-static-flex-quick .aogfc-editor-side li:last-child { border-bottom: 1px solid #e0ede3; }
.aogfc-static-flex-quick .aogfc-editor-side .aogfc-static-info-item--wide { grid-column: 1 / -1; min-height: 96px; }
.aogfc-static-flex-quick .aogfc-editor-side span { margin-bottom: 8px; color: var(--aogfc-red); font-size: 13px; line-height: 1.25; }
.aogfc-static-flex-quick .aogfc-editor-side strong,
.aogfc-static-flex-quick .aogfc-editor-side a:not(.aogfc-editor-side__btn) { display: block; color: #35483b; font-size: 18px; font-weight: 900; line-height: 1.45; overflow-wrap: anywhere; }
.aogfc-static-flex-quick .aogfc-editor-side a.aogfc-editor-side__btn { display: flex; width: min(100%, 290px); min-height: 56px; margin: 24px auto 0; border: 0; border-radius: 8px; background: linear-gradient(135deg, #ff6900 0%, #087c31 100%); color: #fff; font-size: 18px; font-weight: 900; box-shadow: 0 18px 32px rgba(255,105,0,.3), 0 12px 26px rgba(7,143,47,.25); text-transform: uppercase; }
.aogfc-static-flex-quick .aogfc-editor-side a.aogfc-editor-side__btn::before { content: "\260E"; margin-right: 9px; font-size: 20px; line-height: 1; }
.aogfc-static-flex-quick .aogfc-editor-side a.aogfc-editor-side__btn:hover { color: #fff; background: linear-gradient(135deg, #e85f00 0%, #075b20 100%); box-shadow: 0 22px 38px rgba(255,105,0,.34), 0 14px 30px rgba(7,143,47,.28); transform: translateY(-2px); }
.aogfc-static-flex-map { padding: 34px 0 64px; }
.aogfc-static-flex-map .aogfc-contact-map-flat { width: min(100%, 980px); margin-inline: auto; }
@media (max-width: 1024px) {
    .aogfc-static-flex-sidebar .aogfc-container { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 760px) {
    .aogfc-static-flex-quick { padding: 24px 0; }
    .aogfc-static-flex-quick .aogfc-editor-side { padding: 22px 16px; }
    .aogfc-static-flex-quick .aogfc-editor-side ul { grid-template-columns: minmax(0, 1fr); }
    .aogfc-static-flex-quick .aogfc-editor-side .aogfc-static-info-item--wide { grid-column: auto; }
    .aogfc-static-flex-quick .aogfc-editor-side a.aogfc-editor-side__btn { width: 100%; }
}
.aogfc-contact-layout__right { display: grid; gap: 22px; align-content: start; }
.aogfc-contact-form-card .aogfc-lead-form label { font-size: 14px; }

/* About page only: open-letter frame */
.aogfc-about-letter-page {
    padding: 54px 0 72px;
    background: #f8fbf9;
}
.aogfc-about-letter-shell {
    width: min(1140px, calc(100% - 30px));
    margin-inline: auto;
}
.aogfc-about-letter {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border: 5px solid transparent;
    border-radius: 18px;
    background:
        linear-gradient(#f1e7d4, #f1e7d4) padding-box,
        repeating-linear-gradient(135deg, var(--aogfc-leaf-dark) 0 8px, #f1e7d4 8px 16px, var(--aogfc-green) 16px 24px, #f1e7d4 24px 32px) border-box;
    box-shadow: 0 22px 54px rgba(0, 33, 72, .12);
}
.aogfc-about-letter__inner {
    min-height: 604px;
    padding: 42px 58px 50px;
    color: #314439;
    font-size: 18px;
    line-height: 1.86;
}
.aogfc-about-letter__head {
    position: relative;
    margin: 0 auto 30px;
    max-width: 760px;
    text-align: center;
}
.aogfc-about-letter__head::before {
    content: "";
    display: block;
    width: 86px;
    height: 4px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--aogfc-leaf), var(--aogfc-green));
}
.aogfc-about-letter__head::after {
    content: "";
    display: block;
    width: 42px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: var(--aogfc-leaf);
}
.aogfc-about-letter h1 {
    margin: 0;
    color: var(--aogfc-green-dark);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.12;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-about-letter__intro {
    margin: 0 0 26px;
    color: #526158;
    font-size: 20px;
    line-height: 1.75;
    font-weight: 600;
}
.aogfc-about-letter__content > *:first-child,
.aogfc-about-letter__empty > *:first-child {
    margin-top: 0;
}
.aogfc-about-letter__content p,
.aogfc-about-letter__empty p {
    margin: 0 0 18px;
}
.aogfc-about-letter__content h2,
.aogfc-about-letter__content h3,
.aogfc-about-letter__empty h2 {
    color: var(--aogfc-blue-dark);
    line-height: 1.28;
}
.aogfc-about-letter__content h2,
.aogfc-about-letter__empty h2 {
    margin: 30px 0 12px;
    font-size: 28px;
}
.aogfc-about-letter__content h3 {
    margin: 24px 0 10px;
    font-size: 22px;
}
.aogfc-about-letter__content ul,
.aogfc-about-letter__content ol {
    margin: 0 0 20px;
    padding-left: 24px;
}
.aogfc-about-letter__content li {
    margin-bottom: 8px;
}
.aogfc-about-letter__content a {
    color: var(--aogfc-blue-dark);
    font-weight: 800;
}
.aogfc-about-letter__content blockquote {
    margin: 24px 0;
    padding: 16px 20px;
    border-left: 4px solid var(--aogfc-blue);
    background: rgba(255, 255, 255, .38);
    color: var(--aogfc-blue-dark);
    font-weight: 800;
}
.aogfc-about-letter__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
@media (max-width: 760px) {
    .aogfc-about-letter-page {
        padding: 34px 0 48px;
    }
    .aogfc-about-letter {
        min-height: 560px;
        border-width: 4px;
        border-radius: 14px;
        background:
            linear-gradient(#f1e7d4, #f1e7d4) padding-box,
            repeating-linear-gradient(135deg, var(--aogfc-leaf-dark) 0 7px, #f1e7d4 7px 14px, var(--aogfc-green) 14px 21px, #f1e7d4 21px 28px) border-box;
    }
    .aogfc-about-letter__inner {
        min-height: 548px;
        padding: 28px 22px 34px;
        font-size: 16px;
        line-height: 1.78;
    }
    .aogfc-about-letter h1 {
        font-size: 38px;
    }
    .aogfc-about-letter__intro {
        font-size: 17px;
    }
}
.aogfc-static-empty { margin: 34px auto 0; max-width: 820px; padding: 34px; border: 1px dashed #b7daf5; border-radius: 8px; background: #fff; text-align: center; box-shadow: 0 12px 28px rgba(7,91,32,.055); }
.aogfc-static-empty h2 { margin: 0 0 10px; color: var(--aogfc-green-dark); font-size: 26px; }
.aogfc-static-empty p { margin: 0; color: #526158; line-height: 1.65; }

@media (min-width: 761px) {
    .aogfc-menu .menu-item-has-children.is-hover > .sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
        transition-delay: 0s !important;
    }
    .aogfc-menu .menu-item-has-children.is-hover > .sub-menu * {
        visibility: visible !important;
    }
}

/* Final product sidebar overrides: must stay after legacy taxonomy rules. */
.aogfc-product-cat-sidebar,
.aogfc-product-tax .aogfc-product-cat-sidebar {
    display: grid;
    gap: 16px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.aogfc-product-cat-sidebar .aogfc-sidebar-category-card {
    overflow: hidden;
    border: 1px solid #cfe1d4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(8, 75, 31, .07);
}
.aogfc-product-cat-sidebar .aogfc-product-cat-sidebar__head,
.aogfc-product-tax .aogfc-product-cat-sidebar__head {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 14px;
    border: 0;
    background: #087c31;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .25px;
    text-align: center;
    text-transform: uppercase;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-sidebar__head::before {
    height: 3px;
    background: #ff6900;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list,
.aogfc-product-tax .aogfc-product-cat-list {
    display: block;
    margin: 0;
    padding: 4px 14px 7px;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__item,
.aogfc-product-tax .aogfc-product-cat-list__item {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__row,
.aogfc-product-tax .aogfc-product-cat-list__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    min-height: 43px;
    padding: 0;
    border: 0;
    border-bottom: 1px dashed #d9e3dc;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__item:not(.has-children) .aogfc-product-cat-list__parent {
    grid-column: 1 / -1;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__parent,
.aogfc-product-tax .aogfc-product-cat-list__parent {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    padding: 10px 5px 10px 3px;
    color: #12331e;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    text-align: left;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__parent::before {
    display: none;
    content: none;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__row:hover,
.aogfc-product-tax .aogfc-product-cat-list__row:hover {
    background: #f5faf6;
    box-shadow: none;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__row:hover .aogfc-product-cat-list__parent,
.aogfc-product-tax .aogfc-product-cat-list__row:hover .aogfc-product-cat-list__parent {
    color: #078f2f;
}
.aogfc-product-cat-sidebar .is-active-parent > .aogfc-product-cat-list__row,
.aogfc-product-tax .is-active-parent > .aogfc-product-cat-list__row {
    background: #fff8f3;
    box-shadow: inset 3px 0 0 #ff6900;
}
.aogfc-product-cat-sidebar .is-active-parent > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent,
.aogfc-product-tax .is-active-parent > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent {
    color: #e85f00;
    font-weight: 750;
}
@media (max-width: 1024px) {
    .aogfc-product-cat-sidebar,
    .aogfc-product-tax .aogfc-product-cat-sidebar {
        position: static;
        top: auto;
    }
}

/* Product sidebar: Tapde.com green and orange brand treatment. */
.aogfc-product-cat-sidebar,
.aogfc-product-tax .aogfc-product-cat-sidebar {
    display: grid;
    gap: 18px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.aogfc-sidebar-category-card,
.aogfc-sidebar-support {
    overflow: hidden;
    border: 1px solid #cfe4d5;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(5, 79, 34, .09);
}
.aogfc-product-cat-sidebar .aogfc-product-cat-sidebar__head,
.aogfc-product-tax .aogfc-product-cat-sidebar__head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 10px 14px;
    border: 0;
    background: linear-gradient(135deg, #046c2b, #079b38);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .35px;
    text-align: center;
    text-transform: uppercase;
}
.aogfc-product-cat-sidebar__head::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: #ff6900;
}
.aogfc-product-cat-sidebar__head svg {
    width: 17px;
    height: 17px;
    fill: #ffb37d;
    flex: 0 0 auto;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list,
.aogfc-product-tax .aogfc-product-cat-list {
    display: block;
    margin: 0;
    padding: 5px 15px 8px;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__item,
.aogfc-product-tax .aogfc-product-cat-list__item {
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__row,
.aogfc-product-tax .aogfc-product-cat-list__row {
    min-height: 43px;
    border: 0;
    border-bottom: 1px dashed #d8e2da;
    border-radius: 0;
    background: transparent;
    grid-template-columns: minmax(0, 1fr) 28px;
    transition: background .18s ease;
}
.aogfc-product-cat-list__item:not(.has-children) .aogfc-product-cat-list__parent {
    grid-column: 1 / -1;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__parent,
.aogfc-product-tax .aogfc-product-cat-list__parent {
    min-width: 0;
    padding: 10px 7px 10px 4px;
    color: #173b24;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.28;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__parent::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 8px;
    border-radius: 50%;
    background: #ff6900;
    opacity: 0;
    transform: scale(.5);
    transition: opacity .18s ease, transform .18s ease;
    flex: 0 0 auto;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__row:hover,
.aogfc-product-tax .aogfc-product-cat-list__row:hover,
.aogfc-product-cat-sidebar .aogfc-product-cat-list__item.is-active-parent > .aogfc-product-cat-list__row,
.aogfc-product-tax .aogfc-product-cat-list__item.is-active-parent > .aogfc-product-cat-list__row {
    border-color: #d8e2da;
    background: #f2faf4;
    box-shadow: none;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__row:hover .aogfc-product-cat-list__parent,
.aogfc-product-tax .aogfc-product-cat-list__row:hover .aogfc-product-cat-list__parent,
.aogfc-product-cat-sidebar .is-active-parent > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent,
.aogfc-product-tax .is-active-parent > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent {
    color: #e95f00;
    font-weight: 750;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__row:hover .aogfc-product-cat-list__parent::before,
.aogfc-product-cat-sidebar .is-active-parent > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent::before {
    opacity: 1;
    transform: scale(1);
}
.aogfc-product-cat-sidebar .aogfc-cat-toggle,
.aogfc-product-tax .aogfc-cat-toggle {
    width: 24px;
    height: 24px;
    margin-right: 2px;
    border: 1px solid #cfe4d5;
    background: #edf8f0;
}
.aogfc-product-cat-sidebar .aogfc-cat-toggle::before,
.aogfc-product-tax .aogfc-cat-toggle::before {
    border-color: #078f2f;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-children,
.aogfc-product-tax .aogfc-product-cat-children {
    margin: 0;
    padding: 5px 6px 7px 14px;
    border-left: 3px solid #d9ebde;
    background: #fbfdfb;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-children a,
.aogfc-product-tax .aogfc-product-cat-children a {
    min-height: 31px;
    padding: 6px 8px;
    color: #365541;
    font-size: 13px;
    font-weight: 600;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-children a:hover,
.aogfc-product-tax .aogfc-product-cat-children a:hover {
    background: #edf8f0;
    color: #078f2f;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-children .is-current a,
.aogfc-product-tax .aogfc-product-cat-children .is-current a {
    background: #078f2f;
    color: #fff;
    box-shadow: 0 7px 16px rgba(7, 143, 47, .18);
}
.aogfc-sidebar-support__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 10px 14px;
    background: #075f28;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .3px;
    text-transform: uppercase;
}
.aogfc-sidebar-support__status {
    width: 8px;
    height: 8px;
    border: 2px solid rgba(255,255,255,.72);
    border-radius: 50%;
    background: #65de76;
    box-shadow: 0 0 0 4px rgba(101,222,118,.15);
}
.aogfc-sidebar-support__body {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 18px 15px 14px;
}
.aogfc-sidebar-support__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 5px solid #fff0e6;
    border-radius: 50%;
    background: #ff6900;
    color: #fff;
    box-shadow: 0 8px 18px rgba(255,105,0,.22);
}
.aogfc-sidebar-support__icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.aogfc-sidebar-support__content {
    display: grid;
    gap: 3px;
    min-width: 0;
}
.aogfc-sidebar-support__content strong {
    color: #163c23;
    font-size: 14px;
    line-height: 1.25;
}
.aogfc-sidebar-support__phone {
    color: #f05f00;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.25;
}
.aogfc-sidebar-support__office {
    display: grid;
    gap: 1px;
    margin-top: 5px;
    padding-top: 7px;
    border-top: 1px dashed #d6e4da;
    color: #087c31;
    line-height: 1.25;
}
.aogfc-sidebar-support__office span {
    color: #5b7563;
    font-size: 10px;
    font-weight: 650;
}
.aogfc-sidebar-support__office strong {
    color: #087c31;
    font-size: 14px;
    font-weight: 800;
}
.aogfc-sidebar-support__email {
    overflow-wrap: anywhere;
    color: #52705b;
    font-size: 11px;
    line-height: 1.35;
}
.aogfc-sidebar-support__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0 15px 16px;
}
.aogfc-sidebar-support__actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #ff6900;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 8px 16px rgba(255,105,0,.16);
}
.aogfc-sidebar-support__actions a:hover {
    background: #e65f00;
    color: #fff;
    transform: translateY(-1px);
}
.aogfc-sidebar-support__actions .is-zalo {
    background: #078f2f;
    box-shadow: 0 8px 16px rgba(7,143,47,.16);
}
.aogfc-sidebar-support__actions .is-zalo:hover {
    background: #056d25;
}
@media (max-width: 1024px) {
    .aogfc-product-cat-sidebar,
    .aogfc-product-tax .aogfc-product-cat-sidebar {
        position: static;
        top: auto;
    }
}

/* Shared content templates */
.aogfc-content-body {
    overflow-wrap: break-word;
}
.aogfc-content-body iframe,
.aogfc-content-body video,
.aogfc-content-body embed,
.aogfc-content-body object {
    max-width: 100%;
}
.aogfc-content-body table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}
.aogfc-content-body th,
.aogfc-content-body td {
    padding: 10px 12px;
    border: 1px solid #e3ebe5;
}
.aogfc-common-archive .aogfc-blog-hero .aogfc-breadcrumb {
    margin-bottom: 14px;
}
.aogfc-common-archive .aogfc-blog-hero {
    background: #f5f9f6;
    border-bottom: 1px solid #e5eee7;
}
.aogfc-post-children {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}
.aogfc-post-children a,
.aogfc-tag-cloud a,
.aogfc-quick-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid #e3eee6;
    border-radius: 4px;
    background: #fff;
    color: #263b2d;
    font-size: 14px;
    font-weight: 800;
}
.aogfc-post-children a:hover,
.aogfc-tag-cloud a:hover,
.aogfc-quick-links a:hover {
    border-color: var(--aogfc-blue-dark);
    color: var(--aogfc-blue-dark);
}
.aogfc-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.aogfc-sidebar-block h2 {
    margin: 0 0 14px;
    color: var(--aogfc-blue-dark);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}
.aogfc-blog-sidebar .aogfc-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    margin: 0 0 18px;
    border: 1px solid var(--aogfc-border);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(7,91,32,.05);
}
.aogfc-blog-sidebar .aogfc-search input {
    min-width: 0;
    height: 46px;
    border: 0;
    border-radius: 0;
    padding: 0 18px;
    background: transparent;
    font-size: 15px;
}
.aogfc-blog-sidebar .aogfc-search button {
    min-width: 96px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    margin: 0;
    padding: 0 20px;
    background: var(--aogfc-green);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.aogfc-single-post__footer {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}
.aogfc-single-tags,
.aogfc-share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.aogfc-single-tags span,
.aogfc-share-links span {
    color: #617067;
    font-weight: 800;
}
.aogfc-single-tags a,
.aogfc-share-links a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 6px 11px;
    border: 1px solid #e3eee6;
    border-radius: 4px;
    background: #fff;
    color: var(--aogfc-blue-dark);
    font-size: 14px;
    font-weight: 800;
}
.aogfc-post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.aogfc-post-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 4px;
    background: #f2f8f3;
    color: var(--aogfc-blue-dark);
    font-weight: 900;
}
.aogfc-author-box {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
    border: 1px solid #e3eee6;
    border-radius: 6px;
    background: var(--aogfc-blue-soft);
}
.aogfc-author-box img {
    border-radius: 50%;
}
.aogfc-author-box h2 {
    margin: 0 0 6px;
    color: #16351f;
    font-size: 18px;
}
.aogfc-author-box p {
    margin: 0;
    color: #617067;
}
.aogfc-search-head {
    max-width: 760px;
    margin-bottom: 28px;
}
.aogfc-search-head p {
    margin: 8px 0 18px;
    color: #617067;
}
.aogfc-search-results-grid {
    display: grid;
    gap: 16px;
}
.aogfc-search-result {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
    border: 1px solid #e3eee6;
    border-radius: 6px;
    background: #fff;
}
.aogfc-search-result__image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    background: #f5f8f5;
}
.aogfc-search-result__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aogfc-search-result__type {
    display: inline-flex;
    margin-bottom: 6px;
    color: var(--aogfc-blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-search-result h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.35;
}
.aogfc-search-result p {
    margin: 0;
    color: #617067;
}
.aogfc-not-found {
    padding: 70px 0;
    background: #f6faf7;
}
.aogfc-not-found__panel {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}
.aogfc-not-found__panel > span {
    display: block;
    color: var(--aogfc-blue);
    font-size: clamp(54px, 9vw, 110px);
    line-height: 1;
    font-weight: 900;
}
.aogfc-not-found__panel h1 {
    margin: 10px 0;
    color: var(--aogfc-blue-dark);
}
.aogfc-not-found__panel p {
    color: #617067;
}
.aogfc-not-found .aogfc-search {
    max-width: 560px;
    margin: 20px auto;
}
.aogfc-quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}
.aogfc-not-found__products {
    margin-top: 28px;
}
.aogfc-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}
.aogfc-contact-info,
.aogfc-contact-form-card {
    border: 1px solid #e3eee6;
    border-radius: 6px;
    background: #fff;
    padding: 22px;
}
.aogfc-contact-info {
    display: grid;
    gap: 14px;
}
.aogfc-contact-info article {
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f5f1;
}
.aogfc-contact-info article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.aogfc-contact-info span {
    display: block;
    margin-bottom: 5px;
    color: var(--aogfc-blue-dark);
    font-weight: 900;
}
.aogfc-contact-info p {
    margin: 0;
    color: #617067;
    line-height: 1.6;
}
.aogfc-contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.aogfc-contact-social a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 7px 13px;
    border-radius: 4px;
    background: var(--aogfc-blue-dark);
    color: #fff;
    font-weight: 900;
}
.aogfc-contact-form-card h2 {
    margin: 0 0 16px;
    color: var(--aogfc-blue-dark);
    font-size: 24px;
}
.aogfc-contact-form-card .aogfc-lead-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.aogfc-contact-form-card .aogfc-lead-form label {
    display: grid;
    gap: 8px;
    color: #33473a;
    font-weight: 800;
}
.aogfc-contact-form-card .aogfc-lead-form input,
.aogfc-contact-form-card .aogfc-lead-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #e0ede3;
    border-radius: 6px;
    padding-inline: 14px;
    font: inherit;
}
.aogfc-contact-form-card .aogfc-lead-form input {
    height: 48px;
}
.aogfc-contact-form-card .aogfc-lead-form textarea {
    min-height: 116px;
    padding-top: 12px;
    resize: vertical;
}
.aogfc-contact-form-card .aogfc-lead-form label:nth-child(3) {
    grid-column: 1 / -1;
}
.aogfc-contact-form-card .aogfc-lead-form .aogfc-btn {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 210px;
    min-height: 50px;
    border-radius: 6px;
}
@media (max-width: 760px) {
    .aogfc-post-nav,
    .aogfc-author-box,
    .aogfc-search-result,
    .aogfc-contact-grid {
        grid-template-columns: 1fr;
    }
    .aogfc-search-result__image {
        max-height: 220px;
    }
}

/* Contact page: follows the surveyed /lien-he demo structure */
.aogfc-contact-demo-page {
    background:
        linear-gradient(180deg, rgba(255,105,0,.08) 0%, #fff 260px);
    color: #212529;
}
.aogfc-contact-container {
    width: 100%;
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 15px;
}
.aogfc-contact-crumb {
    min-height: 70px;
    display: flex;
    align-items: center;
    background: transparent;
}
.aogfc-contact-crumb .aogfc-breadcrumb {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}
.aogfc-contact-crumb .aogfc-breadcrumb a,
.aogfc-contact-crumb .aogfc-breadcrumb span {
    color: #617067;
}
.aogfc-contact-layout {
    padding: 28px 0 64px;
    display: grid;
    gap: 26px;
    justify-items: center;
}
.aogfc-contact-demo-page .aogfc-contact-form-card {
    width: min(100%, 980px);
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(7,91,32,.075);
}
.aogfc-contact-demo-page .aogfc-contact-form-card h2,
.aogfc-contact-demo-page .aogfc-contact-form-card > p {
    text-align: center;
}
.aogfc-contact-demo-page .aogfc-contact-form-card > p {
    max-width: 720px;
    margin-inline: auto;
    color: #526158;
    font-size: 17px;
    line-height: 1.65;
}
.aogfc-contact-company {
    position: relative;
    margin: 0;
    width: min(100%, 980px);
    padding: 26px;
    border: 1px solid rgba(7,143,47,.12);
    border-radius: 8px;
    background: #fff;
    color: #405148;
    font-size: 15px;
    line-height: 1.65;
    box-shadow: 0 14px 34px rgba(7,91,32,.07);
    overflow: hidden;
}
.aogfc-contact-page-head {
    position: relative;
    max-width: 920px;
    margin-inline: auto;
    padding: 30px 0 4px;
    text-align: center;
}
.aogfc-contact-page-head h1 {
    margin: 0;
    color: var(--aogfc-green-dark);
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-contact-page-head__content {
    max-width: 760px;
    margin: 18px auto 0;
    color: #35483b;
    font-size: 17px;
    line-height: 1.75;
}
.aogfc-contact-page-head__content h2 {
    margin: 0 0 10px;
    color: var(--aogfc-green-dark);
    font-size: 26px;
    line-height: 1.25;
}
.aogfc-contact-page-head__content blockquote {
    margin: 18px 0 0;
}
.aogfc-contact-company h1 {
    margin: 0;
    color: var(--aogfc-green-dark);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-contact-company h2 {
    margin: 0 0 18px;
    color: var(--aogfc-green-dark);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}
.aogfc-contact-company__eyebrow {
    margin: 0 0 10px;
    color: var(--aogfc-leaf-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.aogfc-contact-info-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 96px;
    padding: 18px;
    border: 1px solid #e2eee5;
    border-radius: 8px;
    background: #fbfdfb;
}
.aogfc-contact-info-row p {
    margin: 0;
}
.aogfc-contact-info-row__icon {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(7,143,47,.12);
    color: var(--aogfc-green);
}
.aogfc-contact-info-row__icon svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}
.aogfc-contact-info-row p > span {
    display: block;
    margin-bottom: 4px;
    color: var(--aogfc-leaf-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-contact-company a {
    color: var(--aogfc-green-dark);
    font-weight: 800;
}
.aogfc-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.aogfc-contact-info-row--wide {
    grid-column: 1 / -1;
}
.aogfc-contact-map-flat {
    width: min(100%, 980px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(7,143,47,.12);
    background: #fff;
    box-shadow: 0 18px 42px rgba(7,91,32,.08);
}
.aogfc-contact-map-flat iframe {
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: 0;
    display: block;
}
@media (max-width: 991px) {
    .aogfc-contact-crumb {
        min-height: 64px;
    }
    .aogfc-contact-layout__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }
    .aogfc-contact-map-flat iframe {
        height: 420px;
        min-height: 420px;
    }
}
@media (max-width: 760px) {
    .aogfc-contact-demo-page .aogfc-contact-form-card {
        padding: 22px;
    }
    .aogfc-contact-form-card .aogfc-lead-form,
    .aogfc-contact-info-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .aogfc-contact-info-row--wide {
        grid-column: auto;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .aogfc-contact-container {
        max-width: 720px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .aogfc-contact-container {
        max-width: 960px;
    }
}
@media (max-width: 575px) {
    .aogfc-contact-layout {
        padding-bottom: 42px;
    }
    .aogfc-contact-company {
        padding: 22px;
    }
    .aogfc-contact-page-head {
        padding-top: 20px;
    }
    .aogfc-contact-company h1 {
        font-size: 28px;
    }
    .aogfc-contact-map-flat iframe {
        height: 320px;
        min-height: 320px;
    }
}

/* Product taxonomy page rebuilt from the demo rhythm */
.aogfc-product-tax {
    padding: 0 0 48px;
    background: #fff;
}
.aogfc-product-tax > .aogfc-container {
    width: min(var(--aogfc-container), calc(100% - 48px));
    margin-inline: auto;
}
.aogfc-tax-banner {
    width: 100%;
    background: #f4f7f5;
    overflow: hidden;
}
.aogfc-tax-banner picture,
.aogfc-tax-banner img {
    display: block;
    width: 100%;
}
.aogfc-tax-banner img {
    height: clamp(180px, 25.5vw, 327px);
    object-fit: cover;
}
.aogfc-tax-head {
    padding: 24px 0 14px;
}
.aogfc-product-tax .aogfc-breadcrumb {
    margin: 0;
    padding: 0;
    color: #617067;
    font-size: 14px;
    line-height: 1.6;
}
.aogfc-product-tax .aogfc-breadcrumb a {
    color: #617067;
    font-weight: 500;
}
.aogfc-product-tax .aogfc-breadcrumb span:last-child {
    color: var(--aogfc-blue-dark);
    font-weight: 800;
}
.aogfc-product-tax .aogfc-page-title {
    margin: 8px 0 0;
    color: #16351f;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}
.aogfc-product-tax .aogfc-page-intro {
    max-width: 860px;
    margin: 10px 0 0;
    color: #5e6a7a;
    font-size: 15px;
    line-height: 1.65;
}
.aogfc-tax-children {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 8px 0 22px;
}
.aogfc-tax-children a {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 8px 10px;
    border: 1px solid #e3eee6;
    border-radius: 5px;
    background: #fff;
    color: #263b2d;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(12, 44, 90, .06);
}
.aogfc-tax-children a:hover {
    border-color: #bdd8c4;
    color: var(--aogfc-blue);
    transform: translateY(-1px);
}
.aogfc-tax-children img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
    background: #f5f8f5;
}
.aogfc-tax-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-height: 46px;
    margin-bottom: 20px;
}
.aogfc-tax-toolbar p {
    margin: 0 auto 0 0;
    color: #617067;
    font-size: 14px;
}
.aogfc-filter-open,
.aogfc-filter-close {
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid #e0ede3;
    border-radius: 4px;
    background: #fff;
    color: #263b2d;
    font-weight: 900;
    cursor: pointer;
}
.aogfc-filter-open {
    display: none;
}
.aogfc-tax-sort select {
    min-width: 190px;
    height: 40px;
    padding: 0 34px 0 12px;
    border: 1px solid #dce7df;
    border-radius: 3px;
    background: #fff;
    color: #33473a;
    font-size: 14px;
}
.aogfc-tax-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.aogfc-product-tax.has-sidebar .aogfc-tax-layout {
    grid-template-columns: 324px minmax(0, 1fr);
    gap: 24px;
}
.aogfc-product-tax .aogfc-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.aogfc-product-tax.has-sidebar .aogfc-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 24px;
}
.aogfc-product-tax .aogfc-product-card {
    border: 0;
    background: #fff;
    box-shadow: none;
    overflow: visible;
}
.aogfc-product-tax .aogfc-product-card:hover {
    box-shadow: none;
    transform: none;
}
.aogfc-product-tax .aogfc-product-card__image {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    background: #f5f5f5;
}
.aogfc-product-tax .aogfc-product-card__image::after {
    content: "Tùy chọn";
    position: absolute;
    left: 50%;
    bottom: 12px;
    min-width: 96px;
    min-height: 32px;
    display: grid;
    place-items: center;
    border-radius: 3px;
    background: var(--aogfc-blue-dark);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, transform .2s ease;
}
.aogfc-product-tax .aogfc-product-card:hover .aogfc-product-card__image::after {
    opacity: 1;
    transform: translate(-50%, 0);
}
.aogfc-product-tax .aogfc-product-card__body {
    padding: 10px 0 0;
    text-align: left;
}
.aogfc-product-tax .aogfc-product-card__cat,
.aogfc-product-tax .aogfc-product-card__body p {
    display: none;
}
.aogfc-product-tax .aogfc-product-card h3 {
    margin: 0 0 7px;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}
.aogfc-product-tax .aogfc-product-card h3 a {
    color: #222;
}
.aogfc-product-tax .aogfc-product-card h3 a:hover {
    color: var(--aogfc-blue-dark);
}
.aogfc-product-tax .aogfc-product-card__price {
    color: var(--aogfc-blue);
    font-size: 15px;
    font-weight: 900;
}
.aogfc-product-tax .aogfc-load-more {
    border-radius: 4px;
    background: var(--aogfc-blue-dark);
    border-color: var(--aogfc-blue-dark);
}
.aogfc-product-tax .aogfc-seo-block {
    margin-top: 42px;
    padding: 24px;
    border: 1px solid #e3eee6;
    border-radius: 6px;
    background: var(--aogfc-blue-soft);
}
.aogfc-filter-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0,0,0,.62);
    opacity: 0;
    transition: opacity .2s ease;
}
.aogfc-filter-overlay.is-open {
    opacity: 1;
}
@media (max-width: 1024px) {
    .aogfc-product-tax > .aogfc-container {
        width: min(690px, calc(100% - 78px));
    }
    .aogfc-tax-banner img {
        height: clamp(170px, 27.8vw, 240px);
    }
    .aogfc-tax-children,
    .aogfc-product-tax .aogfc-product-grid,
    .aogfc-product-tax.has-sidebar .aogfc-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .aogfc-product-tax.has-sidebar .aogfc-tax-layout {
        grid-template-columns: 1fr;
    }
    .aogfc-filter-open {
        display: inline-flex;
        align-items: center;
    }
    .aogfc-tax-sidebar-wrap {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
        width: 300px;
        max-width: 84vw;
        height: 100vh;
        padding: 14px;
        overflow: auto;
        background: #fff;
        transform: translateX(-100%);
        transition: transform .22s ease;
    }
    .aogfc-tax-sidebar-wrap.is-open {
        transform: translateX(0);
    }
    body.admin-bar .aogfc-tax-sidebar-wrap {
        top: 32px;
        height: calc(100vh - 32px);
    }
    .aogfc-filter-close {
        display: inline-flex;
        align-items: center;
        margin-bottom: 12px;
    }
}
@media (max-width: 760px) {
    .aogfc-product-tax > .aogfc-container {
        width: calc(100% - 30px);
    }
    .aogfc-product-tax {
        padding-bottom: 36px;
    }
    .aogfc-tax-banner img {
        height: clamp(104px, 27.8vw, 130px);
    }
    .aogfc-tax-head {
        padding: 18px 0 12px;
    }
    .aogfc-product-tax .aogfc-page-title {
        font-size: 22px;
    }
    .aogfc-product-tax .aogfc-page-intro {
        font-size: 14px;
    }
    .aogfc-tax-children {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        margin-bottom: 16px;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
    }
    .aogfc-tax-children a {
        flex: 0 0 72%;
        min-height: 58px;
        scroll-snap-align: start;
    }
    .aogfc-tax-toolbar {
        align-items: stretch;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 15px;
    }
    .aogfc-tax-toolbar p {
        flex: 1 1 100%;
    }
    .aogfc-tax-sort {
        flex: 1 1 170px;
    }
    .aogfc-tax-sort select {
        width: 100%;
    }
    .aogfc-product-tax .aogfc-product-grid,
    .aogfc-product-tax.has-sidebar .aogfc-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px 30px;
    }
    .aogfc-product-tax .aogfc-product-card__image::after {
        display: none;
    }
    .aogfc-product-tax .aogfc-product-card h3 {
        font-size: 13px;
        line-height: 1.4;
    }
    body.admin-bar .aogfc-tax-sidebar-wrap {
        top: 46px;
        height: calc(100vh - 46px);
    }
}
/* Hard stop: hidden desktop dropdowns must never catch mouse events over page content. */
@media (min-width: 761px) {
    .aogfc-menu .sub-menu,
    .aogfc-menu .sub-menu *,
    .aogfc-mega,
    .aogfc-mega * {
        pointer-events: none !important;
    }

    .aogfc-menu > .menu-item-has-children.is-hover > .sub-menu,
    .aogfc-menu > .menu-item-has-children.is-hover > .sub-menu *,
    .aogfc-menu > .has-mega.is-hover > .aogfc-mega,
    .aogfc-menu > .has-mega.is-hover > .aogfc-mega * {
        pointer-events: auto !important;
    }
}

/* Header rebuilt from the medical uniform demo structure */
.aogfc-site-header {
    position: relative;
    z-index: 90;
    background: #fff;
    color: var(--aogfc-header-primary);
    box-shadow: none;
}
.aogfc-site-header.is-sticky-enabled.is-stuck {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
body.admin-bar .aogfc-site-header.is-sticky-enabled.is-stuck { top: 32px; }
body.aogfc-has-sticky-header { scroll-padding-top: var(--aogfc-sticky-offset, 150px); }
.aogfc-site-header.is-sticky-enabled.is-stuck .aogfc-header-notice,
.aogfc-site-header.is-sticky-enabled.is-stuck .aogfc-header-nav-row { display: none; }
.aogfc-header-notice {
    min-height: 55px;
    background: #fff;
    color: var(--aogfc-header-primary);
    border-bottom: 1px solid rgba(10,2,71,.08);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}
.aogfc-header-notice .aogfc-container {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aogfc-header-main { background: var(--aogfc-header-primary); }
.aogfc-header-main__inner {
    min-height: 61px;
    display: grid;
    grid-template-columns: 242px minmax(340px, 1fr) auto;
    align-items: center;
    gap: 18px;
}
.aogfc-site-header .aogfc-logo {
    display: inline-flex;
    width: fit-content;
    max-width: 242px;
    min-width: 0;
    align-items: center;
    color: #fff;
    font-weight: 900;
    line-height: 1.1;
}
.aogfc-site-header .aogfc-logo img {
    width: auto;
    max-width: 242px;
    height: auto;
    max-height: 61px;
    object-fit: contain;
    transform: none;
    transform-origin: initial;
}
.aogfc-header-search { position: relative; width: 100%; }
.aogfc-search-form {
    position: relative;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr) 44px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.92);
    background: #fff;
}
.aogfc-search-form__selector,
.aogfc-search-form__submit,
.aogfc-search-form__cats button {
    border: 0;
    background: transparent;
    cursor: pointer;
}
.aogfc-search-form__selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 12px;
    color: #333;
    border-right: 1px solid #ebebeb;
    font-size: 13px;
    white-space: nowrap;
}
.aogfc-search-form__input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    padding: 0 14px;
    color: #222;
    font-size: 13px;
}
.aogfc-search-form__submit {
    display: grid;
    place-items: center;
    color: #fff;
    background: #0a0a0a;
}
.aogfc-search-form__submit:hover { background: var(--aogfc-header-accent); }
.aogfc-search-form__cats {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 210px;
    max-height: 380px;
    overflow: auto;
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
    z-index: 120;
}
.aogfc-search-form__cats button {
    display: block;
    width: 100%;
    min-height: 36px;
    padding: 9px 13px;
    color: #333;
    font-size: 13px;
    text-align: left;
}
.aogfc-search-form__cats button:hover,
.aogfc-search-form__cats button.is-active { color: var(--aogfc-header-accent); background: var(--aogfc-blue-soft); }
.aogfc-search-results {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    max-height: 360px;
    overflow: auto;
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: 0 12px 26px rgba(0,0,0,.12);
    z-index: 121;
}
.aogfc-search-results__state { padding: 13px 14px; color: #617067; font-size: 14px; }
.aogfc-search-results a {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid #f1f1f1;
}
.aogfc-search-results a:last-child { border-bottom: 0; }
.aogfc-search-results a:hover,
.aogfc-search-results a:focus { background: var(--aogfc-blue-soft); color: var(--aogfc-header-accent); }
.aogfc-search-results img,
.aogfc-search-results__thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    background: var(--aogfc-blue-soft);
}
.aogfc-search-results strong { display: block; color: #20242a; font-size: 13px; line-height: 1.35; }
.aogfc-search-results small { display: block; margin-top: 3px; color: #617067; font-size: 12px; line-height: 1.35; }
.aogfc-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    gap: 12px;
    min-width: 0;
}
.aogfc-header-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.aogfc-header-social a {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}
.aogfc-header-social a:hover,
.aogfc-header-social a:focus { color: var(--aogfc-header-accent); }
.aogfc-header-consult-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}
.aogfc-header-action-btn {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(7,91,32,.16);
}
.aogfc-header-action-btn span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.aogfc-header-action-btn span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aogfc-header-action-btn--call {
    background: var(--aogfc-header-primary);
    color: #fff;
}
.aogfc-header-action-btn--zalo {
    border: 2px solid var(--aogfc-header-accent);
    background: linear-gradient(135deg, #fff 0%, var(--aogfc-blue-soft) 100%);
    color: var(--aogfc-header-primary);
}
.aogfc-header-action-btn:hover,
.aogfc-header-action-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(7,91,32,.22);
}
.aogfc-header-action-btn--call:hover,
.aogfc-header-action-btn--call:focus {
    background: var(--aogfc-header-accent);
    color: #fff;
}
.aogfc-header-action-btn--zalo:hover,
.aogfc-header-action-btn--zalo:focus {
    background: var(--aogfc-header-accent);
    color: #fff;
}
.aogfc-header-account {
    display: inline-grid;
    width: 34px;
    height: 34px;
    align-items: center;
    place-items: center;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    color: #fff;
}
.aogfc-header-account:hover,
.aogfc-header-account:focus { border-color: var(--aogfc-header-accent); color: var(--aogfc-header-accent); }
.aogfc-header-cta {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid rgba(255,255,255,.85);
    color: var(--aogfc-header-primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}
.aogfc-header-cta:hover { background: var(--aogfc-header-accent); border-color: var(--aogfc-header-accent); color: #fff; }
.aogfc-header-cart {
    position: relative;
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
}
.aogfc-header-cart span {
    position: absolute;
    right: -6px;
    top: -5px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--aogfc-header-accent);
    font-size: 11px;
    font-weight: 900;
}
.aogfc-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    padding: 10px;
    cursor: pointer;
}
.aogfc-menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 999px;
}
.aogfc-menu-toggle b {
    display: none;
    margin-left: 8px;
    font-size: 12px;
    text-transform: uppercase;
}
.aogfc-menu-toggle--nav { display: none; }
.aogfc-header-nav-row {
    min-height: 40px;
    background: #a6a6a6;
    color: #fff;
}
.aogfc-header-nav-row__inner {
    min-height: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
}
.aogfc-header-search-mobile { display: none; }
.aogfc-header-nav-row .aogfc-main-nav { border: 0; background: transparent; }
.aogfc-header-nav-row .aogfc-menu { min-height: 40px; justify-content: flex-start; gap: 0; }
.aogfc-header-nav-row .aogfc-menu > li { position: relative; }
.aogfc-header-nav-row .aogfc-menu > li + li::before { display: none; }
.aogfc-header-nav-row .aogfc-menu > li > a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    color: #fff;
    font-size: 13px;
    line-height: 16px;
    font-weight: 800;
    text-transform: none;
}
.aogfc-header-nav-row .aogfc-menu > li:hover > a,
.aogfc-header-nav-row .aogfc-menu > li.current-menu-item > a,
.aogfc-header-nav-row .aogfc-menu > li.current-menu-ancestor > a { color: #fff; background: rgba(255,255,255,.12); }
.aogfc-header-nav-row .aogfc-menu .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 130;
    width: 220px;
    min-width: 220px;
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
    background: #fff;
    border: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none !important;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.aogfc-header-nav-row .aogfc-menu .menu-item-has-children:hover > .sub-menu,
.aogfc-header-nav-row .aogfc-menu .menu-item-has-children.is-hover > .sub-menu,
.aogfc-header-nav-row .aogfc-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto !important;
    transform: translateY(0);
}
.aogfc-header-nav-row .aogfc-menu .sub-menu li { display: block; border-bottom: 1px solid #f2f2f2; }
.aogfc-header-nav-row .aogfc-menu .sub-menu a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 10px 14px;
    color: #333;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    text-transform: none;
}
.aogfc-header-nav-row .aogfc-menu .sub-menu a:hover,
.aogfc-header-nav-row .aogfc-menu .sub-menu a:focus { color: var(--aogfc-header-accent); background: #f6f9fc; }
.aogfc-header-contact {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
}
.aogfc-header-contact span { font-weight: 600; }
.aogfc-header-contact a { color: #fff; font-weight: 900; }
.aogfc-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(11, 24, 43, .7);
    opacity: 0;
    transition: opacity .22s ease;
}
.aogfc-mobile-overlay.is-open { opacity: 1; }
.aogfc-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 292px;
    max-width: 86vw;
    height: 100vh;
    overflow: auto;
    background: #f5faf6;
    transform: translateX(-100%);
    transition: transform .25s ease;
    box-shadow: 18px 0 40px rgba(10,38,70,.22);
}
body.admin-bar .aogfc-mobile-drawer { top: 32px; height: calc(100vh - 32px); }
.aogfc-mobile-drawer.is-open { transform: translateX(0); }
.aogfc-mobile-drawer__head {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 14px;
    background: #fff;
    border-bottom: 1px solid #e1eee4;
}
.aogfc-mobile-drawer .aogfc-logo img { max-width: 152px; max-height: 42px; }
.aogfc-mobile-close {
    width: 34px;
    height: 34px;
    border: 1px solid #d8e9db;
    border-radius: 8px;
    background: #f5faf6;
    color: var(--aogfc-header-primary);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.aogfc-mobile-menu,
.aogfc-mobile-menu ul { margin: 0; padding: 0; list-style: none; }
.aogfc-mobile-menu a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 10px 44px 10px 18px;
    border-bottom: 1px solid #e7f0e9;
    color: #263b2d;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
    background: #fff;
}
.aogfc-mobile-menu a:hover,
.aogfc-mobile-menu a:focus { color: var(--aogfc-header-primary); background: #edf8f0; }
.aogfc-mobile-menu .menu-item-has-children { position: relative; }
.aogfc-submenu-toggle {
    position: absolute;
    top: 3px;
    right: 4px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--aogfc-header-primary);
    cursor: pointer;
}
.aogfc-submenu-toggle::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .18s ease;
}
.aogfc-mobile-menu .menu-item-has-children.is-open > .aogfc-submenu-toggle::before { transform: translateY(2px) rotate(225deg); }
.aogfc-mobile-menu .sub-menu {
    display: none;
    padding: 8px 12px 12px;
    border-bottom: 1px solid #e1eee4;
    background: #f5faf6;
}
.aogfc-mobile-menu .menu-item-has-children.is-open > .sub-menu { display: block; }
.aogfc-mobile-menu .sub-menu li + li { margin-top: 7px; }
.aogfc-mobile-menu .sub-menu .menu-item-has-children { position: relative; }
.aogfc-mobile-menu .sub-menu a {
    position: relative;
    min-height: 37px;
    display: flex;
    align-items: center;
    padding: 8px 30px 8px 12px;
    border: 1px solid #e0eee4;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff 0%, #f5faf6 100%);
    color: #263b2d;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: none;
}
.aogfc-mobile-menu .sub-menu .menu-item-has-children > a {
    padding-right: 44px;
    color: #075b20;
}
.aogfc-mobile-menu .sub-menu .sub-menu {
    margin: 7px 0 2px 10px;
    padding: 0 0 0 10px;
    border: 0;
    border-left: 2px solid #d8e9db;
    background: transparent;
}
.aogfc-mobile-menu .sub-menu .sub-menu a {
    min-height: 34px;
    border-color: #e3eee6;
    background: #fff;
    font-size: 12px;
    font-weight: 750;
}
.aogfc-mobile-contact {
    display: grid;
    gap: 9px;
    padding: 2px 12px 18px;
}
.aogfc-mobile-contact a {
    color: var(--aogfc-header-primary);
    font-weight: 900;
}
.aogfc-mobile-contact__call,
.aogfc-mobile-contact__zalo,
.aogfc-mobile-contact__email {
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    line-height: 1.2;
}
.aogfc-mobile-contact__call img,
.aogfc-mobile-contact__zalo img {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}
.aogfc-mobile-contact__call {
    background: linear-gradient(135deg, #ff6900 0%, #087c31 100%);
    color: #fff !important;
    box-shadow: 0 12px 22px rgba(255,105,0,.18);
}
.aogfc-mobile-contact__call span { font-size: 12px; text-transform: uppercase; }
.aogfc-mobile-contact__call strong { font-size: 13px; }
.aogfc-mobile-contact__call span,
.aogfc-mobile-contact__call strong { color: inherit; }
.aogfc-mobile-contact__email {
    justify-content: flex-start;
    border: 1px solid #e0eee4;
    background: #fff;
    color: #0d5fb8;
    font-size: 13px;
    line-height: 1.25;
    word-break: break-word;
}
.aogfc-mobile-contact__email span {
    position: relative;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff4ec;
    color: #ff6900;
    font-size: 15px;
    font-weight: 900;
}
.aogfc-mobile-contact__email span::before {
    content: "";
    width: 14px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 3px;
}
.aogfc-mobile-contact__email span::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 7px;
    width: 12px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transform-origin: center;
}
.aogfc-mobile-contact__zalo {
    border: 1px solid #0b83dc;
    background: #fff;
    color: #087c31;
}
body.aogfc-mobile-lock { overflow: hidden; }

@media (max-width: 1180px) {
    .aogfc-header-main__inner { grid-template-columns: 220px minmax(260px, 1fr) auto; gap: 14px; }
    .aogfc-header-social { display: none; }
    .aogfc-header-action-btn { padding-inline: 13px; font-size: 12px; }
    .aogfc-header-nav-row .aogfc-menu > li > a { padding-inline: 10px; font-size: 12px; }
}
@media (max-width: 1024px) {
    .aogfc-header-main__inner {
        min-height: 61px;
        grid-template-columns: minmax(180px, 242px) auto;
        justify-content: space-between;
    }
    .aogfc-header-main__inner > .aogfc-header-search { display: none; }
    .aogfc-site-header .aogfc-logo { max-width: 270px; }
    .aogfc-site-header .aogfc-logo img { max-width: 230px; max-height: 61px; }
    .aogfc-header-consult-actions { display: none; }
    .aogfc-header-nav-row__inner { grid-template-columns: auto minmax(0, 1fr); }
    .aogfc-menu-toggle--nav {
        display: inline-flex;
        width: auto;
        min-width: 44px;
        height: 40px;
        align-items: center;
        padding: 0 10px;
        color: #fff;
    }
    .aogfc-menu-toggle--nav b { display: inline; }
    .aogfc-header-nav-row .aogfc-main-nav { display: none; }
    .aogfc-header-search-mobile { display: block; }
    .aogfc-header-search-mobile .aogfc-search-form { height: 34px; grid-template-columns: 82px minmax(0, 1fr) 40px; }
    .aogfc-header-search-mobile .aogfc-search-form__selector,
    .aogfc-header-search-mobile .aogfc-search-form__input { font-size: 12px; }
    .aogfc-header-contact { display: none; }
}
@media (max-width: 760px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }
    body.admin-bar .aogfc-site-header.is-sticky-enabled.is-stuck { top: 46px; }
    body.admin-bar .aogfc-mobile-drawer { top: 46px; height: calc(100vh - 46px); }
    .aogfc-header-main { position: relative; }
    .aogfc-header-main__inner {
        position: relative;
        min-height: 60px;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 8px;
    }
    .aogfc-site-header .aogfc-logo { max-width: 270px; }
    .aogfc-site-header .aogfc-logo img { max-width: 210px; max-height: 60px; }
    .aogfc-header-main__inner > .aogfc-logo {
        grid-column: 2;
        justify-self: center;
    }
    .aogfc-header-main__inner > .aogfc-header-search { display: none; }
    .aogfc-header-actions {
        grid-column: 3;
        justify-self: end;
    }
    .aogfc-header-main .aogfc-header-call {
        display: none;
    }
    .aogfc-header-main__inner .aogfc-menu-toggle {
        display: inline-flex;
        width: 38px;
        height: 38px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        grid-column: auto;
        padding: 0;
        border: 1px solid #d8e9db;
        border-radius: 8px;
        background: #fff;
        color: #075b20;
        box-shadow: 0 8px 18px rgba(7,91,32,.1);
    }
    .aogfc-header-main__inner .aogfc-menu-toggle > span:not(.screen-reader-text) {
        width: 20px;
        height: 2px;
        margin: 0;
        background: currentColor;
    }
    .aogfc-header-main__inner .aogfc-menu-toggle > span:nth-child(3) { width: 14px; }
    .aogfc-header-actions { gap: 0; }
    .aogfc-header-cta { display: none; }
    .aogfc-header-account { display: none; }
    .aogfc-header-cart { display: none; }
    .aogfc-header-nav-row { display: none; }
    .aogfc-header-nav-row__inner {
        width: calc(100% - 20px);
        min-height: 40px;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 8px;
    }
    .aogfc-header-search-mobile .aogfc-search-form { grid-template-columns: 78px minmax(0, 1fr) 38px; }
    .aogfc-header-search-mobile .aogfc-search-form__selector { padding-inline: 8px; }
    .aogfc-header-search-mobile .aogfc-search-form__input { padding-inline: 9px; }
    .aogfc-header-search-mobile .aogfc-search-results { position: fixed; left: 10px; right: 10px; top: 102px; max-height: min(360px, calc(100vh - 126px)); }
    .aogfc-main { padding-top: 0; }
}
@media (max-width: 430px) {
    .aogfc-search-results { max-height: 300px; }
}

/* New global footer */
.aogfc-footer-newsletter {
    background: linear-gradient(135deg, var(--aogfc-leaf-dark) 0%, var(--aogfc-leaf) 100%);
    color: #fff;
    padding: 32px 0;
}
.aogfc-footer-newsletter .aogfc-container,
.aogfc-site-footer .aogfc-container {
    width: min(1140px, calc(100% - 30px));
    margin-inline: auto;
}
.aogfc-footer-newsletter__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
    align-items: center;
    gap: 30px;
}
.aogfc-footer-newsletter h2 {
    margin: 0 0 6px;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-footer-newsletter p {
    margin: 0;
    color: rgba(255,255,255,.82);
}
.aogfc-footer-newsletter__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 0;
}
.aogfc-footer-newsletter__form input,
.aogfc-footer-newsletter__form button {
    min-height: 50px;
    border: 0;
    font-size: 15px;
}
.aogfc-footer-newsletter__form input {
    min-width: 0;
    padding: 0 16px;
    border-radius: 4px 0 0 4px;
}
.aogfc-footer-newsletter__form button {
    border-radius: 0 4px 4px 0;
    background: var(--aogfc-blue);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}
.aogfc-footer-newsletter__status {
    grid-column: 1 / -1;
    min-height: 18px;
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255,255,255,.88);
}
.aogfc-site-footer {
    border-top: 8px solid var(--aogfc-header-accent, #ff6900);
    background:
        radial-gradient(circle at 12% 0, rgba(7, 143, 47, .12), transparent 28%),
        linear-gradient(180deg, #f2faf4 0%, #fbfdfb 58%, #edf8f0 100%);
    color: #075b20;
}
.aogfc-site-footer__main {
    padding: 36px 0 32px;
}
.aogfc-site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(150px, 2fr) minmax(190px, 3fr) minmax(150px, 2fr);
    gap: 30px;
}
.aogfc-site-footer__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 340px;
    min-height: 88px;
    margin-bottom: 16px;
    padding: 12px 18px;
    border: 1px solid rgba(7, 91, 32, .16);
    border-radius: 10px;
    background: linear-gradient(135deg, #fff, #edf8f0);
    box-shadow: 0 16px 34px rgba(7, 143, 47, .1), inset 0 1px 0 rgba(255,255,255,.85);
}
.aogfc-site-footer__logo img {
    width: auto;
    max-width: 300px;
    max-height: 72px;
    object-fit: contain;
}
.aogfc-site-footer__brand h2,
.aogfc-site-footer__links h2 {
    margin: 0 0 18px;
    color: var(--aogfc-header-accent, #ff6900);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-site-footer__intro {
    margin: 0 0 17px;
    max-width: 520px;
    color: #075b20;
    font-size: 15px;
    line-height: 1.7;
}
.aogfc-site-footer__contact,
.aogfc-footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
.aogfc-site-footer__contact {
    display: grid;
    gap: 11px;
}
.aogfc-site-footer__contact li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    color: #075b20;
    font-size: 15px;
    line-height: 1.5;
}
.aogfc-site-footer__contact-icon {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: #075b20;
    background: #fff;
    border: 1px solid rgba(7, 91, 32, .18);
    box-shadow: 0 8px 18px rgba(7, 143, 47, .09);
    border-radius: 50%;
}
.aogfc-site-footer__contact-icon svg {
    width: 15px;
    height: 15px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.aogfc-site-footer a {
    color: #075b20;
}
.aogfc-site-footer a:hover,
.aogfc-site-footer a:focus {
    color: var(--aogfc-header-accent, #ff6900);
}
.aogfc-site-footer__payments {
    margin-top: 22px;
}
.aogfc-site-footer__payments strong {
    display: block;
    margin-bottom: 10px;
    color: var(--aogfc-header-accent, #ff6900);
    font-size: 14px;
}
.aogfc-site-footer__payments div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.aogfc-site-footer__payments img {
    width: 48px;
    height: 30px;
    object-fit: contain;
    padding: 4px;
    border-radius: 4px;
    background: #fff;
}
.aogfc-site-footer__links h2 button {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    text-transform: inherit;
}
.aogfc-footer-menu {
    display: grid;
    gap: 10px;
}
.aogfc-footer-menu a {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    color: #075b20;
    font-size: 14px;
    line-height: 1.45;
}
.aogfc-footer-menu a::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--aogfc-header-accent, #ff6900);
}
.aogfc-site-footer__bottom {
    min-height: 45px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(7, 91, 32, .14);
    background: #075b20;
    color: #fff;
    font-size: 13px;
    text-align: center;
}
.aogfc-back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 950;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: var(--aogfc-blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    cursor: pointer;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.aogfc-back-to-top::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: translateY(3px) rotate(45deg);
}
.aogfc-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.aogfc-floating-contact {
    position: static;
    z-index: 1000;
}
.mess-fixed {
    position: fixed;
    right: 37px;
    bottom: 200px;
    z-index: 1000;
    width: 42px;
    height: 42px;
}
.mess-fixed a,
.hotline-phone-ring-img-circle .pps-btn-img,
.mess-ring-img-circle .pps-btn-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mess-fixed__icon {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--aogfc-blue);
    box-shadow: 0 8px 20px rgba(9, 132, 255, .24);
    transition: transform .18s ease, box-shadow .18s ease;
}
.mess-fixed__icon::before {
    content: "";
    position: absolute;
    inset: 9px;
    background: #fff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.05 2 11.05c0 2.86 1.46 5.41 3.75 7.07V22l3.44-1.89c.89.25 1.83.39 2.81.39 5.52 0 10-4.05 10-9.05S17.52 2 12 2Zm1.04 12.2-2.55-2.72-5.01 2.72 5.5-5.85 2.61 2.72 4.95-2.72-5.5 5.85Z'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.05 2 11.05c0 2.86 1.46 5.41 3.75 7.07V22l3.44-1.89c.89.25 1.83.39 2.81.39 5.52 0 10-4.05 10-9.05S17.52 2 12 2Zm1.04 12.2-2.55-2.72-5.01 2.72 5.5-5.85 2.61 2.72 4.95-2.72-5.5 5.85Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.mess-fixed__icon::after {
    content: "";
    position: absolute;
    inset: -5px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(9,132,255,.16);
    z-index: -1;
}
.mess-fixed a:hover .mess-fixed__icon,
.mess-fixed a:focus-visible .mess-fixed__icon {
    transform: scale(1.04);
    box-shadow: 0 10px 24px rgba(9, 132, 255, .3);
}
.hotline-phone-ring-wrap,
.mess-ring-wrap {
    position: fixed;
    right: max(8px, calc((100vw - 1180px) / 2 - 88px));
    z-index: 1000;
    width: 72px;
    height: 72px;
}
.hotline-phone-ring-wrap { bottom: 100px; }
.mess-ring-wrap { bottom: 30px; }
@media (max-width: 1360px) {
    .hotline-phone-ring-wrap,
    .mess-ring-wrap {
        right: -24px;
    }
}
.hotline-phone-ring,
.mess-ring {
    position: relative;
    z-index: 11;
    width: 72px;
    height: 72px;
}
.hotline-phone-ring-circle,
.mess-ring-circle {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 62px;
    height: 62px;
    border-radius: 100%;
    background-color: transparent;
    opacity: .5;
    transform-origin: 50% 50%;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
}
.hotline-phone-ring-circle {
    border: 1.6px solid var(--aogfc-red);
}
.mess-ring-circle {
    border: 1.6px solid var(--aogfc-blue);
}
.hotline-phone-ring-circle-fill,
.mess-ring-circle-fill {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 44px;
    height: 44px;
    border: 1.6px solid transparent;
    border-radius: 100%;
    opacity: .6;
    transform-origin: 50% 50%;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
}
.hotline-phone-ring-circle-fill {
    background-color: rgba(230, 59, 59, .7);
}
.mess-ring-circle-fill {
    background-color: rgba(13, 148, 228, .7);
}
.hotline-phone-ring-img-circle,
.mess-ring-img-circle {
    position: absolute;
    top: 21px;
    left: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border: 1.6px solid transparent;
    border-radius: 100%;
    transform-origin: 50% 50%;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
}
.hotline-phone-ring-img-circle {
    background-color: var(--aogfc-red);
    box-shadow: 0 5px 14px rgba(239,63,63,.28);
}
.mess-ring-img-circle {
    background-color: var(--aogfc-blue);
}
.hotline-phone-ring-img-circle .pps-btn-img {
    width: 33px;
    height: 33px;
}
.mess-ring-img-circle .pps-btn-img,
.mess-ring-img-circle img {
    width: 30px;
    height: 30px;
}
.aogfc-floating-icon {
    position: relative;
    z-index: 2;
    display: block;
    width: 18px;
    height: 18px;
    background: #fff;
}
.aogfc-floating-icon--phone {
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.28-.28.69-.36 1.05-.24 1.16.39 2.4.6 3.67.6.58 0 1.04.46 1.04 1.04v3.5c0 .58-.46 1.04-1.04 1.04C10.67 21.12 2.88 13.33 2.88 3.87c0-.58.46-1.04 1.04-1.04h3.51c.58 0 1.04.46 1.04 1.04 0 1.27.21 2.51.6 3.67.11.36.04.76-.25 1.05l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.28-.28.69-.36 1.05-.24 1.16.39 2.4.6 3.67.6.58 0 1.04.46 1.04 1.04v3.5c0 .58-.46 1.04-1.04 1.04C10.67 21.12 2.88 13.33 2.88 3.87c0-.58.46-1.04 1.04-1.04h3.51c.58 0 1.04.46 1.04 1.04 0 1.27.21 2.51.6 3.67.11.36.04.76-.25 1.05l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.hotline-phone-ring-img-circle img,
.mess-ring-img-circle img {
    position: relative;
    z-index: 2;
    max-width: none;
    object-fit: contain;
}
.aogfc-floating-contact__label {
    position: absolute;
    top: 50%;
    right: calc(100% + 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--aogfc-red);
    color: #fff;
    box-shadow: 0 12px 26px rgba(0,0,0,.18);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(16px, -50%) scale(.96);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    visibility: hidden;
    z-index: 1;
}
.hotline-phone-ring-img-circle .aogfc-floating-contact__label {
    right: -14px;
    min-width: 226px;
    height: 48px;
    padding-right: 64px;
    justify-content: center;
}
.mess-fixed .aogfc-floating-contact__label,
.mess-ring-img-circle .aogfc-floating-contact__label {
    min-width: 130px;
    height: 42px;
    background: var(--aogfc-blue);
    font-size: 15px;
}
.mess-fixed a:hover .aogfc-floating-contact__label,
.mess-fixed a:focus-visible .aogfc-floating-contact__label,
.hotline-phone-ring-img-circle .pps-btn-img:hover .aogfc-floating-contact__label,
.hotline-phone-ring-img-circle .pps-btn-img:focus-visible .aogfc-floating-contact__label,
.mess-ring-img-circle .pps-btn-img:hover .aogfc-floating-contact__label,
.mess-ring-img-circle .pps-btn-img:focus-visible .aogfc-floating-contact__label {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
    visibility: visible;
}
@keyframes phonering-alo-circle-anim {
    0% {
        opacity: .1;
        transform: rotate(0) scale(.5) skew(1deg);
    }
    30% {
        opacity: .5;
        transform: rotate(0) scale(.7) skew(1deg);
    }
    100% {
        opacity: .1;
        transform: rotate(0) scale(1) skew(1deg);
    }
}
@keyframes phonering-alo-circle-fill-anim {
    0% {
        opacity: .2;
        transform: rotate(0) scale(.7) skew(1deg);
    }
    50% {
        opacity: .6;
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        opacity: .2;
        transform: rotate(0) scale(.7) skew(1deg);
    }
}
@keyframes phonering-alo-circle-img-anim {
    0%,
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10%,
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20%,
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}
@media (max-width: 1024px) {
    .aogfc-footer-newsletter__inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .aogfc-site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;
    }
}
@media (max-width: 760px) {
    .aogfc-footer-newsletter {
        padding: 26px 0;
    }
    .aogfc-footer-newsletter__form {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .aogfc-footer-newsletter__form input,
    .aogfc-footer-newsletter__form button {
        border-radius: 4px;
    }
    .aogfc-footer-newsletter__actions {
        justify-content: flex-start;
    }
    .aogfc-site-footer__main {
        padding: 28px 0 18px;
    }
    .aogfc-site-footer__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .aogfc-site-footer__brand {
        padding-bottom: 18px;
    }
    .aogfc-site-footer__logo {
        max-width: 300px;
        min-height: 78px;
        padding: 10px 14px;
    }
    .aogfc-site-footer__logo img {
        max-width: 270px;
        max-height: 62px;
    }
    .aogfc-site-footer__links {
        border-top: 1px solid rgba(7, 91, 32, .14);
    }
    .aogfc-site-footer__links h2 {
        margin: 0;
    }
    .aogfc-site-footer__links h2 button {
        position: relative;
        min-height: 50px;
        padding-right: 34px;
    }
    .aogfc-site-footer__links h2 button::after {
        content: "";
        position: absolute;
        right: 3px;
        top: 18px;
        width: 9px;
        height: 9px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        transition: transform .18s ease;
    }
    .hotline-phone-ring-wrap,
    .mess-ring-wrap {
        right: 4px;
        width: 74px;
        height: 74px;
    }
    .hotline-phone-ring-wrap { bottom: 78px; }
    .mess-ring-wrap { bottom: 18px; }
    .hotline-phone-ring,
    .mess-ring {
        width: 74px;
        height: 74px;
    }
    .hotline-phone-ring-circle,
    .mess-ring-circle {
        top: 7px;
        left: 7px;
        width: 58px;
        height: 58px;
    }
    .hotline-phone-ring-circle-fill,
    .mess-ring-circle-fill {
        top: 17px;
        left: 17px;
        width: 38px;
        height: 38px;
    }
    .hotline-phone-ring-img-circle,
    .mess-ring-img-circle {
        top: 25px;
        left: 25px;
        width: 26px;
        height: 26px;
    }
    .hotline-phone-ring-img-circle .pps-btn-img {
        width: 26px;
        height: 26px;
    }
    .mess-ring-img-circle .pps-btn-img,
    .mess-ring-img-circle img {
        width: 24px;
        height: 24px;
    }
    .aogfc-floating-icon {
        width: 14px;
        height: 14px;
    }
    .aogfc-floating-contact__label {
        display: none;
    }
    .aogfc-back-to-top {
        right: 16px;
        bottom: 142px;
    }
    .aogfc-static-flex-sidebar .aogfc-static-content {
        padding-right: 28px;
    }
    .aogfc-static-flex-sidebar .aogfc-static-content p,
    .aogfc-static-flex-sidebar .aogfc-static-content ul,
    .aogfc-static-flex-sidebar .aogfc-static-content ol {
        padding-right: 44px;
    }
    .aogfc-site-footer__links h2 button[aria-expanded="true"]::after {
        transform: rotate(225deg);
    }
    .aogfc-site-footer__panel {
        padding-bottom: 14px;
    }
    .aogfc-footer-menu {
        gap: 7px;
    }
    .aogfc-footer-menu a {
        min-height: 34px;
    }
    .aogfc-site-footer__bottom {
        padding: 12px 0 84px;
        line-height: 1.45;
    }
    .aogfc-floating-contact,
    .hotline-phone-ring-wrap,
    .mess-ring-wrap {
        display: none;
    }
    .aogfc-back-to-top {
        right: 12px;
        bottom: 18px;
    }
}

/* Flexible homepage layouts */
.aogfc-demo-home {
    background: #fff;
    color: var(--aogfc-header-primary, #075b20);
    font-family: "Be Vietnam Pro", Arial, sans-serif;
}
.aogfc-demo-home .aogfc-container {
    width: min(1170px, calc(100% - 30px));
    margin-inline: auto;
}
.aogfc-demo-home .aogfc-home-section {
    padding: 28px 0;
    background: #fff;
}
.aogfc-demo-home .aogfc-home-section:nth-of-type(even) { background: #fbfbfb; }
.aogfc-demo-home .aogfc-home-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 12px;
    border-bottom: 2px solid rgba(7, 91, 32, .16);
}
.aogfc-demo-home .aogfc-home-section__head h2 {
    position: relative;
    margin: 0;
    padding: 0 0 9px 22px;
    color: var(--aogfc-header-primary, #075b20);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-demo-home .aogfc-home-section__head h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid currentColor;
}
.aogfc-demo-home .aogfc-home-section__head p {
    margin: 0 0 10px;
    color: #526158;
    font-size: 14px;
}
.aogfc-demo-home .aogfc-home-section__actions {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 7px;
}
.aogfc-demo-home .aogfc-home-section__actions button {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(7, 91, 32, .2);
    border-radius: 50%;
    background: #fff;
    color: var(--aogfc-header-primary, #075b20);
    cursor: pointer;
}
.aogfc-demo-home .aogfc-home-section__actions [data-slider-prev]::before { content: "<"; font-size: 18px; line-height: 1; }
.aogfc-demo-home .aogfc-home-section__actions [data-slider-next]::before { content: ">"; font-size: 18px; line-height: 1; }
.aogfc-demo-home .aogfc-home-section__actions button:hover,
.aogfc-demo-home .aogfc-home-section__actions button:focus {
    background: var(--aogfc-header-primary, #075b20);
    color: #fff;
}
.aogfc-demo-home .aogfc-home-cats > .aogfc-container,
.aogfc-demo-home .aogfc-home-products > .aogfc-container,
.aogfc-demo-home .aogfc-home-product-tabs > .aogfc-container {
    position: relative;
}
.aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions,
.aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions {
    position: absolute;
    left: -18px;
    right: -18px;
    top: 50%;
    z-index: 5;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
    transform: translateY(-50%);
}
.aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions button,
.aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions button,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions button {
    width: 34px;
    height: 34px;
    border-color: rgba(7, 91, 32, .16);
    background: rgba(255, 255, 255, .92);
    color: #075b20;
    box-shadow: 0 8px 22px rgba(7, 91, 32, .12);
    pointer-events: auto;
    transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions button::before,
.aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions button::before,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions button::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}
.aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions [data-slider-prev]::before,
.aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions [data-slider-prev]::before,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions [data-slider-prev]::before {
    transform: translateX(2px) rotate(-45deg);
}
.aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions [data-slider-next]::before,
.aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions [data-slider-next]::before,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions [data-slider-next]::before {
    transform: translateX(-2px) rotate(135deg);
}
.aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions button:hover,
.aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions button:focus,
.aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions button:hover,
.aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions button:focus,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions button:hover,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions button:focus {
    border-color: #075b20;
    background: #075b20;
    color: #fff;
    box-shadow: 0 10px 26px rgba(7, 143, 47, .2);
    transform: translateY(-1px);
}
.aogfc-demo-home .aogfc-home-section__more,
.aogfc-demo-home .aogfc-home-section__view-all {
    color: var(--aogfc-header-primary, #075b20);
    font-size: 13px;
    font-weight: 900;
}
.aogfc-demo-home .aogfc-home-cat-rail,
.aogfc-demo-home .aogfc-home-products--slider .aogfc-home-product-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--home-cols, 4) - 1) * 10px) / var(--home-cols, 4));
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}
.aogfc-demo-home .aogfc-home-cat-rail::-webkit-scrollbar,
.aogfc-demo-home .aogfc-home-product-grid::-webkit-scrollbar { height: 5px; }
.aogfc-demo-home .aogfc-home-cat-rail::-webkit-scrollbar-thumb,
.aogfc-demo-home .aogfc-home-product-grid::-webkit-scrollbar-thumb {
    background: rgba(7, 91, 32, .2);
    border-radius: 99px;
}
.aogfc-demo-home .aogfc-home-cat-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    display: block;
    scroll-snap-align: start;
    background: #edf3ee;
}
.aogfc-demo-home .aogfc-home-cat-card__image,
.aogfc-demo-home .aogfc-home-triptych__item {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f1f5f2;
}
.aogfc-demo-home .aogfc-home-cat-card__image { aspect-ratio: 1 / 1; }
.aogfc-demo-home .aogfc-home-triptych__item { margin: 0; aspect-ratio: 4 / 5; }
.aogfc-demo-home .aogfc-home-cat-card__image::after,
.aogfc-demo-home .aogfc-home-triptych__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .19);
    pointer-events: none;
}
.aogfc-demo-home .aogfc-home-cat-card__image img,
.aogfc-demo-home .aogfc-home-triptych__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}
.aogfc-demo-home .aogfc-home-cat-card:hover img,
.aogfc-demo-home .aogfc-home-cat-card:focus img,
.aogfc-demo-home .aogfc-home-triptych__item:hover img,
.aogfc-demo-home .aogfc-home-triptych__item:focus img,
.aogfc-demo-home .aogfc-product-card:hover img { transform: scale(1.05); }
.aogfc-demo-home .aogfc-home-cat-card__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 9px 8px 10px;
    color: #fff;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .65));
}
.aogfc-demo-home .aogfc-home-cat-card__body strong {
    display: block;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-demo-home .aogfc-home-cat-card__body small {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}
.aogfc-demo-home .aogfc-home-products--grid .aogfc-home-product-grid,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-product-grid {
    display: grid;
    grid-template-columns: repeat(var(--home-cols, 4), minmax(0, 1fr));
    gap: 14px 12px;
}
.aogfc-demo-home .aogfc-product-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    overflow: visible;
}
.aogfc-demo-home .aogfc-product-card__image {
    aspect-ratio: 4 / 5;
    background: #f0f0f0;
    overflow: hidden;
}
.aogfc-demo-home .aogfc-product-card__body {
    padding: 9px 4px 0;
    text-align: left;
}
.aogfc-demo-home .aogfc-product-card__cat,
.aogfc-demo-home .aogfc-product-card__body p { display: none; }
.aogfc-demo-home .aogfc-product-card h3 {
    min-height: 42px;
    margin: 0 0 4px;
    color: var(--aogfc-header-primary, #075b20);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}
.aogfc-demo-home .aogfc-product-card__price {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--aogfc-header-accent, #d81685);
    font-size: 14px;
    font-weight: 900;
}
.aogfc-demo-home .aogfc-home-triptych__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.aogfc-demo-home .aogfc-home-triptych__item span {
    position: absolute;
    z-index: 1;
    left: 16px;
    right: 16px;
    bottom: 16px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}
.aogfc-demo-home .aogfc-home-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: 0 0 14px;
    padding: 0 0 8px;
}
.aogfc-demo-home .aogfc-home-tabs button {
    min-height: 40px;
    flex: 0 0 auto;
    border: 1px solid rgba(7, 91, 32, .18);
    background: #fff;
    color: var(--aogfc-header-primary, #075b20);
    padding: 0 16px;
    font-weight: 900;
    cursor: pointer;
}
.aogfc-demo-home .aogfc-home-tabs button.is-active,
.aogfc-demo-home .aogfc-home-tabs button:hover {
    border-color: var(--aogfc-header-primary, #075b20);
    background: var(--aogfc-header-primary, #075b20);
    color: #fff;
}
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-tabs__panel:not(.is-active) { display: none; }
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-tabs__panel.is-active { display: block; }
.aogfc-demo-home .aogfc-home-section__bottom {
    margin-top: 20px;
    text-align: center;
}
.aogfc-demo-home .aogfc-home-section__view-all {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--aogfc-header-primary, #075b20);
    padding: 0 18px;
    text-transform: uppercase;
}
.aogfc-demo-home .aogfc-home-section__view-all:hover {
    background: var(--aogfc-header-primary, #075b20);
    color: #fff;
}
@media (max-width: 1024px) {
    .aogfc-demo-home .aogfc-home-cat-rail,
    .aogfc-demo-home .aogfc-home-products--slider .aogfc-home-product-grid {
        grid-auto-columns: calc((100% - (var(--home-cols-tablet, 3) - 1) * 10px) / var(--home-cols-tablet, 3));
    }
    .aogfc-demo-home .aogfc-home-products--grid .aogfc-home-product-grid,
    .aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-product-grid {
        grid-template-columns: repeat(var(--home-cols-tablet, 3), minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .aogfc-demo-home .aogfc-container { width: calc(100% - 20px); }
    .aogfc-demo-home .aogfc-home-section { padding: 22px 0; }
    .aogfc-demo-home .aogfc-home-section__head { align-items: flex-start; gap: 8px; }
    .aogfc-demo-home .aogfc-home-section__head h2 { font-size: 18px; padding-left: 18px; }
    .aogfc-demo-home .aogfc-home-section__head p { display: none; }
    .aogfc-demo-home .aogfc-home-cat-rail,
    .aogfc-demo-home .aogfc-home-products--slider .aogfc-home-product-grid {
        grid-auto-columns: calc((100% - (var(--home-cols-mobile, 2) - 1) * 8px) / var(--home-cols-mobile, 2));
        gap: 8px;
    }
    .aogfc-demo-home .aogfc-home-products--grid .aogfc-home-product-grid,
    .aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-product-grid {
        grid-template-columns: repeat(var(--home-cols-mobile, 2), minmax(0, 1fr));
        gap: 13px 8px;
    }
    .aogfc-demo-home .aogfc-home-cat-card__body strong { font-size: 11px; }
    .aogfc-demo-home .aogfc-home-cat-card__body small { font-size: 10px; }
    .aogfc-demo-home .aogfc-product-card h3 { font-size: 12px; min-height: 48px; }
    .aogfc-demo-home .aogfc-product-card__price { font-size: 12px; }
    .aogfc-demo-home .aogfc-home-triptych__grid { grid-template-columns: 1fr; gap: 12px; }
    .aogfc-demo-home .aogfc-home-tabs button { min-height: 36px; padding-inline: 12px; font-size: 12px; }
    .aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions,
    .aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions,
    .aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions {
        left: 5px;
        right: 5px;
    }
    .aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions button,
    .aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions button {
        width: 32px;
        height: 32px;
    }
}
/* Demo-style header structure with vertical product menu */
.aogfc-site-header {
    position: relative;
    z-index: 300;
    background: #fff;
}
.aogfc-header-notice {
    min-height: 42px;
    background: #000;
    color: #fff;
    border-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}
.aogfc-header-notice .aogfc-container { min-height: 42px; }
.aogfc-header-usp {
    background: #fff;
    border-bottom: 1px solid #eee6f5;
}
.aogfc-header-usp__inner {
    min-height: 80px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
}
.aogfc-header-usp__item {
    min-height: 80px;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 0 28px;
    border-left: 1px solid #eee6f5;
}
.aogfc-header-usp__item:first-child { border-left: 0; }
.aogfc-header-usp__icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border: 1px solid #dfe9e2;
    border-radius: 18px;
    color: #075b20;
    background: linear-gradient(145deg, #fff 0%, #f5faf6 100%);
    box-shadow: 0 10px 22px rgba(7,143,47,.1);
}
.aogfc-header-usp__icon svg {
    width: 42px;
    height: 42px;
}
.aogfc-header-usp__icon .aogfc-usp-line {
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.aogfc-header-usp__icon .aogfc-usp-dot {
    stroke: var(--aogfc-header-accent, #ff6900);
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.aogfc-header-usp__item strong {
    display: block;
    color: #111;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}
.aogfc-header-usp__item small {
    display: block;
    margin-top: 5px;
    color: #bebebe;
    font-size: 15px;
    line-height: 1.25;
}
.aogfc-header-main { background: var(--aogfc-header-primary, #075b20); }
.aogfc-header-main__inner {
    min-height: 76px;
    grid-template-columns: 300px minmax(360px, 1fr) auto;
    gap: 24px;
}
.aogfc-site-header .aogfc-logo img {
    max-width: 210px;
    max-height: 70px;
}
.aogfc-search-form {
    height: 44px;
    grid-template-columns: minmax(240px, 1fr) 128px 64px;
    border: 0;
}
.aogfc-search-form__selector {
    grid-column: 2;
    grid-row: 1;
    border-left: 1px solid #e5e5e5;
    border-right: 0;
}
.aogfc-search-form__input {
    grid-column: 1;
    grid-row: 1;
}
.aogfc-search-form__submit {
    grid-column: 3;
    grid-row: 1;
    margin-left: 5px;
}
.aogfc-header-account {
    width: auto;
    min-width: 176px;
    height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 0;
}
.aogfc-header-account::after {
    content: "Đăng nhập / Đăng ký";
    margin-left: 10px;
    color: currentColor;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}
.aogfc-header-call {
    min-width: 148px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}
.aogfc-header-call:hover,
.aogfc-header-call:focus {
    border-color: var(--aogfc-header-accent, #ff6900);
    background: var(--aogfc-header-accent, #ff6900);
    color: #fff;
}
.aogfc-header-cart {
    width: 70px;
    height: 48px;
    align-content: center;
    justify-items: center;
    font-size: 0;
}
.aogfc-header-cart::after {
    content: "Giỏ Hàng";
    display: block;
    margin-top: 2px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
}
.aogfc-header-cart span {
    right: 12px;
    top: 0;
}
.aogfc-header-nav-row {
    min-height: 50px;
    background: #a6a6a6;
}
.aogfc-header-nav-row__inner {
    position: relative;
    min-height: 50px;
    grid-template-columns: 344px minmax(0, 1fr);
    gap: 0;
}
.aogfc-vertical-menu {
    position: relative;
    align-self: stretch;
    z-index: 310;
}
.aogfc-vertical-menu__toggle {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 22px;
    border: 0;
    background: var(--aogfc-header-primary, #075b20);
    color: #fff;
    cursor: pointer;
    text-align: left;
}
.aogfc-vertical-menu__toggle span {
    font-size: 22px;
    line-height: 1;
}
.aogfc-vertical-menu__toggle strong {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}
.aogfc-vertical-menu__panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 344px;
    overflow: visible;
    background: #fff;
    border: 1px solid #dedede;
    box-shadow: 0 12px 26px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.aogfc-vertical-menu.is-open .aogfc-vertical-menu__panel,
.aogfc-vertical-menu.is-home-open .aogfc-vertical-menu__panel,
.aogfc-vertical-menu:focus-within .aogfc-vertical-menu__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.aogfc-vertical-menu__list,
.aogfc-vertical-menu__list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.aogfc-vertical-menu__list > li { position: relative; }
.aogfc-vertical-menu__list > li > a {
    min-height: 45px;
    display: flex;
    align-items: center;
    padding: 9px 34px 9px 18px;
    border-bottom: 1px solid #f1f1f1;
    color: #20242a;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 600;
}
.aogfc-vertical-menu__list > .menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #b9b9b9;
    border-bottom: 2px solid #b9b9b9;
    transform: translateY(-50%) rotate(-45deg);
}
.aogfc-vertical-menu__list > li:hover > a,
.aogfc-vertical-menu__list > li:focus-within > a {
    color: var(--aogfc-header-primary, #075b20);
    background: #f7f8fb;
}
.aogfc-vertical-menu__list .sub-menu {
    position: absolute;
    top: -1px;
    left: 100%;
    z-index: 330;
    min-width: 240px;
    padding: 8px 0;
    background: #fff;
    border: 1px solid #dedede;
    box-shadow: 0 12px 26px rgba(0,0,0,.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.aogfc-vertical-menu__list li:hover > .sub-menu,
.aogfc-vertical-menu__list li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}
.aogfc-vertical-menu__list .sub-menu a {
    display: block;
    padding: 9px 16px;
    color: #252525;
    font-size: 14px;
    font-weight: 600;
}
.aogfc-vertical-menu__list .sub-menu a:hover,
.aogfc-vertical-menu__list .sub-menu a:focus {
    color: var(--aogfc-header-accent, #ff6900);
    background: #f7f8fb;
}
.aogfc-vertical-menu__more a {
    color: #111 !important;
    font-weight: 900 !important;
}
.aogfc-header-nav-row .aogfc-main-nav {
    min-width: 0;
    padding-left: 24px;
}
.aogfc-header-nav-row .aogfc-menu {
    min-height: 50px;
    justify-content: flex-start;
}
.aogfc-header-nav-row .aogfc-menu > li > a {
    min-height: 50px;
    padding: 0 13px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-header-contact {
    min-height: 50px;
    padding-left: 14px;
    font-weight: 900;
}
.aogfc-site-header.is-sticky-enabled.is-stuck .aogfc-header-notice,
.aogfc-site-header.is-sticky-enabled.is-stuck .aogfc-header-usp,
.aogfc-site-header.is-sticky-enabled.is-stuck .aogfc-header-nav-row {
    display: none;
}
@media (max-width: 1180px) {
    .aogfc-header-main__inner {
        grid-template-columns: 220px minmax(300px, 1fr) auto;
        gap: 14px;
    }
    .aogfc-header-nav-row__inner {
        grid-template-columns: 300px minmax(0, 1fr) auto;
    }
    .aogfc-header-nav-row .aogfc-main-nav { padding-left: 14px; }
    .aogfc-vertical-menu__panel,
    .aogfc-vertical-menu__toggle {
        width: 300px;
    }
}
@media (max-width: 1024px) {
    .aogfc-header-usp { display: none; }
    .aogfc-header-main__inner {
        grid-template-columns: minmax(180px, 242px) auto;
        min-height: 61px;
    }
    .aogfc-header-nav-row__inner {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 8px;
    }
    .aogfc-vertical-menu { display: none; }
}
@media (max-width: 760px) {
    .aogfc-header-notice {
        min-height: 34px;
        font-size: 12px;
    }
    .aogfc-header-notice .aogfc-container { min-height: 34px; }
    .aogfc-search-form {
        grid-template-columns: minmax(0, 1fr) 78px 38px;
    }
}

/* Header alignment refinements */
.aogfc-site-header {
    --aogfc-header-side: 324px;
    --aogfc-header-gap: 24px;
}
.aogfc-header-main {
    background: #edf8f0;
    border-top: 1px solid #e1ede4;
    border-bottom: 1px solid #d7e9db;
    overflow: visible;
}
.aogfc-header-main__inner {
    min-height: 76px;
    grid-template-columns: var(--aogfc-header-side) minmax(360px, 1fr) auto;
    gap: var(--aogfc-header-gap);
    overflow: visible;
}
.aogfc-site-header .aogfc-logo {
    max-width: var(--aogfc-header-side);
    overflow: visible;
}
.aogfc-site-header .aogfc-logo img {
    max-width: 270px;
    max-height: 100px;
    transform: translateX(14px) scale(1.12, 1.28);
    transform-origin: left center;
    filter: drop-shadow(0 5px 10px rgba(7,143,47,.16));
}
.aogfc-header-main .aogfc-header-call {
    border-color: #075b20;
    background: #075b20;
    color: #fff;
    box-shadow: 0 8px 18px rgba(7,91,32,.16);
}
.aogfc-header-main .aogfc-header-call:hover,
.aogfc-header-main .aogfc-header-call:focus {
    border-color: var(--aogfc-header-accent, #ff6900);
    background: var(--aogfc-header-accent, #ff6900);
    color: #fff;
}
.aogfc-header-main .aogfc-header-cart {
    color: #075b20;
}
.aogfc-header-main .aogfc-menu-toggle {
    color: #075b20;
}
.aogfc-header-nav-row__inner {
    grid-template-columns: calc(var(--aogfc-header-side) + var(--aogfc-header-gap)) minmax(0, 1fr);
}
.aogfc-vertical-menu__toggle,
.aogfc-vertical-menu__panel {
    width: calc(var(--aogfc-header-side) + var(--aogfc-header-gap));
}
@media (max-width: 1180px) {
    .aogfc-site-header {
        --aogfc-header-side: 236px;
        --aogfc-header-gap: 14px;
    }
    .aogfc-header-main__inner {
        grid-template-columns: var(--aogfc-header-side) minmax(300px, 1fr) auto;
    }
    .aogfc-site-header .aogfc-logo img {
        max-width: 238px;
        max-height: 88px;
        transform: translateX(8px) scale(1.08, 1.18);
    }
}
@media (max-width: 1024px) {
    .aogfc-header-main__inner {
        grid-template-columns: minmax(180px, 242px) auto;
    }
    .aogfc-site-header .aogfc-logo img {
        max-width: 230px;
        max-height: 61px;
        transform: none;
    }
}
@media (max-width: 760px) {
    .aogfc-header-main__inner {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
    }
    .aogfc-site-header .aogfc-logo img {
        max-width: 210px;
        max-height: 60px;
    }
}

/* Header and homepage standard container frame */
@media (min-width: 1025px) {
    :root {
        --aogfc-page-frame: var(--aogfc-container);
        --aogfc-frame-margin: max(24px, calc((100vw - 1350px) / 2));
        --aogfc-header-side: 324px;
        --aogfc-header-gap: 24px;
        --aogfc-frame-left-content: calc(var(--aogfc-frame-margin) + var(--aogfc-header-side) + var(--aogfc-header-gap) + 30px);
    }
    .aogfc-site-header .aogfc-container,
    .aogfc-header-usp__inner,
    .aogfc-header-main__inner,
    .aogfc-header-nav-row__inner {
        width: min(var(--aogfc-page-frame), calc(100vw - 48px));
    }
    .aogfc-demo-home .aogfc-container {
        width: min(var(--aogfc-page-frame), calc(100vw - 48px));
    }
    body.home .aogfc-demo-home > .aogfc-home-section:first-child > .aogfc-container,
    body.front-page .aogfc-demo-home > .aogfc-home-section:first-child > .aogfc-container {
        width: min(
            calc(var(--aogfc-page-frame) - var(--aogfc-header-side) - var(--aogfc-header-gap) - 30px),
            calc(100vw - var(--aogfc-frame-left-content) - var(--aogfc-frame-margin))
        );
        margin-left: var(--aogfc-frame-left-content);
        margin-right: var(--aogfc-frame-margin);
    }
}

/* Tapdeco header inspired by the supplied menu reference. */
.aogfc-site-header--tapdeco {
    --aogfc-demo-navy: var(--aogfc-brand-primary);
    --aogfc-demo-orange: var(--aogfc-brand-accent);
    position: relative;
    z-index: 300;
    background: #fff;
    box-shadow: 0 2px 12px rgba(7, 91, 32, .12);
}
.aogfc-demo-topbar {
    min-height: 42px;
    background: var(--aogfc-demo-navy);
    color: #fff;
}
.aogfc-demo-topbar__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.aogfc-demo-topbar__contact {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 500;
}
.aogfc-demo-topbar__contact span,
.aogfc-demo-topbar__contact a {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: inherit;
    white-space: nowrap;
}
.aogfc-demo-topbar__contact svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: var(--aogfc-demo-orange);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.aogfc-demo-topbar__contact a:hover,
.aogfc-demo-topbar__contact a:focus { color: #ffd7b2; }
.aogfc-demo-topbar__search {
    width: min(270px, 32vw);
    flex: 0 0 min(270px, 32vw);
}
.aogfc-demo-topbar__search .aogfc-header-search { width: 100%; }
.aogfc-demo-topbar__search .aogfc-search-form {
    height: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 0;
    background: #fff;
}
.aogfc-demo-topbar__search .aogfc-search-form__selector { display: none; }
.aogfc-demo-topbar__search .aogfc-search-form__input {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    padding: 0 12px;
    color: #263b2d;
    font-size: 14px;
}
.aogfc-demo-topbar__search .aogfc-search-form__submit {
    grid-column: 2;
    grid-row: 1;
    width: 48px;
    height: 34px;
    margin: -1px -1px -1px 0;
    border-radius: 0;
    background: var(--aogfc-demo-orange);
}
.aogfc-demo-topbar__search .aogfc-search-results {
    top: calc(100% + 7px);
    left: auto;
    right: 0;
    width: min(430px, 88vw);
}
.aogfc-site-header--tapdeco .aogfc-header-main {
    overflow: visible;
    border: 0;
    background: #fff;
}
.aogfc-site-header--tapdeco .aogfc-header-main__inner {
    min-height: 124px;
    display: grid;
    grid-template-columns: minmax(360px, 430px) minmax(170px, 1fr) auto;
    gap: 30px;
    align-items: center;
    overflow: visible;
}
.aogfc-site-header--tapdeco .aogfc-logo {
    max-width: 430px;
    overflow: visible;
}
.aogfc-site-header--tapdeco .aogfc-logo img {
    width: min(100%, 410px);
    max-width: 410px;
    max-height: 106px;
    transform: none;
    filter: none;
    object-fit: contain;
    object-position: left center;
}
.aogfc-demo-brand-promise {
    min-width: 0;
    display: grid;
    gap: 5px;
    justify-self: start;
    padding-left: 24px;
    border-left: 1px solid #e1e9e3;
}
.aogfc-demo-brand-promise strong {
    color: var(--aogfc-demo-navy);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}
.aogfc-demo-brand-promise span {
    color: #617067;
    font-size: 13px;
    line-height: 1.35;
}
.aogfc-site-header--tapdeco .aogfc-header-actions {
    display: flex;
    align-items: center;
    gap: 34px;
}
.aogfc-demo-quote {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 27px;
    border: 2px solid var(--aogfc-demo-orange);
    border-radius: 12px;
    background: var(--aogfc-demo-orange);
    color: #fff;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(255, 121, 0, .2);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.aogfc-demo-quote svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.aogfc-demo-quote:hover,
.aogfc-demo-quote:focus {
    transform: translateY(-2px);
    background: #e96700;
    border-color: #e96700;
    color: #fff;
    box-shadow: 0 13px 28px rgba(255, 121, 0, .28);
}
.aogfc-demo-advisers {
    display: flex;
    align-items: center;
    padding-right: 4px;
}
.aogfc-demo-adviser {
    position: relative;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    margin-left: -10px;
    overflow: visible;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: #f0f5f1;
    background-image: var(--aogfc-team-image);
    background-repeat: no-repeat;
    background-size: 400% auto;
    box-shadow: 0 3px 9px rgba(7, 59, 112, .18);
}
.aogfc-demo-adviser:first-child { margin-left: 0; }
.aogfc-demo-adviser::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 11px;
    height: 11px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #27b83f;
}
.aogfc-demo-adviser--1 { background-position: 9% 25%; }
.aogfc-demo-adviser--2 { background-position: 39% 25%; }
.aogfc-demo-adviser--3 { background-position: 68% 25%; }
.aogfc-demo-adviser--4 { background-position: 96% 25%; }
.aogfc-site-header--tapdeco .aogfc-header-nav-row {
    min-height: 58px;
    border: 0;
    background: var(--aogfc-demo-navy);
}
.aogfc-site-header--tapdeco .aogfc-header-nav-row__inner {
    min-height: 58px;
    display: block;
}
.aogfc-site-header--tapdeco .aogfc-header-nav-row .aogfc-main-nav {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
}
.aogfc-site-header--tapdeco .aogfc-header-nav-row .aogfc-menu {
    min-height: 58px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
}
.aogfc-site-header--tapdeco .aogfc-header-nav-row .aogfc-menu > li > a {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 0 31px;
    color: #fff;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    text-transform: none;
    transition: color .16s ease, background .16s ease;
}
.aogfc-site-header--tapdeco .aogfc-header-nav-row .aogfc-menu > li:first-child > a { padding-inline: 34px; }
.aogfc-site-header--tapdeco .aogfc-header-nav-row .aogfc-menu > .current-menu-item > a,
.aogfc-site-header--tapdeco .aogfc-header-nav-row .aogfc-menu > .current-menu-ancestor > a,
.aogfc-site-header--tapdeco .aogfc-header-nav-row .aogfc-menu > li:hover > a,
.aogfc-site-header--tapdeco .aogfc-header-nav-row .aogfc-menu > li:focus-within > a {
    background: var(--aogfc-demo-orange);
    color: #fff;
}
.aogfc-site-header--tapdeco .aogfc-menu-toggle--nav { display: none; }
.aogfc-mobile-drawer__search {
    padding: 14px 16px;
    border-bottom: 1px solid #e7ede9;
    background: #f6faf7;
}
.aogfc-mobile-drawer__search .aogfc-search-form {
    height: 44px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    border: 1px solid #d5e0d8;
    background: #fff;
}
.aogfc-mobile-drawer__search .aogfc-search-form__selector { display: none; }
.aogfc-mobile-drawer__search .aogfc-search-form__input {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    padding-inline: 12px;
}
.aogfc-mobile-drawer__search .aogfc-search-form__submit {
    grid-column: 2;
    grid-row: 1;
    width: 44px;
    margin: 0;
    border-radius: 0;
    background: var(--aogfc-demo-orange);
}
.aogfc-mobile-drawer__search .aogfc-search-results { position: static; margin-top: 8px; }
@media (max-width: 1280px) {
    .aogfc-site-header--tapdeco .aogfc-header-main__inner {
        grid-template-columns: minmax(300px, 350px) minmax(0, 1fr) auto;
        gap: 22px;
    }
    .aogfc-site-header--tapdeco .aogfc-logo img { max-width: 340px; }
    .aogfc-demo-brand-promise { display: none; }
    .aogfc-site-header--tapdeco .aogfc-header-nav-row .aogfc-menu > li > a { padding-inline: 25px; }
}
@media (max-width: 1024px) {
    .aogfc-site-header--tapdeco .aogfc-header-main__inner {
        min-height: 88px;
        grid-template-columns: minmax(240px, 310px) 1fr auto;
    }
    .aogfc-site-header--tapdeco .aogfc-logo img { max-width: 300px; max-height: 78px; }
    .aogfc-demo-advisers { display: none; }
    .aogfc-demo-quote { min-height: 48px; padding-inline: 20px; }
    .aogfc-site-header--tapdeco .aogfc-header-nav-row { display: none; }
}
@media (max-width: 760px) {
    .aogfc-demo-topbar,
    .aogfc-mobile-drawer__search { display: none; }
    .aogfc-site-header--tapdeco .aogfc-header-main__inner {
        height: 72px;
        min-height: 72px;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 0;
    }
    .aogfc-site-header--tapdeco .aogfc-logo {
        grid-column: 2;
        justify-self: center;
        max-width: 100%;
    }
    .aogfc-site-header--tapdeco .aogfc-logo img {
        width: min(100%, 270px);
        max-width: 270px;
        max-height: 70px;
        object-position: center;
    }
    .aogfc-site-header--tapdeco .aogfc-header-actions {
        grid-column: 3;
        justify-self: end;
        gap: 0;
    }
    .aogfc-demo-quote { display: none; }
    .aogfc-site-header--tapdeco .aogfc-menu-toggle {
        width: 44px;
        height: 44px;
        display: inline-grid;
        place-content: center;
        gap: 5px;
        border-radius: 8px;
        background: var(--aogfc-demo-navy);
        color: #fff;
    }
    .aogfc-site-header--tapdeco .aogfc-menu-toggle > span:not(.screen-reader-text) {
        width: 21px;
        height: 2px;
        background: currentColor;
    }
}

/* Product category archive sidebar */
.aogfc-product-tax.has-sidebar .aogfc-tax-sidebar-wrap {
    min-width: 0;
}
.aogfc-product-tax .aogfc-tax-sidebar-wrap > .aogfc-filter-close {
    display: none;
}
.aogfc-product-tax .aogfc-product-cat-sidebar {
    position: sticky;
    top: 120px;
    overflow: hidden;
    border: 1px solid #e0eae2;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(7, 91, 32, .07);
}
.aogfc-product-tax .aogfc-product-cat-sidebar__head {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: #075b20;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 750;
    text-transform: uppercase;
}
.aogfc-product-tax .aogfc-product-cat-list {
    padding: 0;
    gap: 0;
}
.aogfc-product-tax .aogfc-product-cat-list__item {
    border-radius: 0;
}
.aogfc-product-tax .aogfc-product-cat-list__row {
    min-height: 42px;
    border: 0;
    border-bottom: 1px solid #f1f6f2;
    border-radius: 0;
    grid-template-columns: minmax(0, 1fr) 32px;
}
.aogfc-product-tax .aogfc-product-cat-list__parent {
    padding: 9px 7px 9px 14px;
    color: #16351f;
    font-size: 14px;
    font-weight: 550;
    line-height: 1.18;
}
.aogfc-product-tax .aogfc-product-cat-list__parent small,
.aogfc-product-tax .aogfc-product-cat-children small {
    background: #edf8f0;
    color: #075b20;
}
.aogfc-product-tax .aogfc-cat-toggle {
    width: 24px;
    height: 24px;
    margin-right: 7px;
    background: #f5faf6;
    border: 1px solid #e0eae2;
}
.aogfc-product-tax .aogfc-cat-toggle::before {
    border-color: #075b20;
}
.aogfc-product-tax .aogfc-product-cat-list__item.is-active-parent > .aogfc-product-cat-list__row,
.aogfc-product-tax .aogfc-product-cat-list__item.is-open > .aogfc-product-cat-list__row,
.aogfc-product-tax .aogfc-product-cat-list__row:hover {
    background: #edf8f0;
    border-color: #f1f6f2;
    box-shadow: inset 4px 0 0 #ff6900;
}
.aogfc-product-tax .aogfc-product-cat-list__item.is-active-parent > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent,
.aogfc-product-tax .aogfc-product-cat-list__item.is-open > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent,
.aogfc-product-tax .aogfc-product-cat-list__row:hover .aogfc-product-cat-list__parent {
    color: #075b20;
}
.aogfc-product-tax .aogfc-product-cat-children {
    margin: 0;
    padding: 4px 8px 7px 17px;
    border-left: 4px solid #f1f6f2;
    background: #fbfdfb;
}
.aogfc-product-tax .aogfc-product-cat-children a {
    min-height: 30px;
    padding: 6px 8px 6px 10px;
    color: #3d5144;
    font-size: 13px;
    font-weight: 550;
    line-height: 1.18;
}
.aogfc-product-tax .aogfc-product-cat-children a:hover {
    background: #edf8f0;
    color: #075b20;
}
.aogfc-product-tax .aogfc-product-cat-children .is-current a {
    background: #075b20;
    color: #fff;
    box-shadow: 0 7px 14px rgba(7, 91, 32, .14);
}
.aogfc-product-tax .aogfc-product-cat-children .is-current small {
    color: #075b20;
}
@media (max-width: 1024px) {
    .aogfc-product-tax .aogfc-tax-sidebar-wrap > .aogfc-filter-close {
        display: inline-flex;
    }
    .aogfc-product-tax .aogfc-product-cat-sidebar {
        position: static;
        top: auto;
    }
}

/* Final Tapdeco footer overrides: keep after legacy footer rules. */
.aogfc-site-footer {
    border-top: 5px solid #078f2f;
    color: #263b2d;
    background: #fff;
}
.aogfc-site-footer__main { padding: 34px 0 30px; }
.aogfc-site-footer__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr) minmax(380px, 1fr);
    gap: clamp(30px, 3vw, 56px);
    align-items: start;
}
.aogfc-site-footer__logo {
    display: inline-flex;
    width: min(100%, 460px);
    max-width: none;
    min-height: 112px;
    align-items: center;
    margin: 0 0 20px;
    padding: 12px 22px;
    border: 1px solid #dce9df;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff 0%, #f1f8f3 100%);
    box-shadow: 0 14px 34px rgba(7, 92, 31, .09);
}
.aogfc-site-footer__logo img {
    display: block;
    width: min(100%, 400px);
    max-width: none;
    max-height: 88px;
    height: auto;
    object-fit: contain;
}
.aogfc-site-footer__brand h2,
.aogfc-site-footer__address h2,
.aogfc-site-footer__quote h2 {
    margin: 0 0 14px;
    padding-bottom: 10px;
    position: relative;
    border-bottom: 1px solid #dce7df;
    color: #075b20;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: .025em;
    text-transform: uppercase;
}
.aogfc-site-footer__brand h2::after,
.aogfc-site-footer__address h2::after,
.aogfc-site-footer__quote h2::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 44px;
    height: 3px;
    border-radius: 3px;
    background: #ff6900;
    content: "";
}
.aogfc-site-footer__intro,
.aogfc-site-footer__address p,
.aogfc-site-footer__quote p {
    margin: 13px 0 0;
    color: #58675d;
    font-size: 15px;
    line-height: 1.65;
}
.aogfc-site-footer__address p:first-of-type,
.aogfc-site-footer__quote p:first-of-type { margin-top: 0; }
.aogfc-site-footer__address strong { color: #075b20; }
.aogfc-site-footer__contact { gap: 10px; }
.aogfc-site-footer__contact li {
    grid-template-columns: 28px minmax(0, 1fr);
    color: #405148;
}
.aogfc-site-footer__contact-icon {
    width: 28px;
    height: 28px;
    border: 1px solid #cfe2d4;
    color: #078f2f;
    background: #eff8f1;
    box-shadow: none;
}
.aogfc-site-footer a,
.aogfc-site-footer__contact a { color: #075b20; }
.aogfc-site-footer a:hover,
.aogfc-site-footer a:focus-visible { color: #ff6900; }
.aogfc-site-footer__text-link {
    display: inline-flex;
    margin-top: 14px;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
}
.aogfc-site-footer__text-link::after { content: "→"; }
.aogfc-site-footer__quote-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-top: 24px;
}
.aogfc-site-footer__quote-btn {
    display: inline-flex;
    min-height: 48px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ff6900;
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(255, 105, 0, .2);
    font-size: 14px;
    font-weight: 850;
    text-transform: uppercase;
}
.aogfc-site-footer__quote-btn:hover,
.aogfc-site-footer__quote-btn:focus-visible {
    background: #ff812e;
    color: #fff !important;
    transform: translateY(-1px);
}
.aogfc-site-footer__quote-link {
    font-size: 14px;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.aogfc-site-footer__quote-card {
    position: relative;
    overflow: hidden;
    padding: 22px 28px 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 8%, rgba(255, 255, 255, .13), transparent 25%),
        linear-gradient(150deg, #064423 0%, #067128 100%);
    box-shadow: 0 20px 44px rgba(4, 81, 28, .18);
}
.aogfc-site-footer__quote-card::before {
    position: absolute;
    right: -55px;
    bottom: -75px;
    width: 180px;
    height: 180px;
    border: 28px solid rgba(255, 255, 255, .045);
    border-radius: 50%;
    content: "";
}
.aogfc-site-footer__quote-card h2 {
    margin-bottom: 14px;
    padding: 0;
    border: 0;
    color: #fff;
    font-size: 18px;
    text-align: center;
}
.aogfc-site-footer__quote-card h2::after { display: none; }
.aogfc-site-footer__advisors {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin: 0 auto 14px;
}
.aogfc-site-footer__advisor {
    position: relative;
    display: block;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    overflow: visible;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #dce8df;
    box-shadow: 0 7px 18px rgba(0, 31, 12, .22);
}
.aogfc-site-footer__advisor + .aogfc-site-footer__advisor { margin-left: -9px; }
.aogfc-site-footer__advisor img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.aogfc-site-footer__advisor.advisor-1 img { object-position: 16% 35%; }
.aogfc-site-footer__advisor.advisor-2 img { object-position: 38% 35%; }
.aogfc-site-footer__advisor.advisor-3 img { object-position: 61% 35%; }
.aogfc-site-footer__advisor.advisor-4 img { object-position: 83% 35%; }
.aogfc-site-footer__advisor.advisor-5 img { object-position: 64% 35%; }
.aogfc-site-footer__advisor i {
    position: absolute;
    right: -1px;
    bottom: 1px;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #20b53e;
}
.aogfc-site-footer__quote-card > p,
.aogfc-site-footer__quote-card > p:first-of-type {
    position: relative;
    z-index: 1;
    max-width: 390px;
    margin: 0 auto 12px;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.65;
    text-align: center;
}
.aogfc-site-footer__quote-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
}
.aogfc-site-footer__quote-form input {
    width: 100%;
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 999px;
    outline: none;
    color: #263b2d;
    background: #fff;
    font: inherit;
    font-size: 13px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .06);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.aogfc-site-footer__quote-form input:focus {
    border-color: #ff8b39;
    box-shadow: 0 0 0 3px rgba(255, 105, 0, .2);
}
.aogfc-site-footer__quote-form button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-self: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #ff6900;
    box-shadow: 0 12px 24px rgba(0, 38, 13, .2);
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease;
}
.aogfc-site-footer__quote-form button:hover,
.aogfc-site-footer__quote-form button:focus-visible {
    background: #ff812e;
    transform: translateY(-2px);
}
.aogfc-site-footer__quote-form button span { font-size: 17px; }
.aogfc-site-footer__online {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 9px;
    color: rgba(255, 255, 255, .75);
    font-size: 9px;
    font-weight: 650;
}
.aogfc-site-footer__online i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #42dc62;
    box-shadow: 0 0 0 4px rgba(66, 220, 98, .14);
}
.aogfc-site-footer__bottom {
    min-height: 54px;
    border-top: 1px solid #dce7df;
    background: #f3f8f4;
    color: #617067;
}
@media (min-width: 1101px) {
    .aogfc-site-footer .aogfc-container {
        width: min(calc(100% - 64px), 1720px);
        max-width: none;
    }
}
@media (max-width: 1100px) {
    .aogfc-site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 46px; }
    .aogfc-site-footer__quote { grid-column: 1 / -1; }
    .aogfc-site-footer__quote-card { width: min(100%, 520px); justify-self: center; }
}
@media (max-width: 640px) {
    .aogfc-site-footer__main { padding: 36px 0 28px; }
    .aogfc-site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .aogfc-site-footer__quote { grid-column: auto; }
    .aogfc-site-footer__quote-card { width: 100%; padding: 26px 20px 22px; }
    .aogfc-site-footer__brand { padding-bottom: 0; }
    .aogfc-site-footer__logo { width: min(100%, 320px); margin-bottom: 24px; }
    .aogfc-site-footer__logo img { width: min(100%, 300px); }
    .aogfc-site-footer__bottom { padding: 14px 0 20px; }
}

/* Floating contact buttons: compact stack close to the viewport edge. */
@media (min-width: 761px) {
    .hotline-phone-ring-wrap,
    .mess-ring-wrap {
        right: 6px;
        width: 82px;
        height: 82px;
    }
    .hotline-phone-ring-wrap { bottom: 66px; }
    .mess-ring-wrap { bottom: 150px; }
    .hotline-phone-ring,
    .mess-ring {
        width: 82px;
        height: 82px;
    }
    .hotline-phone-ring-circle,
    .mess-ring-circle {
        top: 6px;
        left: 6px;
        width: 70px;
        height: 70px;
    }
    .hotline-phone-ring-circle-fill,
    .mess-ring-circle-fill {
        top: 16px;
        left: 16px;
        width: 50px;
        height: 50px;
    }
    .hotline-phone-ring-img-circle,
    .mess-ring-img-circle {
        top: 22px;
        left: 22px;
        width: 38px;
        height: 38px;
    }
    .hotline-phone-ring-img-circle .pps-btn-img {
        width: 38px;
        height: 38px;
    }
    .mess-ring-img-circle .pps-btn-img,
    .mess-ring-img-circle img {
        width: 34px;
        height: 34px;
    }
    .mess-ring-img-circle {
        animation: none;
        background: #0876dd;
        box-shadow: 0 7px 18px rgba(8, 118, 221, .32);
    }
    .mess-ring-img-circle img {
        display: none;
    }
    .mess-ring-img-circle::before {
        content: "Zalo";
        position: absolute;
        inset: 0;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 10px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -.25px;
        text-align: center;
    }
    .aogfc-floating-icon {
        width: 20px;
        height: 20px;
    }
}

/* Sidebar cascade guard: keep this block at the absolute end of main.css. */
/* Product detail layout inspired by the reference, adapted to Tapde.com. */
.aogfc-single-product {
    padding: 34px 0 52px;
    background: #fff;
}
.aogfc-single-product .aogfc-breadcrumb {
    margin-bottom: 22px;
    color: #627168;
    font-size: 13px;
}
.aogfc-single-product .aogfc-product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(350px, 1.12fr) 270px;
    gap: 22px;
    align-items: start;
}
.aogfc-single-product .aogfc-product-gallery {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 12px;
    align-items: start;
}
.aogfc-single-product .aogfc-product-gallery__main {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 1px solid #d8e4db;
    border-radius: 8px;
    background: #f5f7f5;
    box-shadow: none;
}
.aogfc-single-product .aogfc-product-gallery__main::after {
    content: "+";
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background: rgba(8, 74, 34, .88);
    color: #fff;
    font-size: 22px;
    font-weight: 400;
}
.aogfc-single-product .aogfc-product-gallery__main img {
    object-fit: cover;
    object-position: center;
}
.aogfc-single-product .aogfc-product-thumbs {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
    gap: 9px;
    max-height: 650px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 3px 2px 0;
}
.aogfc-single-product .aogfc-product-thumb {
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 1px solid #d8e4db;
    border-radius: 4px;
    background: #f5f7f5;
    opacity: .78;
}
.aogfc-single-product .aogfc-product-thumb:hover,
.aogfc-single-product .aogfc-product-thumb.is-active {
    border-color: #ff6900;
    opacity: 1;
    transform: none;
    box-shadow: 0 0 0 1px #ff6900;
}
.aogfc-single-product .aogfc-product-detail__summary {
    padding: 24px 25px;
    border: 1px solid #d8e4db;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(11, 73, 33, .055);
}
.aogfc-single-product .aogfc-product-detail__cat {
    margin-bottom: 11px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #edf8f0;
    color: #087c31;
    font-size: 12px;
    font-weight: 800;
}
.aogfc-single-product .aogfc-product-detail__summary h1 {
    margin: 0 0 13px;
    color: #103c22;
    font-size: clamp(29px, 2.3vw, 37px);
    line-height: 1.18;
    letter-spacing: -.55px;
}
.aogfc-single-product .aogfc-product-excerpt {
    color: #48584e;
    font-size: 15px;
    line-height: 1.65;
}
.aogfc-product-quote-note {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    margin-top: 19px;
    padding: 14px;
    border: 1px solid #ffb27d;
    border-radius: 7px;
    background: #fff8f3;
}
.aogfc-product-quote-note__icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ff6900;
    color: #fff;
}
.aogfc-product-quote-note__icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.aogfc-product-quote-note p {
    display: grid;
    gap: 3px;
    margin: 0;
}
.aogfc-product-quote-note strong {
    color: #cb5100;
    font-size: 14px;
}
.aogfc-product-quote-note span {
    color: #5b625d;
    font-size: 12px;
    line-height: 1.45;
}
.aogfc-single-product .aogfc-product-actions {
    grid-template-columns: minmax(0, 1fr) 135px;
    gap: 10px;
    margin-top: 16px;
}
.aogfc-single-product .aogfc-product-actions .aogfc-btn {
    min-height: 50px;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 13px;
    box-shadow: none;
}
.aogfc-single-product .aogfc-product-actions .aogfc-btn::before {
    display: none;
}
.aogfc-single-product .aogfc-product-actions .aogfc-popup-open {
    background: #ff6900;
}
.aogfc-single-product .aogfc-product-actions .aogfc-btn--zalo {
    background: #087c31;
}
.aogfc-single-product .aogfc-product-actions .aogfc-btn:hover,
.aogfc-single-product .aogfc-product-actions .aogfc-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 9px 20px rgba(8, 86, 35, .15);
}
.aogfc-single-product .aogfc-product-brand-box {
    margin-top: 16px;
    padding: 14px 16px 15px;
    border: 0;
    border-radius: 7px;
    background: #f4f8f5;
}
.aogfc-single-product .aogfc-product-brand-box__title {
    display: block;
    margin-bottom: 10px;
    color: #075d29;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .01em;
}
.aogfc-single-product .aogfc-product-brand-box ul {
    gap: 8px;
    padding: 0;
    list-style: none;
}
.aogfc-single-product .aogfc-product-brand-box li {
    position: relative;
    padding-left: 23px;
    color: #3d5144;
    font-size: 12px;
    line-height: 1.45;
}
.aogfc-single-product .aogfc-product-brand-box li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #dff2e4;
    color: #087c31;
    font-size: 10px;
    font-weight: 900;
}
.aogfc-product-description {
    margin-top: 34px;
}
.aogfc-product-description__title {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin: 0;
    padding: 9px 24px;
    border-radius: 7px 7px 0 0;
    background: #087c31;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .25px;
    text-transform: uppercase;
}
.aogfc-single-product .aogfc-product-content {
    margin-top: 0;
    padding: 28px 30px;
    border: 1px solid #d8e4db;
    border-top: 3px solid #087c31;
    border-radius: 0 8px 8px 8px;
    box-shadow: none;
    color: #33473a;
    font-size: 15px;
    line-height: 1.75;
}
.aogfc-single-product .aogfc-product-content > :first-child {
    margin-top: 0;
}
.aogfc-single-product .aogfc-product-content h2,
.aogfc-single-product .aogfc-product-content h3 {
    color: #103c22;
}
.aogfc-single-product .aogfc-related-products {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid #dfe8e1;
}
.aogfc-single-product .aogfc-related-products__head {
    margin-bottom: 18px;
    text-align: left;
}
.aogfc-single-product .aogfc-related-products__head h2 {
    color: #103c22;
    font-size: 25px;
}
.aogfc-product-support-rail {
    position: sticky;
    top: 122px;
    display: grid;
    gap: 13px;
}
.aogfc-product-support {
    overflow: hidden;
    border: 1px solid #bcd9c4;
    border-radius: 8px;
    background: #fff;
}
.aogfc-product-support__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 12px;
    background: #075f28;
    color: #fff;
}
.aogfc-product-support__head h2 {
    margin: 0;
    color: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .25px;
    text-transform: uppercase;
}
.aogfc-product-support__status {
    width: 8px;
    height: 8px;
    border: 2px solid rgba(255,255,255,.75);
    border-radius: 50%;
    background: #65de76;
    box-shadow: 0 0 0 4px rgba(101,222,118,.13);
}
.aogfc-product-support__contacts {
    padding: 8px 13px 5px;
}
.aogfc-product-support__contact-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px dashed #d8e4db;
}
.aogfc-product-support__contact-row:last-child {
    border-bottom: 0;
}
.aogfc-product-support__contact-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff0e6;
    color: #ff6900;
}
.aogfc-product-support__contact-icon svg,
.aogfc-product-service-card__icon svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}
.aogfc-product-support__contact-content,
.aogfc-product-support__contact-primary {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.aogfc-product-support__contact-content strong,
.aogfc-product-support__contact-primary strong {
    color: #173c23;
    font-size: 12px;
    line-height: 1.25;
}
.aogfc-product-support__contact-content > span,
.aogfc-product-support__contact-primary span {
    color: #f05f00;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}
.aogfc-product-support__contact-row[href] .aogfc-product-support__contact-content > span {
    color: #087c31;
}
.aogfc-product-support__email {
    overflow-wrap: anywhere;
    color: #627368;
    font-size: 9px;
    line-height: 1.35;
}
.aogfc-product-support__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 5px 13px 13px;
}
.aogfc-product-support__action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 8px;
    border-radius: 6px;
    background: #ff6900;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}
.aogfc-product-support__action.is-zalo {
    background: #087c31;
}
.aogfc-product-support__action:hover {
    color: #fff;
    filter: brightness(.94);
}
.aogfc-product-service-card {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 13px;
    border: 1px solid #e2e9e3;
    border-radius: 8px;
    background: #f7f8f7;
}
.aogfc-product-service-card__icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: #fff0e6;
    color: #ff6900;
}
.aogfc-product-service-card h3 {
    margin: 0 0 3px;
    color: #174328;
    font-size: 12px;
    line-height: 1.28;
}
.aogfc-product-service-card p {
    margin: 0;
    color: #617067;
    font-size: 10px;
    line-height: 1.45;
}
@media (max-width: 1180px) {
    .aogfc-single-product .aogfc-product-detail {
        grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    }
    .aogfc-single-product .aogfc-product-support-rail {
        grid-column: 1 / -1;
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .aogfc-single-product .aogfc-product-support {
        grid-column: 1 / -1;
    }
}
@media (max-width: 760px) {
    .aogfc-single-product {
        padding: 22px 0 38px;
    }
    .aogfc-single-product .aogfc-product-detail {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .aogfc-single-product .aogfc-product-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .aogfc-single-product .aogfc-product-gallery__main {
        grid-column: 1;
        grid-row: 1;
    }
    .aogfc-single-product .aogfc-product-thumbs {
        grid-column: 1;
        grid-row: 2;
        grid-auto-flow: column;
        grid-auto-columns: 72px;
        grid-template-columns: none;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .aogfc-single-product .aogfc-product-detail__summary {
        padding: 21px 18px;
    }
    .aogfc-single-product .aogfc-product-detail__summary h1 {
        font-size: 29px;
    }
    .aogfc-single-product .aogfc-product-actions {
        grid-template-columns: 1fr;
    }
    .aogfc-single-product .aogfc-product-actions .aogfc-btn {
        width: 100%;
    }
    .aogfc-single-product .aogfc-product-support-rail {
        grid-template-columns: 1fr;
    }
    .aogfc-single-product .aogfc-product-support {
        grid-column: auto;
    }
    .aogfc-product-description {
        margin-top: 26px;
    }
    .aogfc-product-description__title {
        width: 100%;
        justify-content: center;
        border-radius: 7px 7px 0 0;
    }
    .aogfc-single-product .aogfc-product-content {
        padding: 22px 18px;
        border-radius: 0 0 7px 7px;
    }
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__item.is-active-parent > .aogfc-product-cat-list__row,
.aogfc-product-tax .aogfc-product-cat-list__item.is-active-parent > .aogfc-product-cat-list__row {
    background: #fff8f3;
    box-shadow: inset 3px 0 0 #ff6900;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__item.is-active-parent > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent,
.aogfc-product-tax .aogfc-product-cat-list__item.is-active-parent > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent {
    color: #e85f00;
    font-weight: 750;
}
.aogfc-product-cat-sidebar,
.aogfc-product-tax .aogfc-product-cat-sidebar {
    display: grid;
    gap: 16px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.aogfc-product-cat-sidebar .aogfc-sidebar-category-card {
    overflow: hidden;
    border: 1px solid #cfe1d4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(8, 75, 31, .07);
}
.aogfc-product-cat-sidebar .aogfc-product-cat-sidebar__head,
.aogfc-product-tax .aogfc-product-cat-sidebar__head {
    min-height: 46px;
    justify-content: center;
    padding: 10px 14px;
    border: 0;
    background: #087c31;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list,
.aogfc-product-tax .aogfc-product-cat-list {
    display: block;
    padding: 4px 14px 7px;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__item,
.aogfc-product-tax .aogfc-product-cat-list__item {
    padding: 0;
    border: 0;
    border-radius: 0;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__row,
.aogfc-product-tax .aogfc-product-cat-list__row {
    min-height: 43px;
    padding: 0;
    border: 0;
    border-bottom: 1px dashed #d9e3dc;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__parent,
.aogfc-product-tax .aogfc-product-cat-list__parent {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 10px 5px 10px 3px;
    color: #12331e;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__parent::before {
    display: none;
    content: none;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__row:hover,
.aogfc-product-tax .aogfc-product-cat-list__row:hover {
    background: #f5faf6;
    box-shadow: none;
}
.aogfc-product-cat-sidebar .aogfc-product-cat-list__row:hover .aogfc-product-cat-list__parent,
.aogfc-product-tax .aogfc-product-cat-list__row:hover .aogfc-product-cat-list__parent {
    color: #078f2f;
}
.aogfc-product-cat-sidebar .is-active-parent > .aogfc-product-cat-list__row,
.aogfc-product-tax .is-active-parent > .aogfc-product-cat-list__row {
    background: #fff8f3;
    box-shadow: inset 3px 0 0 #ff6900;
}
.aogfc-product-cat-sidebar .is-active-parent > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent,
.aogfc-product-tax .is-active-parent > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent {
    color: #e85f00;
    font-weight: 750;
}
@media (max-width: 1024px) {
    .aogfc-product-cat-sidebar,
    .aogfc-product-tax .aogfc-product-cat-sidebar {
        position: static;
        top: auto;
    }
}

/* Editable About + Contact pages */
.aogfc-editor-page--about .aogfc-static-flexible,
.aogfc-editor-page--contact .aogfc-static-flexible {
    padding-bottom: 0;
    background: #fff;
}
.aogfc-editor-page--about .aogfc-static-flex-intro,
.aogfc-editor-page--contact .aogfc-static-flex-intro {
    position: relative;
    padding: 60px 0 48px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(255,105,0,.12), transparent 25%),
        radial-gradient(circle at 92% 12%, rgba(7,143,47,.12), transparent 27%),
        linear-gradient(180deg, #f7fbf8 0%, #fff 100%);
}
.aogfc-editor-page--about .aogfc-static-flex-intro::after,
.aogfc-editor-page--contact .aogfc-static-flex-intro::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(180px, 32vw);
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--aogfc-red), var(--aogfc-green));
    transform: translateX(-50%);
}
.aogfc-editor-page--about .aogfc-static-flex-intro h1,
.aogfc-editor-page--contact .aogfc-static-flex-intro h1 {
    font-size: clamp(38px, 5vw, 68px);
    letter-spacing: -.035em;
}
.aogfc-editor-page--about .aogfc-static-flex-intro h2,
.aogfc-editor-page--contact .aogfc-static-flex-intro h2 {
    font-size: clamp(23px, 2.7vw, 36px);
    text-transform: none;
}
.aogfc-editor-page--about .aogfc-static-flex-sidebar,
.aogfc-editor-page--contact .aogfc-static-flex-sidebar {
    padding: 56px 0;
}
.aogfc-editor-page--about .aogfc-static-flex-content,
.aogfc-editor-page--contact .aogfc-static-flex-content {
    padding: 56px 0;
}
.aogfc-editor-page--about .aogfc-static-flex-content:nth-of-type(even),
.aogfc-editor-page--contact .aogfc-static-flex-content:nth-of-type(even) {
    background: #f6faf7;
}
.aogfc-editor-page--about .aogfc-static-content,
.aogfc-editor-page--contact .aogfc-static-content {
    max-width: 1180px;
    padding: 38px 42px;
    border-color: #dbe9de;
    box-shadow: 0 18px 44px rgba(7,91,32,.08);
}
.aogfc-editor-page--about .aogfc-static-content > h2:first-child,
.aogfc-editor-page--contact .aogfc-static-content > h2:first-child {
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 14px;
    font-size: clamp(27px, 3vw, 38px);
}
.aogfc-editor-page--about .aogfc-static-content > h2:first-child::after,
.aogfc-editor-page--contact .aogfc-static-content > h2:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 68px;
    height: 4px;
    border-radius: 999px;
    background: var(--aogfc-red);
}
.aogfc-static-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}
.aogfc-static-feature-card {
    position: relative;
    min-height: 190px;
    padding: 25px 23px;
    border: 1px solid #dcebe0;
    border-radius: 12px;
    background: linear-gradient(145deg, #fff 0%, #f5faf6 100%);
    box-shadow: 0 12px 28px rgba(7,91,32,.07);
    overflow: hidden;
}
.aogfc-static-feature-card::before {
    content: attr(data-number);
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--aogfc-red), #ff8a32);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(255,105,0,.22);
}
.aogfc-static-feature-card h3 {
    margin: 0 0 9px;
    color: var(--aogfc-green-dark);
    font-size: 20px;
}
.aogfc-static-feature-card p {
    margin: 0;
    color: #526158;
    font-size: 15px;
    line-height: 1.65;
}
.aogfc-static-process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0 0 !important;
    padding: 0 !important;
    counter-reset: aogfc-process;
    list-style: none;
}
.aogfc-static-process-list li {
    position: relative;
    min-height: 190px;
    margin: 0;
    padding: 62px 20px 22px;
    border: 1px solid #dcebe0;
    border-radius: 12px;
    background: #fff;
    counter-increment: aogfc-process;
}
.aogfc-static-process-list li::before {
    content: counter(aogfc-process, decimal-leading-zero);
    position: absolute;
    top: 18px;
    left: 20px;
    color: var(--aogfc-red);
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}
.aogfc-static-process-list strong {
    display: block;
    margin-bottom: 8px;
    color: var(--aogfc-green-dark);
    font-size: 18px;
}
.aogfc-editor-page--contact .aogfc-static-flex-quick {
    padding: 52px 0 24px;
}
.aogfc-editor-page--contact .aogfc-static-flex-contact {
    padding: 32px 0 58px;
}
.aogfc-editor-page--contact .aogfc-contact-form-card {
    position: relative;
    padding: 38px 42px;
    border-color: #d8e8dc;
    background:
        radial-gradient(circle at 100% 0, rgba(7,143,47,.1), transparent 28%),
        #fff;
}
.aogfc-editor-page--contact .aogfc-contact-form-card h2 {
    color: var(--aogfc-green-dark);
    font-size: clamp(27px, 3vw, 38px);
}
.aogfc-editor-page--contact .aogfc-contact-form-card .aogfc-lead-form {
    margin-top: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}
.aogfc-editor-page--contact .aogfc-contact-form-card .aogfc-lead-form label:nth-child(3) {
    grid-column: auto;
}
.aogfc-editor-page--contact .aogfc-contact-form-card .aogfc-lead-form label:nth-child(4) {
    grid-column: 1 / -1;
}
.aogfc-editor-page--contact .aogfc-contact-form-card .aogfc-lead-form input,
.aogfc-editor-page--contact .aogfc-contact-form-card .aogfc-lead-form textarea {
    border-color: #d4e5d8;
    background: #fbfdfb;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.aogfc-editor-page--contact .aogfc-contact-form-card .aogfc-lead-form input:focus,
.aogfc-editor-page--contact .aogfc-contact-form-card .aogfc-lead-form textarea:focus {
    outline: 0;
    border-color: var(--aogfc-green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(7,143,47,.1);
}
.aogfc-editor-page--contact .aogfc-contact-form-card .aogfc-lead-form .aogfc-btn {
    min-width: 260px;
    min-height: 54px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--aogfc-red), #ff8a32);
    box-shadow: 0 14px 28px rgba(255,105,0,.25);
}
.aogfc-contact-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 0 !important;
    padding: 0 !important;
    list-style: none;
}
.aogfc-contact-checklist li {
    position: relative;
    margin: 0;
    padding: 17px 18px 17px 50px;
    border: 1px solid #dcebe0;
    border-radius: 10px;
    background: #f8fbf9;
}
.aogfc-contact-checklist li::before {
    content: "\2713";
    position: absolute;
    top: 16px;
    left: 17px;
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #dff4e6;
    color: var(--aogfc-green);
    font-size: 14px;
    font-weight: 900;
}
@media (max-width: 900px) {
    .aogfc-static-feature-grid { grid-template-columns: minmax(0, 1fr); }
    .aogfc-static-process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
    .aogfc-editor-page--about .aogfc-static-flex-intro,
    .aogfc-editor-page--contact .aogfc-static-flex-intro { padding: 38px 0 34px; }
    .aogfc-editor-page--about .aogfc-static-flex-sidebar,
    .aogfc-editor-page--contact .aogfc-static-flex-sidebar,
    .aogfc-editor-page--about .aogfc-static-flex-content,
    .aogfc-editor-page--contact .aogfc-static-flex-content { padding: 30px 0; }
    .aogfc-editor-page--about .aogfc-static-content,
    .aogfc-editor-page--contact .aogfc-static-content,
    .aogfc-editor-page--contact .aogfc-contact-form-card { padding: 25px 19px; }
    .aogfc-static-process-list,
    .aogfc-contact-checklist,
    .aogfc-editor-page--contact .aogfc-contact-form-card .aogfc-lead-form { grid-template-columns: minmax(0, 1fr); }
    .aogfc-editor-page--contact .aogfc-contact-form-card .aogfc-lead-form label:nth-child(4) { grid-column: auto; }
    .aogfc-editor-page--contact .aogfc-contact-form-card .aogfc-lead-form .aogfc-btn { width: 100%; min-width: 0; }
}

/* Unified lead-form feedback */
.aogfc-form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.aogfc-form-status,
.tdhome-quote-modal__success.aogfc-form-status {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    min-height: 20px;
    margin: 9px 0 0;
    color: var(--aogfc-green-dark);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
}
.has-error .aogfc-form-status { color: #b42318; }
.is-submitted .aogfc-form-status { color: #087c31; }
.aogfc-popup-form button:disabled,
.aogfc-lead-form button:disabled,
.aogfc-site-footer__quote-form button:disabled {
    cursor: wait;
    opacity: .72;
}
