:root {
    --gfc-ink: #182019;
    --gfc-forest: #244d43;
    --gfc-wine: #9f4c4f;
    --gfc-paper: #faf9f4;
    --gfc-canvas: #f2f0e9;
    --gfc-line: #d9d8cf;
    --gfc-muted: #667066;
    --gfc-white: #ffffff;
    --gfc-shell: 1280px;
    --gfc-shadow: 0 14px 36px rgba(24, 32, 25, 0.09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.gfc-site {
    margin: 0;
    background: var(--gfc-paper);
    color: var(--gfc-ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

body.gfc-site,
body.gfc-site button,
body.gfc-site input,
body.gfc-site select,
body.gfc-site textarea {
    font-family: Arial, Helvetica, sans-serif;
}

body.gfc-site h1,
body.gfc-site h2,
body.gfc-site h3,
body.gfc-site p {
    margin-top: 0;
}

body.gfc-site h1,
body.gfc-site h2,
body.gfc-site h3 {
    color: var(--gfc-ink);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.07;
}

body.gfc-site a {
    color: inherit;
    text-decoration: none;
}

body.gfc-site img {
    display: block;
    height: auto;
    max-width: 100%;
}

.gfc-shell {
    width: min(calc(100% - 48px), var(--gfc-shell));
    margin: 0 auto;
}

.gfc-announcement {
    padding: 9px 20px;
    background: var(--gfc-forest);
    color: var(--gfc-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
}

.gfc-header {
    position: sticky;
    top: 0;
    z-index: 90;
    border-bottom: 1px solid rgba(24, 32, 25, 0.1);
    background: rgba(250, 249, 244, 0.97);
    backdrop-filter: blur(12px);
}

.gfc-header-inner {
    display: grid;
    grid-template-columns: minmax(164px, 1fr) auto minmax(164px, 1fr);
    align-items: center;
    min-height: 76px;
    gap: 28px;
}

.gfc-logo,
.gfc-footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    color: var(--gfc-ink);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 27px;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}

.gfc-logo span,
.gfc-footer-logo span {
    font-style: italic;
}

.gfc-logo strong,
.gfc-footer-logo strong {
    color: var(--gfc-wine);
    font-weight: 400;
}

.gfc-primary-nav {
    display: flex;
    justify-content: center;
}

.gfc-desktop-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gfc-desktop-menu > li > a,
.gfc-menu-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--gfc-ink);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gfc-desktop-menu > li > a:hover,
.gfc-menu-dropdown-toggle:hover {
    color: var(--gfc-wine);
}

.gfc-menu-dropdown {
    position: relative;
}

.gfc-menu-dropdown-toggle svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.gfc-menu-dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 10;
    display: grid;
    min-width: 206px;
    padding: 9px;
    border: 1px solid var(--gfc-line);
    background: var(--gfc-white);
    box-shadow: var(--gfc-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -4px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.gfc-menu-dropdown.is-open .gfc-menu-dropdown-panel,
.gfc-menu-dropdown:focus-within .gfc-menu-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.gfc-menu-dropdown-panel a {
    padding: 9px 10px;
    color: var(--gfc-ink);
    font-size: 13px;
}

.gfc-menu-dropdown-panel a:hover {
    background: var(--gfc-canvas);
    color: var(--gfc-wine);
}

.gfc-header-actions {
    display: flex;
    justify-content: flex-end;
}

.gfc-cart-link,
.gfc-mobile-toggle,
.gfc-mobile-close {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gfc-ink);
    cursor: pointer;
}

.gfc-cart-link svg,
.gfc-mobile-toggle svg,
.gfc-mobile-close svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.gfc-cart-count {
    position: absolute;
    top: 0;
    right: -2px;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border-radius: 50%;
    background: var(--gfc-wine);
    color: var(--gfc-white);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

.gfc-mobile-toggle {
    display: none;
}

.gfc-mobile-nav,
.gfc-mobile-scrim {
    display: none;
}

.gfc-eyebrow {
    margin-bottom: 12px;
    color: var(--gfc-wine);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.25;
    text-transform: uppercase;
}

.gfc-eyebrow-light {
    color: rgba(255, 255, 255, 0.78);
}

.gfc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid var(--gfc-forest);
    border-radius: 3px;
    background: var(--gfc-forest);
    color: var(--gfc-white);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.gfc-button:hover {
    border-color: var(--gfc-wine);
    background: var(--gfc-wine);
    color: var(--gfc-white);
    transform: translateY(-1px);
}

.gfc-button svg,
.gfc-text-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.75;
}

.gfc-button-light {
    border-color: var(--gfc-white);
    background: var(--gfc-white);
    color: var(--gfc-ink);
}

body.gfc-site a.gfc-button-light {
    color: var(--gfc-ink);
}

.gfc-button-light:hover {
    border-color: var(--gfc-canvas);
    background: var(--gfc-canvas);
    color: var(--gfc-ink);
}

.gfc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gfc-forest);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gfc-text-link:hover {
    color: var(--gfc-wine);
}

.gfc-text-link-light {
    color: var(--gfc-white);
}

.gfc-hero {
    position: relative;
    display: flex;
    min-height: min(720px, calc(100vh - 110px));
    align-items: flex-end;
    overflow: hidden;
    background-color: #6f8475;
    background-image: var(--gfc-hero-image);
    background-position: center;
    background-size: cover;
}

.gfc-hero-shade {
    position: absolute;
    inset: 0;
    background: rgba(15, 25, 19, 0.54);
}

.gfc-hero-content {
    position: relative;
    z-index: 1;
    max-width: calc(var(--gfc-shell) + 0px);
    padding-top: 130px;
    padding-bottom: 76px;
    color: var(--gfc-white);
}

.gfc-hero h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--gfc-white);
    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.95;
}

.gfc-hero-lead {
    max-width: 525px;
    margin-bottom: 31px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.65;
}

.gfc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.gfc-section {
    padding: 96px 0;
}

.gfc-collections {
    background: var(--gfc-white);
}

.gfc-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.gfc-section-head h2 {
    margin-bottom: 0;
    font-size: clamp(34px, 4vw, 51px);
}

.gfc-section-head p:not(.gfc-eyebrow) {
    max-width: 490px;
    margin: 10px auto 0;
    color: var(--gfc-muted);
}

.gfc-section-head-centered {
    justify-content: center;
    text-align: center;
}

.gfc-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--gfc-line);
    border-left: 1px solid var(--gfc-line);
}

.gfc-collection {
    position: relative;
    min-height: 385px;
    overflow: hidden;
    border-right: 1px solid var(--gfc-line);
    border-bottom: 1px solid var(--gfc-line);
    background: var(--gfc-canvas);
}

.gfc-collection-image,
.gfc-collection-image::after {
    position: absolute;
    inset: 0;
}

.gfc-collection-image {
    display: block;
    background: #deddd5;
}

.gfc-collection-image::after {
    content: '';
    background: rgba(22, 32, 24, 0.18);
    transition: background 180ms ease;
}

.gfc-collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
}

.gfc-collection:hover .gfc-collection-image img {
    transform: scale(1.04);
}

.gfc-collection:hover .gfc-collection-image::after {
    background: rgba(22, 32, 24, 0.38);
}

.gfc-collection-copy {
    position: absolute;
    right: 24px;
    bottom: 21px;
    left: 24px;
    z-index: 1;
    color: var(--gfc-white);
}

.gfc-collection-copy strong {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.1;
}

.gfc-collection-copy small {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gfc-best-sellers {
    background: var(--gfc-paper);
}

.gfc-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 18px;
}

.gfc-product-card {
    min-width: 0;
}

.gfc-card-media {
    position: relative;
    overflow: hidden;
    background: #e8e6df;
}

.gfc-card-image {
    display: block;
    aspect-ratio: 1 / 1.12;
}

.gfc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.gfc-product-card:hover .gfc-card-image img {
    transform: scale(1.025);
}

.gfc-quick-add,
.gfc-quick-add.button {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    min-height: 48px;
    place-content: center;
    gap: 1px;
    padding: 8px 12px;
    border: 1px solid var(--gfc-ink);
    border-radius: 3px;
    background: var(--gfc-white);
    color: var(--gfc-ink);
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
}

.gfc-quick-add-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-transform: uppercase;
}

.gfc-quick-add-note {
    min-height: 10px;
    color: var(--gfc-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
    .gfc-product-card:hover .gfc-quick-add,
    .gfc-product-card:focus-within .gfc-quick-add {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

.gfc-product-card.is-quickadd-open .gfc-quick-add {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.gfc-quick-add:hover,
.gfc-quick-add.button:hover,
.gfc-quick-add.added {
    border-color: var(--gfc-forest);
    background: var(--gfc-forest);
    color: var(--gfc-white);
}

.gfc-quick-add:hover .gfc-quick-add-note,
.gfc-quick-add.added .gfc-quick-add-note {
    color: rgba(255, 255, 255, 0.75);
}

.gfc-quick-add.loading {
    cursor: progress;
}

.gfc-card-copy {
    padding: 14px 2px 0;
}

.gfc-card-copy h3 {
    margin: 0 0 7px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.gfc-card-copy h3 a:hover {
    color: var(--gfc-wine);
}

.gfc-card-price,
.gfc-card-price .woocommerce-Price-amount {
    color: var(--gfc-forest);
    font-size: 14px;
    font-weight: 700;
}

.gfc-card-price del {
    margin-right: 6px;
    color: var(--gfc-muted);
    font-weight: 400;
}

.gfc-card-price ins {
    text-decoration: none;
}

.gfc-section-action {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.gfc-custom-band {
    padding: 76px 0;
    background: var(--gfc-wine);
    color: var(--gfc-white);
}

.gfc-custom-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    align-items: end;
    gap: 64px;
}

.gfc-custom-band h2 {
    max-width: 670px;
    margin-bottom: 0;
    color: var(--gfc-white);
    font-size: clamp(38px, 5vw, 64px);
}

.gfc-custom-band p:not(.gfc-eyebrow) {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.gfc-promises {
    padding-top: 86px;
    padding-bottom: 86px;
    background: var(--gfc-white);
}

.gfc-promise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gfc-promise-grid > div {
    padding: 3px 34px 8px;
    border-left: 1px solid var(--gfc-line);
}

.gfc-promise-grid > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.gfc-promise-grid > div:last-child {
    padding-right: 0;
}

.gfc-promise-grid span {
    display: block;
    margin-bottom: 24px;
    color: var(--gfc-wine);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
}

.gfc-promise-grid h2 {
    margin-bottom: 13px;
    font-size: 29px;
}

.gfc-promise-grid p {
    max-width: 310px;
    margin-bottom: 0;
    color: var(--gfc-muted);
    font-size: 14px;
}

.gfc-footer {
    padding-top: 66px;
    background: var(--gfc-ink);
    color: rgba(255, 255, 255, 0.78);
}

.gfc-footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, minmax(0, 1fr));
    gap: 48px;
    padding-bottom: 55px;
}

.gfc-footer-logo {
    color: var(--gfc-white);
    font-size: 28px;
}

.gfc-footer-logo strong {
    color: #dfa7a2;
}

.gfc-footer p {
    max-width: 305px;
    margin: 18px 0 0;
    font-size: 13px;
    line-height: 1.65;
}

.gfc-footer h2 {
    margin-bottom: 18px;
    color: var(--gfc-white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gfc-footer a:not(.gfc-footer-logo) {
    display: block;
    margin: 8px 0;
    font-size: 13px;
}

.gfc-footer a:hover {
    color: var(--gfc-white);
}

.gfc-footer-small {
    margin: 0 0 15px !important;
}

.gfc-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gfc-shop-page {
    padding: 68px 0 104px;
}

.gfc-shop-intro {
    max-width: 850px;
    margin-bottom: 48px;
}

.gfc-shop-intro h1 {
    margin-bottom: 14px;
    font-size: clamp(44px, 6vw, 72px);
}

.gfc-shop-intro p {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--gfc-muted);
    font-size: 16px;
}

.gfc-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding: 16px 0;
    border-top: 1px solid var(--gfc-line);
    border-bottom: 1px solid var(--gfc-line);
    color: var(--gfc-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gfc-shop-toolbar .woocommerce-ordering {
    float: none;
    margin: 0;
}

.gfc-shop-toolbar select {
    padding: 7px 24px 7px 8px;
    border: 0;
    background: transparent;
    color: var(--gfc-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gfc-pagination {
    margin-top: 58px;
    text-align: center;
}

.gfc-pagination .nav-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gfc-pagination a,
.gfc-pagination span {
    display: inline-grid;
    min-width: 34px;
    min-height: 34px;
    place-items: center;
    padding: 4px;
    border: 1px solid var(--gfc-line);
    color: var(--gfc-ink);
    font-size: 12px;
}

.gfc-pagination .current,
.gfc-pagination a:hover {
    border-color: var(--gfc-forest);
    background: var(--gfc-forest);
    color: var(--gfc-white);
}

.gfc-empty-state {
    padding: 72px 20px;
    border: 1px solid var(--gfc-line);
    text-align: center;
}

.gfc-empty-state h2 {
    font-size: 35px;
}

.gfc-product-page {
    padding-bottom: 100px;
}

.gfc-product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 24px 0;
    color: var(--gfc-muted);
    font-size: 11px;
}

.gfc-product-breadcrumb a:hover {
    color: var(--gfc-wine);
}

.gfc-product-breadcrumb strong {
    overflow: hidden;
    max-width: 280px;
    color: var(--gfc-ink);
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gfc-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.86fr);
    gap: clamp(42px, 7vw, 104px);
    align-items: start;
}

.gfc-gallery {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
}

.gfc-gallery.gfc-gallery-single {
    display: block;
}

.gfc-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.gfc-gallery-thumb {
    width: 76px;
    height: 76px;
    padding: 0;
    overflow: hidden;
    border: 1px solid transparent;
    background: #e8e6df;
    cursor: pointer;
}

.gfc-gallery-thumb.is-active {
    border-color: var(--gfc-ink);
}

.gfc-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gfc-gallery-main {
    position: relative;
    overflow: hidden;
    background: #e8e6df;
}

.gfc-gallery-main > img {
    width: 100%;
    aspect-ratio: 0.92 / 1;
    object-fit: cover;
    transition: opacity 180ms ease;
}

.gfc-gallery-main .woocommerce-product-gallery__image,
.gfc-gallery-main .woocommerce-product-gallery__image img {
    width: 100%;
}

.gfc-gallery-arrow {
    position: absolute;
    top: 50%;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(24, 32, 25, 0.2);
    background: rgba(250, 249, 244, 0.94);
    color: var(--gfc-ink);
    cursor: pointer;
    font-size: 18px;
    transform: translateY(-50%);
}

.gfc-gallery-previous {
    left: 14px;
}

.gfc-gallery-next {
    right: 14px;
}

.gfc-product-summary {
    position: sticky;
    top: 110px;
    padding-top: 12px;
}

.gfc-product-summary h1 {
    margin-bottom: 16px;
    font-size: clamp(36px, 4vw, 52px);
}

.gfc-product-price {
    margin-bottom: 16px;
    color: var(--gfc-forest);
    font-size: 22px;
    font-weight: 700;
}

.gfc-product-price del {
    margin-right: 10px;
    color: var(--gfc-muted);
    font-size: 16px;
    font-weight: 400;
}

.gfc-product-price ins {
    color: var(--gfc-wine);
    text-decoration: none;
}

.gfc-product-categories {
    margin-bottom: 22px;
    color: var(--gfc-muted);
    font-size: 12px;
}

.gfc-product-categories a {
    color: var(--gfc-forest);
}

.gfc-product-short-description {
    margin-bottom: 27px;
    color: #475047;
    font-size: 14px;
    line-height: 1.7;
}

.gfc-product-short-description > :last-child {
    margin-bottom: 0;
}

.gfc-product-ordering form.cart {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin: 0;
    padding: 22px 0;
    border-top: 1px solid var(--gfc-line);
    border-bottom: 1px solid var(--gfc-line);
}

.gfc-product-ordering .quantity {
    display: flex;
    width: 128px;
    height: 48px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--gfc-line);
    background: var(--gfc-white);
}

.gfc-product-ordering .quantity input.qty {
    width: 47px;
    min-width: 0;
    height: 46px;
    padding: 0;
    border: 0;
    appearance: textfield;
    background: transparent;
    color: var(--gfc-ink);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.gfc-product-ordering .quantity input.qty::-webkit-inner-spin-button,
.gfc-product-ordering .quantity input.qty::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.gfc-quantity-button {
    display: grid;
    width: 38px;
    height: 46px;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gfc-ink);
    cursor: pointer;
    font-size: 18px;
}

.gfc-quantity-button:hover {
    color: var(--gfc-wine);
}

body.gfc-site .gfc-product-ordering form.cart .single_add_to_cart_button,
body.gfc-site .gfc-product-ordering form.cart .single_add_to_cart_button.button {
    min-width: 0;
    flex: 1;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid var(--gfc-forest);
    border-radius: 3px;
    background: var(--gfc-forest) !important;
    color: var(--gfc-white) !important;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

body.gfc-site .gfc-product-ordering form.cart .single_add_to_cart_button:hover {
    border-color: var(--gfc-wine);
    background: var(--gfc-wine) !important;
}

.gfc-product-ordering .single_variation_wrap,
.gfc-product-ordering .variations {
    width: 100%;
}

.gfc-product-ordering .variations {
    margin: 0 0 16px;
    border: 0;
}

.gfc-product-ordering .variations tr,
.gfc-product-ordering .variations td,
.gfc-product-ordering .variations th {
    display: block;
    padding: 0;
    border: 0;
    text-align: left;
}

.gfc-product-ordering .variations label {
    display: block;
    margin-bottom: 7px;
    color: var(--gfc-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.gfc-product-ordering .variations select {
    width: 100%;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid var(--gfc-line);
    background: var(--gfc-white);
}

.gfc-product-ordering .reset_variations {
    display: inline-block;
    margin-top: 6px;
    color: var(--gfc-wine);
    font-size: 11px;
}

.gfc-product-service-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding-top: 17px;
    color: var(--gfc-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gfc-product-service-notes span::before {
    content: '•';
    margin-right: 6px;
    color: var(--gfc-wine);
}

.gfc-product-details {
    margin-top: 86px;
    padding-top: 28px;
    border-top: 1px solid var(--gfc-line);
}

.gfc-details-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    border-bottom: 1px solid var(--gfc-line);
}

.gfc-details-tabs button {
    position: relative;
    padding: 0 0 14px;
    border: 0;
    background: transparent;
    color: var(--gfc-muted);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gfc-details-tabs button::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--gfc-forest);
    content: '';
    opacity: 0;
}

.gfc-details-tabs button.is-active {
    color: var(--gfc-ink);
}

.gfc-details-tabs button.is-active::after {
    opacity: 1;
}

.gfc-details-panel {
    display: none;
    max-width: 800px;
    padding-top: 27px;
    color: #4a534b;
    font-size: 14px;
    line-height: 1.8;
}

.gfc-details-panel.is-active {
    display: block;
}

.gfc-details-panel h2 {
    margin-bottom: 12px;
    font-size: 28px;
}

.gfc-details-panel > :last-child {
    margin-bottom: 0;
}

.gfc-related-products {
    margin-top: 82px;
    padding-top: 28px;
    border-top: 1px solid var(--gfc-line);
}

.gfc-sticky-cart {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    border-top: 1px solid var(--gfc-line);
    background: var(--gfc-white);
    box-shadow: 0 -12px 28px rgba(24, 32, 25, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 180ms ease, transform 180ms ease;
}

.gfc-sticky-cart.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.gfc-sticky-cart-inner {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.gfc-sticky-product {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 11px;
}

.gfc-sticky-product img {
    width: 46px;
    height: 46px;
    object-fit: cover;
}

.gfc-sticky-product strong,
.gfc-sticky-product span {
    display: block;
    overflow: hidden;
    max-width: 360px;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gfc-sticky-product span {
    margin-top: 2px;
    color: var(--gfc-forest);
    font-weight: 700;
}

.gfc-generic-content {
    min-height: 56vh;
    padding-top: 84px;
    padding-bottom: 100px;
}

.gfc-generic-content article {
    max-width: 840px;
}

.gfc-generic-content h1 {
    margin-bottom: 25px;
    font-size: clamp(44px, 6vw, 68px);
}

.gfc-entry-content {
    color: #414b42;
    line-height: 1.8;
}

.gfc-entry-content h2 {
    margin-top: 38px;
    margin-bottom: 13px;
    font-size: 30px;
}

.gfc-entry-content h3 {
    margin-top: 26px;
    margin-bottom: 10px;
    font-size: 23px;
}

.gfc-entry-content a {
    color: var(--gfc-forest);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid var(--gfc-line);
    border-left: 3px solid var(--gfc-forest);
    background: var(--gfc-white);
    color: var(--gfc-ink);
    font-size: 13px;
}

.woocommerce-notices-wrapper .woocommerce-error {
    border-left-color: var(--gfc-wine);
}

.woocommerce-notices-wrapper .button {
    float: right;
    margin-left: 10px;
    color: var(--gfc-forest);
    font-weight: 700;
}

@media (max-width: 1080px) {
    .gfc-header-inner {
        grid-template-columns: minmax(132px, 1fr) auto minmax(132px, 1fr);
        gap: 18px;
    }

    .gfc-desktop-menu {
        gap: 16px;
    }

    .gfc-product-layout {
        gap: 42px;
    }

    .gfc-product-grid {
        gap: 28px 14px;
    }
}

@media (max-width: 900px) {
    .gfc-header-inner {
        display: grid;
        grid-template-columns: 40px 1fr 40px;
        min-height: 67px;
    }

    .gfc-mobile-toggle {
        display: inline-flex;
    }

    .gfc-logo {
        justify-self: center;
        font-size: 24px;
    }

    .gfc-primary-nav {
        display: none;
    }

    .gfc-header-actions {
        justify-content: end;
    }

    .gfc-mobile-nav {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 120;
        display: block;
        width: min(330px, 88vw);
        padding: 0 24px 30px;
        overflow-y: auto;
        background: var(--gfc-paper);
        box-shadow: var(--gfc-shadow);
        transform: translateX(-102%);
        transition: transform 220ms ease;
    }

    .gfc-mobile-nav.is-open {
        transform: translateX(0);
    }

    .gfc-mobile-nav-head {
        display: flex;
        min-height: 74px;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--gfc-line);
    }

    .gfc-mobile-nav-brand {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 24px;
    }

    .gfc-mobile-nav nav {
        display: grid;
        padding-top: 15px;
    }

    .gfc-mobile-nav nav a {
        padding: 13px 0;
        border-bottom: 1px solid rgba(217, 216, 207, 0.7);
        font-size: 14px;
        font-weight: 700;
    }

    .gfc-mobile-nav nav a:hover {
        color: var(--gfc-wine);
    }

    .gfc-mobile-nav nav .gfc-mobile-category {
        padding-left: 13px;
        color: var(--gfc-muted);
        font-size: 13px;
        font-weight: 400;
    }

    .gfc-mobile-scrim {
        position: fixed;
        z-index: 110;
        inset: 0;
        background: rgba(10, 15, 11, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity 220ms ease;
    }

    .gfc-mobile-scrim.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    body.gfc-menu-open {
        overflow: hidden;
    }

    .gfc-section {
        padding: 74px 0;
    }

    .gfc-collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gfc-collection {
        min-height: 320px;
    }

    .gfc-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gfc-custom-band-inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .gfc-footer-grid {
        grid-template-columns: 1.5fr repeat(2, minmax(0, 1fr));
    }

    .gfc-footer-intro {
        grid-column: span 3;
    }

    .gfc-product-layout {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
        gap: 30px;
    }

    .gfc-gallery {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 10px;
    }

    .gfc-gallery-thumb {
        width: 58px;
        height: 58px;
    }

    .gfc-product-summary h1 {
        font-size: 39px;
    }
}

@media (max-width: 680px) {
    .gfc-shell {
        width: min(calc(100% - 32px), var(--gfc-shell));
    }

    .gfc-announcement {
        padding-right: 16px;
        padding-left: 16px;
        font-size: 9px;
        letter-spacing: 0.06em;
    }

    .gfc-hero {
        min-height: 590px;
    }

    .gfc-hero-content {
        padding-top: 94px;
        padding-bottom: 54px;
    }

    .gfc-hero h1 {
        font-size: 53px;
    }

    .gfc-hero-lead {
        font-size: 15px;
    }

    .gfc-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
        margin-bottom: 25px;
    }

    .gfc-section-head h2 {
        font-size: 38px;
    }

    .gfc-section-head-centered {
        align-items: center;
    }

    .gfc-collection {
        min-height: 245px;
    }

    .gfc-collection-copy {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }

    .gfc-collection-copy strong {
        font-size: 21px;
    }

    .gfc-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 12px;
    }

    .gfc-card-copy {
        padding-top: 10px;
    }

    .gfc-card-copy h3 {
        font-size: 12px;
    }

    .gfc-card-price,
    .gfc-card-price .woocommerce-Price-amount {
        font-size: 12px;
    }

    .gfc-quick-add,
    .gfc-quick-add.button {
        right: 7px;
        bottom: 7px;
        left: 7px;
        min-height: 42px;
    }

    .gfc-quick-add-label {
        font-size: 9px;
    }

    .gfc-quick-add-note {
        font-size: 8px;
    }

    .gfc-custom-band {
        padding: 61px 0;
    }

    .gfc-custom-band h2 {
        font-size: 43px;
    }

    .gfc-promise-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gfc-promise-grid > div,
    .gfc-promise-grid > div:first-child,
    .gfc-promise-grid > div:last-child {
        padding: 0 0 26px;
        border: 0;
        border-bottom: 1px solid var(--gfc-line);
    }

    .gfc-promise-grid > div:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .gfc-promise-grid span {
        margin-bottom: 13px;
    }

    .gfc-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
    }

    .gfc-footer-intro {
        grid-column: span 2;
    }

    .gfc-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .gfc-shop-page {
        padding: 49px 0 74px;
    }

    .gfc-shop-intro {
        margin-bottom: 35px;
    }

    .gfc-shop-intro h1 {
        font-size: 49px;
    }

    .gfc-shop-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .gfc-product-page {
        padding-bottom: 80px;
    }

    .gfc-product-breadcrumb {
        padding: 17px 0;
        font-size: 10px;
    }

    .gfc-product-breadcrumb strong {
        max-width: 118px;
    }

    .gfc-product-layout {
        display: block;
    }

    .gfc-gallery {
        display: flex;
        flex-direction: column-reverse;
    }

    .gfc-gallery-thumbs {
        overflow-x: auto;
        flex-direction: row;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .gfc-gallery-thumbs::-webkit-scrollbar {
        display: none;
    }

    .gfc-gallery-thumb {
        min-width: 58px;
    }

    .gfc-product-summary {
        position: static;
        padding-top: 30px;
    }

    .gfc-product-summary h1 {
        font-size: 39px;
    }

    .gfc-product-ordering form.cart {
        gap: 9px;
        padding: 17px 0;
    }

    .gfc-product-ordering .quantity {
        width: 116px;
    }

    .gfc-product-details {
        margin-top: 56px;
    }

    .gfc-details-tabs {
        gap: 17px;
    }

    .gfc-details-tabs button {
        font-size: 10px;
    }

    .gfc-related-products {
        margin-top: 55px;
    }

    .gfc-sticky-cart-inner {
        min-height: 68px;
    }

    .gfc-sticky-product {
        display: none;
    }

    .gfc-sticky-cart .gfc-button {
        width: 100%;
    }

    .gfc-generic-content {
        padding-top: 57px;
        padding-bottom: 74px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* GrandFlacon 1.1: softer editorial system and variation-first storefront. */
:root {
    --gfc-ink: #1c2632;
    --gfc-forest: #203d52;
    --gfc-wine: #c55c62;
    --gfc-paper: #fffaf4;
    --gfc-canvas: #f3eee7;
    --gfc-line: #e4ddd4;
    --gfc-muted: #68717b;
    --gfc-white: #ffffff;
    --gfc-night: #13242f;
    --gfc-blue: #3159cc;
    --gfc-blue-deep: #263e9b;
    --gfc-coral: #e56d65;
    --gfc-sky: #e4eff0;
    --gfc-radius: 8px;
    --gfc-pill: 999px;
    --gfc-shadow: 0 16px 42px rgba(30, 42, 52, 0.12);
}

body.gfc-site {
    background: var(--gfc-paper);
    color: var(--gfc-ink);
}

.gfc-shell {
    width: min(calc(100% - 56px), 1320px);
}

.gfc-announcement {
    padding: 10px 20px;
    background: var(--gfc-night);
    font-size: 10px;
    letter-spacing: 0.12em;
}

.gfc-header {
    border-bottom-color: rgba(28, 38, 50, 0.09);
    background: rgba(255, 250, 244, 0.96);
}

.gfc-header-inner {
    min-height: 82px;
}

.gfc-logo,
.gfc-footer-logo {
    width: 210px;
    height: auto;
}

.gfc-logo-image {
    display: block;
    width: 100%;
    height: auto;
}

.gfc-desktop-menu {
    gap: 29px;
}

.gfc-desktop-menu > li > a,
.gfc-menu-dropdown-toggle {
    color: #30404e;
    font-size: 10px;
    letter-spacing: 0.11em;
}

.gfc-cart-count {
    background: var(--gfc-coral);
}

.gfc-button,
.gfc-button-light,
body.gfc-site a.gfc-button-light {
    min-height: 50px;
    border-radius: var(--gfc-pill);
    padding: 14px 25px;
    border-color: var(--gfc-forest);
    background: var(--gfc-forest);
    color: var(--gfc-white);
    box-shadow: none;
}

.gfc-button:hover {
    border-color: var(--gfc-blue-deep);
    background: var(--gfc-blue-deep);
    color: var(--gfc-white);
    transform: translateY(-2px);
}

.gfc-button-light,
body.gfc-site a.gfc-button-light {
    border-color: var(--gfc-white);
    background: var(--gfc-white);
    color: var(--gfc-night);
}

.gfc-button-light:hover,
body.gfc-site a.gfc-button-light:hover {
    border-color: #f9d9d5;
    background: #f9d9d5;
    color: var(--gfc-night);
}

.gfc-button-coral,
body.gfc-site a.gfc-button-coral {
    border-color: var(--gfc-coral);
    background: var(--gfc-coral);
    color: var(--gfc-white);
}

.gfc-button-coral:hover,
body.gfc-site a.gfc-button-coral:hover {
    border-color: #c6535b;
    background: #c6535b;
    color: var(--gfc-white);
}

.gfc-text-link {
    color: var(--gfc-forest);
    font-size: 10px;
    letter-spacing: 0.11em;
}

.gfc-text-link-light {
    color: var(--gfc-white);
}

.gfc-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 440ms ease var(--gfc-reveal-delay, 0.1s), transform 440ms cubic-bezier(0.22, 1, 0.36, 1) var(--gfc-reveal-delay, 0.1s);
}

.gfc-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.gfc-hero.gfc-hero-new {
    min-height: min(720px, calc(100vh - 92px));
    align-items: center;
    background-color: #314852;
    background-position: center;
}

.gfc-hero-new .gfc-hero-shade {
    background: rgba(10, 25, 31, 0.54);
}

.gfc-hero-new .gfc-hero-content {
    max-width: 1320px;
    padding-top: 102px;
    padding-bottom: 62px;
}

body.gfc-site .gfc-hero-new h1 {
    max-width: 780px;
    color: var(--gfc-white);
    font-size: clamp(56px, 6.5vw, 94px);
    letter-spacing: 0;
    line-height: 0.95;
}

.gfc-hero-new .gfc-hero-lead {
    max-width: 530px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
}

.gfc-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 48px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gfc-hero-meta span::before {
    color: #f4a39c;
    content: '•';
    margin-right: 8px;
}

.gfc-home-intro {
    padding: 88px 0;
    background: var(--gfc-white);
}

.gfc-home-intro-grid {
    display: grid;
    grid-template-columns: 0.65fr 1.45fr 0.9fr;
    align-items: start;
    gap: 36px;
}

.gfc-home-intro-grid h2 {
    margin: 0;
    color: var(--gfc-night);
    font-size: clamp(34px, 4vw, 56px);
}

.gfc-home-intro-grid > p:last-child {
    max-width: 325px;
    margin: 9px 0 0;
    color: var(--gfc-muted);
    font-size: 15px;
    line-height: 1.75;
}

.gfc-section {
    padding: 94px 0;
}

.gfc-collections {
    background: var(--gfc-canvas);
}

.gfc-section-head {
    margin-bottom: 36px;
}

.gfc-section-head h2 {
    color: var(--gfc-night);
    font-size: clamp(38px, 4vw, 55px);
}

.gfc-collection-grid {
    gap: 15px;
    border: 0;
}

.gfc-collection {
    min-height: 370px;
    border: 0;
    border-radius: var(--gfc-radius);
    box-shadow: 0 5px 14px rgba(28, 38, 50, 0.06);
}

.gfc-collection-image::after {
    background: rgba(22, 33, 42, 0.18);
}

.gfc-collection:hover .gfc-collection-image::after {
    background: rgba(22, 33, 42, 0.4);
}

.gfc-collection-copy {
    right: 22px;
    bottom: 19px;
    left: 22px;
}

.gfc-collection-copy strong {
    font-size: 28px;
}

.gfc-best-sellers {
    background: var(--gfc-paper);
}

.gfc-product-grid {
    gap: 34px 18px;
}

.gfc-product-card {
    border-radius: var(--gfc-radius);
}

.gfc-card-media {
    overflow: hidden;
    border-radius: var(--gfc-radius);
    background: #e9e5e0;
}

.gfc-card-image {
    aspect-ratio: 1 / 1.16;
}

.gfc-quick-add,
.gfc-quick-add.button {
    right: 13px;
    bottom: 13px;
    left: 13px;
    min-height: 48px;
    border: 0;
    border-radius: var(--gfc-pill);
    background: var(--gfc-white);
    color: var(--gfc-night);
    box-shadow: 0 8px 20px rgba(18, 36, 47, 0.14);
    cursor: pointer;
    transform: translateY(16px);
    transition: opacity 240ms ease 100ms, transform 240ms cubic-bezier(0.22, 1, 0.36, 1) 100ms, background 180ms ease, color 180ms ease;
}

.gfc-quick-add-label {
    font-size: 10px;
    letter-spacing: 0.12em;
}

.gfc-quick-add-note {
    color: var(--gfc-muted);
    font-size: 8px;
    letter-spacing: 0.08em;
}

@media (hover: hover) and (pointer: fine) {
    .gfc-product-card:hover .gfc-quick-add,
    .gfc-product-card:focus-within .gfc-quick-add {
        transform: translateY(0);
    }
}

.gfc-product-card.is-quickadd-open .gfc-quick-add {
    transform: translateY(0);
}

.gfc-quick-add:hover,
.gfc-quick-add.button:hover,
.gfc-quick-add.added {
    background: var(--gfc-blue);
    color: var(--gfc-white);
}

.gfc-quick-add:hover .gfc-quick-add-note,
.gfc-quick-add.added .gfc-quick-add-note {
    color: rgba(255, 255, 255, 0.82);
}

.gfc-card-copy {
    padding: 15px 3px 0;
}

.gfc-card-copy h3 {
    color: var(--gfc-night);
    font-size: 14px;
}

.gfc-card-price,
.gfc-card-price .woocommerce-Price-amount {
    color: var(--gfc-blue-deep);
}

.gfc-custom-band {
    padding: 92px 0;
    background: var(--gfc-night);
}

body.gfc-site .gfc-custom-band h2 {
    color: var(--gfc-white);
    font-size: clamp(39px, 4.6vw, 66px);
}

.gfc-custom-band p:not(.gfc-eyebrow) {
    color: rgba(255, 255, 255, 0.82);
}

.gfc-promises {
    background: #edf2f2;
}

.gfc-promise-grid {
    gap: 16px;
}

.gfc-promise-grid > article,
.gfc-promise-grid > div {
    padding: 30px 29px;
    border: 1px solid rgba(32, 61, 82, 0.12);
    border-radius: var(--gfc-radius);
    background: var(--gfc-white);
}

.gfc-promise-grid > article:first-child,
.gfc-promise-grid > div:first-child {
    padding-left: 29px;
    border-left: 1px solid rgba(32, 61, 82, 0.12);
}

.gfc-promise-grid > article:last-child,
.gfc-promise-grid > div:last-child {
    padding-right: 29px;
}

.gfc-promise-grid h2 {
    color: var(--gfc-night);
    font-size: 28px;
}

.gfc-footer {
    padding-top: 72px;
    background: #101d25;
}

.gfc-footer-grid {
    grid-template-columns: 1.55fr 1fr 0.9fr 1.1fr;
    gap: 42px;
}

.gfc-footer-logo {
    width: 220px;
}

.gfc-footer-intro > p {
    max-width: 330px;
    color: rgba(255, 255, 255, 0.7);
}

.gfc-footer-contact {
    display: grid;
    gap: 5px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
}

.gfc-footer-contact strong {
    color: var(--gfc-white);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.gfc-footer h2 {
    color: #f3a39b;
    font-size: 10px;
    letter-spacing: 0.12em;
}

.gfc-footer a:not(.gfc-footer-logo) {
    color: rgba(255, 255, 255, 0.74);
}

.gfc-footer a:not(.gfc-footer-logo):hover {
    color: var(--gfc-white);
}

.gfc-footer-chat {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    color: #f3a39b !important;
    font-weight: 700;
}

.gfc-footer-chat svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.gfc-footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.48);
}

.gfc-shop-page {
    background: var(--gfc-paper);
}

.gfc-shop-intro h1,
.gfc-product-summary h1 {
    color: var(--gfc-night);
}

.gfc-product-page {
    background: var(--gfc-paper);
}

.gfc-product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: clamp(38px, 6vw, 92px);
}

.gfc-gallery {
    grid-template-columns: 82px minmax(0, 1fr);
}

.gfc-gallery-main {
    border-radius: var(--gfc-radius);
    background: #ebe8e1;
}

.gfc-gallery-thumb {
    border-radius: 6px;
}

.gfc-gallery-arrow {
    border-radius: 50%;
}

.gfc-product-summary {
    top: 104px;
    padding-top: 18px;
}

.gfc-product-summary h1 {
    font-size: clamp(38px, 3.9vw, 58px);
}

.gfc-product-price {
    color: var(--gfc-coral);
    font-size: 25px;
}

.gfc-product-categories {
    color: var(--gfc-muted);
}

.gfc-product-ordering form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 22px 0 4px;
    border: 0;
}

.gfc-product-ordering .variations,
.gfc-product-ordering .single_variation_wrap,
.gfc-product-ordering .woocommerce-variation-add-to-cart {
    width: 100%;
}

.gfc-product-ordering .variations {
    margin-bottom: 4px;
}

.gfc-product-ordering .variations label {
    margin-bottom: 11px;
    color: var(--gfc-night);
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
}

.gfc-native-variation-select {
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.gfc-variation-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.gfc-variation-pill {
    min-height: 40px;
    padding: 9px 17px;
    border: 1px solid #d9dce5;
    border-radius: var(--gfc-pill);
    background: #f3f4f7;
    color: var(--gfc-night);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.gfc-variation-pill.is-selected,
.gfc-variation-pill:hover {
    border-color: var(--gfc-blue);
    background: var(--gfc-blue);
    color: var(--gfc-white);
}

.gfc-product-ordering .woocommerce-variation {
    margin: 0 0 13px;
}

.gfc-product-ordering .woocommerce-variation-price {
    color: var(--gfc-coral);
    font-size: 19px;
    font-weight: 700;
}

.gfc-product-ordering .woocommerce-variation-description {
    display: none;
}

.gfc-product-ordering .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gfc-product-ordering .quantity {
    width: 128px;
    height: 48px;
    border: 0;
    border-radius: var(--gfc-pill);
    background: #f1f2f5;
}

.gfc-product-ordering .quantity input.qty {
    height: 48px;
}

.gfc-quantity-button {
    height: 48px;
    color: var(--gfc-night);
}

body.gfc-site .gfc-product-ordering form.cart .single_add_to_cart_button,
body.gfc-site .gfc-product-ordering form.cart .single_add_to_cart_button.button {
    min-height: 54px;
    border-color: var(--gfc-blue-deep);
    border-radius: var(--gfc-pill);
    background: var(--gfc-blue) !important;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
}

body.gfc-site .gfc-product-ordering form.cart .single_add_to_cart_button:hover {
    border-color: #1f3fba;
    background: #1f3fba !important;
}

.gfc-product-utilities {
    display: flex;
    gap: 21px;
    margin: 18px 0 23px;
}

.gfc-product-utility {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gfc-night);
    cursor: pointer;
    font-size: 12px;
}

.gfc-product-utility svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.gfc-product-favorite.is-active {
    color: var(--gfc-coral);
}

.gfc-product-favorite.is-active svg {
    fill: currentColor;
}

.gfc-product-assurances {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gfc-product-assurances article {
    display: flex;
    min-height: 124px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 15px;
    border: 1px solid #e0e1e5;
    border-radius: var(--gfc-radius);
    background: var(--gfc-white);
    text-align: center;
}

.gfc-product-assurances svg {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    fill: none;
    stroke: var(--gfc-blue-deep);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.gfc-product-assurances strong,
.gfc-product-assurances span {
    display: block;
}

.gfc-product-assurances strong {
    color: var(--gfc-night);
    font-size: 12px;
}

.gfc-product-assurances span {
    margin-top: 3px;
    color: var(--gfc-muted);
    font-size: 11px;
    line-height: 1.35;
}

.gfc-secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 16px 0 0;
    color: var(--gfc-muted);
    font-size: 11px;
    font-weight: 700;
}

.gfc-secure-checkout svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.gfc-product-details {
    margin-top: 84px;
}

.gfc-details-tabs button.is-active::after {
    background: var(--gfc-blue);
}

.gfc-specification-intro {
    max-width: 680px;
    color: var(--gfc-muted);
}

.gfc-specification-list {
    max-width: 800px;
    margin: 25px 0 0;
    border-top: 1px solid var(--gfc-line);
}

.gfc-specification-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1.45fr);
    gap: 28px;
    padding: 18px 0;
    border-bottom: 1px solid var(--gfc-line);
}

.gfc-specification-row dt {
    color: var(--gfc-night);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gfc-specification-row dd {
    min-width: 0;
    margin: 0;
    color: #3f4852;
}

.gfc-specification-row dd span {
    display: block;
    margin-top: 3px;
    color: var(--gfc-coral);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gfc-custom-contact-list {
    max-width: 760px;
    margin-top: 25px;
    border-top: 1px solid var(--gfc-line);
}

.gfc-custom-contact {
    display: flex;
    min-height: 68px;
    align-items: center;
    gap: 15px;
    padding: 12px 8px;
    border-bottom: 1px solid var(--gfc-line);
    color: var(--gfc-night);
    transition: background 160ms ease, color 160ms ease;
}

.gfc-custom-contact:hover,
.gfc-custom-contact:focus-visible {
    background: #f3f5fa;
    color: var(--gfc-blue-deep);
}

.gfc-custom-contact-index {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 50%;
    background: #e9edfb;
    color: var(--gfc-blue-deep);
    font-size: 10px;
    font-weight: 700;
}

.gfc-custom-contact-copy {
    min-width: 0;
    flex: 1;
}

.gfc-custom-contact-copy strong,
.gfc-custom-contact-copy small {
    display: block;
}

.gfc-custom-contact-copy strong {
    color: inherit;
    font-size: 13px;
}

.gfc-custom-contact-copy small {
    margin-top: 2px;
    color: var(--gfc-muted);
    font-size: 11px;
}

.gfc-custom-contact > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

@media (max-width: 680px) {
    .gfc-details-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 18px;
    }

    .gfc-details-tabs button {
        width: 100%;
        text-align: left;
    }

    .gfc-specification-row {
        display: block;
        padding: 16px 0;
    }

    .gfc-specification-row dd {
        margin-top: 6px;
    }

    .gfc-custom-contact {
        gap: 11px;
        padding-right: 3px;
        padding-left: 3px;
    }

    .gfc-custom-contact-copy small {
        font-size: 10px;
    }
}

.gfc-sticky-cart {
    border-top: 0;
    background: var(--gfc-white);
    box-shadow: 0 -12px 32px rgba(20, 35, 47, 0.14);
}

.gfc-sticky-cart .gfc-button {
    min-height: 46px;
    background: var(--gfc-blue);
}

.gfc-quick-modal {
    position: fixed;
    z-index: 150;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.gfc-quick-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.gfc-quick-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 29, 37, 0.52);
}

.gfc-quick-modal-sheet {
    position: relative;
    z-index: 1;
    width: min(100%, 480px);
    padding: 28px;
    border-radius: 14px;
    background: var(--gfc-paper);
    box-shadow: 0 22px 60px rgba(12, 25, 34, 0.26);
    transform: translateY(16px);
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gfc-quick-modal.is-open .gfc-quick-modal-sheet {
    transform: translateY(0);
}

.gfc-quick-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #f0eeea;
    color: var(--gfc-night);
    cursor: pointer;
    font-size: 23px;
    line-height: 1;
}

.gfc-quick-modal-product {
    display: flex;
    align-items: center;
    gap: 17px;
    padding-right: 28px;
}

.gfc-quick-modal-product img {
    width: 82px;
    height: 82px;
    border-radius: var(--gfc-radius);
    object-fit: cover;
}

.gfc-quick-modal-product h2 {
    margin: 0;
    color: var(--gfc-night);
    font-size: 27px;
}

.gfc-quick-modal-price {
    margin-top: 6px;
    color: var(--gfc-coral);
    font-size: 18px;
    font-weight: 700;
}

.gfc-quick-modal-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 25px;
}

.gfc-quick-modal-option {
    display: flex;
    min-height: 68px;
    flex-direction: column;
    justify-content: center;
    padding: 12px 15px;
    border: 1px solid #d9dce5;
    border-radius: var(--gfc-radius);
    background: var(--gfc-white);
    color: var(--gfc-night);
    cursor: pointer;
    text-align: left;
}

.gfc-quick-modal-option strong {
    font-size: 13px;
}

.gfc-quick-modal-option span {
    margin-top: 3px;
    color: var(--gfc-muted);
    font-size: 11px;
}

.gfc-quick-modal-option.is-selected {
    border-color: var(--gfc-blue);
    background: #eef2ff;
}

.gfc-quick-modal-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    color: var(--gfc-night);
    font-size: 13px;
    font-weight: 700;
}

.gfc-quick-modal-stepper {
    display: flex;
    width: 124px;
    height: 43px;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--gfc-pill);
    background: #f0f1f4;
}

.gfc-quick-modal-stepper button {
    width: 38px;
    height: 43px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gfc-night);
    cursor: pointer;
    font-size: 19px;
}

.gfc-quick-modal-stepper input {
    width: 42px;
    height: 43px;
    padding: 0;
    border: 0;
    appearance: textfield;
    background: transparent;
    color: var(--gfc-night);
    font-weight: 700;
    text-align: center;
}

.gfc-quick-modal-add {
    width: 100%;
    min-height: 52px;
    margin-top: 23px;
    border: 1px solid var(--gfc-blue-deep);
    border-radius: var(--gfc-pill);
    background: var(--gfc-blue);
    color: var(--gfc-white);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.gfc-quick-modal-add:disabled {
    cursor: wait;
    opacity: 0.7;
}

.gfc-quick-modal-status {
    min-height: 20px;
    margin: 10px 0 0;
    color: var(--gfc-muted);
    font-size: 12px;
    text-align: center;
}

body.gfc-quick-modal-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .gfc-logo {
        width: 180px;
    }

    .gfc-mobile-nav-logo {
        width: 166px;
        height: auto;
    }

    .gfc-home-intro-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gfc-home-intro-grid > p:last-child {
        max-width: 520px;
        margin-top: 0;
    }

    .gfc-collection-grid {
        gap: 12px;
    }

    .gfc-footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .gfc-footer-intro {
        grid-column: span 3;
    }

    .gfc-product-layout {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    }
}

@media (max-width: 680px) {
    .gfc-shell {
        width: min(calc(100% - 32px), 1320px);
    }

    .gfc-header-inner {
        min-height: 68px;
    }

    .gfc-logo {
        width: 158px;
    }

    .gfc-hero.gfc-hero-new {
        min-height: 610px;
        align-items: flex-end;
    }

    .gfc-hero-new .gfc-hero-content {
        padding-top: 94px;
        padding-bottom: 42px;
    }

    .gfc-hero-new h1 {
        font-size: 51px;
    }

    .gfc-hero-meta {
        gap: 8px 14px;
        margin-top: 30px;
        font-size: 8px;
    }

    .gfc-home-intro {
        padding: 62px 0;
    }

    .gfc-home-intro-grid h2 {
        font-size: 37px;
    }

    .gfc-section {
        padding: 68px 0;
    }

    .gfc-collection {
        min-height: 238px;
    }

    .gfc-collection-copy {
        right: 14px;
        bottom: 13px;
        left: 14px;
    }

    .gfc-collection-copy strong {
        font-size: 21px;
    }

    .gfc-product-grid {
        gap: 27px 12px;
    }

    .gfc-quick-add,
    .gfc-quick-add.button {
        right: 8px;
        bottom: 8px;
        left: 8px;
        min-height: 42px;
    }

    .gfc-quick-add-label {
        font-size: 8px;
    }

    .gfc-quick-add-note {
        font-size: 7px;
    }

    .gfc-custom-band {
        padding: 64px 0;
    }

    .gfc-custom-band h2 {
        font-size: 42px;
    }

    .gfc-promise-grid {
        gap: 10px;
    }

    .gfc-promise-grid > article,
    .gfc-promise-grid > div,
    .gfc-promise-grid > article:first-child,
    .gfc-promise-grid > div:first-child,
    .gfc-promise-grid > article:last-child,
    .gfc-promise-grid > div:last-child {
        padding: 25px 22px;
        border: 1px solid rgba(32, 61, 82, 0.12);
    }

    .gfc-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 33px 24px;
    }

    .gfc-footer-intro {
        grid-column: span 2;
    }

    .gfc-footer-logo {
        width: 195px;
    }

    .gfc-product-layout {
        display: block;
    }

    .gfc-gallery {
        display: flex;
        flex-direction: column-reverse;
    }

    .gfc-gallery.gfc-gallery-single {
        display: block;
    }

    .gfc-product-summary {
        padding-top: 28px;
    }

    .gfc-product-summary h1 {
        font-size: 40px;
    }

    .gfc-product-ordering .woocommerce-variation-add-to-cart {
        gap: 9px;
    }

    .gfc-product-ordering .quantity {
        width: 115px;
    }

    .gfc-product-assurances {
        gap: 9px;
    }

    .gfc-product-assurances article {
        min-height: 118px;
        flex-direction: column;
        gap: 8px;
        padding: 14px 8px;
    }

    .gfc-product-assurances strong {
        font-size: 11px;
    }

    .gfc-product-assurances span {
        font-size: 9px;
    }

    .gfc-quick-modal {
        align-items: end;
        padding: 0;
    }

    .gfc-quick-modal-sheet {
        width: 100%;
        padding: 25px 18px 20px;
        border-radius: 16px 16px 0 0;
    }

    .gfc-quick-modal-product h2 {
        font-size: 24px;
    }
}

.gfc-legal-page {
    max-width: 1040px;
    padding-top: 92px;
}

.gfc-legal-page article {
    max-width: 900px;
}

.gfc-legal-page h1 {
    max-width: 670px;
    color: var(--gfc-night);
}

.gfc-legal-page .gfc-entry-content {
    padding: 36px 42px 44px;
    border: 1px solid #e1e0dd;
    border-radius: var(--gfc-radius);
    background: var(--gfc-white);
    box-shadow: 0 10px 30px rgba(28, 38, 50, 0.04);
}

.gfc-legal-page .gfc-entry-content > p:first-child {
    margin-bottom: 27px;
    color: var(--gfc-blue-deep);
}

.gfc-legal-page .gfc-entry-content h2 {
    margin-top: 36px;
    color: var(--gfc-night);
}

@media (max-width: 680px) {
    .gfc-legal-page {
        padding-top: 58px;
    }

    .gfc-legal-page .gfc-entry-content {
        padding: 25px 20px 30px;
    }
}

/* Keep the two Home calls to action readable against their contrasting surfaces. */
body.gfc-site .gfc-best-sellers .gfc-section-action > a.gfc-button {
    border-color: #b84b54;
    background: #b84b54;
    color: var(--gfc-white);
}

body.gfc-site .gfc-best-sellers .gfc-section-action > a.gfc-button:hover,
body.gfc-site .gfc-best-sellers .gfc-section-action > a.gfc-button:focus-visible {
    border-color: #a8434b;
    background: #a8434b;
    color: var(--gfc-white);
}

body.gfc-site .gfc-custom-band {
    background: #1b3a48;
}

body.gfc-site .gfc-custom-band h2 {
    color: #fffaf4 !important;
}

body.gfc-site .gfc-custom-band p:not(.gfc-eyebrow) {
    color: rgba(255, 250, 244, 0.84);
}

body.gfc-site .gfc-custom-band .gfc-eyebrow-light {
    color: #f2a49d;
}

body.gfc-site .gfc-custom-band a.gfc-button-light {
    border-color: #fffaf4;
    background: #fffaf4;
    color: #1b3a48;
}

body.gfc-site .gfc-custom-band a.gfc-button-light:hover,
body.gfc-site .gfc-custom-band a.gfc-button-light:focus-visible {
    border-color: #f9d9d5;
    background: #f9d9d5;
    color: #1b3a48;
}

/* =========================================================
   Aetherisparfum dark mode override
   Appended block: flips the v1.1 GrandFlacon theme to a dark palette.
   Design tokens are remapped; hardcoded light surfaces are covered
   with explicit rules. Brand colors are kept but lifted for contrast.
   ========================================================= */
:root {
    --gfc-ink: #e9e7e0;
    --gfc-muted: #9aa39b;
    --gfc-paper: #12161a;
    --gfc-canvas: #1a2026;
    --gfc-line: #2c343c;
    --gfc-night: #0d1318;
    --gfc-white: #ffffff;
    --gfc-forest: #66a08c;
    --gfc-wine: #d97a80;
    --gfc-coral: #f08a80;
    --gfc-blue: #6d8fdd;
    --gfc-blue-deep: #4a66b8;
    --gfc-sky: #2a3a44;
    --gfc-shadow: 0 16px 42px rgba(0, 0, 0, 0.55);
}

body.gfc-site {
    background: #12161a;
    color: #e9e7e0;
}

/* announcement + header + footer dark bands */
.gfc-announcement,
.gfc-header {
    background: #0d1318;
    border-color: #2c343c;
}
.gfc-header-inner,
.gfc-footer,
.gfc-footer-logo,
.gfc-site-footer {
    background: #0d1318;
}

/* cards / panels / table-ish light surfaces */
.gfc-product-card,
.gfc-card-copy,
.gfc-collection-copy,
.gfc-card,
.gfc-panel,
.woocommerce ul.products li.product,
.single-product .product,
.gfc-container,
.gfc-box,
.form-row,
.woocommerce-form,
.woocommerce-breadcrumb,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error,
.wc-block-components-notice,
.gfc-popover,
.gfc-dropdown,
.gfc-cart-panel,
.gfc-drawer {
    background: #1a2026;
    color: #e9e7e0;
}

/* generic cards that used var(--gfc-white) as background */
.gfc-white-card,
.gfc-light-card,
.gfc-panel-light,
.woocommerce-order,
.woocommerce-customer-details,
.site-main .gfc-cards > * {
    background: #1a2026;
}

/* borders softening */
.gfc-card,
.gfc-panel,
.gfc-product-card,
.gfc-collection,
.woocommerce ul.products li.product,
.gfc-field ,
.form-row input,
.form-row select,
.form-row textarea,
.woocommerce form input[type="text"],
.woocommerce form input[type="email"],
.woocommerce form input[type="tel"],
.woocommerce form input[type="number"],
.woocommerce form select,
.woocommerce form textarea,
.wc-block-components-input {
    border-color: #2c343c !important;
}

/* hero stays dark already; light text preserved */
.gfc-hero-new h1,
.gfc-hero-new .gfc-eyebrow,
.gfc-hero-lead,
.gfc-hero-meta,
.gfc-hero-new body.gfc-site *,
.gfc-hero-new a {
    color: #f5f3ec;
}

/* text-link light on dark */
.gfc-text-link-light {
    color: #f5f3ec;
}

/* headings ink -> light */
h1, h2, h3, h4, h5, h6,
.gfc-site h1, .gfc-site h2, .gfc-site h3,
.gfc-home-intro-grid h2,
.gfc-section-head h2,
.gfc-card-copy h3,
.gfc-collection-copy strong,
.entry-title,
.woocommerce h1, .woocommerce h2,
.product_title,
.related.products > h2,
.upsells.products > h2 {
    color: #f2f0ea;
}

/* muted text */
.gfc-card-price .price,
.woocommerce .price,
.gfc-muted,
.price,
.woocommerce-Price-amount {
    color: #cfd6cf !important;
}

/* buttons keep their accents, text stays readable (dark bg + white text >=4.5:1) */
body.gfc-site a.gfc-button-brown,
body.gfc-site a.gfc-button-forest,
body.gfc-site a.gfc-button-wine,
body.gfc-site a.gfc-button,
body.gfc-site a.gfc-button-coral,
.wc-forward,
.woocommerce button.button,
.woocommerce .button,
.woocommerce a.button {
    background: #a8434b;
    color: #ffffff;
}
body.gfc-site a.gfc-button-coral {
    background: #b04a55;
    color: #ffffff;
}
body.gfc-site a.gfc-button-forest {
    background: #2a5d58;
    color: #ffffff;
}
body.gfc-site a.gfc-button-light {
    background: #2a3239;
    color: #f2f0ea;
}

/* inputs on dark */
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="search"], input[type="password"],
textarea, select,
.woocommerce input, .woocommerce textarea, .woocommerce select {
    background: #1a2026;
    color: #e9e7e0;
    border-color: #2c343c;
}
input::placeholder, textarea::placeholder {
    color: #7d867e;
}

/* links */
a, .gfc-site a {
    color: #8fb8e8;
}

/* ---- product detail page ---- */
.gfc-product-page {
    background: #12161a;
    color: #f2f0ea;
}
.gfc-product-breadcrumb,
.gfc-product-breadcrumb a {
    color: #b9c2c9;
}
.gfc-product-breadcrumb strong {
    color: #f2f0ea;
}
.gfc-product-layout {
    border-color: #2c343c;
}
.gfc-gallery-main {
    background: #e9e4da;
    border-radius: 10px;
}
.gfc-gallery-main > img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    background: transparent;
    border-radius: 10px;
}
.gfc-gallery-thumb {
    background: #1a2026;
    border-color: #2c343c;
}
.gfc-gallery-thumb img {
    background: transparent;
}
.gfc-product-summary {
    color: #f2f0ea;
}
.gfc-product-summary h1 {
    color: #ffffff;
}
.gfc-product-price {
    color: #ffffff;
}
.gfc-product-categories,
.gfc-product-categories a,
.gfc-product-short-description,
.gfc-product-short-description p {
    color: #c9d0d6;
}
.gfc-product-assurances strong {
    color: #f2f0ea;
}
.gfc-product-assurances span,
.gfc-secure-checkout {
    color: #aab4bd;
}
.gfc-product-details {
    background: #1a2026;
    border-color: #2c343c;
    color: #dfe5e9;
}
.gfc-details-tabs {
    border-color: #2c343c;
}
.gfc-details-tabs button {
    color: #c5cbd0;
    background: transparent;
}
.gfc-details-tabs button.is-active {
    color: #ffffff;
    border-color: #a8434b;
}
.gfc-details-panel,
.gfc-details-panel p,
.gfc-details-panel li,
.gfc-specification-intro,
.gfc-product-details h2 {
    color: #dfe5e9;
}
.gfc-specification-row {
    border-color: #2c343c;
}
.gfc-specification-row dt {
    color: #f2f0ea;
}
.gfc-specification-row dd {
    color: #dfe5e9;
}
.gfc-specification-row dd span {
    color: #f08a80;
}
.gfc-product-utility {
    color: #c9d0d6;
    background: #1a2026;
    border-color: #2c343c;
}
.gfc-product-ordering .quantity input.qty {
    background: #1a2026;
    color: #f2f0ea;
    border-color: #2c343c;
}

/* ---- app-level surfaces: explicit, not via wildcard ---- */
.gfc-announcement,
.gfc-header,
.gfc-site-footer,
.gfc-footer {
    background: #0d1318;
}
.gfc-hero {
    background-image: linear-gradient(rgba(13, 19, 24, 0.82), rgba(13, 19, 24, 0.82)), var(--gfc-hero-image, none);
}

/* ---- sticky cart bar ---- */
.gfc-sticky-cart,
.gfc-sticky-cart-inner {
    background: #0d1318;
    border-color: #2c343c;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}
.gfc-sticky-product strong {
    color: #f2f0ea;
}
.gfc-sticky-product span,
.gfc-sticky-cart .price,
.gfc-sticky-cart .woocommerce-Price-amount {
    color: #c9d0d6 !important;
}
button.gfc-button,
.gfc-sticky-cart button.gfc-button,
.gfc-quick-modal-add {
    background: #a8434b;
    color: #ffffff;
}
button.gfc-button:hover,
.gfc-quick-modal-add:hover {
    background: #8e3d46;
    color: #ffffff;
}

/* quick-add modal on dark */
.gfc-quick-modal-sheet {
    background: #1a2026;
    color: #f2f0ea;
}
.gfc-quick-modal-sheet h2,
.gfc-quick-modal-sheet .gfc-eyebrow {
    color: #f2f0ea;
}
.gfc-quick-modal-price,
.gfc-quick-modal-price .woocommerce-Price-amount {
    color: #ffffff !important;
}
.gfc-quick-modal-options button,
.gfc-quick-modal-quantity input {
    background: #12161a;
    color: #f2f0ea;
    border-color: #2c343c;
}
.gfc-quick-modal-close {
    color: #c9d0d6;
}

/* ---- cart / checkout blocks on dark ---- */
body.gfc-site.woocommerce-cart,
body.gfc-site.woocommerce-checkout,
body.gfc-site.woocommerce-account {
    background: #12161a;
    color: #e9e7e0;
}
body.gfc-site .wc-block-cart,
body.gfc-site .wp-block-woocommerce-cart,
body.gfc-site .wc-block-checkout,
body.gfc-site .wp-block-woocommerce-checkout,
body.gfc-site .wc-block-components-main,
body.gfc-site .wc-block-checkout__form,
body.gfc-site .wc-block-cart-items,
body.gfc-site .wc-block-components-totals-wrapper,
body.gfc-site .wc-block-components-totals-item {
    background: transparent;
    color: #e9e7e0;
    border-color: #2c343c;
}
body.gfc-site .wc-block-cart__items,
body.gfc-site .wc-block-cart__totals,
body.gfc-site .wc-block-checkout__sidebar,
body.gfc-site .wc-block-components-sidebar-layout__sidebar,
body.gfc-site .wc-block-components-panel {
    background: #1a2026;
    border-color: #2c343c;
    color: #e9e7e0;
    border-radius: 10px;
}
body.gfc-site .wc-block-cart-item__wrap,
body.gfc-site .wc-block-components-product-metadata,
body.gfc-site .wc-block-components-product-name,
body.gfc-site .wc-block-components-product-price,
body.gfc-site .wc-block-components-formatted-money-amount,
body.gfc-site .wc-block-components-totals-item__label,
body.gfc-site .wc-block-components-totals-item__value,
body.gfc-site .wc-block-components-totals-shipping__value,
body.gfc-site .wc-block-components-product-title {
    color: #e9e7e0;
}
body.gfc-site .wc-block-components-quantity-selector,
body.gfc-site .wc-block-components-quantity-selector input,
body.gfc-site .wc-block-components-text-input input,
body.gfc-site .wc-block-components-select,
body.gfc-site .wc-block-components-select select,
body.gfc-site .wc-block-components-textarea,
body.gfc-site .wp-block-woocommerce .wc-block-components-text-input input,
body.gfc-site .wc-block-checkout input[type="text"],
body.gfc-site .wc-block-checkout input[type="email"],
body.gfc-site .wc-block-checkout input[type="tel"],
body.gfc-site .wc-block-checkout input[type="number"],
body.gfc-site .wc-block-checkout select,
body.gfc-site .wc-block-checkout textarea {
    background: #12161a;
    color: #f2f0ea;
    border-color: #2c343c;
}
body.gfc-site .wc-block-components-checkbox .wc-block-components-checkbox__label {
    color: #c9d0d6;
}
body.gfc-site .wc-block-components-button.wc-block-components-button--outlined,
body.gfc-site .wc-block-cart__submit-container .wc-block-components-button,
body.gfc-site .wc-block-checkout__actions .wc-block-components-button,
body.gfc-site .wc-block-components-button:not(.is-link) {
    background: #a8434b;
    color: #ffffff;
}
body.gfc-site .wc-block-components-button.wc-block-components-button--outlined:hover,
body.gfc-site .wc-block-cart__submit-container .wc-block-components-button:hover,
body.gfc-site .wc-block-checkout__actions .wc-block-components-button:hover,
body.gfc-site .wc-block-components-button:not(.is-link):hover {
    background: #8e3d46;
    color: #ffffff;
}
body.gfc-site .wc-block-components-button:not(.is-link):disabled {
    background: #3a3f45;
    color: #c9d0d6;
}
body.gfc-site .wc-block-components-radio-control__label,
body.gfc-site .wc-block-components-radio-control__description,
body.gfc-site .wc-block-components-shipping-rates-control__label {
    color: #e9e7e0;
}
body.gfc-site .wc-block-components-radio-control .wc-block-components-radio-control__input[type="radio"] {
    border-color: #2c343c;
    background: #12161a;
}
body.gfc-site .wc-block-components-total-border,
body.gfc-site .wc-block-cart-item,
body.gfc-site .wc-block-components-totals-item {
    border-color: #2c343c;
}
body.gfc-site .wc-block-components-panel__content,
body.gfc-site .wc-block-components-accordion,
body.gfc-site .wc-block-components-accordion * {
    color: #e9e7e0;
}
body.gfc-site .wp-block-woocommerce-checkout .wc-block-components-address-card,
body.gfc-site .wp-block-woocommerce-checkout .wc-block-components-payment-methods,
body.gfc-site .wc-block-components-payment-methods {
    background: #1a2026;
    color: #e9e7e0;
    border-color: #2c343c;
    border-radius: 10px;
}
body.gfc-site .wc-block-components-order-summary {
    color: #e9e7e0;
}
/* coupons / prompts */
body.gfc-site .wc-block-components-totals-coupon-link,
body.gfc-site .wc-block-components-attention {
    color: #8fb8e8;
}
/* recent/new product blocks inside empty cart & cross-sells */
body.gfc-site .wc-block-grid__product,
body.gfc-site .wc-block-grid ul.wc-block-grid__products li.product {
    background: #12161a;
    color: #f2f0ea;
    border-color: #2c343c;
}
body.gfc-site .wc-block-grid__product-title,
body.gfc-site .wc-block-grid__product-title a,
body.gfc-site .wc-block-grid__product .wc-block-grid__product-title,
body.gfc-site .wc-block-grid__product .wc-block-grid__product-onsale {
    color: #f2f0ea;
}
body.gfc-site .wc-block-grid__product .wc-block-grid__product-price,
body.gfc-site .wc-block-grid__product-price {
    color: #cfd6cf;
}
body.gfc-site .wc-block-grid__product .wc-block-grid__product-add-to-cart .wp-block-button__link,
body.gfc-site .wc-block-grid__product-add-to-cart .wp-block-button__link,
body.gfc-site .wc-block-grid__product .wp-block-button__link {
    background: #a8434b;
    color: #ffffff;
}
/* add-to-cart feedback notices (notices / messages) */
body.gfc-site .woocommerce .woocommerce-notices-wrapper .woocommerce-message,
body.gfc-site .woocommerce .woocommerce-notices-wrapper .woocommerce-info,
body.gfc-site .woocommerce .woocommerce-notices-wrapper .woocommerce-error,
body.gfc-site .wc-block-cart .wc-block-components-notice-banner {
    background: #1a2026;
    color: #e9e7e0;
    border-color: #2c343c;
}
body.gfc-site .wc-block-components-notice-banner__content {
    color: #e9e7e0;
}
body.gfc-site .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content {
    color: #f0a8a0;
}

/* ---- FAQ page (inline light styles) ---- */
body.gfc-site .gfc-faq-list {
    border-top-color: #2c343c;
}
body.gfc-site .gfc-faq-item {
    border-bottom-color: #2c343c;
    background: rgba(26, 32, 38, 0.6) !important;
}
body.gfc-site .gfc-faq-item summary {
    color: #f2f0ea;
}
body.gfc-site .gfc-faq-item summary::after {
    border-color: #f2f0ea;
    color: #f2f0ea;
}
body.gfc-site .gfc-faq-item[open] summary {
    color: #f08a80;
}
body.gfc-site .gfc-faq-item[open] summary::after {
    background: #f2f0ea;
    color: #12161a;
}
body.gfc-site .gfc-faq-item summary:focus-visible {
    outline-color: #f08a80;
}
body.gfc-site .gfc-faq-answer {
    color: #c9d0d6;
}
body.gfc-site .gfc-faq-answer a {
    color: #8fb8e8;
}

/* ---- generic content / legal pages (about, contact, privacy, returns) ---- */
body.gfc-site .gfc-entry-content,
body.gfc-site .gfc-generic-content {
    color: #c9d0d6;
}
body.gfc-site .gfc-legal-page .gfc-entry-content {
    background: transparent;
    color: #c9d0d6;
}
body.gfc-site .gfc-legal-page .gfc-entry-content > p:first-child {
    color: #9aa39b;
}
body.gfc-site .gfc-entry-content a,
body.gfc-site .gfc-legal-page .gfc-entry-content a {
    color: #8fb8e8;
}
body.gfc-site .gfc-entry-content h1,
body.gfc-site .gfc-entry-content h2,
body.gfc-site .gfc-entry-content h3,
body.gfc-site .gfc-legal-page .gfc-entry-content h2 {
    color: #f2f0ea;
}
body.gfc-site .gfc-legal-page .gfc-entry-content ul,
body.gfc-site .gfc-legal-page .gfc-entry-content ol {
    color: #c9d0d6;
}
body.gfc-site .gfc-entry-content li,
body.gfc-site .gfc-legal-page .gfc-entry-content li {
    color: #c9d0d6;
}
body.gfc-site .gfc-entry-content strong {
    color: #f2f0ea;
}
body.gfc-site .gfc-page-content {
    color: #c9d0d6;
}
body.gfc-site .gfc-page-content p {
    color: #c9d0d6;
}
/* FAQ + generic eyebrow */
body.gfc-site .gfc-eyebrow {
    color: #d97a80;
}

/* ---- nav menu / dropdown / section heads ---- */
body.gfc-site .gfc-desktop-menu > li > a,
body.gfc-site .gfc-menu-dropdown-toggle {
    color: #f2f0ea;
}
body.gfc-site .gfc-desktop-menu > li > a:hover,
body.gfc-site .gfc-menu-dropdown-toggle:hover {
    color: #f08a80;
}
body.gfc-site .gfc-menu-dropdown-panel {
    background: #1a2026;
}
body.gfc-site .gfc-menu-dropdown-panel a {
    color: #e9e7e0;
}
body.gfc-site .gfc-menu-dropdown-panel a:hover {
    background: #12161a;
    color: #f08a80;
}
body.gfc-site .gfc-hero-lead,
body.gfc-site .gfc-hero-new .gfc-hero-lead {
    color: rgba(245, 243, 236, 0.92);
}
body.gfc-site .gfc-section-head h2 {
    color: #f2f0ea;
}
body.gfc-site .gfc-section-head p:not(.gfc-eyebrow) {
    color: #9aa39b;
}
/* footer text on dark footer band */
body.gfc-site .gfc-footer-contact {
    color: rgba(233, 231, 224, 0.75);
}
body.gfc-site .gfc-footer-contact strong {
    color: #f2f0ea;
}
body.gfc-site .gfc-footer-small {
    color: rgba(233, 231, 224, 0.65);
}

/* ---- home intro / guarantee / campaign strips ---- */
body.gfc-site .gfc-home-intro {
    background: #12161a;
    color: #c9d0d6;
}
body.gfc-site .gfc-home-intro-grid h2 {
    color: #f2f0ea;
}
body.gfc-site .gfc-home-intro-grid > p:last-child {
    color: #9aa39b;
}
body.gfc-site .gfc-custom-band,
body.gfc-site .gfc-custom-band a.gfc-button-light {
    background: transparent;
    color: #f2f0ea;
}
body.gfc-site .gfc-custom-band a.gfc-button-light {
    background: #2a3239;
    color: #f2f0ea;
    border-color: #4a534b;
}
body.gfc-site .gfc-custom-band a.gfc-button-light:hover {
    background: #343d44;
    color: #ffffff;
}
