:root {
    --gf-bg: #212428;
    --gf-surface: #1e2024;
    --gf-surface-soft: #f5f5f4;
    --gf-text: #c4c4c4;
    --gf-title: #d7b474;
    --gf-text-soft: #c4c4c4;
    --gf-text-muted: #737373;
    --gf-border: #e5e5e5;
    --gf-dark: #171717;
    --gf-dark-2: #262626;
    --gf-white: #ffffff;
    --gf-amber-bg: #fef3c7;
    --gf-amber-text: #92400e;
    --gf-amber-border: #fde68a;
    --gf-green: #16a34a;
    --gf-grey: #333;

    --gf-light-shadow: 10px 10px 25px rgba(51, 51, 51, 0.55);
    --gf-shadow: 10px 10px 25px rgba(0, 0, 0, 0.45);


    --gf-radius-sm: 16px;
    --gf-radius-md: 22px;
    --gf-radius-lg: 28px;
    --gf-radius-xl: 32px;
    --gf-radius-pill: 999px;

    --gf-shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.04);
    --gf-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);

    --gf-container: 1152px;
    --gf-space-1: 8px;
    --gf-space-2: 12px;
    --gf-space-3: 16px;
    --gf-space-4: 20px;
    --gf-space-5: 24px;
    --gf-space-6: 32px;
    --gf-space-7: 40px;
    --gf-space-8: 48px;
    --gf-space-9: 64px;
    --gf-space-10: 80px;

    --gf-transition: 240ms cubic-bezier(.2, .8, .2, 1);
}

/* Reset scope */
.gf-shop-page .site-main,
.gf-shop-page .woocommerce,
.gf-shop-page .woocommerce-page {
    background: var(--gf-bg);
}

.gf-shop-page ul.products {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gf-shop-page .woocommerce-result-count,
.gf-shop-page .woocommerce-ordering {
    margin: 0;
}

.gf-shop-page .woocommerce-breadcrumb {
    margin-bottom: var(--gf-space-5);
    color: var(--gf-text-muted);
    font-size: 14px;
}

.gf-shop-page .woocommerce-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.shop-shell {
    width: min(calc(100% - 32px), var(--gf-container));
    margin: 0 auto;
    padding: var(--gf-space-8) 0 var(--gf-space-10);
}

/* Header */
.shop-header {
    margin-bottom: var(--gf-space-9);
}

.shop-header--centered {
    text-align: center;
}

.shop-header__title {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 700;
    /*color: var(--gf-text);*/
    color: var(--gf-title);
}

.shop-header__description {
    max-width: 720px;
    margin: var(--gf-space-4) auto 0;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gf-text-soft);
}

.shop-section {
    margin-bottom: var(--gf-space-9);
}

.shop-section__heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--gf-space-3);
    margin-bottom: var(--gf-space-5);
}

.shop-section__title {
    margin: 0;
    font-size: clamp(1.75rem, 2.4vw, 2.125rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--gf-white);
}

/* Pills / chips */
.shop-pill,
.shop-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--gf-radius-pill);
    white-space: nowrap;
}

.shop-pill {
    padding: 8px 14px;
    font-size: 0.8125rem;
    line-height: 1;
    font-weight: 600;
}

.shop-pill--amber,
.shop-pill--amber-outline {
    background: var(--gf-title);
    color: var(--gf-white);
    border: 1px solid transparent;
}

.shop-pill--neutral {
    background: #f5f5f5;
    color: #404040;
    border: 1px solid var(--gf-border);
}

.shop-chip {
    padding: 10px 16px;
    font-size: 0.875rem;
    line-height: 1.2;
    color: var(--gf-white);
    /*background: var(--gf-title);*/
    border: 1px solid var(--gf-title);
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    border-radius: 18px;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    transition:
        transform var(--gf-transition),
        background-color var(--gf-transition),
        color var(--gf-transition),
        border-color var(--gf-transition),
        box-shadow var(--gf-transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    background: var(--gf-dark);
    color: var(--gf-white);
    border-color: var(--gf-dark);
}

.button--primary:hover {
    background: #000;
    border-color: #000;
    color: var(--gf-white);
}

.button--light {
    background: var(--gf-white);
    color: #000;
    border-color: var(--gf-white);
}

.button--light:hover {
    background: #f5f5f5;
    color: #000;
}

.button--outline {
    background: transparent;
    color: var(--gf-text);
    border-color: #d4d4d4;
}

.button--outline:hover {
    background: #fafafa;
    border-color: #bdbdbd;
    color: var(--gf-text);
}

/* Hero */
.shop-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: var(--gf-space-5);
    align-items: stretch;
}

.hero-card {
    background: var(--gf-surface);
    border: 1px solid var(--gf-border);
    border: 1px solid var(--gf-title);
    border-radius: var(--gf-radius-lg);
    padding: var(--gf-space-6);
    box-shadow: var(--gf-shadow-sm);
}

.hero-card__media {
    margin-bottom: var(--gf-space-5);
    border-radius: 24px;
    overflow: hidden;
    /*background: linear-gradient(135deg, #e5e5e5 0%, #f5f5f5 100%);*/
    /*aspect-ratio: 16 / 8;*/
}

.hero-card__media a,
.hero-card__media img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--gf-transition);
}

.hero-card:hover .hero-card__image {
    transform: scale(1.03);
}

.hero-card__title {
    margin: 0;
    font-size: clamp(2rem, 2.8vw, 2.25rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.hero-card__title a {
    color: var(--gf-white);
    text-decoration: none;
}

.hero-card__excerpt {
    margin-top: var(--gf-space-3);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gf-text-soft);
}

.hero-card__excerpt p {
    margin: 0;
}

.hero-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gf-space-2);
    margin-top: var(--gf-space-5);
}

.hero-card__footer {
    margin-top: var(--gf-space-6);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--gf-space-4);
}

.hero-card__price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-card__price-regular {
    font-size: 1.125rem;
    color: #a3a3a3;
    text-decoration: line-through;
}

.hero-card__price-current {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gf-text);
}

.hero-card__saving {
    margin: 6px 0 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gf-green);
}

.hero-card__testimonial {
    margin-top: var(--gf-space-5);
    padding: var(--gf-space-4);
    background: var(--gf-bg);
    border: 1px solid var(--gf-text);
    border-radius: 20px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gf-white);
}

.hero-card__testimonial-stars {
    margin-bottom: 6px;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--gf-title);
}

.hero-card__testimonial p {
    margin: 0;
}

.hero-side {
    background: var(--gf-surface);
    color: var(--gf-white);
    border-radius: var(--gf-radius-lg);
    padding: var(--gf-space-6);
    box-shadow: var(--gf-shadow);
}

.hero-side-bundle {
    order: 1;
}

.hero-side__eyebrow {
    margin: 0;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #d4d4d4;
}

.hero-side__list {
    margin: var(--gf-space-5) 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: var(--gf-space-4);
}

.hero-side__list li {
    position: relative;
    padding-left: 26px;
    line-height: 1.7;
    color: #f5f5f5;
}

.hero-side__list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #f5f5f5;
    font-weight: 700;
}

/* Products grids */
.products--specific,
.products--bundles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gf-space-5);
    list-style: none;
}

.product-card {
    margin: 0;
}

.product-card__inner {
    height: 100%;
    border-radius: var(--gf-radius-lg);
    overflow: hidden;
    transition:
        transform var(--gf-transition),
        box-shadow var(--gf-transition),
        background-color var(--gf-transition);
    display: flex;
    flex-direction: column;
}

.product-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-card--specific .product-card__inner,
.product-card--bundle .product-card__inner {
    padding: var(--gf-space-5);
    box-shadow: var(--gf-shadow-sm);
}

.product-card--specific .product-card__inner {
    background: var(--gf-surface);
    border: 1px solid var(--gf-border);
    border: 1px solid var(--gf-title);
}

.product-card--specific .product-card__inner:hover {
    transform: translateY(-4px);
    box-shadow: var(--gf-shadow-md);
}

.product-card--bundle .product-card__inner {
    background: var(--gf-surface);
    border: 1px solid var(--gf-border);
    border: 1px solid var(--gf-title);
}

.product-card--highlight .product-card__inner {
    background: var(--gf-dark);
    border-color: var(--gf-dark);
    color: var(--gf-white);
    transform: scale(1.02);
}

.product-card__media {
    margin-bottom: var(--gf-space-4);
    border-radius: 22px;
    overflow: hidden;
    /*background: linear-gradient(135deg, #e5e5e5 0%, #f5f5f5 100%);*/
    aspect-ratio: 4 / 3;
}

.product-card__media-link,
.product-card__media img {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--gf-transition), filter var(--gf-transition);
}

.product-card__inner:hover .product-card__image {
    transform: scale(1.04);
}

.product-card--highlight .product-card__inner:hover .product-card__image {
    transform: scale(1.03);
}

.product-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--gf-space-4);
}

.product-card__bundle-badge {
    display: inline-block;
    margin-bottom: var(--gf-space-3);
    padding: 8px 12px;
    border-radius: var(--gf-radius-pill);
    background: #fbbf24;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.product-card__title {
    margin: 0;
    font-size: 1.75rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
    font-weight: 600;
}

.product-card__title a {
    color: inherit;
    text-decoration: none;
    color: #d7b474;

    &:hover {
        color: #fff;
    }
}

.product-card__description {
    margin-top: var(--gf-space-3);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gf-text-soft);
}

.product-card__description p {
    margin: 0;
}

.product-card--highlight .product-card__description {
    color: #e5e5e5;
}

.product-card__pricing {
    margin: var(--gf-space-4) 0;
}

.product-card__price-regular {
    display: inline-block;
    margin-right: 12px;
    font-size: 1rem;
    color: #a3a3a3;
    text-decoration: line-through;
}

.product-card__price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: inherit;
}

.product-card__saving {
    margin: 6px 0 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gf-green);
}

.product-card__actions {
    margin-top: var(--gf-space-5);
    margin-top: auto;
}

/* Home feature */
.home-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: var(--gf-space-5);
    gap: 30px;
    align-items: center;
    padding: var(--gf-space-6);
    background: var(--gf-surface);
    border: 1px solid var(--gf-title);
    border-radius: var(--gf-radius-xl);
    box-shadow: var(--gf-shadow-sm);
}

.home-feature__media {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #e5e5e5 0%, #f5f5f5 100%);
    /*aspect-ratio: 16 / 9;*/
}

.home-feature__media a,
.home-feature__media img {
    display: block;
    width: 100%;
    height: 100%;
}

.home-feature__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--gf-transition);
}

.home-feature:hover .home-feature__image {
    transform: scale(1.03);
}

.home-feature__heading-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.home-feature__title {
    margin: 0;
    font-size: clamp(1.75rem, 2.5vw, 2.125rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.home-feature__pricing {
    margin-top: 10px;
}

.home-feature__price-regular {
    display: inline-block;
    margin-right: 12px;
    text-decoration: line-through;
    color: #a3a3a3;
}

.home-feature__price-current {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gf-text);
}

.home-feature__saving {
    margin: 6px 0 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gf-green);
}

.home-feature__excerpt {
    margin-top: var(--gf-space-3);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gf-text-soft);
}

.home-feature__excerpt p {
    margin: 0;
}

.home-feature__chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gf-space-2);
    margin: var(--gf-space-5) 0;
}

.home-feature .button {
    margin-top: var(--gf-space-6);
}

/* Quiz CTA */
.quiz-cta {
    padding: var(--gf-space-6);
    /*text-align: center;*/
    background: var(--gf-dark);
    border-radius: var(--gf-radius-lg);
    box-shadow: var(--gf-shadow);
}

.quiz-cta__title {
    margin: 0;
    font-size: clamp(1.75rem, 2.4vw, 2rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--gf-white);
    margin-bottom: 20px;
}

.quiz-cta__description {
    max-width: 640px;
    margin: 10px auto 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gf-text);
    margin-bottom: 30px;
}

.quiz-cta .button {
    margin-top: var(--gf-space-5);
}

/* Coaching CTA */
.coaching-cta {
    padding: var(--gf-space-8);
    text-align: center;
    background: var(--gf-dark);
    color: var(--gf-white);
    border-radius: var(--gf-radius-xl);
    box-shadow: var(--gf-shadow);
}

.coaching-cta__title {
    margin: 0;
    font-size: clamp(2rem, 2.7vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 700;
    margin-bottom: 20px;
}

.coaching-cta__description {
    max-width: 700px;
    margin: var(--gf-space-4) auto 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #e5e5e5;
    margin-bottom: 30px;
}

.coaching-cta .button {
    margin-top: var(--gf-space-5);
}

/* Default archive fallback */
.shop-toolbar--default {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gf-space-4);
    margin-bottom: var(--gf-space-5);
}

.shop-header--archive {
    margin-bottom: var(--gf-space-6);
}

/* WooCommerce widgets (optional) */
.shop-widget {
    padding: var(--gf-space-4);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-md);
    background: var(--gf-surface);
}

.shop-widget+.shop-widget {
    margin-top: var(--gf-space-4);
}

.shop-widget__title {
    margin: 0 0 var(--gf-space-3);
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 600;
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Breakpoints */
@media (max-width: 1200px) {
    .shop-shell {
        width: min(calc(100% - 40px), var(--gf-container));
    }

    .products--specific,
    .products--bundles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {

    .shop-hero,
    .home-feature {
        grid-template-columns: 1fr;
    }

    .products--specific,
    .products--bundles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-card--highlight .product-card__inner {
        transform: none;
    }
}

@media (max-width: 768px) {
    .shop-shell {
        width: min(calc(100% - 24px), var(--gf-container));
        padding: var(--gf-space-7) 0 var(--gf-space-8);
    }

    .shop-header {
        margin-bottom: var(--gf-space-8);
    }

    .shop-section {
        margin-bottom: var(--gf-space-8);
    }

    .hero-card,
    .hero-side,
    .home-feature,
    .quiz-cta,
    .coaching-cta {
        padding: var(--gf-space-5);
    }

    .hero-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .products--specific,
    .products--bundles {
        grid-template-columns: 1fr;
    }

    .product-card__title {
        font-size: 1.5rem;
        text-align: center;
    }

    .coaching-cta__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .shop-header__title {
        font-size: 2rem;
    }

    .shop-header__description {
        font-size: 1rem;
    }

    .hero-card__title,
    .home-feature__title,
    .shop-section__title {
        font-size: 1.6rem;
        text-align: center;
    }

    .button {
        width: 100%;
    }

    .hero-card__footer .button {
        width: auto;
    }

    .product-card__description,
    .product-card__pricing,
    .hero-card__content {
        text-align: center;
    }

    .hero-card__chips {
        justify-content: center;
    }

    .hero-card__pricing {
        width: 100%;
    }

    .hero-card__price-row,
    .home-feature__chips {
        justify-content: center;
    }
}