/* ==========================================================================
   Good Girls Fashion — Main Stylesheet
   ========================================================================== */

/* Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--ggf-font-body);
    color: var(--ggf-color-text);
    background: var(--ggf-color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--ggf-transition-fast); }
button { cursor: pointer; border: none; background: transparent; font-family: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--ggf-color-primary-wash); color: var(--ggf-color-secondary); }

/* Skip Link */
.ggf-skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ggf-color-secondary);
    color: var(--ggf-color-white);
    padding: 12px 24px;
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10000;
    border-radius: var(--ggf-radius-sm);
    transition: top 0.2s;
}
.ggf-skip-link:focus {
    top: 10px;
    outline: 2px solid var(--ggf-color-primary);
    outline-offset: 2px;
}

/* Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ggf-font-heading);
    color: var(--ggf-color-secondary);
    font-weight: 400;
    line-height: 1.2;
}
h1 { font-size: var(--ggf-text-4xl); }
h2 { font-size: var(--ggf-text-3xl); }
h3 { font-size: var(--ggf-text-2xl); }
h4 { font-size: var(--ggf-text-xl); }

.ggf-section-title {
    text-align: center;
    margin-bottom: var(--ggf-space-2xl);
    font-size: var(--ggf-text-3xl);
    position: relative;
    padding-bottom: var(--ggf-space-md);
}
.ggf-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--ggf-color-primary);
}

/* Layout
   ========================================================================== */
.ggf-container { max-width: var(--ggf-container-wide); margin: 0 auto; padding: 0 20px; }
.ggf-container--wide { max-width: var(--ggf-container-max); }
.ggf-container--narrow { max-width: var(--ggf-container-narrow); }
.ggf-grid { display: grid; gap: var(--ggf-space-lg); }
.ggf-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ggf-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ggf-grid--4 { grid-template-columns: repeat(4, 1fr); }
.ggf-section { padding: var(--ggf-space-4xl) 0; }
.ggf-section--alt { background: var(--ggf-color-offwhite); }
.ggf-section--rose { background: var(--ggf-color-primary-wash); }
.ggf-section--dark { background: var(--ggf-color-secondary); color: white; }

/* Utilities
   ========================================================================== */
.ggf-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.ggf-text-center { text-align: center; }
.ggf-text-left { text-align: left; }
.ggf-text-right { text-align: right; }
.ggf-mt-sm { margin-top: var(--ggf-space-sm); }
.ggf-mt-md { margin-top: var(--ggf-space-md); }
.ggf-mt-lg { margin-top: var(--ggf-space-lg); }
.ggf-mt-xl { margin-top: var(--ggf-space-xl); }
.ggf-mt-2xl { margin-top: var(--ggf-space-2xl); }
.ggf-mb-md { margin-bottom: var(--ggf-space-md); }
.ggf-mb-lg { margin-bottom: var(--ggf-space-lg); }
.ggf-mb-xl { margin-bottom: var(--ggf-space-xl); }
.ggf-hidden { display: none; }

/* Buttons
   ========================================================================== */
.ggf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--ggf-space-sm);
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: var(--ggf-text-sm);
    font-weight: 500;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: all var(--ggf-transition-base);
    text-decoration: none;
    line-height: 1;
}
.ggf-btn--primary { background: var(--ggf-color-primary); color: white; }
.ggf-btn--primary:hover { background: var(--ggf-color-primary-dark); }
.ggf-btn--secondary { background: var(--ggf-color-secondary); color: white; }
.ggf-btn--secondary:hover { background: #2a2a2a; }
.ggf-btn--outline { background: transparent; border: 1.5px solid var(--ggf-color-secondary); color: var(--ggf-color-secondary); }
.ggf-btn--outline:hover { background: var(--ggf-color-secondary); color: white; }
.ggf-btn--outline-white { background: transparent; border: 1.5px solid white; color: white; }
.ggf-btn--outline-white:hover { background: white; color: var(--ggf-color-secondary); }
.ggf-btn--ghost { background: transparent; color: var(--ggf-color-primary); padding: 0; letter-spacing: 1px; text-transform: none; font-family: var(--ggf-font-body); font-size: var(--ggf-text-sm); }
.ggf-btn--ghost:hover { opacity: 0.7; }

/* Top Bar
   ========================================================================== */
.ggf-topbar {
    position: relative;
    z-index: 1001;
    height: var(--ggf-topbar-height);
    background: var(--ggf-color-secondary);
    color: white;
    font-size: var(--ggf-text-xs);
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ggf-topbar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.ggf-topbar__social { display: flex; gap: var(--ggf-space-md); }
.ggf-topbar__social a { color: white; opacity: 0.7; transition: opacity var(--ggf-transition-fast); }
.ggf-topbar__social a:hover { opacity: 1; }
.ggf-topbar__promo { color: rgba(255,255,255,0.9); }
.ggf-topbar__lang { display: flex; gap: var(--ggf-space-sm); }
.ggf-topbar__lang-item { color: rgba(255,255,255,0.6); cursor: pointer; text-decoration: none; }
.ggf-topbar__lang-item--active { color: white; text-decoration: underline; }

/* Language Dropdown */
.ggf-lang-dropdown { position: relative; }
.ggf-lang-dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-xs);
    letter-spacing: 1px;
    padding: 2px 0;
}
.ggf-lang-dropdown__toggle:hover { opacity: 0.8; }
.ggf-lang-dropdown__flag { display: inline-flex; line-height: 0; }
.ggf-lang-dropdown__flag svg { border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,0.2); }
.ggf-lang-dropdown__arrow {
    transition: transform var(--ggf-transition-fast);
    opacity: 0.7;
}
.ggf-lang-dropdown--open .ggf-lang-dropdown__arrow { transform: rotate(180deg); }
.ggf-lang-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: var(--ggf-radius-sm);
    box-shadow: var(--ggf-shadow-md);
    list-style: none;
    padding: var(--ggf-space-xs) 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all var(--ggf-transition-fast);
    z-index: 100;
}
.ggf-lang-dropdown--open .ggf-lang-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ggf-lang-dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: var(--ggf-color-text);
    text-decoration: none;
    font-family: var(--ggf-font-body);
    font-size: var(--ggf-text-sm);
    transition: background var(--ggf-transition-fast);
    white-space: nowrap;
}
.ggf-lang-dropdown__item:hover { background: var(--ggf-color-offwhite); }
.ggf-lang-dropdown__item--active { font-weight: 600; color: var(--ggf-color-primary); }
.ggf-lang-dropdown__item .ggf-lang-dropdown__flag svg { box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }

/* Language Switcher — Polylang */
.ggf-topbar .lang-item {
    display: inline-block;
}

.ggf-topbar .lang-item a {
    color: inherit;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
}

.ggf-topbar .lang-item a:hover {
    opacity: 1;
}

.ggf-topbar .lang-item.current-lang a,
.ggf-topbar .lang-item a[aria-current="page"] {
    opacity: 1;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Header
   ========================================================================== */
.ggf-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--ggf-color-white);
    height: var(--ggf-header-height);
    border-bottom: 1px solid var(--ggf-color-border);
    transition: all var(--ggf-transition-base);
}
.ggf-header--transparent { background: transparent; border: none; }
.ggf-header--transparent .ggf-header__icon,
.ggf-header--transparent .ggf-nav__link,
.ggf-header--transparent .ggf-header__site-name { color: white; }
.ggf-header--transparent .ggf-hamburger__line { background: white; }
.ggf-header--transparent .custom-logo { filter: brightness(0) invert(1); }
.ggf-header--transparent .ggf-header__badge { box-shadow: 0 0 0 2px rgba(0,0,0,0.2); }
.ggf-header--scrolled .custom-logo { filter: none; }
.ggf-header--scrolled {
    background: var(--ggf-color-white);
    box-shadow: var(--ggf-shadow-sm);
    border-bottom: 1px solid var(--ggf-color-border);
}
.ggf-header--scrolled .ggf-header__icon,
.ggf-header--scrolled .ggf-nav__link,
.ggf-header--scrolled .ggf-header__site-name { color: var(--ggf-color-secondary); }
.ggf-header--hidden { transform: translateY(-100%); }
.ggf-header__inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: var(--ggf-space-xl);
}
.ggf-header__logo img { max-height: 60px; width: auto; height: auto; transition: filter var(--ggf-transition-base); }
.ggf-header__site-name {
    font-family: var(--ggf-font-heading);
    font-size: var(--ggf-text-xl);
    color: var(--ggf-color-secondary);
}
.ggf-header__logo { flex-shrink: 0; }
.ggf-header__icons { display: flex; gap: var(--ggf-space-lg); align-items: center; flex-shrink: 0; }
.ggf-header__icon {
    position: relative;
    color: var(--ggf-color-secondary);
    transition: color var(--ggf-transition-fast);
    display: flex;
    align-items: center;
}
.ggf-header__icon:hover { color: var(--ggf-color-primary); }
.ggf-header__badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--ggf-color-primary);
    color: white;
    font-size: 10px;
    font-family: var(--ggf-font-nav);
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Hamburger */
.ggf-hamburger { display: none; width: 24px; height: 20px; flex-direction: column; justify-content: space-between; padding: 0; }
.ggf-hamburger__line { display: block; width: 100%; height: 2px; background: var(--ggf-color-secondary); transition: all var(--ggf-transition-base); }

/* Navigation
   ========================================================================== */
.ggf-header__nav {
    flex: 1 1 0%;
    min-width: 0;
    display: flex;
    justify-content: center;
}
.ggf-nav {
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
    align-items: center;
    flex-wrap: nowrap;
}
.ggf-nav__item { list-style: none; white-space: nowrap; }
.ggf-nav__link {
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    font-size: var(--ggf-text-sm);
    letter-spacing: 1.5px;
    font-weight: 500;
    color: var(--ggf-color-secondary);
    padding: var(--ggf-space-sm) 0;
    display: inline-block;
    position: relative;
    transition: color var(--ggf-transition-fast);
}
.ggf-nav__link:hover { color: var(--ggf-color-primary); }
.ggf-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ggf-color-primary);
    transition: width var(--ggf-transition-base);
}
.ggf-nav__link:hover::after { width: 100%; }

/* Mega Menu */
.ggf-mega-menu {
    position: fixed;
    top: var(--ggf-mega-menu-top, calc(var(--ggf-topbar-height) + var(--ggf-header-height)));
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: var(--ggf-container-wide);
    background: white;
    box-shadow: var(--ggf-shadow-lg);
    padding: var(--ggf-space-2xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--ggf-transition-base), visibility var(--ggf-transition-base);
    z-index: 100;
}
.ggf-mega-menu__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--ggf-space-xl);
    list-style: none;
}
.ggf-mega-menu__list .ggf-nav__item { white-space: normal; }
.ggf-mega-menu--open { opacity: 1; visibility: visible; }
.ggf-mega-menu__heading {
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    font-size: var(--ggf-text-xs);
    letter-spacing: 2px;
    color: var(--ggf-color-primary);
    margin-bottom: var(--ggf-space-md);
    font-weight: 600;
}
.ggf-mega-menu__link {
    display: block;
    font-size: var(--ggf-text-sm);
    padding: var(--ggf-space-xs) 0;
    color: var(--ggf-color-text-light);
    transition: color var(--ggf-transition-fast);
}
.ggf-mega-menu__link:hover { color: var(--ggf-color-primary); }
.ggf-mega-menu__sub {
    list-style: none;
    padding: var(--ggf-space-sm) 0;
}
.ggf-mega-menu__sub .ggf-nav__item { white-space: normal; }
.ggf-mega-menu__sub .ggf-nav__link {
    text-transform: none;
    letter-spacing: 0;
    font-size: var(--ggf-text-sm);
    color: var(--ggf-color-text-light);
    padding: var(--ggf-space-xs) 0;
}

/* Standard dropdown for non-mega items with children */
.ggf-nav__item--has-children:not(.has-mega-menu) > .ggf-mega-menu {
    width: 220px;
    max-width: 220px;
    left: var(--ggf-dropdown-left, 0);
    transform: none;
    padding: var(--ggf-space-md);
}
.ggf-nav__item--has-children:not(.has-mega-menu) > .ggf-mega-menu .ggf-mega-menu__list {
    display: block;
}
.ggf-nav__item--has-children:not(.has-mega-menu) > .ggf-mega-menu .ggf-nav__link {
    text-transform: none;
    letter-spacing: 0;
    font-size: var(--ggf-text-sm);
    color: var(--ggf-color-text-light);
    display: block;
    padding: var(--ggf-space-xs) 0;
}

/* Hero Slider
   ========================================================================== */
.ggf-hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background: var(--ggf-color-secondary);
}
/* When the header is present, extend the hero underneath it */
body:has(.ggf-header) .ggf-hero {
    height: calc(85vh + var(--ggf-header-height));
    margin-top: calc(-1 * var(--ggf-header-height));
}
.ggf-hero__slide {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    overflow: hidden;
    background-color: var(--ggf-color-secondary);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}
.ggf-hero__slide--active { opacity: 1; visibility: visible; z-index: 2; }
/* Gradient fallbacks shown while <img> loads or when no image is set */
.ggf-hero__slide:nth-child(1) { background-image: linear-gradient(135deg, #3D3D3D 0%, #1a1a2e 50%, #B76E79 100%); }
.ggf-hero__slide:nth-child(2) { background-image: linear-gradient(135deg, #2D2D2D 0%, #4a3040 50%, #C9A96E 100%); }
.ggf-hero__slide:nth-child(3) { background-image: linear-gradient(135deg, #9A5660 0%, #3D3D3D 50%, #1a1a2e 100%); }
/* Slide image — real <img> tag for WebView compatibility */
.ggf-hero__picture {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    display: block;
    z-index: 0;
}
.ggf-hero__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ggf-hero__overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 25%, transparent 40%),
        linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 60%);
}
.ggf-hero__content {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
    color: white;
    z-index: 2;
}
body:has(.ggf-header) .ggf-hero__content {
    top: calc(50% + var(--ggf-header-height) / 2);
}
.ggf-hero__subtitle {
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: var(--ggf-text-sm);
    margin-bottom: var(--ggf-space-md);
    display: block;
}
.ggf-hero__title {
    font-size: var(--ggf-text-5xl);
    color: white;
    line-height: 1.1;
    margin-bottom: var(--ggf-space-xl);
}
.ggf-hero__pagination {
    position: absolute;
    bottom: var(--ggf-space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--ggf-space-sm);
    z-index: 10;
}
.ggf-hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all var(--ggf-transition-base);
}
.ggf-hero__dot--active { background: white; transform: scale(1.3); }
.ggf-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border: none;
    cursor: pointer;
    transition: background var(--ggf-transition-fast);
    backdrop-filter: blur(4px);
}
body:has(.ggf-header) .ggf-hero__arrow {
    top: calc(50% + var(--ggf-header-height) / 2);
}
.ggf-hero__arrow:hover { background: rgba(255,255,255,0.3); }
.ggf-hero__arrow--prev { left: var(--ggf-space-lg); }
.ggf-hero__arrow--next { right: var(--ggf-space-lg); }

/* Trust Badges
   ========================================================================== */
.ggf-trust { background: var(--ggf-color-offwhite); padding: var(--ggf-space-xl) 0; border-bottom: 1px solid var(--ggf-color-border); }
.ggf-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--ggf-space-lg); text-align: center; }
.ggf-trust__item { display: flex; flex-direction: column; align-items: center; gap: var(--ggf-space-sm); }
.ggf-trust__icon { color: var(--ggf-color-primary); }
.ggf-trust__title {
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    font-size: var(--ggf-text-xs);
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--ggf-color-secondary);
}
.ggf-trust__text { font-size: var(--ggf-text-xs); color: var(--ggf-color-text-light); }

/* Product Card
   ========================================================================== */
.ggf-product-card { position: relative; }
.ggf-product-card__image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--ggf-color-offwhite);
}
.ggf-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ggf-transition-slow);
}
.ggf-product-card:hover .ggf-product-card__image > a > img:first-child { transform: scale(1.05); }
.ggf-product-card__image-secondary {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--ggf-transition-base);
}
.ggf-product-card:hover .ggf-product-card__image-secondary { opacity: 1; }
.ggf-product-card__overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--ggf-space-md);
    opacity: 0;
    transition: opacity var(--ggf-transition-base);
}
.ggf-product-card:hover .ggf-product-card__overlay { opacity: 1; }
.ggf-product-card__action {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ggf-color-secondary);
    transition: all var(--ggf-transition-base);
    transform: translateY(10px);
    opacity: 0;
    border: none;
    cursor: pointer;
}
.ggf-product-card:hover .ggf-product-card__action { transform: translateY(0); opacity: 1; }
.ggf-product-card:hover .ggf-product-card__action:nth-child(2) { transition-delay: 50ms; }
.ggf-product-card__action:hover { background: var(--ggf-color-primary); color: white; }

.ggf-product-card__badge {
    position: absolute;
    top: var(--ggf-space-md);
    left: var(--ggf-space-md);
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
    padding: 4px 10px;
    z-index: 2;
    font-weight: 600;
}
.ggf-product-card__badge--new { background: var(--ggf-color-primary); color: white; }
.ggf-product-card__badge--sale { background: var(--ggf-color-secondary); color: white; }

.ggf-product-card__wishlist {
    position: absolute;
    top: var(--ggf-space-md);
    right: var(--ggf-space-md);
    z-index: 2;
    background: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ggf-shadow-sm);
    cursor: pointer;
    transition: all var(--ggf-transition-base);
    opacity: 0;
    border: none;
}
.ggf-product-card:hover .ggf-product-card__wishlist { opacity: 1; }
.ggf-product-card__wishlist--active svg { fill: var(--ggf-color-primary); stroke: var(--ggf-color-primary); }
.ggf-product-card__wishlist:hover { transform: scale(1.1); }

.ggf-product-card__info { padding: var(--ggf-space-md) 0 0; }
.ggf-product-card__title {
    font-family: var(--ggf-font-body);
    font-size: var(--ggf-text-sm);
    font-weight: 400;
    color: var(--ggf-color-secondary);
    margin-bottom: var(--ggf-space-xs);
}
.ggf-product-card__price {
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-sm);
    font-weight: 600;
}
.ggf-product-card__price ins { color: var(--ggf-color-primary); text-decoration: none; }
.ggf-product-card__price del { color: var(--ggf-color-text-light); font-weight: 400; font-size: var(--ggf-text-xs); }
.ggf-product-card__swatches { display: flex; gap: 6px; margin-top: var(--ggf-space-xs); }
.ggf-product-card__swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid var(--ggf-color-border);
}

/* Product Carousel */
.ggf-product-carousel { position: relative; }
.ggf-product-carousel__arrow {
    position: absolute;
    top: 35%;
    z-index: 10;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--ggf-shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ggf-color-secondary);
    border: none;
    cursor: pointer;
    transition: all var(--ggf-transition-fast);
}
.ggf-product-carousel__arrow:hover { background: var(--ggf-color-primary); color: white; }
.ggf-product-carousel__arrow--prev { left: -22px; }
.ggf-product-carousel__arrow--next { right: -22px; }

/* Category Grid
   ========================================================================== */
.ggf-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: var(--ggf-space-md);
}
.ggf-categories__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--ggf-radius-md);
    display: block;
}
.ggf-categories__item--large { grid-row: span 2; }
.ggf-categories__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ggf-transition-slow);
}
.ggf-categories__item:hover img { transform: scale(1.08); }
.ggf-categories__overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    transition: all var(--ggf-transition-base);
}
.ggf-categories__item:hover .ggf-categories__overlay { background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%); }
.ggf-categories__info {
    position: absolute;
    bottom: var(--ggf-space-xl);
    left: var(--ggf-space-xl);
    color: white;
}
.ggf-categories__name {
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: var(--ggf-text-sm);
    font-weight: 500;
    display: block;
}
.ggf-categories__count {
    font-size: var(--ggf-text-xs);
    opacity: 0.8;
    margin-top: 4px;
    display: block;
}

/* Promo Banner
   ========================================================================== */
.ggf-promo {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, var(--ggf-color-secondary) 0%, #1a1a2e 50%, var(--ggf-color-primary-dark) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.ggf-promo__overlay { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: var(--ggf-color-overlay); }
.ggf-promo__content { position: relative; z-index: 2; max-width: 600px; padding: var(--ggf-space-xl); }
.ggf-promo__subtitle {
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: var(--ggf-text-sm);
    margin-bottom: var(--ggf-space-md);
    display: block;
}
.ggf-promo__title {
    font-size: var(--ggf-text-4xl);
    color: white;
    margin-bottom: var(--ggf-space-lg);
}
.ggf-promo__text { margin-bottom: var(--ggf-space-xl); opacity: 0.9; font-size: var(--ggf-text-lg); }

/* Testimonials
   ========================================================================== */
.ggf-testimonials__slider { position: relative; max-width: 700px; margin: 0 auto; }
.ggf-testimonials__card {
    display: none;
    background: white;
    padding: var(--ggf-space-2xl);
    box-shadow: var(--ggf-shadow-md);
    border-radius: var(--ggf-radius-md);
    text-align: center;
}
.ggf-testimonials__card--active { display: block; }
.ggf-testimonials__stars { color: var(--ggf-color-accent); margin-bottom: var(--ggf-space-md); display: flex; justify-content: center; gap: 4px; }
.ggf-testimonials__quote {
    font-style: italic;
    font-size: var(--ggf-text-lg);
    line-height: 1.8;
    color: var(--ggf-color-secondary);
    margin-bottom: var(--ggf-space-lg);
}
.ggf-testimonials__name {
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    font-size: var(--ggf-text-xs);
    letter-spacing: 2px;
    color: var(--ggf-color-secondary);
    display: block;
    font-weight: 600;
}
.ggf-testimonials__verified {
    font-size: var(--ggf-text-xs);
    color: var(--ggf-color-success);
    margin-top: var(--ggf-space-xs);
    display: block;
}
.ggf-testimonials__dots { display: flex; justify-content: center; gap: var(--ggf-space-sm); margin-top: var(--ggf-space-lg); }
.ggf-testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ggf-color-border);
    border: none;
    cursor: pointer;
    transition: all var(--ggf-transition-base);
}
.ggf-testimonials__dot--active { background: var(--ggf-color-primary); }

/* Instagram
   ========================================================================== */
.ggf-instagram__handle {
    font-family: var(--ggf-font-nav);
    color: var(--ggf-color-primary);
    font-size: var(--ggf-text-lg);
}
.ggf-instagram__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; margin-top: var(--ggf-space-xl); }
.ggf-instagram__item { aspect-ratio: 1; overflow: hidden; position: relative; display: block; }
.ggf-instagram__placeholder { width: 100%; height: 100%; background: var(--ggf-color-offwhite); }
.ggf-instagram__img { width: 100%; height: 100%; object-fit: cover; }
.ggf-instagram__hover {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(183,110,121,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity var(--ggf-transition-base);
}
.ggf-instagram__item:hover .ggf-instagram__hover { opacity: 1; }

/* Newsletter
   ========================================================================== */
.ggf-newsletter__title { font-size: var(--ggf-text-3xl); margin-bottom: var(--ggf-space-md); }
.ggf-newsletter__text { color: var(--ggf-color-text-light); margin-bottom: var(--ggf-space-lg); max-width: 500px; margin-left: auto; margin-right: auto; }
.ggf-newsletter__form { display: flex; max-width: 500px; margin: 0 auto; }
.ggf-newsletter__input {
    flex: 1;
    padding: 14px 20px;
    border: 1.5px solid var(--ggf-color-border);
    border-right: none;
    font-family: var(--ggf-font-body);
    font-size: var(--ggf-text-base);
    outline: none;
    transition: border-color var(--ggf-transition-fast);
}
.ggf-newsletter__input:focus { border-color: var(--ggf-color-primary); }
.ggf-newsletter__submit { white-space: nowrap; }
.ggf-newsletter__submit:disabled { opacity: 0.6; cursor: wait; }
.ggf-newsletter__message { margin-top: var(--ggf-space-md); font-size: var(--ggf-text-sm); }
.ggf-newsletter__message--ok { color: var(--ggf-color-success); }
.ggf-newsletter__message--error { color: var(--ggf-color-error); }
.ggf-newsletter__privacy { font-size: var(--ggf-text-xs); color: var(--ggf-color-text-light); margin-top: var(--ggf-space-md); }

/* Footer
   ========================================================================== */
.ggf-footer { background: var(--ggf-color-secondary); color: rgba(255,255,255,0.8); padding-top: var(--ggf-space-4xl); }
.ggf-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--ggf-space-2xl); }
.ggf-footer__logo-img { max-height: 40px; filter: brightness(0) invert(1); margin-bottom: var(--ggf-space-md); }
.ggf-footer__logo-text { font-family: var(--ggf-font-heading); font-size: var(--ggf-text-xl); color: white; display: block; margin-bottom: var(--ggf-space-md); }
.ggf-footer__tagline { font-size: var(--ggf-text-sm); margin-bottom: var(--ggf-space-lg); line-height: 1.8; }
.ggf-footer__heading {
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    font-size: var(--ggf-text-xs);
    letter-spacing: 2px;
    color: white;
    margin-bottom: var(--ggf-space-lg);
    font-weight: 600;
}
.ggf-footer a { color: rgba(255,255,255,0.7); transition: color var(--ggf-transition-fast); }
.ggf-footer a:hover { color: var(--ggf-color-primary-light); }
.ggf-footer__widget ul,
.ggf-footer__links { list-style: none; padding: 0; margin: 0; }
.ggf-footer__widget li,
.ggf-footer__links li { margin-bottom: var(--ggf-space-sm); }
.ggf-footer__social { display: flex; gap: var(--ggf-space-md); margin-top: var(--ggf-space-lg); }
.ggf-footer__social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ggf-transition-fast);
}
.ggf-footer__social a:hover { border-color: var(--ggf-color-primary-light); color: var(--ggf-color-primary-light); }
.ggf-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: var(--ggf-space-2xl);
    padding: var(--ggf-space-lg) 0;
}
.ggf-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: var(--ggf-text-xs); }
.ggf-footer__payments { display: flex; gap: var(--ggf-space-md); opacity: 0.6; }

/* Mobile Bottom Bar
   ========================================================================== */
.ggf-mobile-bar { display: none; }

/* Back to Top
   ========================================================================== */
.ggf-back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--ggf-color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ggf-shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--ggf-transition-base);
    z-index: 50;
    border: none;
    cursor: pointer;
}
.ggf-back-to-top--visible { opacity: 1; visibility: visible; }
.ggf-back-to-top:hover { transform: translateY(-3px); }

/* Cart Slide-in
   ========================================================================== */
.ggf-cart-overlay {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: var(--ggf-color-overlay);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ggf-transition-base);
}
.ggf-cart-overlay--open { opacity: 1; visibility: visible; }
.ggf-cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: white;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform var(--ggf-transition-base);
    box-shadow: var(--ggf-shadow-xl);
    display: flex;
    flex-direction: column;
}
.ggf-cart-panel--open { transform: translateX(0); }
.ggf-cart-panel__header {
    padding: var(--ggf-space-lg) var(--ggf-space-xl);
    border-bottom: 1px solid var(--ggf-color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ggf-cart-panel__header h3 { font-size: var(--ggf-text-lg); }
.ggf-cart-panel__close { color: var(--ggf-color-text-light); }
.ggf-cart-panel__close:hover { color: var(--ggf-color-secondary); }
.ggf-cart-panel__items { flex: 1; overflow-y: auto; padding: var(--ggf-space-lg) var(--ggf-space-xl); }
.ggf-cart-panel__footer {
    padding: var(--ggf-space-lg) var(--ggf-space-xl);
    border-top: 1px solid var(--ggf-color-border);
    display: flex;
    flex-direction: column;
    gap: var(--ggf-space-sm);
}
.ggf-cart-panel__subtotal { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: var(--ggf-space-sm); }
.ggf-cart-panel__footer .ggf-btn { width: 100%; text-align: center; }

/* Modals
   ========================================================================== */
.ggf-modal {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ggf-transition-base);
}
.ggf-modal--open { opacity: 1; visibility: visible; }
.ggf-modal__backdrop { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: var(--ggf-color-overlay); }
.ggf-modal__content {
    position: relative;
    background: white;
    border-radius: var(--ggf-radius-md);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--ggf-shadow-xl);
}
.ggf-modal__close {
    position: absolute;
    top: var(--ggf-space-md);
    right: var(--ggf-space-md);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ggf-color-text-light);
    z-index: 10;
    border: none;
    background: transparent;
    cursor: pointer;
}
.ggf-modal__close:hover { color: var(--ggf-color-secondary); }
.ggf-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--ggf-color-border);
    border-top-color: var(--ggf-color-primary);
    border-radius: 50%;
    animation: ggf-spin 0.8s linear infinite;
    margin: var(--ggf-space-3xl) auto;
}
@keyframes ggf-spin { to { transform: rotate(360deg); } }

/* Search Overlay
   ========================================================================== */
.ggf-search-overlay {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(255,255,255,0.98);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ggf-transition-base);
}
.ggf-search-overlay--open { opacity: 1; visibility: visible; }
.ggf-search-overlay__close { position: absolute; top: var(--ggf-space-xl); right: var(--ggf-space-xl); color: var(--ggf-color-text-light); }
.ggf-search-overlay__input {
    border: none;
    border-bottom: 2px solid var(--ggf-color-border);
    font-family: var(--ggf-font-heading);
    font-size: var(--ggf-text-3xl);
    text-align: center;
    padding: var(--ggf-space-md);
    width: 80%;
    max-width: 600px;
    outline: none;
    background: transparent;
    transition: border-color var(--ggf-transition-fast);
}
.ggf-search-overlay__input:focus { border-color: var(--ggf-color-primary); }
.ggf-search-overlay__input::placeholder { color: var(--ggf-color-text-light); }
.ggf-search-overlay__form { position: relative; display: flex; align-items: center; width: 80%; max-width: 600px; }
.ggf-search-overlay__form::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat center;
    pointer-events: none;
}

/* Search suggestions (overlay) */
.ggf-search-suggestions {
    width: 100%;
    max-width: 600px;
    margin-top: var(--ggf-space-2xl);
    text-align: center;
    transition: opacity var(--ggf-transition-base);
}
.ggf-search-suggestions--hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.ggf-search-suggestions__label {
    display: block;
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ggf-color-text-light);
    margin-bottom: var(--ggf-space-md);
}
.ggf-search-suggestions__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--ggf-space-sm); }
.ggf-search-suggestions__tag {
    display: inline-block;
    padding: 8px 20px;
    border: 1.5px solid var(--ggf-color-border);
    border-radius: 30px;
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-sm);
    color: var(--ggf-color-text);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all var(--ggf-transition-fast);
}
.ggf-search-suggestions__tag:hover {
    border-color: var(--ggf-color-primary);
    color: var(--ggf-color-primary);
    background: rgba(183, 110, 121, 0.05);
}

/* Breadcrumb */
.ggf-breadcrumb {
    padding: var(--ggf-space-md) 0;
    background: var(--ggf-color-offwhite);
    font-family: var(--ggf-font-body);
    font-size: var(--ggf-text-sm);
    color: var(--ggf-color-text-light);
}
.ggf-breadcrumb a {
    color: var(--ggf-color-text-light);
}
.ggf-breadcrumb a:hover {
    color: var(--ggf-color-primary);
}
.ggf-breadcrumb__sep {
    margin: 0 var(--ggf-space-xs);
    opacity: 0.5;
}

/* Live Search Results */
.ggf-live-search {
    width: 100%;
    max-width: 600px;
    margin: var(--ggf-space-lg) auto 0;
}
.ggf-live-search__loading {
    display: flex;
    justify-content: center;
    padding: var(--ggf-space-lg);
}
.ggf-live-search__results {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ggf-live-search__item {
    border-bottom: 1px solid var(--ggf-color-border);
}
.ggf-live-search__link {
    display: flex;
    align-items: center;
    gap: var(--ggf-space-md);
    padding: var(--ggf-space-sm) 0;
    color: var(--ggf-color-text);
    text-decoration: none;
    transition: opacity var(--ggf-transition-fast);
}
.ggf-live-search__link:hover {
    opacity: 0.7;
}
.ggf-live-search__image {
    width: 60px;
    height: 60px;
    border-radius: var(--ggf-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--ggf-color-offwhite);
}
.ggf-live-search__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ggf-live-search__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ggf-live-search__name {
    font-family: var(--ggf-font-heading);
    font-size: var(--ggf-text-base);
}
.ggf-live-search__price {
    font-size: var(--ggf-text-sm);
    opacity: 0.8;
}
.ggf-live-search__all {
    display: block;
    text-align: center;
    padding: var(--ggf-space-md);
    color: var(--ggf-color-primary);
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ggf-live-search__empty {
    text-align: center;
    padding: var(--ggf-space-lg);
    color: var(--ggf-color-text-light);
    font-style: italic;
}

/* Mobile Menu
   ========================================================================== */
.ggf-mobile-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: white;
    z-index: 10001;
    transform: translateX(-100%);
    transition: transform var(--ggf-transition-base);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.ggf-mobile-menu--open { transform: translateX(0); }
.ggf-mobile-menu__header {
    padding: var(--ggf-space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--ggf-color-border);
}
.ggf-mobile-menu__list { list-style: none; }
.ggf-mobile-menu__list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px var(--ggf-space-lg);
    border-bottom: 1px solid var(--ggf-color-border);
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    font-size: var(--ggf-text-sm);
    letter-spacing: 1.5px;
}
.ggf-mobile-menu__list .sub-menu { padding-left: var(--ggf-space-lg); display: none; }
.ggf-mobile-menu__list .sub-menu.is-open { display: block; }
.ggf-mobile-menu__list .sub-menu a { font-size: var(--ggf-text-xs); text-transform: none; letter-spacing: 0; }

/* Mobile Menu — Language Selector */
.ggf-mobile-menu__lang {
    margin-top: auto;
    padding: var(--ggf-space-lg);
    border-top: 1px solid var(--ggf-color-border);
}
.ggf-mobile-lang {
    display: flex;
    gap: var(--ggf-space-sm);
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}
.ggf-mobile-lang li,
.ggf-mobile-lang .lang-item {
    display: inline-block;
}
.ggf-mobile-lang a {
    display: block;
    padding: 8px 16px;
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-sm);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ggf-color-text-light);
    border: 1px solid var(--ggf-color-border);
    border-radius: var(--ggf-radius-sm);
    transition: all var(--ggf-transition-fast);
}
.ggf-mobile-lang a:hover {
    color: var(--ggf-color-primary);
    border-color: var(--ggf-color-primary);
}
.ggf-mobile-lang .ggf-mobile-lang__item--active a,
.ggf-mobile-lang .current-lang a {
    color: var(--ggf-color-white);
    background: var(--ggf-color-primary);
    border-color: var(--ggf-color-primary);
    font-weight: 700;
}

/* Accordion
   ========================================================================== */
.ggf-accordion { border-top: 1px solid var(--ggf-color-border); margin-top: var(--ggf-space-xl); }
.ggf-accordion__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--ggf-space-lg) 0;
    border-bottom: 1px solid var(--ggf-color-border);
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    font-size: var(--ggf-text-xs);
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--ggf-color-secondary);
    cursor: pointer;
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
}
.ggf-accordion__header svg { transition: transform var(--ggf-transition-base); }
.ggf-accordion__header[aria-expanded="true"] svg { transform: rotate(180deg); }
.ggf-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--ggf-transition-base);
    padding: 0;
}
.ggf-accordion__content.is-open { max-height: 500px; padding: var(--ggf-space-md) 0 var(--ggf-space-lg); }

/* Quantity
   ========================================================================== */
.ggf-quantity { display: inline-flex; align-items: center; border: 1.5px solid var(--ggf-color-border); }
.ggf-quantity__btn {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-lg);
    color: var(--ggf-color-secondary);
}
.ggf-quantity__btn:hover { background: var(--ggf-color-offwhite); }
.ggf-quantity__input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--ggf-color-border);
    border-right: 1px solid var(--ggf-color-border);
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-base);
    height: 44px;
    -moz-appearance: textfield;
}
.ggf-quantity__input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Size Guide
   ========================================================================== */
.ggf-size-guide { padding: var(--ggf-space-2xl); }
.ggf-size-guide__title { margin-bottom: var(--ggf-space-lg); text-align: center; }
.ggf-size-guide__tabs { display: flex; border-bottom: 1px solid var(--ggf-color-border); margin-bottom: var(--ggf-space-xl); }
.ggf-size-guide__tab {
    padding: var(--ggf-space-md) var(--ggf-space-xl);
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    font-size: var(--ggf-text-xs);
    letter-spacing: 1.5px;
    cursor: pointer;
    border: none;
    background: transparent;
    border-bottom: 2px solid transparent;
    color: var(--ggf-color-text-light);
    transition: all var(--ggf-transition-fast);
}
.ggf-size-guide__tab--active { border-bottom-color: var(--ggf-color-primary); color: var(--ggf-color-primary); }
.ggf-size-guide__panel { display: none; }
.ggf-size-guide__panel--active { display: block; }
.ggf-size-guide__table { width: 100%; border-collapse: collapse; }
.ggf-size-guide__table th {
    background: var(--ggf-color-offwhite);
    padding: 12px;
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
}
.ggf-size-guide__table td { padding: 12px; border-bottom: 1px solid var(--ggf-color-border); text-align: center; }
.ggf-size-guide__step { margin-bottom: var(--ggf-space-lg); }
.ggf-size-guide__step h4 { margin-bottom: var(--ggf-space-xs); }

/* Search Form
   ========================================================================== */
.ggf-search-form { display: flex; max-width: 500px; margin: var(--ggf-space-lg) auto; }
.ggf-search-form__input {
    flex: 1;
    padding: 14px 20px;
    border: 1.5px solid var(--ggf-color-border);
    border-right: none;
    border-radius: var(--ggf-radius-sm) 0 0 var(--ggf-radius-sm);
    font-family: var(--ggf-font-body);
    font-size: var(--ggf-text-base);
    outline: none;
    background: var(--ggf-color-offwhite);
    transition: border-color var(--ggf-transition-fast);
}
.ggf-search-form__input:focus { border-color: var(--ggf-color-primary); }
.ggf-search-form__submit {
    padding: 14px 20px;
    background: var(--ggf-color-secondary);
    color: white;
    border: 1.5px solid var(--ggf-color-secondary);
    border-radius: 0 var(--ggf-radius-sm) var(--ggf-radius-sm) 0;
    cursor: pointer;
    transition: background var(--ggf-transition-fast);
}
.ggf-search-form__submit:hover { background: var(--ggf-color-primary); border-color: var(--ggf-color-primary); }

/* Search Results Page
   ========================================================================== */
.ggf-search-results { padding: var(--ggf-space-xl) 0 var(--ggf-space-4xl); }
.ggf-search-results__header { text-align: center; margin-bottom: var(--ggf-space-3xl); }
.ggf-search-results__title {
    font-family: var(--ggf-font-heading);
    font-size: var(--ggf-text-3xl);
    margin-bottom: var(--ggf-space-sm);
}
.ggf-search-results__title span { color: var(--ggf-color-primary); }
.ggf-search-results__count {
    color: var(--ggf-color-text-light);
    font-size: var(--ggf-text-sm);
    margin-bottom: var(--ggf-space-lg);
}
.ggf-search-results__refine { margin-top: var(--ggf-space-lg); }
.ggf-search-results__refine .ggf-search-form { margin: 0 auto; }
.ggf-search-results__section { margin-bottom: var(--ggf-space-3xl); }
.ggf-search-results__section-title {
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ggf-color-text-light);
    padding-bottom: var(--ggf-space-md);
    border-bottom: 1px solid var(--ggf-color-border);
    margin-bottom: var(--ggf-space-xl);
}

/* Search empty state */
.ggf-search-empty {
    text-align: center;
    padding: var(--ggf-space-4xl) 0;
    max-width: 500px;
    margin: 0 auto;
}
.ggf-search-empty__icon {
    color: var(--ggf-color-primary-light);
    margin-bottom: var(--ggf-space-xl);
}
.ggf-search-empty__title {
    font-family: var(--ggf-font-heading);
    font-size: var(--ggf-text-2xl);
    margin-bottom: var(--ggf-space-sm);
}
.ggf-search-empty__text {
    color: var(--ggf-color-text-light);
    margin-bottom: var(--ggf-space-2xl);
    line-height: 1.7;
}
.ggf-search-empty__suggestions { margin-top: var(--ggf-space-2xl); }
.ggf-search-empty__suggestions-title {
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ggf-color-text-light);
    margin-bottom: var(--ggf-space-md);
}
.ggf-search-empty__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--ggf-space-sm); }
.ggf-search-empty__tag {
    display: inline-flex;
    align-items: center;
    gap: var(--ggf-space-xs);
    padding: 10px 20px;
    border: 1.5px solid var(--ggf-color-border);
    border-radius: 30px;
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-sm);
    color: var(--ggf-color-text);
    text-decoration: none;
    transition: all var(--ggf-transition-fast);
}
.ggf-search-empty__tag:hover {
    border-color: var(--ggf-color-primary);
    color: var(--ggf-color-primary);
}
.ggf-search-empty__tag-count {
    font-size: var(--ggf-text-xs);
    color: var(--ggf-color-text-light);
}

/* 404
   ========================================================================== */
.ggf-404 { padding: var(--ggf-space-4xl) 0; min-height: 60vh; display: flex; align-items: center; }
.ggf-404__number {
    font-family: var(--ggf-font-heading);
    font-size: 120px;
    color: var(--ggf-color-primary-light);
    line-height: 1;
    display: block;
    margin-bottom: var(--ggf-space-lg);
}
.ggf-404__title { margin-bottom: var(--ggf-space-md); }
.ggf-404__text { color: var(--ggf-color-text-light); margin-bottom: var(--ggf-space-xl); }

/* Blog
   ========================================================================== */
.ggf-page-title {
    font-size: var(--ggf-text-3xl);
    margin-bottom: var(--ggf-space-2xl);
    padding-top: var(--ggf-space-2xl);
}
.ggf-post-card {
    overflow: hidden;
    background: var(--ggf-color-white);
    border-radius: var(--ggf-radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ggf-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.ggf-post-card__image { display: block; aspect-ratio: 16/10; overflow: hidden; border-radius: var(--ggf-radius-md) var(--ggf-radius-md) 0 0; }
.ggf-post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ggf-transition-slow); }
.ggf-post-card:hover .ggf-post-card__image img { transform: scale(1.05); }
.ggf-post-card__content { padding: var(--ggf-space-lg); }
.ggf-post-card__category {
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    font-size: var(--ggf-text-xs);
    letter-spacing: 1.5px;
    color: var(--ggf-color-primary);
    display: inline-block;
    margin-bottom: var(--ggf-space-sm);
}
.ggf-post-card__title { font-size: var(--ggf-text-xl); margin-bottom: var(--ggf-space-sm); }
.ggf-post-card__title a:hover { color: var(--ggf-color-primary); }
.ggf-post-card__excerpt { color: var(--ggf-color-text-light); font-size: var(--ggf-text-sm); line-height: 1.7; margin-bottom: var(--ggf-space-sm); }
.ggf-post-card__meta { font-size: var(--ggf-text-xs); color: var(--ggf-color-text-light); display: flex; align-items: center; gap: var(--ggf-space-xs); }
.ggf-post-card__dot { color: var(--ggf-color-border); }
.ggf-post-card__reading-time { color: var(--ggf-color-text-light); }
.ggf-post-card--compact .ggf-post-card__title { font-size: var(--ggf-text-base); }

/* Post Format Badge */
.ggf-post-card__format-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--ggf-font-nav);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ggf-color-primary);
    margin-bottom: var(--ggf-space-xs);
}

/* Gallery Format */
.ggf-post-card__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    border-radius: var(--ggf-radius-sm);
    overflow: hidden;
}
.ggf-post-card__gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.ggf-post-card__gallery-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ggf-color-secondary);
    color: white;
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-lg);
    text-decoration: none;
}

/* Video Format */
.ggf-post-card__video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--ggf-radius-sm);
}
.ggf-post-card__video iframe,
.ggf-post-card__video video,
.ggf-post-card__video embed,
.ggf-post-card__video object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ggf-post-card__image--play {
    position: relative;
}
.ggf-post-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ggf-color-secondary);
    transition: all var(--ggf-transition-fast);
}
.ggf-post-card__image--play:hover .ggf-post-card__play {
    background: var(--ggf-color-primary);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Quote Format */
.ggf-post-card__quote-block {
    display: block;
    position: relative;
    padding: var(--ggf-space-xl) var(--ggf-space-lg);
    background: linear-gradient(135deg, var(--ggf-color-secondary), #2a2a2a);
    color: white;
    border-radius: var(--ggf-radius-sm);
    text-decoration: none;
    overflow: hidden;
}
.ggf-post-card__quote-mark {
    position: absolute;
    top: var(--ggf-space-md);
    right: var(--ggf-space-md);
    color: white;
}
.ggf-post-card__quote-text {
    font-family: var(--ggf-font-heading);
    font-size: var(--ggf-text-xl);
    line-height: 1.4;
    margin-bottom: var(--ggf-space-md);
    font-style: italic;
}
.ggf-post-card__quote-author {
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-xs);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    font-style: normal;
}

/* Single Post */
.ggf-article__hero { margin-bottom: var(--ggf-space-2xl); border-radius: var(--ggf-radius-md); overflow: hidden; max-height: 500px; }
.ggf-article__hero img { width: 100%; height: 100%; object-fit: cover; }
.ggf-article__meta {
    font-size: var(--ggf-text-sm);
    color: var(--ggf-color-text-light);
    margin-bottom: var(--ggf-space-md);
    display: flex;
    gap: var(--ggf-space-sm);
    flex-wrap: wrap;
    align-items: center;
}
.ggf-article__sep { color: var(--ggf-color-border); }
.ggf-article__reading-time { font-style: italic; }
.ggf-article__title { font-size: var(--ggf-text-4xl); margin-bottom: var(--ggf-space-2xl); }
.ggf-article__content { line-height: 1.8; }
.ggf-article__content p { margin-bottom: var(--ggf-space-lg); }
.ggf-article__content h2 {
    font-size: var(--ggf-text-2xl);
    margin: var(--ggf-space-2xl) 0 var(--ggf-space-lg);
    padding-bottom: var(--ggf-space-sm);
    border-bottom: 2px solid var(--ggf-color-primary-wash);
}
.ggf-article__content h3 {
    font-size: var(--ggf-text-xl);
    margin: var(--ggf-space-xl) 0 var(--ggf-space-md);
}
.ggf-article__content blockquote {
    margin: var(--ggf-space-xl) 0;
    padding: var(--ggf-space-lg) var(--ggf-space-xl);
    border-left: 4px solid var(--ggf-color-primary);
    background: var(--ggf-color-offwhite);
    border-radius: 0 var(--ggf-radius-sm) var(--ggf-radius-sm) 0;
    font-family: var(--ggf-font-heading);
    font-size: var(--ggf-text-lg);
    font-style: italic;
    color: var(--ggf-color-secondary);
}
.ggf-article__content blockquote p:last-child { margin-bottom: 0; }
.ggf-article__content ul,
.ggf-article__content ol {
    margin: var(--ggf-space-lg) 0;
    padding-left: var(--ggf-space-xl);
}
.ggf-article__content li {
    margin-bottom: var(--ggf-space-sm);
    line-height: 1.7;
}
.ggf-article__content img {
    border-radius: var(--ggf-radius-md);
    margin: var(--ggf-space-lg) 0;
}
.ggf-article__content a {
    color: var(--ggf-color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.ggf-article__content a:hover { color: var(--ggf-color-primary-dark); }
.ggf-article__tags { display: flex; gap: var(--ggf-space-sm); flex-wrap: wrap; margin-top: var(--ggf-space-xl); }
.ggf-article__tags a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--ggf-color-offwhite);
    font-size: var(--ggf-text-xs);
    border-radius: var(--ggf-radius-sm);
    transition: background var(--ggf-transition-fast), color var(--ggf-transition-fast);
    text-decoration: none;
}
.ggf-article__tags a:hover {
    background: var(--ggf-color-primary);
    color: var(--ggf-color-white);
}

/* ========================================
   COMMENTS SECTION
   ======================================== */

.comments-area,
.ggf-comments {
    margin-top: var(--ggf-space-3xl);
    margin-bottom: var(--ggf-space-3xl);
    padding-top: var(--ggf-space-2xl);
    border-top: 1px solid var(--ggf-color-border);
}

.comments-title,
.comment-reply-title,
.ggf-comments__title {
    font-family: var(--ggf-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--ggf-space-xl);
    color: var(--ggf-color-text);
}

.ggf-comments__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--ggf-space-2xl);
}

.ggf-comments__list .comment {
    padding: var(--ggf-space-lg) 0;
    border-bottom: 1px solid var(--ggf-color-border);
}

.ggf-comments__list .comment:last-child {
    border-bottom: none;
}

.ggf-comments__list .comment .comment-author {
    display: flex;
    align-items: center;
    gap: var(--ggf-space-sm);
    margin-bottom: var(--ggf-space-sm);
}

.ggf-comments__list .comment .comment-author img {
    border-radius: 50%;
}

.ggf-comments__list .comment .comment-author .fn {
    font-family: var(--ggf-font-nav);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ggf-color-text);
}

.ggf-comments__list .comment .comment-metadata {
    font-size: 0.75rem;
    color: var(--ggf-color-text-light);
    margin-bottom: var(--ggf-space-sm);
}

.ggf-comments__list .comment .comment-metadata a {
    color: var(--ggf-color-text-light);
    text-decoration: none;
}

.ggf-comments__list .comment .comment-metadata a:hover {
    color: var(--ggf-color-primary);
}

.ggf-comments__list .comment .comment-content {
    line-height: 1.7;
    color: var(--ggf-color-text);
}

.ggf-comments__list .comment .comment-content p:last-child {
    margin-bottom: 0;
}

.ggf-comments__list .comment .reply a {
    font-size: 0.75rem;
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ggf-color-primary);
    text-decoration: none;
    margin-top: var(--ggf-space-sm);
    display: inline-block;
}

.ggf-comments__list .comment .reply a:hover {
    color: var(--ggf-color-primary-dark);
}

.ggf-comments__list .children {
    list-style: none;
    padding-left: var(--ggf-space-xl);
    margin: 0;
    border-left: 2px solid var(--ggf-color-primary-wash);
}

.ggf-comments__closed {
    font-style: italic;
    color: var(--ggf-color-text-light);
    margin-bottom: var(--ggf-space-lg);
}

/* Comment form inputs */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--ggf-color-border);
    border-radius: 6px;
    font-family: var(--ggf-font-body);
    font-size: 1rem;
    background: var(--ggf-color-bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: var(--ggf-space-md);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--ggf-color-primary);
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

.comment-form label {
    display: block;
    font-family: var(--ggf-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--ggf-space-xs);
    color: var(--ggf-color-text);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Submit button */
.comment-form .submit,
.comment-form .ggf-btn--primary {
    background: var(--ggf-color-primary);
    color: white;
    border: none;
    padding: 14px 32px;
    font-family: var(--ggf-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.comment-form .submit:hover,
.comment-form .ggf-btn--primary:hover {
    background: var(--ggf-color-primary-dark, #9A5660);
}

/* Checkbox style */
.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: var(--ggf-space-sm);
    margin-bottom: var(--ggf-space-lg);
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--ggf-color-primary);
}

/* Form grid on desktop */
@media (min-width: 768px) {
    .comment-form-author,
    .comment-form-email,
    .comment-form-url {
        display: inline-block;
        width: calc(33.333% - 10px);
        margin-right: 15px;
    }

    .comment-form-url {
        margin-right: 0;
    }
}

/* ========================================
   POST NAVIGATION
   ======================================== */

.ggf-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ggf-space-lg);
    margin: var(--ggf-space-2xl) 0;
    padding: var(--ggf-space-xl) 0;
    border-top: 1px solid var(--ggf-color-border);
    border-bottom: 1px solid var(--ggf-color-border);
}

.ggf-post-navigation__link {
    display: flex;
    flex-direction: column;
    gap: var(--ggf-space-xs);
    text-decoration: none;
    padding: var(--ggf-space-md);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.ggf-post-navigation__link:hover {
    background: var(--ggf-color-bg-alt, var(--ggf-color-offwhite));
}

.ggf-post-navigation__link--next {
    text-align: right;
    grid-column: 2;
}

.ggf-post-navigation__label {
    font-size: 0.75rem;
    font-family: var(--ggf-font-nav);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ggf-color-text-light);
}

.ggf-post-navigation__title {
    font-family: var(--ggf-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ggf-color-text);
    line-height: 1.4;
}

.ggf-post-navigation__link:hover .ggf-post-navigation__title {
    color: var(--ggf-color-primary);
}

@media (max-width: 767px) {
    .ggf-post-navigation {
        grid-template-columns: 1fr;
    }

    .ggf-post-navigation__link--next {
        grid-column: 1;
        text-align: left;
        border-top: 1px solid var(--ggf-color-border);
        padding-top: var(--ggf-space-lg);
    }
}

/* Related Posts */
.ggf-related-posts {
    margin-top: var(--ggf-space-3xl);
    margin-bottom: var(--ggf-space-2xl);
    padding-top: var(--ggf-space-2xl);
    border-top: 1px solid var(--ggf-color-border);
}
.ggf-related-posts__title {
    font-size: var(--ggf-text-2xl);
    text-align: center;
    margin-bottom: var(--ggf-space-xl);
}

/* Page */
.ggf-page { padding: var(--ggf-space-2xl) 0 var(--ggf-space-4xl); }
.ggf-page__title { margin-bottom: var(--ggf-space-2xl); }
.ggf-page__content { line-height: 1.8; }
.ggf-page__content p { margin-bottom: var(--ggf-space-lg); }

/* Pagination */
.nav-links { display: flex; justify-content: center; gap: var(--ggf-space-sm); margin-top: var(--ggf-space-2xl); }
.nav-links a, .nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--ggf-space-md);
    border: 1px solid var(--ggf-color-border);
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-sm);
    transition: all var(--ggf-transition-fast);
}
.nav-links a:hover { border-color: var(--ggf-color-primary); color: var(--ggf-color-primary); }
.nav-links .current { background: var(--ggf-color-primary); border-color: var(--ggf-color-primary); color: white; }

/* Animations
   ========================================================================== */
@keyframes ggf-fade-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.ggf-animate { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; transform: translateY(30px); }
.ggf-animate--visible { opacity: 1; transform: translateY(0); }

/* Focus Styles — Keyboard Accessibility
   ========================================================================== */
:focus-visible {
    outline: 2px solid var(--ggf-color-primary);
    outline-offset: 2px;
}
.ggf-btn:focus-visible { outline-offset: 3px; }
.ggf-header__icon:focus-visible,
.ggf-mobile-bar__item:focus-visible {
    outline-offset: -2px;
    border-radius: var(--ggf-radius-sm);
}
.ggf-nav__link:focus-visible { outline-offset: 4px; }
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--ggf-color-primary);
    outline-offset: 0;
}
.ggf-skip-link:focus {
    position: fixed;
    top: var(--ggf-space-sm);
    left: var(--ggf-space-sm);
    z-index: 100000;
    padding: var(--ggf-space-sm) var(--ggf-space-md);
    background: var(--ggf-color-primary);
    color: white;
    font-family: var(--ggf-font-nav);
    font-size: var(--ggf-text-sm);
    text-decoration: none;
    border-radius: var(--ggf-radius-sm);
    clip: auto;
    width: auto;
    height: auto;
}

/* Placeholder Product Cards (fallback)
   ========================================================================== */
.ggf-placeholder-card {
    display: block;
    text-decoration: none;
    color: var(--ggf-color-text);
}
.ggf-placeholder-card__image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--ggf-radius-sm);
    margin-bottom: var(--ggf-space-md);
    background: var(--ggf-color-offwhite);
}
.ggf-placeholder-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ggf-transition-slow);
}
.ggf-placeholder-card:hover .ggf-placeholder-card__image img { transform: scale(1.05); }
.ggf-placeholder-card__name {
    font-family: var(--ggf-font-heading);
    font-size: var(--ggf-text-base);
    margin-bottom: 4px;
}
.ggf-placeholder-card__price {
    color: var(--ggf-color-primary);
    font-weight: 500;
}

/* Dark Mode
   ========================================================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --ggf-color-white: #1a1a1a;
        --ggf-color-offwhite: #222222;
        --ggf-color-text: #e8e4e1;
        --ggf-color-text-light: #999999;
        --ggf-color-border: #3a3a3a;
        --ggf-color-overlay: rgba(0, 0, 0, 0.7);
        --ggf-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
        --ggf-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
        --ggf-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    }
    body { background: #1a1a1a; color: var(--ggf-color-text); }
    .ggf-header { background: #1a1a1a; }
    .ggf-header--scrolled { background: #1a1a1a; }
    .ggf-topbar { background: #111; }
    .ggf-mobile-menu { background: #1a1a1a; }
    .ggf-search-overlay { background: rgba(26,26,26,0.98); }
    .ggf-search-overlay__input { background: transparent; color: var(--ggf-color-text); border-color: var(--ggf-color-border); }
    .ggf-cart-panel { background: #1a1a1a; }
    .ggf-modal__content { background: #222; }
    .ggf-mobile-bar { background: #1a1a1a; }
    .ggf-shop-filters { background: #1a1a1a; }
    .ggf-back-to-top { background: var(--ggf-color-primary-dark); }
    .ggf-product-card { background: #222; }
    .ggf-newsletter__input { background: transparent; color: var(--ggf-color-text); }
    .ggf-accordion__header { color: var(--ggf-color-text); }
    .ggf-nav__link,
    .ggf-header__icon,
    .ggf-header__site-name { color: var(--ggf-color-text); }
    .ggf-hamburger__line { background: var(--ggf-color-text); }
    img { opacity: 0.92; }
}

/* ========================================
   ACCESSIBILITY - Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
