/* =========================================================
   Alkhaleej storefront — solid, always-visible design system
   ========================================================= */
:root {
    --ak-green: #64A718;
    --ak-green-dark: #4f8612;
    --ak-ink: #10160f;
    --ak-muted: #5f6b5c;
    --ak-line: #e4ebdd;
    --ak-soft: #f4f7f0;
    --ak-white: #ffffff;
    --ak-header-h: 64px;
    --ak-wrap: 1180px;
}

/* ---------- SOLID HEADER (never transparent) ---------- */
.ak-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff !important;
    border-bottom: 1px solid var(--ak-line);
    box-shadow: 0 8px 24px rgba(16, 22, 15, 0.06);
}
.ak-header.sticky-header,
.ak-header.header-area.sticky-header {
    position: sticky !important;
    background: #ffffff !important;
    box-shadow: 0 10px 28px rgba(16, 22, 15, 0.1) !important;
    animation: none !important;
    opacity: 1 !important;
}
.ak-header__inner {
    max-width: var(--ak-wrap);
    margin: 0 auto;
    padding: 0.55rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.ak-header__logo img {
    width: 128px;
    max-width: 40vw;
    display: block;
}
.ak-header__nav ul {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ak-header__nav a,
.ak-header .ak-header__nav ul li > a {
    display: block;
    padding: 0.4rem 0.7rem;
    border-radius: 0.45rem;
    font-size: 0.86rem;
    font-weight: 650;
    color: var(--ak-ink) !important;
    transition: 0.2s ease;
}
.ak-header__nav a:hover,
.ak-header .ak-header__nav ul li:hover > a,
.ak-header .main-menu ul li:hover > a {
    background: var(--ak-soft) !important;
    color: var(--ak-green-dark) !important;
}
.ak-header__nav a.is-active,
.ak-header .ak-header__nav ul li > a.is-active,
.ak-header .main-menu ul li > a.is-active {
    background: var(--ak-green) !important;
    color: #fff !important;
}
.ak-header__nav a.is-active:hover,
.ak-header .ak-header__nav ul li:hover > a.is-active {
    background: var(--ak-green-dark) !important;
    color: #fff !important;
}
.ak-header__actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.ak-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--ak-line);
    background: #fff;
    color: var(--ak-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    position: relative;
    transition: 0.2s ease;
}
.ak-icon-btn:hover {
    background: var(--ak-green);
    border-color: var(--ak-green);
    color: #fff;
}
.ak-icon-btn .ak-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--ak-green);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: grid;
    place-items: center;
}
.ak-quote-btn {
    display: none;
    align-items: center;
    height: 36px;
    padding: 0 0.95rem;
    border-radius: 0.45rem;
    background: var(--ak-green);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.84rem;
}
.ak-quote-btn:hover { background: var(--ak-green-dark); color: #fff !important; }
.ak-hamburger {
    width: 36px;
    height: 36px;
    border-radius: 0.45rem;
    border: 1px solid var(--ak-line);
    background: #fff;
    color: var(--ak-ink);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

@media (min-width: 1280px) {
    .ak-quote-btn { display: inline-flex; }
}
@media (max-width: 1024px) {
    .ak-hamburger { display: inline-flex; }
    .ak-header__nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        border-bottom: 1px solid var(--ak-line);
        box-shadow: 0 16px 30px rgba(0,0,0,.08);
        padding: 0.75rem 1rem 1rem;
    }
    .ak-header__nav.is-open,
    .ak-header__nav.opened { display: block; }
    .ak-header__nav ul {
        flex-direction: column;
        align-items: stretch;
    }
    .ak-header__nav a { padding: 0.8rem 1rem; }
}

/* ---------- HERO SLIDER ---------- */
.ak-slider {
    position: relative;
    height: clamp(400px, 54vh, 560px);
    overflow: hidden;
    color: #fff;
    background: #0a1210;
}
.ak-slider__track {
    position: absolute;
    inset: 0;
}
.ak-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .65s ease, visibility .65s ease;
    z-index: 0;
}
.ak-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}
.ak-slider__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-color: #10160f;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    transform: scale(1.08);
    transition: transform 7s ease, opacity .65s ease;
}
.ak-slider__slide.is-active .ak-slider__media {
    transform: scale(1);
}
.ak-slider__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg,
            rgba(10,18,14,.5) 0%,
            rgba(10,18,14,.28) 32%,
            rgba(10,18,14,.12) 55%,
            rgba(10,18,14,.08) 100%),
        linear-gradient(0deg, rgba(10,18,14,.2) 0%, transparent 40%);
}
.ak-slider__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    max-width: var(--ak-wrap);
    margin: 0 auto;
    padding: 2.5rem 4.25rem 3rem 1.15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
.ak-slider__content > * {
    max-width: 34rem;
}
.ak-slider__panel {
    display: inline-block;
    max-width: 34rem;
    padding: 1.15rem 1.25rem 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(12,20,16,.55), rgba(12,20,16,.28));
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 36px rgba(0,0,0,.16);
}
.ak-brand-mark {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #b7e06a;
}
.ak-brand-mark::before {
    content: '';
    width: 1.5rem;
    height: 2px;
    background: var(--ak-green);
}
.ak-slider h1 {
    margin: .55rem 0 0;
    max-width: 14ch;
    font-size: clamp(1.75rem, 3.6vw, 2.7rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #ffffff !important;
    text-shadow: 0 6px 20px rgba(0,0,0,.22);
}
.ak-slider p.lead {
    margin-top: .55rem;
    max-width: 28rem;
    font-size: .92rem;
    line-height: 1.5;
    color: rgba(255,255,255,.92) !important;
    text-shadow: none;
}
.ak-slider .ak-cta-row {
    margin-top: 1rem;
}
.ak-slider__ui {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}
.ak-slider__nav {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(10,18,14,.35);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    backdrop-filter: blur(8px);
    transition: .2s ease;
}
.ak-slider__nav:hover {
    background: var(--ak-green);
    border-color: var(--ak-green);
}
.ak-slider__nav--prev { left: 1rem; }
.ak-slider__nav--next { right: 1rem; }
.ak-slider__dots {
    pointer-events: auto;
    position: absolute;
    left: 50%;
    bottom: 1.15rem;
    transform: translateX(-50%);
    display: flex;
    gap: .45rem;
    align-items: center;
    padding: .35rem .5rem;
    border-radius: 999px;
    background: rgba(0,0,0,.28);
    backdrop-filter: blur(8px);
}
.ak-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.45);
    padding: 0;
    transition: .25s ease;
}
.ak-slider__dot.is-active {
    width: 22px;
    background: var(--ak-green);
}
.ak-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.2rem;
}
.ak-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    min-height: 2.55rem;
    padding: 0 1.1rem;
    border-radius: .5rem;
    font-weight: 700;
    font-size: .88rem;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.ak-btn--sm {
    min-height: 2.2rem;
    padding: 0 .9rem;
    font-size: .82rem;
}
.ak-btn:hover { transform: translateY(-2px); }
.ak-btn-solid { background: var(--ak-green); color: #fff !important; }
.ak-btn-solid:hover { background: var(--ak-green-dark); color: #fff !important; }
.ak-btn-ghost {
    border: 1px solid rgba(255,255,255,.4);
    color: #fff !important;
    background: rgba(255,255,255,.08);
}
.ak-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,.16);
    color: #fff !important;
}
.ak-btn-outline-dark {
    border: 1px solid var(--ak-line);
    color: var(--ak-ink) !important;
    background: #fff;
}
.ak-btn-outline-dark:hover {
    border-color: var(--ak-green);
    color: var(--ak-green-dark) !important;
}

/* ---------- SECTIONS ---------- */
.ak-section { padding: 2.75rem 0; }
.ak-section--tight { padding: 2.35rem 0; }
.ak-section--soft { background: linear-gradient(180deg, #f6f8f3 0%, #fff 100%); }
.ak-wrap {
    max-width: var(--ak-wrap);
    margin: 0 auto;
    padding: 0 1rem;
}
.ak-section-head {
    max-width: 36rem;
    margin: 0 auto 1.5rem;
    text-align: center;
}
.ak-section-head--row {
    max-width: none;
    margin: 0 0 1.35rem;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}
.ak-section-head--row > div { max-width: 36rem; }
.ak-section-head .eyebrow {
    color: var(--ak-green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.ak-section-head h2 {
    margin: .4rem 0 0;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ak-ink);
}
.ak-section-head p {
    margin-top: .45rem;
    color: var(--ak-muted);
    font-size: .92rem;
    line-height: 1.5;
}

/* Page banner for shop/cart/order etc */
.ak-page-banner {
    background:
        radial-gradient(circle at 90% 10%, rgba(100,167,24,.22), transparent 32%),
        linear-gradient(135deg, #10160f 0%, #1a2a18 100%);
    color: #fff !important;
    padding: 1.75rem 0 1.85rem;
}
.ak-page-banner h1,
.ak-page-banner .ak-page-title,
.ak-page-banner h2,
.ak-page-banner h3,
.ak-page-banner h4,
.ak-page-banner h5,
.ak-page-banner h6 {
    margin: 0;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    letter-spacing: -.02em;
    font-weight: 700;
    color: #ffffff !important;
}
.ak-page-banner p,
.ak-page-banner .ak-page-subtitle {
    margin: .45rem 0 0;
    color: rgba(255,255,255,.82) !important;
    max-width: 34rem;
    font-size: .92rem;
    line-height: 1.5;
}
.ak-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
    margin-bottom: .85rem;
    font-size: .88rem;
    color: rgba(255,255,255,.7) !important;
}
.ak-crumbs a { color: #b7e06a !important; font-weight: 650; }
.ak-crumbs a:hover { color: #fff !important; }
.ak-crumbs__sep { opacity: .55; }

/* Force light titles on dark surfaces (theme forces dark h1–h6) */
.ak-slider h1,
.ak-slider h2,
.ak-slider h3,
.ak-slider .ak-brand-mark {
    color: #ffffff !important;
}
.ak-slider .ak-brand-mark { color: #b7e06a !important; }
.ak-slider p.lead {
    color: rgba(255,255,255,.88) !important;
}
.ak-why h1,
.ak-why h2,
.ak-why h3,
.ak-why h4,
.ak-why .eyebrow {
    color: #ffffff !important;
}
.ak-why .eyebrow { color: #9fd24f !important; }
.ak-why p {
    color: rgba(255,255,255,.72) !important;
}
.ak-cat-card__body h3,
.ak-cat-card__body p,
.ak-cat-card__body .go {
    color: #ffffff !important;
}
.ak-cat-card__body p { color: rgba(255,255,255,.85) !important; }
.ak-cat-card__body .go { color: #b7e06a !important; }

footer.relative h2,
footer.relative h3,
footer.relative p,
footer.relative a,
footer.relative li {
    color: inherit;
}
footer.relative h2,
footer.relative h3 {
    color: #ffffff !important;
}

/* ---------- CATEGORY CARDS ---------- */
.ak-cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .85rem;
}
@media (min-width: 640px) { .ak-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ak-cat-grid { grid-template-columns: repeat(3, 1fr); } }

.ak-cat-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: .85rem;
    isolation: isolate;
    min-height: 190px;
    background: #1a2418;
    box-shadow: 0 10px 24px rgba(16,22,15,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}
.ak-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(16,22,15,.12);
}
.ak-cat-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.ak-cat-card:hover img { transform: scale(1.04); }
.ak-cat-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 22%, rgba(8,14,8,.9) 100%);
}
.ak-cat-card__body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1rem 1rem 1.05rem;
    color: #fff;
}
.ak-cat-card__body .chip {
    display: inline-block;
    margin-bottom: .35rem;
    padding: .22rem .45rem;
    border-radius: .35rem;
    background: var(--ak-green);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.ak-cat-card__body h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.ak-cat-card__body p {
    margin: .3rem 0 0;
    color: rgba(255,255,255,.82);
    font-size: .82rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ak-cat-card__body .go {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: .55rem;
    color: #b7e06a;
    font-size: .8rem;
    font-weight: 700;
}

/* ---------- PRODUCT GRID ---------- */
.ak-prod-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .9rem;
}
@media (min-width: 640px) { .ak-prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ak-prod-grid { grid-template-columns: repeat(4, 1fr); } }

.ak-product {
    background: #fff;
    border: 1px solid var(--ak-line);
    border-radius: .75rem;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.ak-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(16,22,15,.08);
}
.ak-product__media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #f4f7f0, #e7eee0);
    aspect-ratio: 1 / .92;
}
.ak-product__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.ak-product:hover .ak-product__media img { transform: scale(1.04); }
.ak-product__badge {
    position: absolute;
    top: .65rem;
    left: .65rem;
    z-index: 2;
    padding: .25rem .55rem;
    border-radius: 999px;
    background: var(--ak-green);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
}
.ak-product__meta { padding: .8rem .85rem .95rem; }
.ak-product__meta .price {
    color: var(--ak-green);
    font-weight: 700;
    font-size: .98rem;
}
.ak-product__meta h3 {
    margin: .25rem 0 0;
    font-size: .92rem;
    font-weight: 650;
    color: var(--ak-ink);
    line-height: 1.3;
}
.ak-product__meta h3 a { color: inherit; }
.ak-product__meta h3 a:hover { color: var(--ak-green-dark); }
.ak-product__meta .sku {
    margin-top: .28rem;
    font-size: .7rem;
    color: #74806f;
}

/* ---------- WHY ---------- */
.ak-why {
    background:
        radial-gradient(circle at 15% 20%, rgba(100,167,24,.18), transparent 35%),
        radial-gradient(circle at 85% 70%, rgba(100,167,24,.12), transparent 40%),
        #10160f;
    color: #fff;
}
.ak-why-layout {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 960px) {
    .ak-why-layout {
        grid-template-columns: 0.9fr 1.4fr;
        align-items: center;
        gap: 1.75rem;
    }
}
.ak-why-layout h2 {
    margin: .45rem 0 0;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    letter-spacing: -.02em;
    color: #fff;
}
.ak-why-layout > div > p {
    margin-top: .55rem;
    max-width: 26rem;
    color: rgba(255,255,255,.72);
    font-size: .9rem;
    line-height: 1.5;
}
.ak-why-grid {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) { .ak-why-grid { grid-template-columns: repeat(4, 1fr); } }
.ak-why-item {
    padding: .95rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .75rem;
    background: rgba(255,255,255,.04);
    transition: border-color .25s ease, transform .25s ease;
}
.ak-why-item:hover {
    border-color: rgba(100,167,24,.55);
    transform: translateY(-2px);
}
.ak-why-item i {
    font-size: 1.25rem;
    color: #64A718;
}
.ak-why-item h4 { margin: .45rem 0 0; font-size: .92rem; color: #fff; }
.ak-why-item p {
    margin: .3rem 0 0;
    color: rgba(255,255,255,.72);
    font-size: .8rem;
    line-height: 1.45;
}

/* ---------- COMMERCE PANELS (cart / checkout / order) ---------- */
.ak-panel {
    background: #fff;
    border: 1px solid var(--ak-line);
    border-radius: 1.15rem;
    box-shadow: 0 10px 28px rgba(16,22,15,.05);
    overflow: hidden;
}
.ak-panel-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid var(--ak-line);
}
.ak-panel-row:last-child { border-bottom: 0; }
.ak-chip-filter {
    display: inline-flex;
    align-items: center;
    padding: .5rem 1rem;
    border-radius: 999px;
    background: #eef3e8;
    color: var(--ak-ink);
    font-size: .86rem;
    font-weight: 650;
    transition: .2s ease;
}
.ak-chip-filter:hover,
.ak-chip-filter.is-active {
    background: var(--ak-green);
    color: #fff !important;
}
.ak-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--ak-muted);
}
.ak-success-card {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #d7ebc0;
    border-radius: 1.25rem;
    padding: 2.2rem 1.6rem;
    text-align: center;
    box-shadow: 0 16px 40px rgba(100,167,24,.1);
}
.ak-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 999px;
    background: var(--ak-green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 2rem;
}

@keyframes ak-fade-in {
    from { opacity: .92; }
    to { opacity: 1; }
}

@media (max-width: 767px) {
    .ak-slider { height: clamp(360px, 58vh, 480px); }
    .ak-slider__content { padding: 2rem 3.4rem 2.8rem 1rem; }
    .ak-slider__nav { width: 36px; height: 36px; font-size: 1.2rem; }
    .ak-slider__nav--prev { left: .55rem; }
    .ak-slider__nav--next { right: .55rem; }
    .ak-cat-card { min-height: 170px; }
    .ak-section-head--row { text-align: left; }
}

/* ---------- FOOTER ---------- */
.ak-footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #07100a 0%, #0d1810 42%, #0a140c 100%);
    color: #dce8d6;
    padding: 0;
    margin-top: 0;
    isolation: isolate;
}
.ak-footer__mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 75%);
    pointer-events: none;
    z-index: 0;
}
.ak-footer__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
}
.ak-footer__orb--1 {
    width: 340px;
    height: 340px;
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(100,167,24,.28), transparent 68%);
}
.ak-footer__orb--2 {
    width: 420px;
    height: 420px;
    right: -140px;
    bottom: -180px;
    background: radial-gradient(circle, rgba(157,210,79,.18), transparent 70%);
}
.ak-footer .ak-wrap { position: relative; z-index: 1; }

.ak-footer__newsletter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 2.75rem 0 2.25rem;
    padding: 1.6rem 1.75rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(183,224,106,.18);
    background:
        linear-gradient(135deg, rgba(100,167,24,.16), rgba(255,255,255,.03) 55%),
        rgba(255,255,255,.03);
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.ak-footer__eyebrow {
    display: inline-block;
    margin-bottom: .45rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #b7e06a !important;
}
.ak-footer__newsletter h3 {
    margin: 0;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    letter-spacing: -.02em;
    color: #fff !important;
}
.ak-footer__newsletter p {
    margin: .45rem 0 0;
    max-width: 32rem;
    color: rgba(255,255,255,.68) !important;
    font-size: .95rem;
    line-height: 1.55;
}
.ak-footer__newsletter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.ak-footer__top {
    display: grid;
    gap: 2.2rem;
    grid-template-columns: 1.45fr 1fr 1fr 1.25fr;
    padding: .5rem 0 2.4rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.ak-footer__logo img {
    width: 168px;
    max-width: 100%;
    display: block;
    filter: brightness(1.1) contrast(1.05);
}
.ak-footer__brand p {
    margin: 1.15rem 0 0;
    max-width: 21rem;
    color: rgba(255,255,255,.66) !important;
    font-size: .94rem;
    line-height: 1.7;
}
.ak-footer__social {
    display: flex;
    gap: .55rem;
    margin-top: 1.4rem;
}
.ak-footer__social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.15rem;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.ak-footer__social a:hover {
    transform: translateY(-2px);
    background: var(--ak-green);
    border-color: var(--ak-green);
}
.ak-footer__col h4 {
    margin: 0 0 1.05rem;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ffffff !important;
}
.ak-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .72rem;
}
.ak-footer__col a,
.ak-footer__col span {
    color: rgba(255,255,255,.68) !important;
    font-size: .92rem;
    transition: color .2s ease, padding-left .2s ease;
}
.ak-footer__col a:hover {
    color: #b7e06a !important;
    padding-left: .2rem;
}
.ak-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
}
.ak-footer__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(100,167,24,.14);
    border: 1px solid rgba(100,167,24,.22);
    color: #9fd24f;
    font-size: 1.05rem;
}
.ak-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .78rem 1.2rem;
    border-radius: .8rem;
    background: linear-gradient(135deg, #64A718, #4f8d12);
    color: #fff !important;
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 12px 28px rgba(100,167,24,.28);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ak-footer__cta:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #72bb1f, #5a9a16);
    color: #fff !important;
    box-shadow: 0 16px 32px rgba(100,167,24,.35);
}
.ak-footer__cta--ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: none;
    color: #fff !important;
}
.ak-footer__cta--ghost:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(183,224,106,.45);
    box-shadow: none;
}
.ak-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: space-between;
    align-items: center;
    padding: 1.35rem 0 1.65rem;
}
.ak-footer__bottom p {
    margin: 0;
    color: rgba(255,255,255,.48) !important;
    font-size: .84rem;
}
.ak-footer__payments {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap;
}
.ak-footer__payments span {
    padding: .28rem .65rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.62) !important;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.ak-footer__bottom-links {
    display: flex;
    gap: 1.15rem;
}
.ak-footer__bottom-links a {
    color: rgba(255,255,255,.55) !important;
    font-size: .85rem;
    font-weight: 600;
}
.ak-footer__bottom-links a:hover { color: #b7e06a !important; }

@media (max-width: 1024px) {
    .ak-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .ak-footer__newsletter { padding: 1.25rem 1.2rem; }
    .ak-footer__top { grid-template-columns: 1fr; gap: 1.75rem; }
    .ak-footer__bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .ak-footer__bottom-links,
    .ak-footer__payments { justify-content: center; }
}
