

.pointer {
    cursor:pointer;
}
.textRight {
    text-align:right;
}
.beige {
    background-color:#fff5e0;
}
.redColor {
    color: #820000;
}
.greenColor {
    color: #006700;
}
.green {
    background-color:#006700;
}
.displayNone {
    display: none;
}
#warningMessage {
    background-color: #ffdf77;
    color: #85aa00;
    font-weight: bold;
    text-align:center;
    padding:10px;
    display:none;
    opacity:1;
}
#successMessage {
    background-color: #77ff8e;
    color:#0A0;
    font-weight: bold;
    text-align:center;
    padding:10px;
    display:none;
    opacity:1;
}
#errorMessage {
    background-color: #FF7777;
    color:#A00;
    font-weight: bold;
    text-align:center;
    padding:10px;
    display:none;
    opacity:1;
}

p {
    margin: 1.2em 0;
    line-height: 1.4;
}
a {
    color: #000;
}

a:hover {
    color: #000;
    text-decoration: underline;
}
html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Full-width header: matches product cards, no “frame” around inner bar */
.site-navbar {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border-bottom: 1px solid rgba(43, 31, 19, 0.1);
    box-shadow: 0 10px 28px -22px var(--card-shadow-strong);
}

.site-navbar .navbar-collapse {
    flex-grow: 1;
}

.site-navbar .navbar-nav .nav-link {
    color: var(--card-ink) !important;
    font-weight: 600;
}

.site-navbar .navbar-nav .nav-link:hover,
.site-navbar .navbar-nav .nav-link:focus {
    color: var(--card-green-dark) !important;
    text-decoration: none;
}

.site-navbar .nav-item {
    font-size: 1.05rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

@media (min-width: 992px) {
    .site-navbar .nav-item {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}

.site-navbar .cart-icon-link {
    color: var(--card-ink);
}

.site-navbar .searchInput {
    background: #fffdf8;
}

.site-navbar .center {
    text-align: center;
}

/* Dev host: thin accent instead of solid green bar */
.site-navbar--dev {
    border-top: 4px solid var(--card-green);
}

.page-footer {
    margin-top: auto;
    width: 100%;
}
.required {
    font-size: 0.75rem;
    color: rgba(43, 31, 19, 0.7);
    font-weight: 600;
    margin-left: 6px;
}
:root {
    --card-cream: #fff5e0;
    --card-ink: #2b1f13;
    --card-green: #0b6b4f;
    --card-green-dark: #064736;
    --card-sand: #f2e6cf;
    --card-shadow: rgba(44, 27, 9, 0.16);
    --card-shadow-strong: rgba(44, 27, 9, 0.24);
    /* Organature-inspired vibrant fresh greens */
    --ng-fresh: #7cb342;
    --ng-fresh-dark: #558b2f;
    --ng-fresh-soft: rgba(124, 179, 66, 0.16);
}

/* Brand script accent font (loaded via Google Fonts in the header) */
.playwrite-ng-modern-2 {
    font-family: "Playwrite NG Modern", "Segoe Script", cursive;
    font-weight: 400;
}

.ft-card {
    height: 420px;
    margin: 10px 0;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff8e8 0%, var(--card-cream) 60%, var(--card-sand) 100%);
    box-shadow: 0 16px 35px -25px var(--card-shadow), 0 8px 20px -18px var(--card-shadow-strong);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.ft-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 45px -28px var(--card-shadow), 0 12px 24px -18px var(--card-shadow-strong);
}

.ft-card__media {
    position: relative;
    height: 58%;
    background-image: url(/assets/images/PBJ-close1-sm.jpg);
    background-size: cover;
    background-position: center;
}

.ft-card__media-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.35) 100%);
}

.ft-card__logo {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.ft-card__logo img {
    max-width: 100%;
    max-height: 100%;
}

.ft-card__body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ft-card__title {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--card-ink);
}

.ft-card__desc {
    margin: 0;
    color: rgba(43, 31, 19, 0.78);
    font-size: 0.93rem;
    line-height: 1.45;
}

.ft-card__actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    align-items: center;
}

.ft-card__cta {
    flex: 1;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--card-green) 0%, var(--card-green-dark) 100%);
    color: #fff;
    font-weight: 600;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 18px -12px rgba(7, 84, 60, 0.6);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.ft-card__cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 12px 20px -12px rgba(7, 84, 60, 0.7);
}

.ft-card__link {
    border: 1px solid rgba(43, 31, 19, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--card-ink);
    font-weight: 600;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: border-color 180ms ease, background 180ms ease;
}

.ft-card__link:hover {
    border-color: rgba(43, 31, 19, 0.35);
    background: rgba(255, 255, 255, 0.95);
}
.cart select {
    border-radius: 12px;
    padding: 0 10px;
    margin: 0 10px;
    background-color: #FFF;
}

.cartItem {
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(43, 31, 19, 0.1);
}

.cartItem img {
    border-radius: 8px;
}

.cart-empty {
    color: rgba(43, 31, 19, 0.6);
    font-style: italic;
    padding: 8px 0 4px;
}

/* "Your Cart" heading acts as a link to the cart but looks like plain text */
.cart-heading-link,
.cart-heading-link:hover,
.cart-heading-link:focus {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.cart-subtotal {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 2px solid rgba(43, 31, 19, 0.12);
}

.cart-subtotal__label {
    font-weight: 600;
    color: rgba(43, 31, 19, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
}

.cart-subtotal__amount {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--card-green-dark);
}

.cart-checkout {
    display: flex;
    justify-content: flex-end;
    padding: 10px 0 18px;
}

.cart-checkout__btn {
    background: linear-gradient(135deg, var(--card-green) 0%, var(--card-green-dark) 100%);
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 12px 20px -12px rgba(7, 84, 60, 0.6);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cart-checkout__btn:hover {
    color: #fff;
    transform: translateY(-1px);
    filter: brightness(1.03);
    text-decoration: none;
}

.side-media {
    display: block;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 16px 35px -25px var(--card-shadow), 0 8px 20px -18px var(--card-shadow-strong);
}

.cart-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    font-size:26px;
}

.cart-icon-wrapper .cart-number {
    position: relative;
    top: -10px;
    right: 10px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #d84432;
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.product-modal {
    border-radius: 20px;
    border: 1px solid rgba(43, 31, 19, 0.12);
    box-shadow: 0 28px 60px -30px rgba(20, 12, 4, 0.55);
    overflow: hidden;
}

.product-modal__header {
    background: linear-gradient(135deg, #fff2d9 0%, #fdebc3 100%);
    border-bottom: 1px solid rgba(43, 31, 19, 0.12);
    padding: 18px 22px;
}

.product-modal__eyebrow {
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.65rem;
    color: rgba(43, 31, 19, 0.6);
    font-weight: 600;
}

.product-modal__title {
    margin: 0;
    color: var(--card-ink);
    font-weight: 700;
}

.product-modal__close {
    padding: 0;
    margin: 0;
    font-size: 1.6rem;
    line-height: 1;
    opacity: 0.5;
}

.product-modal__close:hover {
    opacity: 0.8;
}

.product-modal__body {
    padding: 22px;
    display: grid;
    gap: 16px;
}

.product-modal__field {
    display: grid;
    gap: 6px;
}

.product-modal__label {
    font-weight: 600;
    color: rgba(43, 31, 19, 0.8);
    margin: 0;
}

.product-modal__select {
    border-radius: 12px;
    border-color: rgba(43, 31, 19, 0.2);
    background: #fffaf0;
}

.product-modal__actions {
    margin-top: 6px;
}

.product-modal__cta {
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--card-green) 0%, var(--card-green-dark) 100%);
    color: #fff;
    font-weight: 700;
    padding: 12px 16px;
    box-shadow: 0 12px 20px -12px rgba(7, 84, 60, 0.6);
}

.product-modal__cta:hover {
    color: #fff;
    filter: brightness(1.03);
}

.product-cta {
    margin: 20px 0 10px;
}

.register-actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
}

.accordion .card-header {
    background: #f2f2f2;
    padding: 0;
}

.accordion-toggle {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--card-ink);
    font-weight: 600;
    text-decoration: none;
}

.accordion-toggle:hover {
    text-decoration: none;
}

.accordion-icon {
    width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 180ms ease;
}

.accordion-toggle[aria-expanded="true"] .accordion-icon {
    transform: rotate(90deg);
}

.checkout-summary {
    margin-top: 20px;
    padding: 16px;
    border-radius: 16px;
    background: #fffaf0;
    border: 1px solid rgba(43, 31, 19, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.checkout-summary__lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 220px;
}

.checkout-summary__row {
    display: flex;
    gap: 18px;
    align-items: baseline;
    justify-content: space-between;
    font-size: 1rem;
}

.checkout-summary__row--discount {
    color: var(--card-green-dark);
    font-weight: 600;
}

.checkout-summary__total {
    display: flex;
    gap: 12px;
    align-items: baseline;
    justify-content: space-between;
    font-size: 1rem;
}

.checkout-summary__total strong {
    font-size: 1.3rem;
}

/* Promo code box */
.promo-box {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fffaf0;
    border: 1px solid rgba(43, 31, 19, 0.1);
}

.promo-box__label {
    display: block;
    font-weight: 700;
    color: rgba(43, 31, 19, 0.8);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
}

.promo-box__group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.promo-box__input {
    flex: 1 1 200px;
    min-width: 0;
    border-radius: 999px;
    border: 2px solid rgba(43, 31, 19, 0.18);
    padding: 9px 16px;
    background: #fffdf8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.promo-box__input:focus {
    outline: none;
    border-color: var(--ng-fresh);
}

.promo-box__btn {
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ng-fresh) 0%, var(--ng-fresh-dark) 100%);
    color: #fff;
    font-weight: 700;
    padding: 9px 22px;
    box-shadow: 0 10px 18px -12px rgba(85, 139, 47, 0.65);
    transition: transform 160ms ease, filter 160ms ease;
}

.promo-box__btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.promo-box__btn:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
}

.promo-box__status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    min-height: 20px;
}

.promo-box__message {
    font-size: 0.9rem;
}

.promo-box__message.is-success {
    color: var(--card-green-dark);
    font-weight: 600;
}

.promo-box__message.is-error {
    color: #b22222;
    font-weight: 600;
}

.promo-box__remove {
    font-size: 0.85rem;
    color: #b22222;
    text-decoration: underline;
    cursor: pointer;
}

.promo-box__remove:hover {
    color: #7f1616;
}

.checkout-note {
    width: 100%;
    color: #8a1f12;
    font-size: 0.85rem;
    margin-top: 6px;
}

.invoice-link {
    color: #b22222;
    font-size: 1.05rem;
}

.invoice-link:hover {
    color: #7f1616;
    text-decoration: none;
}

.login-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    border-radius: 22px;
    overflow: hidden;
    background: #fffaf0;
    border: 1px solid rgba(43, 31, 19, 0.12);
    box-shadow: 0 20px 40px -28px rgba(44, 27, 9, 0.3);
    margin: 30px auto 10px;
}

.login-card__media {
    background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(0,0,0,0.2)),
        url(/assets/images/Nonnas_Granolas_Logo.png) center center / cover no-repeat;
    min-height: 380px;
}

.login-card__body {
    padding: 28px;
}

.login-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.login-remember {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.invoice-summary {
    margin: 16px 0;
    padding: 14px;
    border: 1px solid rgba(43, 31, 19, 0.15);
    border-radius: 14px;
    background: #fffaf0;
}

.invoice-summary__header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 8px;
}

.invoice-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px dashed rgba(43, 31, 19, 0.12);
    font-size: 0.95rem;
}

.invoice-summary__row:last-of-type {
    border-bottom: none;
}

.invoice-summary__links {
    margin-top: 12px;
}

.profile-summary th {
    font-weight: 700;
    white-space: nowrap;
    padding-right: 8px;
    width: 1%;
}

.profile-summary td {
    padding-right: 20px;
}

@media only screen and (max-width: 900px) {
    .login-card {
        grid-template-columns: 1fr;
    }
    .login-card__media {
        min-height: 220px;
    }
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 6px;
}

.profileWrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-image: linear-gradient(135deg, #caa471 0%, #b57f4b 45%, #d1a675 100%);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(43, 31, 19, 0.25);
    box-shadow: 0 6px 12px -8px rgba(33, 20, 6, 0.6);
}

.profileWrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 0,
            rgba(255, 255, 255, 0.08) 3px,
            rgba(0, 0, 0, 0.06) 6px,
            rgba(0, 0, 0, 0.06) 9px
        );
    opacity: 0.5;
    pointer-events: none;
}

.profileBadge {
    font-family: "Times New Roman", Times, serif;
    font-weight: 700;
    color: #2b1f13;
    text-decoration: none;
    font-size: 1rem;
}

.profileBadge:hover {
    text-decoration: none;
    color: #2b1f13;
}

.cart-icon-link {
    color: inherit;
    text-decoration: none;
}

.cart-icon-link:hover {
    color: inherit;
    text-decoration: none;
}

/* =====================================================================
   Search results
   ===================================================================== */
.search-result-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.search-result {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff8e8 0%, var(--card-cream) 100%);
    border: 1px solid rgba(43, 31, 19, 0.1);
    box-shadow: 0 12px 28px -24px var(--card-shadow-strong);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.search-result:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px -26px var(--card-shadow-strong);
}

.search-result__media {
    flex: 0 0 auto;
    width: 92px;
    height: 92px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-sand);
    display: block;
}

.search-result__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result__body {
    flex: 1 1 auto;
    min-width: 0;
}

.search-result__title {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--card-ink);
    text-decoration: none;
    margin-bottom: 4px;
}

.search-result__title:hover {
    color: var(--card-green-dark);
    text-decoration: none;
}

.search-result__desc {
    margin: 0;
    color: rgba(43, 31, 19, 0.78);
    font-size: 0.92rem;
    line-height: 1.45;
}

.search-result__actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 170px;
}

.search-result__actions .ft-card__cta,
.search-result__actions .ft-card__link {
    width: 100%;
    justify-content: center;
}

@media only screen and (max-width: 600px) {
    .search-result {
        flex-wrap: wrap;
    }
    .search-result__actions {
        width: 100%;
        flex-direction: row;
    }
    .search-result__actions .ft-card__cta,
    .search-result__actions .ft-card__link {
        flex: 1;
    }
}

/* =====================================================================
   Hero banner (Organature-inspired) — rendered via Banner.php
   ===================================================================== */
.hero-banner {
    position: relative;
    overflow: hidden;
    padding: 96px 0 104px;
    background:
        radial-gradient(110% 120% at 88% 6%, rgba(124, 179, 66, 0.22) 0%, rgba(124, 179, 66, 0) 46%),
        linear-gradient(180deg, #fbfff4 0%, #f3f8e8 42%, var(--card-cream) 100%);
    border-bottom: 1px solid rgba(43, 31, 19, 0.08);
}

.hero-banner .container {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    width: 92%;
}

/* Slider: stack every panel in the same grid cell so the section sizes
   to the tallest panel and we can cross-fade between them. */
.hero-slides {
    display: grid;
    position: relative;
    z-index: 1;
}

.hero-slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 800ms ease, transform 800ms ease, visibility 0s linear 800ms;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: opacity 800ms ease, transform 800ms ease, visibility 0s;
}

/* Slider dots */
.hero-slider__dots {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 38px;
}

.hero-slider__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(85, 139, 47, 0.28);
    cursor: pointer;
    transition: background 200ms ease, width 200ms ease;
}

.hero-slider__dot:hover {
    background: rgba(85, 139, 47, 0.55);
}

.hero-slider__dot.is-active {
    width: 34px;
    background: linear-gradient(135deg, var(--ng-fresh) 0%, var(--ng-fresh-dark) 100%);
}

/* Decorative organic shapes */
.hero-banner__decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero-banner__decor--blob {
    width: 540px;
    height: 540px;
    right: -170px;
    top: -190px;
    background: radial-gradient(circle at 32% 30%, rgba(124, 179, 66, 0.26), rgba(124, 179, 66, 0.04) 70%);
    border-radius: 46% 54% 60% 40% / 50% 42% 58% 50%;
}

.hero-banner__decor--ring {
    width: 240px;
    height: 240px;
    left: -80px;
    bottom: -90px;
    border: 28px solid rgba(11, 107, 79, 0.08);
    border-radius: 50%;
}

.hero-banner__decor--seed {
    width: 16px;
    height: 16px;
    left: 12%;
    top: 18%;
    background: var(--ng-fresh);
    border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
    box-shadow:
        140px 60px 0 -4px rgba(124, 179, 66, 0.55),
        60px 220px 0 -2px rgba(11, 107, 79, 0.35);
}

/* Copy column */
.hero-banner__content {
    padding-right: 24px;
}

.hero-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ng-fresh-soft);
    color: var(--ng-fresh-dark);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero-banner__title {
    font-size: clamp(2.3rem, 4.6vw, 3.6rem);
    font-weight: 800;
    line-height: 1.07;
    color: var(--card-ink);
    margin: 0 0 18px;
}

.hero-banner__title-accent {
    display: block;
    color: var(--ng-fresh-dark);
    font-weight: 400;
    font-size: 1.12em;
    line-height: 1.1;
    margin-top: 4px;
}

.hero-banner__subtitle {
    max-width: 30em;
    color: rgba(43, 31, 19, 0.78);
    font-size: 1.08rem;
    line-height: 1.6;
    margin: 0 0 26px;
}

.hero-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.hero-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background 180ms ease;
}

.hero-banner__btn--primary {
    background: linear-gradient(135deg, var(--ng-fresh) 0%, var(--ng-fresh-dark) 100%);
    color: #fff;
    box-shadow: 0 14px 24px -12px rgba(85, 139, 47, 0.65);
}

.hero-banner__btn--primary:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 18px 30px -14px rgba(85, 139, 47, 0.75);
}

.hero-banner__btn--ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--card-green-dark);
    border: 1px solid rgba(11, 107, 79, 0.25);
}

.hero-banner__btn--ghost:hover {
    color: var(--card-green-dark);
    text-decoration: none;
    transform: translateY(-2px);
    background: #fff;
    border-color: rgba(11, 107, 79, 0.45);
}

.hero-banner__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}

.hero-banner__features li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(43, 31, 19, 0.82);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-banner__features i {
    color: var(--ng-fresh-dark);
}

/* Media column */
.hero-banner__media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 440px;
}

.hero-banner__media-frame {
    position: relative;
    width: min(500px, 92%);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
        0 30px 60px -28px rgba(44, 27, 9, 0.5),
        inset 0 0 0 12px rgba(255, 255, 255, 0.55);
    background: var(--card-sand);
}

.hero-banner__product {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.hero-banner__media:hover .hero-banner__product {
    transform: scale(1.05);
}

.hero-banner__badge {
    position: absolute;
    right: 4%;
    bottom: 6%;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ng-fresh) 0%, var(--ng-fresh-dark) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 16px 30px -14px rgba(85, 139, 47, 0.8);
    border: 4px solid #fff;
}

.hero-banner__badge-num {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
}

.hero-banner__badge-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 3px;
}

/* Anchor target offset so the sticky-ish nav doesn't cover content */
#shop {
    scroll-margin-top: 90px;
}

@media (max-width: 991px) {
    .hero-banner {
        padding: 52px 0 60px;
        text-align: center;
    }
    .hero-banner__content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .hero-banner__eyebrow,
    .hero-banner__actions,
    .hero-banner__features {
        justify-content: center;
    }
    .hero-banner__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

/** only on phones **/
@media only screen and (max-width: 600px) {
    .pl-0 {
        padding-left:0;
    }
    .ft-card {
        height: auto;
    }
    .ft-card__media {
        height: 210px;
    }
    .ft-card__actions {
        flex-direction: column;
    }
    .ft-card__cta,
    .ft-card__link {
        width: 100%;
        justify-content: center;
    }
    body {
        background-image: url(/assets/images/Nonnas_Granolas_Logo_bg.png);
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position-y: -150px;
    }
    .hero-banner__decor--blob {
        width: 340px;
        height: 340px;
        right: -120px;
        top: -130px;
    }
    .hero-banner__badge {
        width: 92px;
        height: 92px;
    }
    .hero-banner__badge-num {
        font-size: 1.35rem;
    }
    .hero-banner__features {
        flex-direction: column;
        align-items: center;
    }
}

/* Pill CTA buttons used as links (About/Contact) should not be underlined */
a.ft-card__cta,
a.ft-card__link {
    text-decoration: none;
}
a.ft-card__cta:hover,
a.ft-card__link:hover {
    text-decoration: none;
}

/* About page imagery */
.about-figure {
    margin: 1.5rem 0 1.75rem;
}
.about-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}
.about-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.about-actions .ft-card__cta,
.about-actions .ft-card__link {
    flex: 0 0 auto;
}

/* Contact form */
.contact-form {
    margin-top: 1.5rem;
}
.contact-form .form-group {
    margin-bottom: 1.1rem;
}
.contact-form label {
    font-weight: 600;
}
.contact-form .captcha-input {
    max-width: 160px;
}
.contact-form .ft-card__cta {
    flex: 0 0 auto;
    min-width: 180px;
}

/* Contact page side image */
.contact-figure {
    margin: 1.5rem 0 0;
}
.contact-side-img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
}
@media only screen and (min-width: 992px) {
    .contact-figure {
        position: sticky;
        top: 90px;
        margin-top: 3.25rem;
    }
}
/* Honeypot: visually and structurally hidden from real users */
.contact-hp {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
