/*
Theme Name: ShroomCo
Theme URI: https://shroomco.com
Author: ShroomCo
Author URI: https://shroomco.com
Description: A dark, psychedelic WordPress theme for ShroomCo — mycological exploration from the heart of Colorado.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shroomco
Tags: dark, e-commerce, full-width-template, custom-colors
*/

/* =========================================================
   1. RESET & BASE
   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary:    #af25f4;
    --color-secondary:  #00ff9d;
    --color-accent:     #ff00e5;
    --color-bg-dark:    #0a060c;
    --color-bg-card:    rgba(10, 6, 12, 0.5);
    --color-text:       #f1f5f9;       /* slate-100  */
    --color-muted:      #94a3b8;       /* slate-400  */
    --color-border:     rgba(175, 37, 244, 0.2);

    --font-display: 'Space Grotesk', sans-serif;

    --radius-sm:   0.5rem;
    --radius-md:   1rem;
    --radius-lg:   1.5rem;
    --radius-full: 9999px;

    --max-width: 80rem;  /* 1280px */
    --header-h: 5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-display);
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* =========================================================
   2. UTILITY CLASSES
   ========================================================= */
.container {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.glow-text {
    text-shadow:
        0 0 20px rgba(175, 37, 244, 0.8),
        0 0 40px rgba(255,   0, 229, 0.4);
}

.psychedelic-gradient {
    background: linear-gradient(135deg, #af25f4 0%, #ff00e5 50%, #00ff9d 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #af25f4 0%, #ff00e5 50%, #00ff9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-panel {
    background: rgba(28, 16, 34, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(175, 37, 244, 0.2);
}

.neon-border {
    box-shadow: 0 0 15px rgba(175, 37, 244, 0.4);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ── Header Cart Button ── */
.header-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(175, 37, 244, 0.4);
    background: rgba(175, 37, 244, 0.08);
    color: var(--color-text);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}
.header-cart-btn:hover {
    background: rgba(175, 37, 244, 0.2);
    border-color: var(--color-primary);
    box-shadow: 0 0 16px rgba(175, 37, 244, 0.4);
}
.header-cart-btn .material-symbols-outlined {
    font-size: 1.3rem;
}
.header-cart-count {
    position: absolute;
    top: -0.35rem;
    right: -0.35rem;
    min-width: 1.1rem;
    height: 1.1rem;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.2rem;
    box-shadow: 0 0 8px rgba(175, 37, 244, 0.7);
    line-height: 1;
}

/* =========================================================
   3. HEADER
   ========================================================= */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(28, 16, 34, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(175, 37, 244, 0.2);
    height: var(--header-h);
}

.site-header__inner {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.site-header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.site-header__logo .logo-icon {
    font-size: 2.25rem;
    color: var(--color-primary);
    font-family: 'Material Symbols Outlined';
    transition: transform 0.5s ease;
}

.site-header__logo:hover .logo-icon {
    transform: rotate(180deg);
}

.site-header__logo .logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #f1f5f9;
    text-transform: uppercase;
}

.site-header__logo .logo-text span {
    color: var(--color-primary);
}

/* Primary Nav */
.primary-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .primary-nav {
        display: flex;
    }
}

.primary-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus {
    color: var(--color-primary);
}

/* Header Actions */
.site-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-search {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(175, 37, 244, 0.5);
    font-size: 0.875rem;
    font-weight: 500;
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: var(--font-display);
}

@media (min-width: 640px) {
    .btn-search {
        display: flex;
    }
}

.btn-search:hover {
    background: rgba(175, 37, 244, 0.1);
}

.btn-search .material-symbols-outlined {
    font-size: 1.125rem;
}

.btn-signin {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(175, 37, 244, 0.2);
    transition: background 0.2s ease;
    font-family: var(--font-display);
}

.btn-signin:hover {
    background: rgba(175, 37, 244, 0.8);
}

/* Mobile menu toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(175, 37, 244, 0.4);
    border-radius: var(--radius-sm);
    padding: 0.4rem;
    color: var(--color-text);
    cursor: pointer;
    transition: background 0.2s;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle:hover {
    background: rgba(175, 37, 244, 0.1);
}

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    background: rgba(28, 16, 34, 0.97);
    backdrop-filter: blur(12px);
    z-index: 99;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(175, 37, 244, 0.2);
    gap: 1.25rem;
}

.mobile-nav.is-open {
    display: flex;
}

.mobile-nav a {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
}

.mobile-nav a:hover {
    color: var(--color-primary);
}

/* =========================================================
   4. HERO SECTION
   ========================================================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 3rem) 1.5rem 5rem;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero__blob-left {
    position: absolute;
    top: 25%;
    left: -5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(175, 37, 244, 0.3);
    border-radius: 50%;
    filter: blur(120px);
}

.hero__blob-right {
    position: absolute;
    bottom: 25%;
    right: -5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 255, 157, 0.2);
    border-radius: 50%;
    filter: blur(120px);
}

.hero__bg-img {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    mix-blend-mode: screen;
    background-color: transparent;
    overflow: hidden;
}
.hero__bg-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 3px 8px at 15% 30%, rgba(175,37,244,0.8) 0%, transparent 100%),
        radial-gradient(ellipse 5px 14px at 15% 22%, rgba(175,37,244,0.5) 0%, transparent 100%),
        radial-gradient(ellipse 18px 6px at 15% 38%, rgba(175,37,244,0.4) 0%, transparent 100%),
        radial-gradient(ellipse 3px 8px at 35% 60%, rgba(0,255,157,0.8) 0%, transparent 100%),
        radial-gradient(ellipse 5px 14px at 35% 52%, rgba(0,255,157,0.5) 0%, transparent 100%),
        radial-gradient(ellipse 18px 6px at 35% 68%, rgba(0,255,157,0.4) 0%, transparent 100%),
        radial-gradient(ellipse 3px 8px at 60% 25%, rgba(255,0,229,0.8) 0%, transparent 100%),
        radial-gradient(ellipse 5px 14px at 60% 17%, rgba(255,0,229,0.5) 0%, transparent 100%),
        radial-gradient(ellipse 20px 6px at 60% 33%, rgba(255,0,229,0.4) 0%, transparent 100%),
        radial-gradient(ellipse 3px 8px at 80% 70%, rgba(175,37,244,0.8) 0%, transparent 100%),
        radial-gradient(ellipse 5px 14px at 80% 62%, rgba(175,37,244,0.5) 0%, transparent 100%),
        radial-gradient(ellipse 22px 6px at 80% 78%, rgba(175,37,244,0.4) 0%, transparent 100%),
        radial-gradient(ellipse 3px 8px at 50% 80%, rgba(0,255,157,0.8) 0%, transparent 100%),
        radial-gradient(ellipse 5px 14px at 50% 72%, rgba(0,255,157,0.5) 0%, transparent 100%),
        radial-gradient(ellipse 16px 6px at 50% 88%, rgba(0,255,157,0.4) 0%, transparent 100%),
        radial-gradient(ellipse 3px 8px at 90% 40%, rgba(255,0,229,0.8) 0%, transparent 100%),
        radial-gradient(ellipse 5px 14px at 90% 32%, rgba(255,0,229,0.5) 0%, transparent 100%),
        radial-gradient(ellipse 18px 6px at 90% 48%, rgba(255,0,229,0.4) 0%, transparent 100%),
        radial-gradient(circle 40px at 15% 30%, rgba(175,37,244,0.15) 0%, transparent 70%),
        radial-gradient(circle 55px at 35% 60%, rgba(0,255,157,0.12) 0%, transparent 70%),
        radial-gradient(circle 48px at 60% 25%, rgba(255,0,229,0.12) 0%, transparent 70%),
        radial-gradient(circle 50px at 80% 70%, rgba(175,37,244,0.12) 0%, transparent 70%),
        radial-gradient(circle 38px at 50% 80%, rgba(0,255,157,0.1) 0%, transparent 70%),
        radial-gradient(circle 42px at 90% 40%, rgba(255,0,229,0.1) 0%, transparent 70%);
    animation: shroom-sway 12s ease-in-out infinite alternate;
}
.hero__bg-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(175,37,244,0.03) 3px,
        rgba(175,37,244,0.03) 4px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 60px,
        rgba(0,255,157,0.02) 60px,
        rgba(0,255,157,0.02) 61px
    );
}
@keyframes shroom-sway {
    0%   { transform: scale(1)    rotate(0deg); }
    50%  { transform: scale(1.05) rotate(1deg); }
    100% { transform: scale(1.02) rotate(-0.5deg); }
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 56rem;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(175, 37, 244, 0.1);
    border: 1px solid rgba(175, 37, 244, 0.3);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero__badge .material-symbols-outlined {
    font-size: 0.875rem;
}

.hero__title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-muted);
    max-width: 42rem;
    margin-inline: auto;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero__cta {
        flex-direction: row;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(175, 37, 244, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--font-display);
    width: 100%;
}

@media (min-width: 640px) {
    .btn-primary {
        width: auto;
    }
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    background: rgba(28, 16, 34, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: var(--font-display);
    width: 100%;
}

@media (min-width: 640px) {
    .btn-ghost {
        width: auto;
    }
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
}

.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0.3;
    pointer-events: none;
    line-height: 0;
}

.hero__wave svg {
    width: 100%;
    height: 8rem;
    fill: var(--color-primary);
}

/* =========================================================
   5. SHOP SECTION
   ========================================================= */
.section-shop {
    padding-block: 6rem;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.section-header__eyebrow {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header__desc {
    color: var(--color-muted);
}

.section-header__actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(175, 37, 244, 0.3);
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
    transition: background 0.2s;
}

.btn-icon:hover {
    background: rgba(175, 37, 244, 0.1);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(175, 37, 244, 0.3);
    background: transparent;
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-display);
}

.btn-outline:hover {
    background: rgba(175, 37, 244, 0.1);
}

/* Home product grid — 3 columns */
.home-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-bottom 0.35s ease;
}
.home-filter-bar.is-open {
    max-height: 10rem;
    margin-bottom: 2rem;
}
.home-filter-chip {
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(175,37,244,0.3);
    background: transparent;
    color: var(--color-muted);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.home-filter-chip:hover,
.home-filter-chip.active {
    background: rgba(175,37,244,0.15);
    border-color: var(--color-primary);
    color: var(--color-text);
}
.home-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 640px) {
    .home-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .home-products-grid { grid-template-columns: repeat(3, 1fr); }
}
.home-product-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}
.home-product-card:hover {
    border-color: rgba(175,37,244,0.5);
    transform: translateY(-4px);
}
.home-product-card.is-hidden { display: none; }
.home-product-card__img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: rgba(175,37,244,0.05);
}
.home-product-card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.home-product-card:hover .home-product-card__img-wrap img {
    transform: scale(1.05);
}
.home-product-card__overlay {
    position: absolute; inset: 0;
    background: rgba(10,6,12,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
    color: var(--color-secondary);
    font-size: 2rem;
}
.home-product-card:hover .home-product-card__overlay { opacity: 1; }
.home-product-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex; flex-direction: column; gap: 0.4rem; flex: 1;
}
.home-product-card__cat {
    font-size: 0.7rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--color-primary);
}
.home-product-card__name {
    font-size: 1.05rem; font-weight: 700; line-height: 1.3;
}
.home-product-card__name a { color: inherit; text-decoration: none; }
.home-product-card__name a:hover { color: var(--color-secondary); }
.home-product-card__footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto; padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.home-product-card__price {
    font-size: 1.1rem; font-weight: 800; color: var(--color-secondary);
}
.home-product-card__btn {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.5rem 1rem;
    background: rgba(175,37,244,0.15);
    border: 1px solid rgba(175,37,244,0.4);
    border-radius: var(--radius-full);
    color: var(--color-text); font-size: 0.8rem; font-weight: 700;
    font-family: var(--font-display); text-decoration: none;
    transition: all 0.2s;
}
.home-product-card__btn:hover {
    background: var(--color-primary); border-color: var(--color-primary);
    color: #fff;
}
.home-product-card__btn .material-symbols-outlined { font-size: 1rem; }

/* Product card */
.product-card {
    position: relative;
    background: var(--color-bg-card);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.4s ease;
}

.product-card:hover {
    border-color: rgba(175, 37, 244, 0.5);
}

.product-card--accent:hover {
    border-color: rgba(255, 0, 229, 0.5);
}

.product-card--secondary:hover {
    border-color: rgba(0, 255, 157, 0.5);
}

.product-card__img-wrap {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .product-card__img-wrap img {
    transform: scale(1.1);
}

.product-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-bg-dark) 0%, transparent 60%);
    opacity: 0.8;
}

.product-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    color: #fff;
    background: rgba(175, 37, 244, 0.8);
}

.product-card__badge--secondary {
    background: rgba(0, 255, 157, 0.8);
    color: #000;
}

.product-card__body {
    padding: 1.5rem;
}

.product-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-card__desc {
    color: var(--color-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card__price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-secondary);
}

.product-card__add {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Material Symbols Outlined';
    font-size: 1.25rem;
}

.product-card__add:hover {
    background: var(--color-primary);
}

.product-card__add--accent:hover {
    background: var(--color-accent);
}

.product-card__add--secondary:hover {
    background: var(--color-secondary);
    color: #000;
}

/* =========================================================
   6. BENEFITS SECTION
   ========================================================= */
.section-benefits {
    padding-block: 6rem;
    position: relative;
    overflow: hidden;
}

.section-benefits__bg-blob {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background: rgba(175, 37, 244, 0.05);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--color-muted);
    text-align: center;
    max-width: 42rem;
    margin-inline: auto;
    margin-bottom: 5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    text-align: center;
}

.benefit-card__icon-wrap {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-bottom: 2rem;
    border: 1px solid rgba(175, 37, 244, 0.2);
    background: rgba(175, 37, 244, 0.1);
    transition: transform 0.4s ease, background 0.4s ease;
}

.benefit-card:hover .benefit-card__icon-wrap {
    transform: scale(1.1);
    background: rgba(175, 37, 244, 0.2);
}

.benefit-card__icon-wrap--secondary {
    border-color: rgba(0, 255, 157, 0.2);
    background: rgba(0, 255, 157, 0.1);
}

.benefit-card:hover .benefit-card__icon-wrap--secondary {
    background: rgba(0, 255, 157, 0.2);
}

.benefit-card__icon-wrap--accent {
    border-color: rgba(255, 0, 229, 0.2);
    background: rgba(255, 0, 229, 0.1);
}

.benefit-card:hover .benefit-card__icon-wrap--accent {
    background: rgba(255, 0, 229, 0.2);
}

.benefit-card__icon {
    font-size: 3rem;
    font-family: 'Material Symbols Outlined';
    color: var(--color-primary);
}

.benefit-card__icon--secondary { color: var(--color-secondary); }
.benefit-card__icon--accent    { color: var(--color-accent); }

.benefit-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card__text {
    color: var(--color-muted);
}

/* =========================================================
   7. HOW IT WORKS
   ========================================================= */
.section-how {
    padding-block: 6rem;
    background: rgba(175, 37, 244, 0.03);
}

.timeline {
    position: relative;
}

.timeline__line {
    display: none;
    position: absolute;
    top: 3rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(175, 37, 244, 0.3), transparent);
}

@media (min-width: 768px) {
    .timeline__line {
        display: block;
    }
}

.timeline__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .timeline__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.timeline-step {
    text-align: center;
}

.timeline-step__num {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-md);
    background: var(--color-bg-dark);
    border: 1px solid rgba(175, 37, 244, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 20px rgba(175, 37, 244, 0.1);
    transition: background 0.3s, transform 0.3s;
}

.timeline-step:hover .timeline-step__num {
    background: var(--color-primary);
    transform: scale(1.1);
}

.timeline-step__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-step__text {
    font-size: 0.875rem;
    color: var(--color-muted);
    padding-inline: 1rem;
}

/* =========================================================
   8. DISCLAIMER SECTION
   ========================================================= */
.section-disclaimer {
    padding-block: 5rem;
}

.disclaimer-box {
    max-width: 56rem;
    margin-inline: auto;
    padding: 2rem;
    border-radius: 2.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .disclaimer-box {
        padding: 3rem;
    }
}

.disclaimer-box__blob {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background: rgba(0, 255, 157, 0.2);
    border-radius: 50%;
    filter: blur(3rem);
    pointer-events: none;
}

.disclaimer-box__inner {
    position: relative;
    z-index: 1;
}

.disclaimer-box__heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.disclaimer-box__heading .material-symbols-outlined {
    font-size: 1.875rem;
}

.disclaimer-box__heading h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.disclaimer-box__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* =========================================================
   9. FOOTER
   ========================================================= */
.site-footer {
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    padding-inline: 1.5rem;
}

.site-footer__grid {
    max-width: var(--max-width);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

.footer-brand__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand__logo .logo-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 1.875rem;
    color: var(--color-primary);
}

.footer-brand__logo .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #f1f5f9;
}

.footer-brand__tagline {
    color: #64748b; /* slate-500 */
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-brand__social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.social-link:hover {
    background: rgba(175, 37, 244, 0.2);
}

.social-link .material-symbols-outlined {
    font-size: 1.25rem;
}

.footer-col__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-col__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col__links li a {
    color: #64748b;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-col__links li a:hover {
    color: var(--color-primary);
}

.footer-newsletter__desc {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-newsletter__form {
    position: relative;
}

.footer-newsletter__input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem 3rem 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--color-text);
    font-family: var(--font-display);
    outline: none;
    transition: border-color 0.2s;
}

.footer-newsletter__input::placeholder {
    color: #64748b;
}

.footer-newsletter__input:focus {
    border-color: rgba(175, 37, 244, 0.5);
}

.footer-newsletter__btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    font-family: 'Material Symbols Outlined';
    font-size: 1.5rem;
}

.footer-newsletter__btn:hover {
    color: var(--color-accent);
}

.site-footer__bottom {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .site-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.site-footer__copyright {
    font-size: 0.75rem;
    color: #475569; /* slate-600 */
}

.site-footer__legal {
    display: flex;
    gap: 1.5rem;
}

.site-footer__legal a {
    font-size: 0.75rem;
    color: #475569;
    transition: color 0.2s;
}

.site-footer__legal a:hover {
    color: #fff;
}

/* =========================================================
   10. ELEMENTOR COMPATIBILITY
   ========================================================= */

/* Full-width & canvas: strip all container constraints */
.elementor-page-content,
.elementor-full-width,
.elementor-canvas-content {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Clip overflow without breaking sticky positioning */
body.elementor-page .site-content {
    overflow-x: clip;
}

/* Sections manage their own spacing on Elementor pages */
body.elementor-page:not(.elementor-editor-active) .elementor-page-content,
body.elementor-page:not(.elementor-editor-active) #primary {
    padding-top: 0;
}

/*
 * Add class .e-flush-header to the first Elementor section's
 * "Advanced → CSS Classes" to make it slide under the fixed header.
 */
body.elementor-page .elementor-section.e-flush-header:first-child,
body.elementic-page .e-con.e-flush-header:first-child {
    margin-top: calc( var(--header-h, 5rem) * -1 );
    padding-top: var(--header-h, 5rem);
}

/* Match theme max-width inside Elementor sections */
.elementor-section .elementor-container,
.e-con-inner {
    max-width: var(--max-width, 80rem);
}

/* Expose theme palette as Elementor global colour vars */
:root {
    --e-global-color-primary:   var(--color-primary,   #af25f4);
    --e-global-color-secondary: var(--color-secondary, #00ff9d);
    --e-global-color-accent:    var(--color-accent,    #ff00e5);
    --e-global-color-text:      var(--color-text,      #f1f5f9);
    --e-global-color-bg-dark:   var(--color-bg-dark,   #0a060c);
}

body.elementor-canvas-page {
    overflow-x: hidden;
}

/* =========================================================
   11. WORDPRESS CORE BLOCKS & ALIGNMENTS
   ========================================================= */
.wp-block-image.alignfull,
.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.wp-block-image.alignwide,
.alignwide {
    max-width: 1280px;
    width: 100%;
}

.wp-caption {
    max-width: 100%;
}

/* =========================================================
   11. ACCESSIBILITY
   ========================================================= */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 1rem;
    background: var(--color-primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    z-index: 999;
}

.skip-link:focus {
    left: 1rem;
}

/* =========================================================
   SEARCH OVERLAY
   ========================================================= */
.shroomco-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.shroomco-search-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}
.shroomco-search-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,6,12,.85);
    backdrop-filter: blur(8px);
    cursor: pointer;
}
.shroomco-search-overlay__box {
    position: relative;
    z-index: 1;
    width: min(700px, calc(100vw - 2rem));
    background: rgba(28,16,34,.95);
    border: 1px solid rgba(175,37,244,.3);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 0 60px rgba(175,37,244,.2);
    transform: translateY(-20px);
    transition: transform .3s ease;
}
.shroomco-search-overlay.is-open .shroomco-search-overlay__box {
    transform: translateY(0);
}
.shroomco-search-overlay__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255,255,255,.5);
    cursor: pointer;
    padding: .25rem;
    line-height: 1;
    transition: color .2s;
}
.shroomco-search-overlay__close:hover { color: #fff; }
.shroomco-search-overlay__input-wrap {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(175,37,244,.3);
    border-radius: .75rem;
    padding: .25rem .25rem .25rem 1rem;
    transition: border-color .2s;
}
.shroomco-search-overlay__input-wrap:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(175,37,244,.15);
}
.shroomco-search-overlay__icon { color: rgba(255,255,255,.4); flex-shrink: 0; }
.shroomco-search-overlay__input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.1rem;
    font-family: inherit;
    padding: .6rem 0;
}
.shroomco-search-overlay__input::placeholder { color: rgba(255,255,255,.3); }
.shroomco-search-overlay__submit {
    flex-shrink: 0;
    padding: .6rem 1.2rem;
    font-size: .9rem;
}

/* Live results */
.shroomco-search-results { margin-top: 1rem; }
.shroomco-search-results__loading,
.shroomco-search-results__empty {
    text-align: center;
    padding: 1rem;
    color: rgba(255,255,255,.4);
    font-size: .9rem;
}
.spin { animation: spin 1s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.shroomco-search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1rem;
    border-radius: .75rem;
    text-decoration: none;
    color: #fff;
    transition: background .2s;
}
.shroomco-search-result-item:hover { background: rgba(175,37,244,.1); }
.shroomco-search-result-item img,
.shroomco-search-result-item__placeholder {
    width: 48px; height: 48px;
    border-radius: .5rem;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(175,37,244,.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.shroomco-search-result-item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.shroomco-search-result-item__name { font-weight: 600; font-size: .95rem; }
.shroomco-search-result-item__price { color: var(--color-secondary); font-size: .85rem; }
.shroomco-search-result-item__arrow { color: rgba(255,255,255,.3); font-size: 1.1rem; }

/* =========================================================
   CONSULTATION GATE POPUP
   ========================================================= */
.shroomco-popup {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.shroomco-popup.is-open {
    opacity: 1;
    pointer-events: all;
}
.shroomco-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,6,12,.85);
    backdrop-filter: blur(8px);
    cursor: pointer;
}
.shroomco-popup__box {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    background: rgba(28,16,34,.97);
    border: 1px solid rgba(175,37,244,.35);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 0 80px rgba(175,37,244,.25);
    transform: scale(.95);
    transition: transform .3s ease;
}
.shroomco-popup.is-open .shroomco-popup__box { transform: scale(1); }
.shroomco-popup__close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none; border: none;
    color: rgba(255,255,255,.4);
    cursor: pointer; padding: .25rem; line-height: 1;
    transition: color .2s;
}
.shroomco-popup__close:hover { color: #fff; }
.shroomco-popup__icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(175,37,244,.2), rgba(255,0,229,.1));
    border: 1px solid rgba(175,37,244,.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--color-primary);
}
.shroomco-popup__title {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .75rem;
}
.shroomco-popup__body {
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    margin-bottom: .75rem;
}
.shroomco-popup__meta {
    color: rgba(255,255,255,.4);
    font-size: .85rem;
    margin-bottom: 2rem;
}
.shroomco-popup__actions { display: flex; flex-direction: column; gap: .75rem; }
.shroomco-popup__cta { justify-content: center; }
.shroomco-popup__dismiss { font-size: .9rem; }

/* =========================================================
   SHOP LAYOUT WITH SIDEBAR
   ========================================================= */
.shroomco-shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    max-width: var(--max-width, 80rem);
    margin-inline: auto;
    padding: 0 1.5rem 4rem;
    align-items: start;
}
@media (max-width: 1023px) {
    .shroomco-shop-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar */
.shroomco-shop-sidebar {
    position: sticky;
    top: calc(var(--header-h, 5rem) + 1rem);
}
.shroomco-shop-sidebar__toggle {
    display: none;
    width: 100%;
    align-items: center;
    gap: .5rem;
    background: rgba(28,16,34,.8);
    border: 1px solid rgba(175,37,244,.25);
    border-radius: .75rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    padding: .9rem 1.25rem;
    cursor: pointer;
    margin-bottom: .5rem;
}
.shroomco-shop-sidebar__chevron { margin-left: auto; transition: transform .2s; }
.shroomco-shop-sidebar__toggle[aria-expanded="true"] .shroomco-shop-sidebar__chevron {
    transform: rotate(180deg);
}
@media (max-width: 1023px) {
    .shroomco-shop-sidebar__toggle { display: flex; }
    .shroomco-filters { display: none; }
    .shroomco-filters.is-open { display: block; }
}

.shroomco-filters {
    background: rgba(28,16,34,.8);
    border: 1px solid rgba(175,37,244,.2);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.shroomco-filter-group__title {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: .85rem;
}

/* Sort radios */
.shroomco-filter-radios { display: flex; flex-direction: column; gap: .4rem; }
.shroomco-filter-radio {
    display: flex;
    align-items: center;
    gap: .6rem;
    cursor: pointer;
    font-size: .9rem;
    color: rgba(255,255,255,.75);
    transition: color .2s;
}
.shroomco-filter-radio:hover { color: #fff; }
.shroomco-filter-radio input[type="radio"] { accent-color: var(--color-primary); }

/* Price slider */
.shroomco-price-slider { padding: .5rem 0; }
.shroomco-price-slider__track {
    position: relative;
    height: 4px;
    background: rgba(255,255,255,.15);
    border-radius: 2px;
    margin: 1.5rem 0;
}
.shroomco-price-slider__fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
    pointer-events: none;
}
.shroomco-price-slider__range {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background: none;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    pointer-events: none;
    margin: 0;
}
.shroomco-price-slider__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 2px solid #fff;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 0 8px rgba(175,37,244,.5);
}
.shroomco-price-slider__range::-moz-range-thumb {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 2px solid #fff;
    cursor: pointer;
    pointer-events: all;
}
.shroomco-price-slider__labels {
    display: flex;
    justify-content: space-between;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    font-weight: 600;
}

/* Toggle switch */
.shroomco-filter-toggle {
    display: flex;
    align-items: center;
    gap: .75rem;
    cursor: pointer;
}
.shroomco-filter-toggle input { display: none; }
.shroomco-filter-toggle__track {
    width: 42px; height: 24px;
    border-radius: 12px;
    background: rgba(255,255,255,.15);
    position: relative;
    transition: background .2s;
    flex-shrink: 0;
}
.shroomco-filter-toggle__track::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: transform .2s;
}
.shroomco-filter-toggle input:checked + .shroomco-filter-toggle__track {
    background: var(--color-primary);
}
.shroomco-filter-toggle input:checked + .shroomco-filter-toggle__track::after {
    transform: translateX(18px);
}
.shroomco-filter-toggle__label { font-size: .9rem; color: rgba(255,255,255,.8); }

/* Filter action buttons */
.shroomco-filter-actions { display: flex; gap: .75rem; flex-direction: column; }
.shroomco-filter-apply,
.shroomco-filter-reset {
    text-align: center;
    justify-content: center;
    font-size: .9rem;
}

/* =========================================================
   BODY SCROLL LOCK WHEN OVERLAY OPEN
   ========================================================= */
body.overlay-open { overflow: hidden; }

/* =========================================================
   CONSULTATION ASSESSMENT PAGE
   ========================================================= */
.consult-wrap {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 4rem;
    overflow: hidden;
    background: var(--color-bg-dark, #0a060c);
}

/* Floating particles */
.consult-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.consult-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-primary);
    animation: float-particle linear infinite;
}
@keyframes float-particle {
    0%   { transform: translateY(0) scale(1); opacity: .3; }
    50%  { transform: translateY(-40px) scale(1.3); opacity: .6; }
    100% { transform: translateY(0) scale(1); opacity: .3; }
}

/* Progress bar */
.consult-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,.1);
    z-index: 100;
}
.consult-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width .5s ease;
    width: 0%;
}
.consult-progress__label {
    position: absolute;
    right: 1rem;
    top: 8px;
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    font-weight: 600;
    letter-spacing: .05em;
}

/* Inner container */
.consult-inner {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
}

/* Step base */
.consult-step {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity .3s ease;
}
.consult-step.is-active {
    display: flex;
    opacity: 1;
}
.consult-step.slide-out-left  { animation: slideOutLeft  .2s ease forwards; }
.consult-step.slide-out-right { animation: slideOutRight .2s ease forwards; }
.consult-step.slide-in-right  { animation: slideInRight  .35s ease forwards; }
.consult-step.slide-in-left   { animation: slideInLeft   .35s ease forwards; }

@keyframes slideOutLeft  { to { transform: translateX(-60px); opacity: 0; } }
@keyframes slideOutRight { to { transform: translateX(60px);  opacity: 0; } }
@keyframes slideInRight  { from { transform: translateX(60px);  opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes slideInLeft   { from { transform: translateX(-60px); opacity: 0; } to { transform: none; opacity: 1; } }

/* Step header */
.consult-step__icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(175,37,244,.2), rgba(255,0,229,.1));
    border: 1px solid rgba(175,37,244,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(175,37,244,.2);
    animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%,100% { box-shadow: 0 0 30px rgba(175,37,244,.2); }
    50%      { box-shadow: 0 0 50px rgba(175,37,244,.4); }
}
.consult-step__tag {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: .75rem;
}
.consult-step__title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: .75rem;
}
.consult-step__sub {
    color: rgba(255,255,255,.6);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Welcome badges */
.consult-step__badges {
    display: flex; gap: .75rem; flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}
.consult-badge {
    display: flex; align-items: center; gap: .35rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 2rem;
    padding: .4rem .9rem;
    font-size: .8rem;
    color: rgba(255,255,255,.7);
}
.consult-badge .material-symbols-outlined { font-size: .9rem; color: var(--color-secondary); }

/* Choice cards */
.consult-choices {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    width: 100%;
    max-width: 540px;
    margin-bottom: 2rem;
    text-align: left;
}
.consult-choices--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    max-width: 640px;
    align-items: stretch;
}
@media (max-width: 540px) {
    .consult-choices--grid { grid-template-columns: 1fr; }
}
/* Equal-height grid cells */
.consult-choices--grid .consult-choice {
    display: flex;
    flex-direction: column;
}
.consult-choice { cursor: pointer; }
.consult-choice input { display: none; }
.consult-choice__card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(28,16,34,.6);
    border: 1px solid rgba(175,37,244,.2);
    border-radius: .875rem;
    transition: border-color .2s, background .2s, transform .15s;
}
.consult-choice__card:hover {
    border-color: rgba(175,37,244,.5);
    background: rgba(175,37,244,.08);
    transform: translateY(-1px);
}
.consult-choice input:checked + .consult-choice__card {
    border-color: var(--color-primary);
    background: rgba(175,37,244,.12);
    box-shadow: 0 0 20px rgba(175,37,244,.15);
}
.consult-choice__emoji { font-size: 1.5rem; flex-shrink: 0; }
.consult-choice__label {
    font-weight: 700;
    font-size: .95rem;
    display: block;
}
.consult-choice__desc {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    display: block;
    margin-top: .15rem;
    line-height: 1.4;
}
/* Grid cards: stack vertically, fill full cell height */
.consult-choices--grid .consult-choice__card {
    flex-direction: column;
    align-items: flex-start;
    gap: .4rem;
    height: 100%;
    box-sizing: border-box;
}

/* Health checkboxes */
.consult-checks {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    width: 100%;
    max-width: 540px;
    margin-bottom: 2rem;
    text-align: left;
}
.consult-check { cursor: pointer; }
.consult-check input { display: none; }
.consult-check__card {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1.25rem;
    background: rgba(28,16,34,.6);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .75rem;
    transition: border-color .2s, background .2s;
}
.consult-check__card:hover { border-color: rgba(175,37,244,.4); background: rgba(175,37,244,.06); }
.consult-check input:checked + .consult-check__card {
    border-color: var(--color-primary);
    background: rgba(175,37,244,.1);
}
.consult-check__emoji { font-size: 1.3rem; }
.consult-check__label { flex: 1; font-size: .9rem; }
.consult-check__tick {
    font-size: 1.1rem;
    color: var(--color-primary);
    opacity: 0;
    transition: opacity .2s;
}
.consult-check input:checked + .consult-check__card .consult-check__tick { opacity: 1; }

/* Nav buttons */
.consult-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.consult-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    border: none;
    border-radius: .75rem;
    padding: .9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: opacity .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(175,37,244,.3);
}
.consult-btn-primary:hover:not(:disabled) {
    opacity: .9;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(175,37,244,.4);
}
.consult-btn-primary:disabled { opacity: .35; cursor: not-allowed; transform: none; }
.consult-btn-ghost {
    display: inline-flex; align-items: center; gap: .4rem;
    background: none;
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.6);
    border-radius: .75rem;
    padding: .9rem 1.5rem;
    font-size: .9rem;
    font-family: inherit;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}
.consult-btn-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* Loading step */
.consult-loading {
    display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
    padding: 3rem 0;
}
.consult-loading__orb {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    animation: pulse-scale 1.5s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(175,37,244,.4);
}
@keyframes pulse-scale {
    0%,100% { transform: scale(1); opacity: .8; }
    50%      { transform: scale(1.2); opacity: 1; }
}

/* Field input */
.consult-field { display: flex; flex-direction: column; gap: .4rem; }
.consult-field label { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.7); }
.consult-field input {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(175,37,244,.25);
    border-radius: .6rem;
    color: #fff;
    font-family: inherit;
    font-size: .95rem;
    padding: .75rem 1rem;
    outline: none;
    transition: border-color .2s;
    width: 100%;
}
.consult-field input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(175,37,244,.15); }

/* =========================================================
   CONSULTATION RESULTS PAGE
   ========================================================= */
.results-wrap {
    position: relative;
    min-height: 100vh;
    padding: 7rem 1.5rem 5rem;
    overflow-x: hidden;
}
.results-inner {
    max-width: 860px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

/* Profile hero */
.results-profile {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(28,16,34,.7);
    border: 1px solid rgba(175,37,244,.25);
    border-radius: 1.5rem;
    box-shadow: 0 0 60px rgba(175,37,244,.1);
}
@media (max-width: 600px) { .results-profile { flex-direction: column; align-items: center; text-align: center; } }
.results-profile__icon {
    width: 80px; height: 80px; flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(175,37,244,.3), rgba(255,0,229,.2));
    border: 2px solid var(--profile-color, var(--color-primary));
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--profile-color, var(--color-primary));
    box-shadow: 0 0 30px rgba(175,37,244,.25);
}
.results-profile__archetype {
    font-size: .75rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--profile-color, var(--color-primary));
    margin-bottom: .3rem;
}
.results-profile__title {
    font-size: 2.2rem; font-weight: 800; line-height: 1.1;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,.7));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .75rem;
}
.results-profile__tags {
    display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .85rem;
}
.results-tag {
    background: rgba(175,37,244,.12);
    border: 1px solid rgba(175,37,244,.25);
    border-radius: 2rem;
    padding: .25rem .75rem;
    font-size: .78rem; font-weight: 600;
    color: rgba(255,255,255,.75);
}
.results-profile__desc { color: rgba(255,255,255,.65); line-height: 1.65; font-size: .95rem; }

/* Safety notice */
.results-safety {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: rgba(255,165,0,.08);
    border: 1px solid rgba(255,165,0,.3);
    border-radius: 1rem;
    color: rgba(255,255,255,.8);
    font-size: .9rem; line-height: 1.6;
}
.results-safety__icon { color: #ffaa00; font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.results-safety strong { display: block; margin-bottom: .3rem; color: #ffaa00; }

/* Section */
.results-section__title {
    display: flex; align-items: center; gap: .6rem;
    font-size: 1.4rem; font-weight: 700; margin-bottom: .4rem;
}
.results-section__sub { color: rgba(255,255,255,.5); font-size: .9rem; margin-bottom: 1.5rem; }

/* Product cards */
.results-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 700px) { .results-products { grid-template-columns: 1fr; } }
.results-product-card {
    background: rgba(28,16,34,.7);
    border: 1px solid rgba(175,37,244,.2);
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex; flex-direction: column;
    animation: fadeSlideUp .5s ease both;
    transition: transform .2s, box-shadow .2s;
}
.results-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(175,37,244,.2);
}
.results-product-card--top {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(175,37,244,.15);
    position: relative;
}
.results-product-card__rank {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    color: #fff;
    font-size: .72rem; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
    padding: .35rem .75rem;
    text-align: center;
}
.results-product-card__img {
    height: 160px; overflow: hidden;
}
.results-product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.results-product-card__img-placeholder {
    width: 100%; height: 100%;
    background: rgba(175,37,244,.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: rgba(175,37,244,.3);
}
.results-product-card__body { padding: 1.1rem; display: flex; flex-direction: column; flex: 1; gap: .4rem; }
.results-product-card__cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--color-primary); }
.results-product-card__name { font-size: 1rem; font-weight: 700; }
.results-product-card__desc { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.5; flex: 1; }
.results-product-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; }
.results-product-card__price { font-weight: 700; color: var(--color-secondary); }
.results-product-card__btn {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .8rem; font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap .2s;
}
.results-product-card__btn:hover { gap: .6rem; }

/* Register box */
.results-register__box {
    background: rgba(28,16,34,.7);
    border: 1px solid rgba(175,37,244,.25);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    text-align: center;
}
.results-register__icon {
    font-size: 3rem;
    color: var(--color-primary);
    display: block;
    margin-bottom: 1rem;
}
.results-register__box h2 { font-size: 1.8rem; margin-bottom: .75rem; }
.results-register__box > p { color: rgba(255,255,255,.6); max-width: 480px; margin: 0 auto 2rem; line-height: 1.6; }
.results-register__fields { display: flex; flex-direction: column; gap: 1rem; max-width: 420px; margin: 0 auto 1.25rem; text-align: left; }
.results-register__error {
    color: #ff6b6b; font-size: .88rem;
    background: rgba(255,100,100,.08);
    border: 1px solid rgba(255,100,100,.25);
    border-radius: .5rem;
    padding: .6rem 1rem;
    margin: -.5rem auto .75rem;
    max-width: 420px;
    text-align: left;
}
.results-register__cta {
    display: inline-flex; align-items: center; gap: .5rem;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}
.results-register__login { margin-top: 1rem; font-size: .85rem; color: rgba(255,255,255,.4); }
.results-register__login a { color: var(--color-primary); text-decoration: none; }

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
}

/* =========================================================
   COLORADO GUIDE PAGE
   ========================================================= */
.coguide-wrap {
    position: relative;
    overflow-x: hidden;
    background: var(--color-bg-dark);
}
.coguide-container {
    max-width: 900px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* Hero */
.coguide-hero {
    text-align: center;
    padding: 9rem 1.5rem 5rem;
    position: relative;
    z-index: 1;
}
.coguide-hero__eyebrow {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .78rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--color-primary);
    margin-bottom: 1.25rem;
}
.coguide-hero__title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800; line-height: 1.1;
    margin-bottom: 1.25rem;
}
.coguide-hero__sub {
    max-width: 600px; margin-inline: auto;
    color: rgba(255,255,255,.6); font-size: 1.05rem;
    line-height: 1.7; margin-bottom: 2.5rem;
}
.coguide-hero__nav {
    display: flex; flex-wrap: wrap; gap: .75rem;
    justify-content: center;
}
.coguide-pill {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(175,37,244,.1);
    border: 1px solid rgba(175,37,244,.3);
    border-radius: 2rem; padding: .55rem 1.1rem;
    font-size: .85rem; font-weight: 600;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}
.coguide-pill:hover {
    background: rgba(175,37,244,.2);
    border-color: var(--color-primary);
    color: #fff;
}
.coguide-pill .material-symbols-outlined { font-size: 1rem; color: var(--color-primary); }

/* Disclaimer banner */
.coguide-disclaimer {
    display: flex; align-items: flex-start; gap: 1rem;
    background: rgba(255,200,0,.06);
    border: 1px solid rgba(255,200,0,.2);
    border-radius: 1rem; padding: 1.1rem 1.4rem;
    font-size: .85rem; color: rgba(255,255,255,.65);
    line-height: 1.6; margin-bottom: 0;
}
.coguide-disclaimer__icon { color: #ffc107; flex-shrink: 0; margin-top: .1rem; }

/* Sections */
.coguide-section { padding: 5rem 0; position: relative; z-index: 1; }
.coguide-section--alt { background: rgba(175,37,244,.03); }
.coguide-section__header {
    display: flex; align-items: flex-start; gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (max-width: 600px) { .coguide-section__header { flex-direction: column; } }
.coguide-section__icon {
    width: 60px; height: 60px; flex-shrink: 0;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(175,37,244,.2), rgba(175,37,244,.05));
    border: 1px solid rgba(175,37,244,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--color-primary);
}
.coguide-section__title { font-size: 2rem; font-weight: 800; margin-bottom: .4rem; }
.coguide-section__sub { color: rgba(255,255,255,.5); font-size: .95rem; }

/* ── Timeline ── */
.coguide-timeline { position: relative; padding-left: 2rem; }
.coguide-timeline::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
}
.coguide-timeline__item {
    position: relative; padding-left: 2rem; padding-bottom: 2.5rem;
}
.coguide-timeline__item::before {
    content: '';
    position: absolute; left: -2.45rem; top: .4rem;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
}
.coguide-timeline__marker {
    margin-bottom: .5rem;
}
.coguide-timeline__year {
    font-size: .75rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: var(--color-primary);
}
.coguide-timeline__content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.coguide-timeline__content p { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.7; margin-bottom: .85rem; }
.coguide-timeline__tag {
    display: inline-block; font-size: .72rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    border-radius: 2rem; padding: .25rem .75rem;
}
.coguide-timeline__tag--green { background: rgba(0,255,157,.1); color: #00ff9d; border: 1px solid rgba(0,255,157,.25); }
.coguide-timeline__tag--amber { background: rgba(255,193,7,.1); color: #ffc107; border: 1px solid rgba(255,193,7,.25); }
.coguide-timeline__tag--red   { background: rgba(255,80,80,.1); color: #ff5050; border: 1px solid rgba(255,80,80,.25); }

/* List inside timeline */
.coguide-list { margin-top: .75rem; display: flex; flex-direction: column; gap: .4rem; }
.coguide-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .88rem; color: rgba(255,255,255,.7); }
.coguide-list .material-symbols-outlined { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }
.coguide-list .material-symbols-outlined[aria-hidden="true"]:not(.cancel) { color: #00ff9d; }
.coguide-list .cancel { color: #ff5050; }

/* Status cards */
.coguide-status-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
    margin-top: 2rem;
}
@media (max-width: 640px) { .coguide-status-grid { grid-template-columns: 1fr; } }
.coguide-status-card {
    border-radius: 1rem; padding: 1.75rem;
    display: flex; flex-direction: column; gap: .6rem;
}
.coguide-status-card--green {
    background: rgba(0,255,157,.05);
    border: 1px solid rgba(0,255,157,.2);
}
.coguide-status-card--red {
    background: rgba(255,80,80,.05);
    border: 1px solid rgba(255,80,80,.2);
}
.coguide-status-card__icon { font-size: 1.5rem; }
.coguide-status-card--green .coguide-status-card__icon { color: #00ff9d; }
.coguide-status-card--red   .coguide-status-card__icon { color: #ff5050; }
.coguide-status-card h4 { font-size: 1rem; font-weight: 700; }
.coguide-status-card ul { display: flex; flex-direction: column; gap: .35rem; }
.coguide-status-card li { font-size: .85rem; color: rgba(255,255,255,.65); padding-left: .75rem; position: relative; }
.coguide-status-card li::before { content: '—'; position: absolute; left: 0; color: rgba(255,255,255,.3); }

/* ── Safety cards ── */
.coguide-safety-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
@media (max-width: 700px) { .coguide-safety-grid { grid-template-columns: 1fr; } }
.coguide-safety-card {
    background: rgba(28,16,34,.7);
    border: 1px solid rgba(175,37,244,.15);
    border-radius: 1.25rem; padding: 1.75rem;
    display: flex; flex-direction: column; gap: .75rem;
    transition: border-color .2s;
}
.coguide-safety-card:hover { border-color: rgba(175,37,244,.35); }
.coguide-safety-card__num {
    font-size: 2rem; font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.coguide-safety-card h3 { font-size: 1.05rem; font-weight: 700; }
.coguide-safety-card p { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.65; }
.coguide-safety-card__tips {
    display: flex; flex-direction: column; gap: .4rem;
    padding-left: 0; list-style: none;
}
.coguide-safety-card__tips li {
    font-size: .84rem; color: rgba(255,255,255,.65);
    padding-left: .9rem; position: relative;
}
.coguide-safety-card__tips li::before { content: '·'; position: absolute; left: 0; color: var(--color-primary); font-size: 1.2rem; line-height: 1; }
.coguide-safety-card__tips--warning li::before { color: #ffc107; }
.coguide-safety-card__link {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .82rem; color: var(--color-secondary);
    text-decoration: none; margin-top: .25rem;
    transition: opacity .2s;
}
.coguide-safety-card__link:hover { opacity: .8; }

/* Dose table */
.coguide-dose-table { display: flex; flex-direction: column; gap: .4rem; }
.coguide-dose-row {
    display: grid; grid-template-columns: 80px 70px 1fr;
    align-items: center; gap: .6rem;
    padding: .5rem .75rem; border-radius: .5rem;
    background: rgba(255,255,255,.03);
}
.coguide-dose-level {
    font-size: .75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; border-radius: 2rem;
    padding: .2rem .6rem; text-align: center;
}
.coguide-dose-level--1 { background: rgba(0,255,157,.1); color: #00ff9d; }
.coguide-dose-level--2 { background: rgba(100,220,255,.1); color: #64dcff; }
.coguide-dose-level--3 { background: rgba(175,37,244,.15); color: #af25f4; }
.coguide-dose-level--4 { background: rgba(255,140,0,.1); color: #ff8c00; }
.coguide-dose-level--5 { background: rgba(255,50,50,.1); color: #ff5050; }
.coguide-dose-amount { font-size: .85rem; font-weight: 700; color: #fff; }
.coguide-dose-desc { font-size: .78rem; color: rgba(255,255,255,.5); }

/* ── FAQ ── */
.coguide-faq { display: flex; flex-direction: column; gap: .5rem; }
.coguide-faq__item {
    background: rgba(28,16,34,.7);
    border: 1px solid rgba(175,37,244,.15);
    border-radius: 1rem; overflow: hidden;
    transition: border-color .2s;
}
.coguide-faq__item.is-open { border-color: rgba(175,37,244,.4); }
.coguide-faq__question {
    width: 100%; display: flex; align-items: center;
    justify-content: space-between; gap: 1rem;
    background: none; border: none; color: #fff;
    font-family: inherit; font-size: .95rem; font-weight: 600;
    padding: 1.25rem 1.5rem; cursor: pointer;
    text-align: left; line-height: 1.4;
    transition: color .2s;
}
.coguide-faq__question:hover { color: var(--color-primary); }
.coguide-faq__chevron {
    flex-shrink: 0; font-size: 1.25rem;
    color: rgba(255,255,255,.4);
    transition: transform .25s ease, color .2s;
}
.coguide-faq__item.is-open .coguide-faq__chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}
.coguide-faq__answer {
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid rgba(175,37,244,.1);
}
.coguide-faq__answer p { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.75; padding-top: 1rem; }

/* ── Service area zones ── */
.coguide-zones {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
    margin-bottom: 2rem;
}
@media (max-width: 640px) { .coguide-zones { grid-template-columns: 1fr; } }
.coguide-zone {
    border-radius: 1.25rem; padding: 1.75rem;
}
.coguide-zone--denver {
    background: rgba(175,37,244,.07);
    border: 1px solid rgba(175,37,244,.25);
}
.coguide-zone--csprings {
    background: rgba(0,255,157,.05);
    border: 1px solid rgba(0,255,157,.2);
}
.coguide-zone__header {
    display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem;
}
.coguide-zone--denver .coguide-zone__header .material-symbols-outlined { color: var(--color-primary); }
.coguide-zone--csprings .coguide-zone__header .material-symbols-outlined { color: var(--color-secondary); }
.coguide-zone__header h3 { font-size: 1rem; font-weight: 700; flex: 1; }
.coguide-zone__badge {
    font-size: .7rem; font-weight: 800; letter-spacing: .08em;
    text-transform: uppercase; border-radius: 2rem; padding: .2rem .65rem;
}
.coguide-zone__badge--active { background: rgba(0,255,157,.1); color: #00ff9d; border: 1px solid rgba(0,255,157,.3); }
.coguide-zone p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: .75rem; }
.coguide-zone__radius {
    display: flex; align-items: center; gap: .4rem;
    font-size: .8rem; color: rgba(255,255,255,.45);
}
.coguide-zone__radius .material-symbols-outlined { font-size: .9rem; }

/* Map */
.coguide-map-wrap {
    background: rgba(28,16,34,.8);
    border: 1px solid rgba(175,37,244,.2);
    border-radius: 1.5rem; overflow: hidden;
}
.coguide-map-legend {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.coguide-map-legend__item {
    display: flex; align-items: center; gap: .5rem;
    font-size: .82rem; color: rgba(255,255,255,.6);
}
.coguide-map-legend__dot {
    width: 14px; height: 14px; border-radius: 50%; display: inline-block;
}
#shroomco-map {
    height: 460px; width: 100%;
    background: #0d0a10;
}
.coguide-map__loading {
    height: 100%; display: flex; align-items: center; justify-content: center;
    gap: .75rem; color: rgba(255,255,255,.3); font-size: .9rem;
}
/* Override Leaflet popup styles */
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.leaflet-popup-content { margin: 0 !important; }
.coguide-map__note {
    display: flex; align-items: flex-start; gap: .5rem;
    padding: .85rem 1.5rem; font-size: .8rem;
    color: rgba(255,255,255,.35);
    border-top: 1px solid rgba(255,255,255,.05);
}
.coguide-map__note .material-symbols-outlined { font-size: .9rem; flex-shrink: 0; margin-top: .05rem; }

/* CTA */
.coguide-cta { padding: 5rem 0; position: relative; z-index: 1; }
.coguide-cta__box {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, rgba(175,37,244,.12), rgba(255,0,229,.06));
    border: 1px solid rgba(175,37,244,.3);
    border-radius: 2rem; padding: 4rem 2rem;
    text-align: center;
}
.coguide-cta__orb {
    position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(175,37,244,.15) 0%, transparent 70%);
    pointer-events: none;
}
.coguide-cta__box h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: .75rem; }
.coguide-cta__box p { color: rgba(255,255,255,.6); max-width: 440px; margin: 0 auto 2rem; line-height: 1.6; }
.coguide-cta__btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: 1rem 2.5rem; font-size: 1rem;
}

/* ── Cart added confirmation (popup flow) ── */
.results-added-to-cart__box {
    background: linear-gradient(135deg, rgba(0,255,157,.08), rgba(0,255,157,.03));
    border: 1px solid rgba(0,255,157,.3);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.results-added-to-cart__icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(0,255,157,.12);
    border: 2px solid rgba(0,255,157,.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem;
    color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(0,255,157,.2);
    animation: pulse-glow-green 2.5s ease-in-out infinite;
}
@keyframes pulse-glow-green {
    0%,100% { box-shadow: 0 0 20px rgba(0,255,157,.2); }
    50%      { box-shadow: 0 0 40px rgba(0,255,157,.4); }
}
.results-added-to-cart__box h2 { font-size: 1.8rem; font-weight: 800; }
.results-added-to-cart__box p  { color: rgba(255,255,255,.6); max-width: 420px; line-height: 1.65; }
.results-added-to-cart__actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    justify-content: center; margin-top: .5rem;
}

/* ================================================================
   MY ACCOUNT — Full Brand Redesign
   ================================================================ */

/* Strip the WC shortcode wrapper on account page so our template
   fills the full width without extra padding/margin */
.woocommerce-page--account .woocommerce {
    display: contents; /* passthrough — children behave as direct children of <main> */
}
/* Also nuke any page-title WC might still output */
.woocommerce-page--account .woocommerce-MyAccount-navigation,
.woocommerce-page--account > .woocommerce > nav { display: none !important; }
.shroomco-account {
    min-height: calc(100vh - var(--header-h));
    padding-block: 4rem;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(175,37,244,0.12), transparent);
}
.shroomco-account__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 768px) {
    .shroomco-account__layout {
        grid-template-columns: 260px 1fr;
        gap: 2.5rem;
    }
}

/* Sidebar */
.shroomco-account__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
}
.shroomco-account__avatar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(175,37,244,0.06);
    border: 1px solid rgba(175,37,244,0.2);
    border-radius: var(--radius-lg);
}
.shroomco-account__avatar-circle {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 800; color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(175,37,244,0.4);
}
.shroomco-account__avatar-info {
    display: flex; flex-direction: column; gap: 0.2rem;
    min-width: 0;
}
.shroomco-account__avatar-info strong {
    font-size: 0.95rem; font-weight: 700;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.shroomco-account__avatar-info span {
    font-size: 0.75rem; color: var(--color-muted);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.shroomco-account__consulted {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(0,255,157,0.08);
    border: 1px solid rgba(0,255,157,0.25);
    border-radius: var(--radius-md);
    font-size: 0.8rem; font-weight: 700; color: var(--color-secondary);
}
.shroomco-account__consult-cta {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: rgba(175,37,244,0.12);
    border: 1px solid rgba(175,37,244,0.35);
    border-radius: var(--radius-md);
    font-size: 0.8rem; font-weight: 700; color: var(--color-primary);
    text-decoration: none; transition: all 0.2s;
}
.shroomco-account__consult-cta:hover {
    background: rgba(175,37,244,0.22);
    color: var(--color-text);
}

/* Nav */
.shroomco-account-nav {
    display: flex; flex-direction: column; gap: 0.25rem;
    background: rgba(10,6,12,0.6);
    border: 1px solid rgba(175,37,244,0.15);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    backdrop-filter: blur(10px);
}
.shroomco-account-nav__item {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-md);
    color: var(--color-muted);
    font-size: 0.875rem; font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}
.shroomco-account-nav__item:hover {
    background: rgba(175,37,244,0.1);
    color: var(--color-text);
}
.shroomco-account-nav__item.is-active {
    background: rgba(175,37,244,0.15);
    color: var(--color-primary);
    border: 1px solid rgba(175,37,244,0.25);
}
.shroomco-account-nav__item .material-symbols-outlined {
    font-size: 1.1rem; flex-shrink: 0;
}
.shroomco-account-nav__badge {
    margin-left: auto;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.7rem; font-weight: 800;
    padding: 0.1rem 0.5rem;
    border-radius: var(--radius-full);
    min-width: 1.4rem; text-align: center;
}

/* Main content area */
.shroomco-account__main {
    background: rgba(10,6,12,0.5);
    border: 1px solid rgba(175,37,244,0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
}
.shroomco-account__main h2,
.shroomco-account__main h3 {
    font-size: 1.4rem; font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(175,37,244,0.15);
}
/* WC tables inside account */
.shroomco-account__main table.shop_table {
    width: 100%; border-collapse: collapse;
    font-size: 0.875rem;
}
.shroomco-account__main table.shop_table th {
    text-align: left; padding: 0.75rem 1rem;
    font-size: 0.75rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; color: var(--color-muted);
    border-bottom: 1px solid rgba(175,37,244,0.15);
}
.shroomco-account__main table.shop_table td {
    padding: 1rem; vertical-align: middle;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.shroomco-account__main table.shop_table tr:last-child td { border-bottom: none; }
.shroomco-account__main table.shop_table .button,
.shroomco-account__main .button,
.shroomco-account__main input[type="submit"] {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    background: rgba(175,37,244,0.15);
    border: 1px solid rgba(175,37,244,0.4);
    border-radius: var(--radius-full);
    color: var(--color-text); font-size: 0.8rem; font-weight: 700;
    font-family: var(--font-display);
    cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.shroomco-account__main .button:hover,
.shroomco-account__main input[type="submit"]:hover {
    background: var(--color-primary); border-color: var(--color-primary); color: #fff;
}
.shroomco-account__main .woocommerce-orders-table__cell-order-status mark {
    background: transparent;
    font-weight: 700;
}
.shroomco-account__main .woocommerce-orders-table__cell-order-status .wc-processing { color: var(--color-secondary); }
.shroomco-account__main .woocommerce-orders-table__cell-order-status .wc-completed  { color: #64748b; }
/* Form fields in account */
.shroomco-account__main .woocommerce-form-row label,
.shroomco-account__main .woocommerce fieldset legend {
    font-size: 0.8rem; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase; color: var(--color-muted);
    margin-bottom: 0.4rem; display: block;
}
.shroomco-account__main .woocommerce-form-row input[type="text"],
.shroomco-account__main .woocommerce-form-row input[type="email"],
.shroomco-account__main .woocommerce-form-row input[type="password"],
.shroomco-account__main .woocommerce-form-row input[type="tel"],
.shroomco-account__main .woocommerce-form-row select,
.shroomco-account__main .woocommerce-form-row textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(175,37,244,0.25);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    color: var(--color-text); font-family: var(--font-display);
    font-size: 0.9rem; transition: border-color 0.2s;
}
.shroomco-account__main .woocommerce-form-row input:focus,
.shroomco-account__main .woocommerce-form-row select:focus,
.shroomco-account__main .woocommerce-form-row textarea:focus {
    outline: none; border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(175,37,244,0.15);
}
/* Dashboard welcome */
.woocommerce-MyAccount-content p:first-child {
    color: var(--color-muted); line-height: 1.7; margin-bottom: 1rem;
}

/* ================================================================
   MY ACCOUNT — Login / Register Form (logged-out state)
   ================================================================ */
.woocommerce-page--account .woocommerce {
    max-width: 480px;
    margin: 0 auto;
}
.woocommerce-page--account .woocommerce-form-login,
.woocommerce-page--account .woocommerce-form-register {
    background: rgba(10,6,12,0.7);
    border: 1px solid rgba(175,37,244,0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(12px);
}
.woocommerce-page--account .woocommerce-form-login h2,
.woocommerce-page--account .woocommerce-form-register h2 {
    font-size: 1.5rem; font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.woocommerce-page--account .woocommerce-form-row {
    margin-bottom: 1.25rem;
}
.woocommerce-page--account .woocommerce-form-row label {
    display: block;
    font-size: 0.75rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; color: var(--color-muted);
    margin-bottom: 0.4rem;
}
.woocommerce-page--account .woocommerce-form-row input[type="text"],
.woocommerce-page--account .woocommerce-form-row input[type="email"],
.woocommerce-page--account .woocommerce-form-row input[type="password"] {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(175,37,244,0.25);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    color: var(--color-text);
    font-family: var(--font-display); font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.woocommerce-page--account .woocommerce-form-row input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(175,37,244,0.15);
}
.woocommerce-page--account .woocommerce-form-login__rememberme {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem; color: var(--color-muted);
    margin-bottom: 1.25rem;
}
.woocommerce-page--account .woocommerce-form-login__rememberme input { width: auto; }
.woocommerce-page--account .woocommerce-button,
.woocommerce-page--account .woocommerce-form-login .button,
.woocommerce-page--account .woocommerce-form-register .button {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none; border-radius: var(--radius-full);
    color: #fff; font-family: var(--font-display);
    font-size: 1rem; font-weight: 800;
    cursor: pointer; transition: opacity 0.2s, transform 0.2s;
}
.woocommerce-page--account .woocommerce-form-login .button:hover,
.woocommerce-page--account .woocommerce-form-register .button:hover {
    opacity: 0.9; transform: translateY(-1px);
}
.woocommerce-page--account .woocommerce-LostPassword {
    text-align: center; margin-top: 1rem;
    font-size: 0.85rem;
}
.woocommerce-page--account .woocommerce-LostPassword a {
    color: var(--color-primary); text-decoration: none;
}
.woocommerce-page--account .woocommerce-LostPassword a:hover { text-decoration: underline; }
/* Column layout for login + register side by side */
.woocommerce-page--account .u-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .woocommerce-page--account .u-columns { grid-template-columns: 1fr 1fr; }
    .woocommerce-page--account .woocommerce { max-width: 900px; }
}

/* ================================================================
   AUTH PAGE — Tabbed Login / Register Card
   ================================================================ */
.sc-auth-page,
.sc-auth {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.sc-auth__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.sc-auth__blob--left {
    width: 30rem; height: 30rem;
    background: rgba(175,37,244,0.18);
    top: -5rem; left: -8rem;
}
.sc-auth__blob--right {
    width: 25rem; height: 25rem;
    background: rgba(0,255,157,0.1);
    bottom: -5rem; right: -6rem;
}
.sc-auth__card {
    position: relative; z-index: 1;
    width: 100%; max-width: 440px;
    background: rgba(10,6,12,0.75);
    border: 1px solid rgba(175,37,244,0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2.5rem 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 80px rgba(175,37,244,0.08), 0 24px 48px rgba(0,0,0,0.4);
}

/* Brand mark */
.sc-auth__brand {
    display: flex; align-items: center; gap: 0.6rem;
    margin-bottom: 0.5rem;
    font-size: 1rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--color-muted);
}
.sc-auth__brand strong { color: var(--color-text); }
.sc-auth__tagline {
    font-size: 0.82rem; color: var(--color-muted);
    margin-bottom: 1.75rem;
}

/* Tabs */
.sc-auth__tabs {
    position: relative;
    display: grid; grid-template-columns: 1fr 1fr;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-md);
    padding: 4px;
    margin-bottom: 1.75rem;
    overflow: hidden;
}
.sc-auth__tab-indicator {
    position: absolute;
    top: 4px; left: 4px;
    width: calc(50% - 4px); height: calc(100% - 8px);
    background: rgba(175,37,244,0.2);
    border: 1px solid rgba(175,37,244,0.35);
    border-radius: calc(var(--radius-md) - 2px);
    transition: transform 0.25s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}
.sc-auth__tab {
    position: relative; z-index: 1;
    padding: 0.6rem 0.5rem;
    background: transparent; border: none;
    border-radius: calc(var(--radius-md) - 2px);
    font-family: var(--font-display); font-size: 0.875rem; font-weight: 700;
    color: var(--color-muted); cursor: pointer;
    transition: color 0.2s;
}
.sc-auth__tab.is-active { color: var(--color-text); }

/* Form */
.sc-form { display: flex; flex-direction: column; gap: 1.1rem; }
.sc-form__group { display: flex; flex-direction: column; gap: 0.35rem; }
.sc-form__group label {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.75rem; font-weight: 700; letter-spacing: .05em;
    text-transform: uppercase; color: var(--color-muted);
}
.sc-form__forgot {
    font-size: 0.75rem; font-weight: 600; text-transform: none; letter-spacing: 0;
    color: var(--color-primary); text-decoration: none;
}
.sc-form__forgot:hover { text-decoration: underline; }
.sc-form__input-wrap {
    position: relative; display: flex; align-items: center;
}
.sc-form__icon {
    position: absolute; left: 0.85rem;
    font-size: 1.1rem; color: var(--color-muted);
    pointer-events: none;
}
.sc-form__input-wrap input[type="text"],
.sc-form__input-wrap input[type="email"],
.sc-form__input-wrap input[type="password"] {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(175,37,244,0.2);
    border-radius: var(--radius-md);
    padding: 0.75rem 2.75rem 0.75rem 2.75rem;
    color: var(--color-text);
    font-family: var(--font-display); font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.sc-form__input-wrap input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(175,37,244,0.15);
}
.sc-form__toggle-pw {
    position: absolute; right: 0.85rem;
    background: none; border: none; cursor: pointer;
    color: var(--color-muted); padding: 0; line-height: 1;
    transition: color 0.2s;
}
.sc-form__toggle-pw:hover { color: var(--color-text); }
.sc-form__toggle-pw .material-symbols-outlined { font-size: 1.1rem; }

/* Remember me */
.sc-form__remember {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; color: var(--color-muted); cursor: pointer;
}
.sc-form__remember input[type="checkbox"] {
    width: 1rem; height: 1rem; accent-color: var(--color-primary); cursor: pointer;
}

/* Submit button */
.sc-form__submit {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border: none; border-radius: var(--radius-full);
    color: #fff; font-family: var(--font-display);
    font-size: 1rem; font-weight: 800;
    cursor: pointer; transition: opacity 0.2s, transform 0.15s;
    margin-top: 0.25rem;
}
.sc-form__submit:hover  { opacity: 0.92; transform: translateY(-1px); }
.sc-form__submit:active { transform: translateY(0); }
.sc-form__submit--register {
    background: linear-gradient(135deg, #1a0a22 0%, rgba(175,37,244,0.4) 100%);
    border: 1px solid rgba(175,37,244,0.5);
}
.sc-form__submit--register:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-color: transparent;
}
.sc-form__submit .material-symbols-outlined { font-size: 1.1rem; }

/* Hint + terms */
.sc-form__hint {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.8rem; color: var(--color-muted);
    background: rgba(175,37,244,0.06);
    border: 1px solid rgba(175,37,244,0.15);
    border-radius: var(--radius-md); padding: 0.6rem 0.85rem;
}
.sc-form__hint .material-symbols-outlined { font-size: 1rem; color: var(--color-primary); }
.sc-form__terms {
    font-size: 0.75rem; color: var(--color-muted);
    text-align: center; margin-top: 0.25rem;
}
.sc-form__terms a { color: var(--color-primary); text-decoration: none; }
.sc-form__terms a:hover { text-decoration: underline; }

/* WC notices inside auth card */
.sc-auth .woocommerce-error,
.sc-auth .woocommerce-message,
.sc-auth .woocommerce-info {
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    list-style: none;
}
.sc-auth .woocommerce-error  { background: rgba(255,50,50,0.1);  border-left: 3px solid #f87171; }
.sc-auth .woocommerce-message { background: rgba(0,255,157,0.08); border-left: 3px solid var(--color-secondary); }

/* ================================================================
   CONSULTATION FEE / GIFT FRAMING
   ================================================================ */

/* ── Shop / Archive card ──────────────────────────────────────── */
.shroomco-product-card__consult-label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
}
.shroomco-product-card__consult-label .material-symbols-outlined {
    font-size: 0.85rem;
}
.shroomco-product-card__price-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.shroomco-product-card__gift-line {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    color: var(--color-secondary);
    font-weight: 600;
}
.shroomco-product-card__gift-line .material-symbols-outlined {
    font-size: 0.85rem;
}

/* ── Single product ───────────────────────────────────────────── */
.shroomco-single__price-block {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(175,37,244,0.05);
    border: 1px solid rgba(175,37,244,0.15);
    border-radius: var(--radius-md);
}
.shroomco-single__price-header {
    margin-bottom: 0.35rem;
}
.shroomco-single__price-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--color-primary);
}
.shroomco-single__price-label .material-symbols-outlined {
    font-size: 0.9rem;
}
.shroomco-single__price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.6rem;
}
.shroomco-single__price .woocommerce-Price-amount {
    color: var(--color-text);
}
.shroomco-single__gift-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    background: rgba(0,255,157,0.06);
    border: 1px solid rgba(0,255,157,0.2);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: var(--color-secondary);
    line-height: 1.5;
}
.shroomco-single__gift-notice .material-symbols-outlined {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

/* Gift selector label */
.shroomco-variations__label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}
.shroomco-variations__label .material-symbols-outlined {
    font-size: 0.95rem;
    color: var(--color-secondary);
}

/* Cart consultation/gift labels */
.shroomco-cart-item__consult-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}
.shroomco-cart-item__consult-tag .material-symbols-outlined { font-size: 0.8rem; }
.shroomco-cart-item__meta {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.shroomco-cart-item__meta .material-symbols-outlined { font-size: 0.85rem; }

/* ================================================================
   THANK YOU / ORDER RECEIVED PAGE
   ================================================================ */
.sc-ty{position:relative;max-width:900px;margin:0 auto;padding:3rem 1.5rem 5rem;min-height:80vh;}
.sc-ty__orb{position:fixed;border-radius:50%;pointer-events:none;z-index:0;filter:blur(80px);}
.sc-ty__orb--1{width:500px;height:500px;top:-100px;right:-100px;background:radial-gradient(circle,rgba(175,37,244,.12),transparent 70%);}
.sc-ty__orb--2{width:400px;height:400px;bottom:0;left:-80px;background:radial-gradient(circle,rgba(0,255,157,.08),transparent 70%);}
/* Hero */
.sc-ty__hero{position:relative;z-index:1;text-align:center;padding:2rem 0 2.5rem;}
.sc-ty__burst{
    width:72px;height:72px;border-radius:50%;margin:0 auto 1.25rem;
    background:linear-gradient(135deg,#af25f4,#ff00e5);
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 0 40px rgba(175,37,244,.4);
    animation:tyPulse 2.5s ease-in-out infinite;
}
.sc-ty__burst .material-symbols-outlined{font-size:1.8rem;color:#fff;}
@keyframes tyPulse{0%,100%{box-shadow:0 0 30px rgba(175,37,244,.3);}50%{box-shadow:0 0 60px rgba(175,37,244,.6);}}
.sc-ty__headline{font-size:clamp(1.8rem,5vw,2.8rem);font-weight:800;margin-bottom:.75rem;}
.sc-ty__sub{font-size:1rem;color:#94a3b8;line-height:1.7;max-width:560px;margin:0 auto 1.5rem;}
.sc-ty__order-badge{
    display:inline-flex;align-items:center;gap:1rem;flex-wrap:wrap;justify-content:center;
    background:rgba(255,255,255,.04);border:1px solid rgba(175,37,244,.2);
    border-radius:50px;padding:.6rem 1.25rem;font-size:.85rem;
}
.sc-ty__order-num{font-weight:700;color:var(--color-text);}
.sc-ty__order-status{display:flex;align-items:center;gap:.3rem;font-weight:600;}
.sc-ty__order-status .material-symbols-outlined{font-size:1rem;}
.sc-ty__order-status--processing{color:#00ff9d;}
.sc-ty__order-status--completed{color:#00ff9d;}
.sc-ty__order-status--on-hold{color:#f59e0b;}
.sc-ty__order-status--pending{color:#94a3b8;}
/* Grid */
.sc-ty__grid{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;margin-bottom:2.5rem;}
/* Cards */
.sc-ty__card{
    background:rgba(255,255,255,.03);border:1px solid rgba(175,37,244,.12);
    border-radius:16px;padding:1.5rem;
}
.sc-ty__card-head{
    display:flex;align-items:center;gap:.5rem;
    font-size:.72rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;
    color:var(--color-primary);margin-bottom:1.25rem;
}
.sc-ty__card-head .material-symbols-outlined{font-size:1rem;}
/* Items */
.sc-ty__item{display:flex;align-items:flex-start;gap:.75rem;padding:.75rem 0;border-bottom:1px solid rgba(255,255,255,.05);}
.sc-ty__item:last-child{border-bottom:none;}
.sc-ty__item-img{width:52px;height:52px;border-radius:8px;object-fit:cover;flex-shrink:0;}
.sc-ty__item-info{flex:1;}
.sc-ty__item-consult{font-size:.65rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--color-primary);margin-bottom:.2rem;}
.sc-ty__item-name{font-size:.9rem;font-weight:700;margin-bottom:.2rem;}
.sc-ty__item-gift{font-size:.8rem;color:var(--color-secondary);display:flex;align-items:center;gap:.25rem;}
.sc-ty__item-gift .material-symbols-outlined{font-size:.85rem;}
.sc-ty__item-price{font-size:.95rem;font-weight:700;flex-shrink:0;}
/* Totals */
.sc-ty__totals{margin-top:1rem;border-top:1px solid rgba(255,255,255,.06);padding-top:.75rem;}
.sc-ty__totals-row{display:flex;justify-content:space-between;padding:.35rem 0;font-size:.85rem;color:#94a3b8;}
.sc-ty__totals-row--total{font-size:1rem;font-weight:800;color:var(--color-text);border-top:1px solid rgba(175,37,244,.2);padding-top:.6rem;margin-top:.35rem;}
/* Detail rows */
.sc-ty__detail-row{display:flex;align-items:flex-start;gap:.75rem;padding:.65rem 0;border-bottom:1px solid rgba(255,255,255,.04);}
.sc-ty__detail-row:last-of-type{border-bottom:none;}
.sc-ty__detail-row .material-symbols-outlined{font-size:1.1rem;color:var(--color-primary);flex-shrink:0;margin-top:.15rem;}
.sc-ty__detail-label{font-size:.68rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#475569;margin-bottom:.15rem;}
.sc-ty__delivery-notice{
    display:flex;gap:.6rem;align-items:flex-start;
    margin-top:1rem;padding:.75rem 1rem;
    background:rgba(0,255,157,.05);border:1px solid rgba(0,255,157,.15);border-radius:10px;
    font-size:.8rem;color:#94a3b8;line-height:1.6;
}
.sc-ty__delivery-notice .material-symbols-outlined{font-size:1rem;color:var(--color-secondary);flex-shrink:0;}
/* What next */
.sc-ty__next{position:relative;z-index:1;margin-bottom:2.5rem;}
.sc-ty__next-title{font-size:1.1rem;font-weight:800;margin-bottom:1.25rem;text-align:center;}
.sc-ty__steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;}
.sc-ty__step{
    background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.07);
    border-radius:14px;padding:1.25rem 1rem;text-align:center;
}
.sc-ty__step-icon{
    width:44px;height:44px;border-radius:12px;margin:0 auto .5rem;
    display:flex;align-items:center;justify-content:center;border:1px solid;
}
.sc-ty__step-icon .material-symbols-outlined{font-size:1.2rem;}
.sc-ty__step-num{font-size:.65rem;font-weight:700;letter-spacing:.1em;color:var(--color-primary);margin-bottom:.35rem;}
.sc-ty__step h3{font-size:.85rem;font-weight:700;margin-bottom:.35rem;}
.sc-ty__step p{font-size:.78rem;color:#64748b;line-height:1.5;margin:0;}
/* CTAs */
.sc-ty__ctas{position:relative;z-index:1;display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;}
.sc-ty__cta{
    display:inline-flex;align-items:center;gap:.5rem;
    padding:.85rem 1.75rem;border-radius:50px;font-weight:800;font-size:.9rem;text-decoration:none;
    transition:opacity .2s,transform .15s;
}
.sc-ty__cta:hover{opacity:.9;transform:translateY(-1px);}
.sc-ty__cta .material-symbols-outlined{font-size:1rem;}
.sc-ty__cta--primary{background:linear-gradient(135deg,#af25f4,#ff00e5);color:#fff;}
.sc-ty__cta--secondary{background:rgba(175,37,244,.1);border:1px solid rgba(175,37,244,.3);color:#f1f5f9;}

/* ── Responsive — thank you ── */
@media(max-width:768px){
    .sc-ty__grid{grid-template-columns:1fr;}
    .sc-ty__steps{grid-template-columns:1fr 1fr;}
}
@media(max-width:480px){
    .sc-ty{padding:2rem 1rem 4rem;}
    .sc-ty__steps{grid-template-columns:1fr;}
    .sc-ty__ctas{flex-direction:column;align-items:stretch;}
    .sc-ty__cta{justify-content:center;}
}

/* ================================================================
   CHECKOUT — MOBILE RESPONSIVE FIXES
   ================================================================ */
@media(max-width:900px){
    .shroomco-checkout{grid-template-columns:1fr !important;gap:1.5rem !important;}
    .shroomco-order-summary{order:-1;}/* Summary above form on tablet */
}
@media(max-width:640px){
    .shroomco-checkout-steps{gap:.5rem !important;font-size:.72rem;}
    .shroomco-checkout-steps .shroomco-checkout-step span.material-symbols-outlined{display:none;}
    .shroomco-checkout__panel{padding:1.25rem !important;}
    .shroomco-checkout__panel-title{font-size:1rem !important;}
    .shroomco-field-row{flex-direction:column !important;gap:0 !important;}
    .shroomco-field-row .form-row-first,
    .shroomco-field-row .form-row-last{width:100% !important;float:none !important;}
    .shroomco-place-order-btn{font-size:.95rem !important;padding:.9rem 1.25rem !important;}
    .woo-page-header{padding:2rem 1rem 1rem !important;}
    .woo-page-header__title{font-size:1.5rem !important;}
}

/* ================================================================
   GLOBAL MOBILE FIXES
   ================================================================ */
/* Nav */
@media(max-width:768px){
    .site-header__nav{display:none;}
    .site-header__actions{gap:.5rem;}
    .site-header{padding:0 1rem;}
}
/* Hero section */
@media(max-width:640px){
    .hero-section{padding:5rem 1rem 3rem !important;}
    .hero-section h1{font-size:2rem !important;}
    .hero-section .hero-actions{flex-direction:column;align-items:stretch;}
    .hero-section .hero-actions a{text-align:center;}
}
/* Shop grid */
@media(max-width:500px){
    .shroomco-shop__grid{grid-template-columns:1fr !important;}
    .home-products-grid{grid-template-columns:1fr !important;}
}
/* Cart */
@media(max-width:640px){
    .shroomco-cart-wrap{grid-template-columns:1fr !important;}
    .shroomco-cart__totals{position:static !important;}
    .shroomco-cart-item{grid-template-columns:56px 1fr auto !important;}
}
/* Product single */
@media(max-width:640px){
    .shroomco-single__layout{grid-template-columns:1fr !important;}
    .shroomco-single__gallery{max-height:320px !important;}
    .shroomco-single__price{font-size:1.75rem !important;}
}
/* My account */
@media(max-width:768px){
    .sc-account-layout{grid-template-columns:1fr !important;}
    .sc-account-sidebar{display:none;}
}
/* Footer */
@media(max-width:640px){
    .site-footer__grid{grid-template-columns:1fr !important;gap:2rem !important;}
    .site-footer__bottom{flex-direction:column;gap:.75rem;text-align:center;}
    .site-footer__legal{flex-wrap:wrap;justify-content:center;}
}
/* General touch targets */
@media(max-width:768px){
    button,a,.sc-tab,.sc-faq-question{min-height:44px;}
    input,select,textarea{font-size:16px !important;} /* prevents iOS zoom */
}

/* ================================================================
   CONSULTATION REPORT — RESULTS PAGE
   ================================================================ */
.sc-report__header{
    display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;
    margin-bottom:2rem;padding-bottom:1.25rem;
    border-bottom:1px solid rgba(175,37,244,.15);
}
.sc-report__logo-row{
    display:flex;align-items:center;gap:.5rem;
    font-size:.8rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
    color:var(--color-primary);
}
.sc-report__logo-row .material-symbols-outlined{font-size:1rem;}
.sc-report__meta{display:flex;align-items:center;gap:.5rem;font-size:.75rem;color:#475569;flex-wrap:wrap;}
.sc-report__meta-dot{color:#334155;}
.sc-report__pdf-btn{
    display:inline-flex;align-items:center;gap:.4rem;
    padding:.55rem 1.1rem;
    background:rgba(175,37,244,.1);
    border:1px solid rgba(175,37,244,.3);
    border-radius:50px;
    color:#af25f4;font-family:'Space Grotesk',sans-serif;font-size:.8rem;font-weight:700;
    cursor:pointer;transition:all .2s;
}
.sc-report__pdf-btn:hover{background:rgba(175,37,244,.2);border-color:rgba(175,37,244,.5);}
.sc-report__pdf-btn .material-symbols-outlined{font-size:.9rem;}

/* Section layout */
.sc-report__section{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.07);
    border-radius:16px;
    padding:1.75rem;
    margin-bottom:1.5rem;
}
.sc-report__section-head{
    display:flex;align-items:flex-start;gap:1rem;
    margin-bottom:1.5rem;
}
.sc-report__section-head>div:last-child{flex:1;}
.sc-report__section-head h2{font-size:1.1rem;font-weight:800;margin:0 0 .2rem;}
.sc-report__section-head>div:last-child>p{font-size:.82rem;color:#64748b;margin:0;}
.sc-report__section-icon{
    width:44px;height:44px;border-radius:12px;border:1px solid;flex-shrink:0;
    display:flex;align-items:center;justify-content:center;
}
.sc-report__section-icon .material-symbols-outlined{font-size:1.2rem;}

/* Dose grid */
.sc-report__dose-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:1rem;margin-bottom:1rem;}
.sc-report__dose-card{
    background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
    border-radius:12px;padding:1rem 1.1rem;
}
.sc-report__dose-card--primary{
    background:rgba(175,37,244,.08);border-color:rgba(175,37,244,.2);
}
.sc-report__dose-label{font-size:.68rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#475569;margin-bottom:.4rem;}
.sc-report__dose-value{font-size:1.5rem;font-weight:900;color:#f1f5f9;line-height:1.1;margin-bottom:.25rem;}
.sc-report__dose-sub{font-size:.78rem;color:#64748b;}
.sc-report__dose-note{
    display:flex;align-items:flex-start;gap:.5rem;
    background:rgba(245,158,11,.06);border:1px solid rgba(245,158,11,.2);
    border-radius:10px;padding:.85rem 1rem;
    font-size:.83rem;color:#94a3b8;line-height:1.6;
}
.sc-report__dose-note .material-symbols-outlined{color:#f59e0b;flex-shrink:0;font-size:1rem;margin-top:.1rem;}

/* Strain box */
.sc-report__strain-box{
    background:rgba(0,255,157,.04);border:1px solid rgba(0,255,157,.15);
    border-radius:12px;padding:1.25rem 1.5rem;
}
.sc-report__strain-type{font-size:1rem;font-weight:800;color:#f1f5f9;margin-bottom:.4rem;}
.sc-report__strain-examples{
    display:flex;align-items:center;gap:.3rem;
    font-size:.82rem;color:#00ff9d;font-weight:600;margin-bottom:.75rem;
}
.sc-report__strain-examples .material-symbols-outlined{font-size:.85rem;}
.sc-report__strain-desc{font-size:.85rem;color:#94a3b8;line-height:1.65;margin:0;}

/* Safety blocks */
.sc-report__safety-block{
    border:1px solid;border-radius:12px;padding:1rem 1.25rem;margin-bottom:.75rem;
}
.sc-report__safety-block:last-child{margin-bottom:0;}
.sc-report__safety-head{display:flex;align-items:center;gap:.5rem;margin-bottom:.5rem;}
.sc-report__safety-head .material-symbols-outlined{font-size:1.1rem;}
.sc-report__safety-head strong{font-size:.9rem;}
.sc-report__safety-block p{font-size:.85rem;color:#94a3b8;line-height:1.7;margin:0;}

/* Steps (prep + integration) */
.sc-report__steps{display:flex;flex-direction:column;gap:.85rem;}
.sc-report__step{
    display:grid;grid-template-columns:28px 40px 1fr;
    align-items:flex-start;gap:.75rem;
    padding:.85rem 1rem;
    background:rgba(255,255,255,.02);border:1px solid rgba(255,255,255,.05);
    border-radius:12px;
}
.sc-report__step-num{
    font-size:.7rem;font-weight:900;color:#af25f4;
    letter-spacing:.08em;padding-top:.15rem;
    text-align:center;
}
.sc-report__step-icon{
    width:36px;height:36px;border-radius:10px;flex-shrink:0;
    display:flex;align-items:center;justify-content:center;
    background:rgba(175,37,244,.1);border:1px solid rgba(175,37,244,.2);
    color:#af25f4;
}
.sc-report__step-icon .material-symbols-outlined{font-size:1rem;}
.sc-report__step-body h3{font-size:.9rem;font-weight:800;margin:0 0 .3rem;color:#f1f5f9;}
.sc-report__step-body p{font-size:.83rem;color:#94a3b8;line-height:1.7;margin:0;}

/* Resources */
.sc-report__resource-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.sc-report__resource{
    background:rgba(0,212,255,.04);border:1px solid rgba(0,212,255,.12);
    border-radius:12px;padding:1rem 1.1rem;
}
.sc-report__resource-name{font-size:.78rem;font-weight:800;color:#00d4ff;margin-bottom:.2rem;text-transform:uppercase;letter-spacing:.05em;}
.sc-report__resource-contact{font-size:1rem;font-weight:900;color:#f1f5f9;margin-bottom:.4rem;}
.sc-report__resource-desc{font-size:.78rem;color:#64748b;line-height:1.55;}

/* Print footer */
.sc-report__print-footer{display:none;}
.print-only{display:none;}

/* ── Responsive ── */
@media(max-width:768px){
    .sc-report__header{flex-direction:column;align-items:flex-start;}
    .sc-report__dose-grid{grid-template-columns:1fr;}
    .sc-report__resource-grid{grid-template-columns:1fr;}
    .sc-report__step{grid-template-columns:24px 36px 1fr;gap:.5rem;}
}
@media(max-width:480px){
    .sc-report__section{padding:1.25rem;}
    .sc-report__section-head{flex-direction:column;gap:.75rem;}
}

/* ================================================================
   PRINT / PDF STYLESHEET
   ================================================================ */
@media print {
    /* ── Hide site chrome & interactive elements ── */
    .site-header,
    .site-footer,
    .woo-orb,
    .consult-particles,
    .consult-progress,
    .no-print,
    .results-register,
    .results-products,
    .sc-report__pdf-btn,
    #wpadminbar,
    .admin-bar { display:none !important; }

    /* ── Show print-only elements ── */
    .print-only,
    .sc-report__print-footer { display:block !important; }

    /* ── Full page reset — this is the key fix for blank pages ── */
    html, body {
        background:#fff !important;
        background-image:none !important;
        color:#1a1a2e !important;
        font-family:'Segoe UI',Arial,sans-serif !important;
        font-size:11pt !important;
        line-height:1.6 !important;
        margin:0 !important;
        padding:0 !important;
        -webkit-print-color-adjust:exact !important;
        print-color-adjust:exact !important;
    }
    /* Strip all decorative backgrounds and pseudo-elements */
    *::before, *::after { background:none !important; }
    * {
        -webkit-print-color-adjust:exact !important;
        print-color-adjust:exact !important;
        text-shadow:none !important;
        box-shadow:none !important;
    }

    /* ── Results wrap: reset position/z-index that caused blank render ── */
    .results-wrap {
        position:static !important;
        min-height:auto !important;
        padding:20pt 20pt 0 !important;
        overflow:visible !important;
        background:#fff !important;
        background-image:none !important;
    }
    .results-inner {
        max-width:100% !important;
        position:static !important;
        z-index:auto !important;
        gap:14pt !important;
    }

    /* Report header */
    .sc-report__header {
        border-bottom:2px solid #6b21a8 !important;
        padding-bottom:12pt !important;
        margin-bottom:16pt !important;
    }
    .sc-report__logo-row { color:#6b21a8 !important; font-size:9pt !important; }
    .sc-report__meta { color:#64748b !important; font-size:8pt !important; }

    /* Archetype card */
    .results-profile {
        background:#f8f4ff !important;
        border:1px solid #d8b4fe !important;
        border-radius:8pt !important;
        padding:12pt !important;
        margin-bottom:14pt !important;
        page-break-inside:avoid;
        break-inside:avoid;
    }
    .results-profile__title { color:#4c1d95 !important; font-size:16pt !important; }
    .results-profile__archetype,
    .results-profile__desc { color:#374151 !important; }
    .results-tag { background:#ede9fe !important; color:#4c1d95 !important; border-color:#c4b5fd !important; }
    .text-gradient { color:#6b21a8 !important; -webkit-text-fill-color:#6b21a8 !important; }

    /* All sections */
    .sc-report__section {
        background:#fafafa !important;
        border:1px solid #e5e7eb !important;
        border-radius:6pt !important;
        padding:12pt !important;
        margin-bottom:12pt !important;
        page-break-inside:avoid;
        break-inside:avoid;
    }
    .sc-report__section-head h2 { color:#1a1a2e !important; font-size:12pt !important; }
    .sc-report__section-head > div:last-child > p { color:#64748b !important; font-size:9pt !important; }
    .sc-report__section-icon {
        background:#f3e8ff !important;
        border-color:#d8b4fe !important;
        color:#6b21a8 !important;
    }

    /* Dose grid */
    .sc-report__dose-grid { gap:8pt !important; }
    .sc-report__dose-card {
        background:#f3e8ff !important;
        border:1px solid #d8b4fe !important;
        padding:8pt !important;
    }
    .sc-report__dose-card--primary { background:#ede9fe !important; }
    .sc-report__dose-label { color:#6b21a8 !important; font-size:7pt !important; }
    .sc-report__dose-value { color:#1a1a2e !important; font-size:14pt !important; }
    .sc-report__dose-sub { color:#374151 !important; font-size:8pt !important; }
    .sc-report__dose-note {
        background:#fffbeb !important;
        border-color:#fde68a !important;
        color:#374151 !important;
        font-size:9pt !important;
    }
    .sc-report__dose-note .material-symbols-outlined { color:#d97706 !important; }

    /* Strain */
    .sc-report__strain-box {
        background:#f0fdf4 !important;
        border-color:#bbf7d0 !important;
    }
    .sc-report__strain-type { color:#1a1a2e !important; }
    .sc-report__strain-examples { color:#16a34a !important; }
    .sc-report__strain-desc { color:#374151 !important; font-size:9pt !important; }

    /* Safety */
    .sc-report__safety-block {
        page-break-inside:avoid;
        break-inside:avoid;
    }
    .sc-report__safety-block p { color:#374151 !important; font-size:9pt !important; }

    /* Steps */
    .sc-report__step {
        background:#fafafa !important;
        border:1px solid #e5e7eb !important;
        padding:8pt !important;
        page-break-inside:avoid;
        break-inside:avoid;
    }
    .sc-report__step-icon { background:#f3e8ff !important; border-color:#d8b4fe !important; color:#6b21a8 !important; }
    .sc-report__step-num { color:#6b21a8 !important; }
    .sc-report__step-body h3 { color:#1a1a2e !important; font-size:10pt !important; }
    .sc-report__step-body p { color:#374151 !important; font-size:9pt !important; }

    /* Resources */
    .sc-report__resource {
        background:#f0f9ff !important;
        border-color:#bae6fd !important;
    }
    .sc-report__resource-name { color:#0369a1 !important; font-size:8pt !important; }
    .sc-report__resource-contact { color:#1a1a2e !important; font-size:11pt !important; }
    .sc-report__resource-desc { color:#374151 !important; font-size:8pt !important; }

    /* Print footer */
    .sc-report__print-footer {
        margin-top:16pt !important;
        padding-top:10pt !important;
        border-top:1px solid #e5e7eb !important;
        font-size:8pt !important;
        color:#9ca3af !important;
        text-align:center;
    }
    .sc-report__print-footer p { margin:2pt 0 !important; }

    /* Page breaks */
    .sc-report__resources { page-break-before:auto; }
    h1, h2, h3 { page-break-after:avoid; break-after:avoid; }
}

/* ================================================================
   SAFETY PROTOCOLS PAGE
   ================================================================ */
.sc-safety-page { position:relative; min-height:100vh; }
.sc-safety-bg { position:fixed; inset:0; pointer-events:none; z-index:0; overflow:hidden; }
.sc-safety-bg__orb--1 { position:absolute; top:-10%; left:-5%; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(175,37,244,.12) 0%,transparent 70%); filter:blur(40px); }
.sc-safety-bg__orb--2 { position:absolute; bottom:10%; right:-5%; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle,rgba(255,0,229,.08) 0%,transparent 70%); filter:blur(40px); }

.sc-safety-hero { position:relative; z-index:1; max-width:900px; margin-inline:auto; padding:6rem 1.5rem 3rem; text-align:center; }
.sc-safety-hero__eyebrow { display:inline-flex; align-items:center; gap:.5rem; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--color-primary); margin-bottom:1rem; }
.sc-safety-hero__eyebrow .material-symbols-outlined { font-size:1rem; }
.sc-safety-hero__title { font-size:clamp(2.2rem,5vw,3.5rem); font-weight:900; letter-spacing:-.03em; margin-bottom:1.25rem; line-height:1.05; }
.sc-safety-hero__sub { font-size:1.05rem; color:#94a3b8; max-width:620px; margin-inline:auto; line-height:1.7; margin-bottom:2.5rem; }
.sc-safety-jumps { display:flex; flex-wrap:wrap; gap:.75rem; justify-content:center; }
.sc-safety-jump { display:inline-flex; align-items:center; gap:.4rem; padding:.5rem 1.1rem; border-radius:50px; font-size:.8rem; font-weight:600; color:#94a3b8; border:1px solid rgba(255,255,255,.1); background:rgba(255,255,255,.04); transition:all .2s; text-decoration:none; }
.sc-safety-jump:hover { color:var(--color-primary); border-color:rgba(175,37,244,.4); background:rgba(175,37,244,.08); }
.sc-safety-jump .material-symbols-outlined { font-size:.9rem; }

.sc-safety-content { position:relative; z-index:1; max-width:900px; margin-inline:auto; padding:0 1.5rem 6rem; }

.sc-safety-banner { display:flex; align-items:flex-start; gap:1rem; padding:1.25rem 1.5rem; border-radius:12px; margin-bottom:2.5rem; line-height:1.65; font-size:.9rem; }
.sc-safety-banner .material-symbols-outlined { font-size:1.4rem; flex-shrink:0; margin-top:.1rem; }
.sc-safety-banner--critical { background:rgba(248,113,113,.08); border:1px solid rgba(248,113,113,.25); color:#fca5a5; }
.sc-safety-banner--critical .material-symbols-outlined { color:#f87171; }
.sc-safety-banner--critical strong { color:#f87171; display:block; margin-bottom:.35rem; }
.sc-safety-banner--info { background:rgba(0,212,255,.07); border:1px solid rgba(0,212,255,.2); color:#94a3b8; }
.sc-safety-banner--info .material-symbols-outlined { color:#00d4ff; }

.sc-safety-section { margin-bottom:3.5rem; }
.sc-safety-section__header { display:flex; align-items:flex-start; gap:1rem; margin-bottom:1.75rem; }
.sc-safety-section__icon { width:48px; height:48px; border-radius:12px; border:1px solid; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.sc-safety-section__icon .material-symbols-outlined { font-size:1.4rem; }
.sc-safety-section__header h2 { font-size:1.4rem; font-weight:800; margin-bottom:.25rem; }
.sc-safety-section__header p { font-size:.85rem; color:#64748b; }

.sc-safety-cards { display:grid; grid-template-columns:1fr; gap:1.25rem; }
@media(min-width:640px) { .sc-safety-cards { grid-template-columns:1fr 1fr; } }
.sc-safety-card { background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07); border-radius:14px; padding:1.5rem; }
.sc-safety-card h3 { font-size:1rem; font-weight:700; color:#f1f5f9; margin-bottom:1rem; display:flex; align-items:center; gap:.5rem; }
.sc-safety-card h3 .material-symbols-outlined { font-size:1.1rem; color:#f59e0b; }
.sc-safety-card p { font-size:.875rem; color:#94a3b8; line-height:1.65; }
.sc-safety-card--caution { border-color:rgba(245,158,11,.2); background:rgba(245,158,11,.04); }
.sc-safety-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.75rem; }
.sc-safety-list li { font-size:.875rem; color:#94a3b8; padding-left:1.25rem; position:relative; line-height:1.6; }
.sc-safety-list li::before { content:''; position:absolute; left:0; top:.55em; width:6px; height:6px; border-radius:50%; background:var(--color-primary); opacity:.6; }
.sc-safety-list li strong { color:#f1f5f9; }

.sc-safety-dose-table { border:1px solid rgba(255,255,255,.08); border-radius:14px; overflow:hidden; margin-bottom:1.5rem; }
.sc-safety-dose-row { display:grid; grid-template-columns:140px 100px 1fr; gap:1rem; align-items:center; padding:1rem 1.25rem; border-bottom:1px solid rgba(255,255,255,.05); }
.sc-safety-dose-row:last-child { border-bottom:none; }
.sc-safety-dose-row:nth-child(odd) { background:rgba(255,255,255,.02); }
.sc-safety-dose-row__label { font-weight:700; font-size:.875rem; }
.sc-safety-dose-row__range { font-size:.8rem; color:#64748b; font-family:monospace; }
.sc-safety-dose-row__desc { font-size:.8rem; color:#94a3b8; line-height:1.5; }
@media(max-width:600px) { .sc-safety-dose-row { grid-template-columns:1fr 1fr; grid-template-rows:auto auto; } .sc-safety-dose-row__desc { grid-column:1/-1; } }

.sc-safety-resources { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media(max-width:540px) { .sc-safety-resources { grid-template-columns:1fr; } }
.sc-safety-resource-card { background:rgba(255,255,255,.03); border:1px solid; border-radius:12px; padding:1.25rem; }
.sc-safety-resource-card__name { font-size:.7rem; font-weight:800; text-transform:uppercase; letter-spacing:.06em; margin-bottom:.35rem; }
.sc-safety-resource-card__contact { font-size:1.1rem; font-weight:800; color:#f1f5f9; margin-bottom:.5rem; }
.sc-safety-resource-card__desc { font-size:.8rem; color:#64748b; line-height:1.5; }

.sc-safety-cta { text-align:center; padding:3rem 1.5rem; background:rgba(175,37,244,.06); border:1px solid rgba(175,37,244,.18); border-radius:20px; }
.sc-safety-cta h2 { font-size:1.75rem; font-weight:800; margin-bottom:.75rem; }
.sc-safety-cta p { color:#94a3b8; margin-bottom:2rem; }

/* ================================================================
   LEGAL PAGES (Privacy, Terms, Compliance)
   ================================================================ */
.sc-legal-page { position:relative; min-height:100vh; }
.sc-legal-bg { position:fixed; inset:0; pointer-events:none; z-index:0; overflow:hidden; }
.sc-legal-bg__orb--1 { position:absolute; top:-10%; right:-5%; width:450px; height:450px; border-radius:50%; background:radial-gradient(circle,rgba(175,37,244,.1) 0%,transparent 70%); filter:blur(40px); }
.sc-legal-bg__orb--2 { position:absolute; bottom:10%; left:-5%; width:350px; height:350px; border-radius:50%; background:radial-gradient(circle,rgba(0,255,157,.06) 0%,transparent 70%); filter:blur(40px); }

.sc-legal-hero { position:relative; z-index:1; max-width:760px; margin-inline:auto; padding:6rem 1.5rem 3rem; text-align:center; }
.sc-legal-hero__eyebrow { display:inline-flex; align-items:center; gap:.5rem; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--color-primary); margin-bottom:1rem; }
.sc-legal-hero__eyebrow .material-symbols-outlined { font-size:1rem; }
.sc-legal-hero__title { font-size:clamp(2rem,5vw,3.2rem); font-weight:900; letter-spacing:-.03em; margin-bottom:1rem; line-height:1.05; }
.sc-legal-hero__meta { font-size:.8rem; color:#475569; }

.sc-legal-content { position:relative; z-index:1; max-width:760px; margin-inline:auto; padding:0 1.5rem 6rem; }

.sc-legal-notice { display:flex; align-items:flex-start; gap:1rem; padding:1.25rem 1.5rem; border-radius:12px; margin-bottom:2.5rem; background:rgba(175,37,244,.07); border:1px solid rgba(175,37,244,.2); font-size:.9rem; color:#94a3b8; line-height:1.7; }
.sc-legal-notice .material-symbols-outlined { font-size:1.4rem; color:var(--color-primary); flex-shrink:0; margin-top:.1rem; }
.sc-legal-notice--green { background:rgba(0,255,157,.06); border-color:rgba(0,255,157,.2); }
.sc-legal-notice--green .material-symbols-outlined { color:#00ff9d; }

.sc-legal-section { margin-bottom:2.5rem; padding-bottom:2.5rem; border-bottom:1px solid rgba(255,255,255,.06); }
.sc-legal-section:last-child { border-bottom:none; }
.sc-legal-section h2 { font-size:1.2rem; font-weight:800; color:#f1f5f9; margin-bottom:1rem; }
.sc-legal-section h3 { font-size:.95rem; font-weight:700; color:#e2e8f0; margin:1.25rem 0 .5rem; }
.sc-legal-section p { font-size:.9rem; color:#94a3b8; line-height:1.75; margin-bottom:.75rem; }
.sc-legal-list { list-style:none; padding:0; margin:.75rem 0; display:flex; flex-direction:column; gap:.65rem; }
.sc-legal-list li { font-size:.875rem; color:#94a3b8; padding-left:1.25rem; position:relative; line-height:1.65; }
.sc-legal-list li::before { content:''; position:absolute; left:0; top:.6em; width:5px; height:5px; border-radius:50%; background:var(--color-primary); opacity:.5; }
.sc-legal-list li strong { color:#cbd5e1; }
.sc-legal-link { display:inline-flex; align-items:center; gap:.5rem; margin-top:1rem; padding:.6rem 1.25rem; border-radius:50px; border:1px solid rgba(175,37,244,.35); color:var(--color-primary); font-size:.875rem; font-weight:600; text-decoration:none; transition:all .2s; }
.sc-legal-link:hover { background:rgba(175,37,244,.1); }
.sc-legal-link .material-symbols-outlined { font-size:1rem; }

.sc-compliance-steps { display:flex; flex-direction:column; gap:1rem; }
.sc-compliance-step { display:flex; align-items:flex-start; gap:1.25rem; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07); border-radius:12px; padding:1.25rem; }
.sc-compliance-step__num { width:36px; height:36px; border-radius:50%; background:rgba(175,37,244,.15); border:1px solid rgba(175,37,244,.3); display:flex; align-items:center; justify-content:center; font-size:.9rem; font-weight:800; color:var(--color-primary); flex-shrink:0; }
.sc-compliance-step h3 { font-size:.95rem; font-weight:700; color:#f1f5f9; margin-bottom:.4rem; }
.sc-compliance-step p { font-size:.875rem; color:#94a3b8; line-height:1.65; margin:0; }

/* ================================================================
   MOUNTAIN SHOP PAGE
   ================================================================ */
.sc-shop-page { position:relative; min-height:100vh; overflow-x:hidden; }

.sc-shop-orb--1 { position:fixed; top:-15%; left:-10%; width:600px; height:600px; border-radius:50%; background:radial-gradient(circle,rgba(175,37,244,.1) 0%,transparent 65%); filter:blur(50px); pointer-events:none; z-index:0; }
.sc-shop-orb--2 { position:fixed; top:40%; right:-10%; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(0,255,157,.07) 0%,transparent 65%); filter:blur(50px); pointer-events:none; z-index:0; }
.sc-shop-orb--3 { position:fixed; bottom:0; left:30%; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle,rgba(255,0,229,.07) 0%,transparent 65%); filter:blur(50px); pointer-events:none; z-index:0; }

/* Hero */
.sc-shop-hero { position:relative; z-index:1; max-width:760px; margin-inline:auto; padding:6rem 1.5rem 2.5rem; text-align:center; }
.sc-shop-hero__eyebrow { display:inline-flex; align-items:center; gap:.5rem; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--color-secondary); margin-bottom:1rem; }
.sc-shop-hero__eyebrow .material-symbols-outlined { font-size:1rem; }
.sc-shop-hero__title { font-size:clamp(2.4rem,6vw,4rem); font-weight:900; letter-spacing:-.04em; margin-bottom:1.25rem; line-height:1; }
.sc-shop-hero__sub { font-size:1rem; color:#64748b; line-height:1.75; max-width:560px; margin-inline:auto; }

/* Elevation chart */
.sc-elevation { position:relative; z-index:1; width:100%; max-width:1200px; margin-inline:auto; padding:0 1.5rem 1rem; }
.sc-elevation__wrap { position:relative; }
.sc-elevation__svg { width:100%; height:auto; display:block; overflow:visible; }
.sc-peak-dot { transition:opacity .2s; }
.sc-peak-dot:hover circle:first-of-type { r:20; }
.sc-peak-dot:focus { outline:none; }
.sc-peak-dot:focus circle:last-of-type { stroke:#fff; stroke-width:2; }

.sc-elevation__legend { display:flex; flex-wrap:wrap; gap:.75rem 2rem; justify-content:center; padding:1rem 0 .5rem; }
.sc-elev-leg { display:inline-flex; align-items:center; gap:.5rem; font-size:.8rem; font-weight:600; color:var(--c); }
.sc-elev-leg__dot { width:8px; height:8px; border-radius:50%; background:var(--c); flex-shrink:0; box-shadow:0 0 6px var(--c); }

/* Product groups */
.sc-shop-groups { position:relative; z-index:1; max-width:1100px; margin-inline:auto; padding:1rem 1.5rem 4rem; display:flex; flex-direction:column; gap:4rem; }

.sc-shop-group { scroll-margin-top:6rem; transition:outline .15s; }
.sc-shop-group--flash { animation:sc-group-flash .5s ease 2; }
@keyframes sc-group-flash { 0%,100%{outline:2px solid transparent;} 50%{outline:2px solid rgba(175,37,244,.5);border-radius:16px;} }

.sc-shop-group__hd { display:flex; align-items:center; gap:1rem; margin-bottom:.75rem; }
.sc-shop-group__badge { width:50px; height:50px; border-radius:13px; background:rgba(from var(--c) r g b/.1); border:1px solid rgba(from var(--c) r g b/.25); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--c); }
.sc-shop-group__badge .material-symbols-outlined { font-size:1.5rem; }
.sc-shop-group__mtn { font-size:1.75rem; font-weight:900; letter-spacing:-.03em; display:flex; align-items:center; gap:.6rem; line-height:1; margin-bottom:.2rem; }
.sc-shop-group__14er { font-size:.65rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; padding:.15rem .5rem; border-radius:20px; background:rgba(255,0,229,.15); border:1px solid rgba(255,0,229,.3); color:#ff00e5; vertical-align:middle; }
.sc-shop-group__meta { display:flex; align-items:center; gap:.3rem; font-size:.8rem; color:#475569; }
.sc-shop-group__meta .material-symbols-outlined { font-size:.9rem; }
.sc-shop-group__desc { font-size:.9rem; color:#64748b; margin-bottom:1.5rem; max-width:600px; line-height:1.65; }

/* Cards grid */
.sc-shop-group__cards { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:1.25rem; }

/* Mountain card */
.sc-mtn-card { position:relative; display:flex; flex-direction:column; border-radius:16px; overflow:hidden; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07); text-decoration:none; color:inherit; transition:transform .25s,border-color .25s,box-shadow .25s; }
.sc-mtn-card:hover { transform:translateY(-4px); border-color:color-mix(in srgb, var(--c) 40%, transparent); box-shadow:0 16px 40px rgba(0,0,0,.35), 0 0 30px color-mix(in srgb, var(--c) 15%, transparent); }
.sc-mtn-card--oos { opacity:.5; pointer-events:none; }

.sc-mtn-card__img { position:relative; height:180px; overflow:hidden; background:rgba(175,37,244,.06); }
.sc-mtn-card__img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.sc-mtn-card:hover .sc-mtn-card__img img { transform:scale(1.04); }
.sc-mtn-card__img--ph { display:flex; align-items:center; justify-content:center; }
.sc-mtn-card__img--ph .material-symbols-outlined { font-size:3rem; color:var(--c); opacity:.25; }
.sc-mtn-card__fade { position:absolute; inset:0; background:linear-gradient(to top, rgba(10,6,12,.9) 0%, transparent 55%); }

.sc-mtn-card__body { padding:1.1rem; display:flex; flex-direction:column; gap:.65rem; flex:1; }

.sc-mtn-card__format { display:inline-flex; align-items:center; gap:.4rem; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--c); }
.sc-mtn-card__format .material-symbols-outlined { font-size:.95rem; }

.sc-mtn-card__price-row { display:flex; align-items:baseline; gap:.6rem; }
.sc-mtn-card__price { font-size:1.8rem; font-weight:900; letter-spacing:-.03em; color:#f1f5f9; line-height:1; }
.sc-mtn-card__wt { font-size:.75rem; color:#475569; }

.sc-mtn-card__meta { display:flex; flex-direction:column; gap:.35rem; margin-top:.1rem; }
.sc-mtn-card__meta span { display:inline-flex; align-items:center; gap:.35rem; font-size:.75rem; color:#475569; }
.sc-mtn-card__meta .material-symbols-outlined { font-size:.85rem; color:var(--c); opacity:.7; }

.sc-mtn-card__cta { display:flex; align-items:center; gap:.4rem; margin-top:auto; padding-top:.75rem; font-size:.8rem; font-weight:700; color:var(--c); border-top:1px solid rgba(255,255,255,.06); transition:gap .2s; }
.sc-mtn-card:hover .sc-mtn-card__cta { gap:.7rem; }
.sc-mtn-card__cta .material-symbols-outlined { font-size:.9rem; }
.sc-mtn-card__oos { margin-top:auto; padding-top:.75rem; font-size:.75rem; color:#475569; border-top:1px solid rgba(255,255,255,.06); }

.sc-mtn-card__glow { position:absolute; inset:-1px; border-radius:16px; border:1px solid transparent; background:linear-gradient(135deg, color-mix(in srgb, var(--c) 20%, transparent), transparent 60%) border-box; -webkit-mask:linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0); -webkit-mask-composite:destination-out; mask-composite:exclude; opacity:0; transition:opacity .3s; pointer-events:none; }
.sc-mtn-card:hover .sc-mtn-card__glow { opacity:1; }

/* Compliance bar */
.sc-shop-compliance { position:relative; z-index:1; display:flex; align-items:center; gap:1rem; max-width:1100px; margin:0 auto 4rem; padding:1rem 1.5rem; border-radius:12px; background:rgba(0,212,255,.05); border:1px solid rgba(0,212,255,.15); font-size:.82rem; color:#475569; line-height:1.6; }
.sc-shop-compliance .material-symbols-outlined { font-size:1.2rem; color:#00d4ff; flex-shrink:0; }
.sc-shop-compliance a { color:#00d4ff; text-decoration:none; }
.sc-shop-compliance a:hover { text-decoration:underline; }

/* Fallback for browsers without color-mix */
@supports not (color: color-mix(in srgb, red, blue)) {
    .sc-mtn-card:hover { border-color:rgba(175,37,244,.4); box-shadow:0 16px 40px rgba(0,0,0,.35),0 0 30px rgba(175,37,244,.12); }
    .sc-shop-group__badge { background:rgba(175,37,244,.1); border-color:rgba(175,37,244,.25); }
}

@media(max-width:640px) {
    .sc-shop-groups { gap:3rem; }
    .sc-shop-group__cards { grid-template-columns:1fr 1fr; }
    .sc-mtn-card__img { height:140px; }
    .sc-elevation__legend { gap:.5rem 1rem; font-size:.72rem; }
}
@media(max-width:400px) {
    .sc-shop-group__cards { grid-template-columns:1fr; }
}

/* ================================================================
   MOUNTAIN SHOP MENU (archive-product.php)
   ================================================================ */
.sc-peak-link { cursor:pointer; }
.sc-peak-link:hover circle:nth-child(2) { r:9; transition:r .2s; }

.sc-shop-menu { position:relative; z-index:1; max-width:1100px; margin-inline:auto; padding:1rem 1.5rem 4rem; display:flex; flex-direction:column; gap:0; }

.sc-menu-row { display:grid; grid-template-columns:1fr 1fr; gap:0; border-top:1px solid rgba(255,255,255,.07); padding:2rem 0; transition:background .2s; position:relative; }
.sc-menu-row:last-child { border-bottom:1px solid rgba(255,255,255,.07); }
.sc-menu-row::before { content:''; position:absolute; left:-1.5rem; right:-1.5rem; top:0; bottom:0; background:color-mix(in srgb, var(--c) 4%, transparent); opacity:0; transition:opacity .2s; border-radius:12px; pointer-events:none; }
.sc-menu-row:hover::before { opacity:1; }

.sc-menu-row__left { display:flex; gap:1.25rem; align-items:flex-start; text-decoration:none; color:inherit; }
.sc-menu-row__badge { width:48px; height:48px; border-radius:12px; background:color-mix(in srgb, var(--c) 10%, transparent); border:1px solid color-mix(in srgb, var(--c) 25%, transparent); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--c); transition:transform .2s; }
.sc-menu-row__left:hover .sc-menu-row__badge { transform:translateY(-2px); }
.sc-menu-row__badge .material-symbols-outlined { font-size:1.4rem; }

.sc-menu-row__name-wrap { display:flex; align-items:center; gap:.6rem; flex-wrap:wrap; margin-bottom:.3rem; }
.sc-menu-row__name { font-size:1.6rem; font-weight:900; letter-spacing:-.035em; color:var(--c); line-height:1; }
.sc-menu-row__tag { font-size:.6rem; font-weight:800; text-transform:uppercase; letter-spacing:.1em; padding:.15rem .45rem; border-radius:20px; }
.sc-menu-row__tag--14er { background:rgba(255,0,229,.15); border:1px solid rgba(255,0,229,.3); color:#ff00e5; }
.sc-menu-row__tag--summit { background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25); color:#fff; }
.sc-menu-row__tier { font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:#475569; }

.sc-menu-row__meta { display:flex; gap:1rem; font-size:.78rem; color:#475569; margin-bottom:.4rem; }
.sc-menu-row__meta span { display:inline-flex; align-items:center; gap:.25rem; }
.sc-menu-row__meta .material-symbols-outlined { font-size:.85rem; }
.sc-menu-row__tagline { font-size:.85rem; color:#64748b; line-height:1.6; margin:0; max-width:360px; }

/* Gift options column */
.sc-menu-row__options { padding-left:2.5rem; border-left:1px solid rgba(255,255,255,.06); }
.sc-menu-row__options-label { font-size:.65rem; font-weight:800; text-transform:uppercase; letter-spacing:.12em; color:#334155; margin-bottom:.75rem; }

.sc-menu-row__options-list { display:flex; flex-direction:column; gap:.4rem; }
.sc-menu-opt { display:flex; align-items:center; gap:.75rem; padding:.6rem .9rem; border-radius:10px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06); text-decoration:none; color:inherit; transition:background .18s, border-color .18s, transform .18s; }
.sc-menu-opt:hover { background:color-mix(in srgb, var(--c) 8%, transparent); border-color:color-mix(in srgb, var(--c) 25%, transparent); transform:translateX(3px); }
.sc-menu-opt__icon { font-size:.95rem; color:var(--c); opacity:.8; flex-shrink:0; }
.sc-menu-opt__sub { font-size:.82rem; font-weight:600; flex:1; }
.sc-menu-opt__price { font-size:.95rem; font-weight:800; color:var(--c); margin-left:auto; }
.sc-menu-opt__arrow { font-size:.85rem; color:#334155; transition:color .18s; }
.sc-menu-opt:hover .sc-menu-opt__arrow { color:var(--c); }

/* ================================================================
   MOUNTAIN PACKAGE PAGE (page-mountain.php)
   ================================================================ */
.sc-mtn-page { position:relative; overflow-x:hidden; min-height:100vh; }
.sc-mtn-orb--1 { position:fixed; top:-20%; left:-15%; width:700px; height:700px; border-radius:50%; background:radial-gradient(circle, color-mix(in srgb, var(--mtn-color) 8%, transparent) 0%, transparent 65%); filter:blur(60px); pointer-events:none; z-index:0; }
.sc-mtn-orb--2 { position:fixed; bottom:-10%; right:-10%; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle, rgba(175,37,244,.06) 0%, transparent 65%); filter:blur(50px); pointer-events:none; z-index:0; }

/* Back link */
.sc-mtn-back { position:relative; z-index:2; display:inline-flex; align-items:center; gap:.4rem; font-size:.8rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:#475569; text-decoration:none; margin-bottom:2rem; transition:color .2s; }
.sc-mtn-back:hover { color:var(--mtn-color); }
.sc-mtn-back .material-symbols-outlined { font-size:1rem; }

/* Hero */
.sc-mtn-hero { position:relative; z-index:1; max-width:780px; margin-inline:auto; padding:5rem 1.5rem 3rem; text-align:center; }
.sc-mtn-hero__badge { width:72px; height:72px; border-radius:20px; background:color-mix(in srgb, var(--mtn-color) 10%, transparent); border:1px solid color-mix(in srgb, var(--mtn-color) 25%, transparent); display:flex; align-items:center; justify-content:center; margin-inline:auto; margin-bottom:1.5rem; color:var(--mtn-color); }
.sc-mtn-hero__badge .material-symbols-outlined { font-size:2.2rem; }
.sc-mtn-hero__name { font-size:clamp(3rem,8vw,5.5rem); font-weight:900; letter-spacing:-.05em; color:var(--mtn-color); line-height:.9; margin-bottom:.5rem; }
.sc-mtn-hero__tagline { font-size:1.15rem; color:#94a3b8; margin-bottom:1.5rem; font-style:italic; }
.sc-mtn-hero__stats { display:flex; flex-wrap:wrap; gap:.6rem; justify-content:center; margin-bottom:1.75rem; }
.sc-mtn-stat { display:inline-flex; align-items:center; gap:.35rem; font-size:.78rem; font-weight:700; padding:.4rem .9rem; border-radius:20px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.09); color:#94a3b8; }
.sc-mtn-stat .material-symbols-outlined { font-size:.9rem; color:var(--mtn-color); }
.sc-mtn-stat--fourteener { background:rgba(255,0,229,.1); border-color:rgba(255,0,229,.25); color:#ff00e5; }
.sc-mtn-hero__desc { font-size:1rem; color:#64748b; line-height:1.8; max-width:600px; margin-inline:auto; }

/* Sections */
.sc-mtn-section { position:relative; z-index:1; padding:3rem 1.5rem; }
.sc-mtn-section__inner { max-width:860px; margin-inline:auto; }
.sc-mtn-section__title { display:flex; align-items:center; gap:.6rem; font-size:1.2rem; font-weight:800; letter-spacing:-.02em; margin-bottom:1.25rem; }
.sc-mtn-section__title .material-symbols-outlined { font-size:1.3rem; color:var(--mtn-color); }

/* What to Expect */
.sc-mtn-expect { background:rgba(255,255,255,.02); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); }
.sc-mtn-expect__list { display:flex; flex-direction:column; gap:.6rem; list-style:none; margin:0; padding:0; }
.sc-mtn-expect__list li { display:flex; align-items:flex-start; gap:.75rem; font-size:.9rem; color:#94a3b8; line-height:1.6; padding:.5rem 0; border-bottom:1px solid rgba(255,255,255,.04); }
.sc-mtn-expect__list li:last-child { border-bottom:none; }
.sc-mtn-expect__list li::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--mtn-color); flex-shrink:0; margin-top:.55rem; box-shadow:0 0 6px var(--mtn-color); }

/* Questionnaire */
.sc-mtn-questionnaire { background:rgba(0,0,0,.2); }
.sc-mtn-q__header { margin-bottom:2.5rem; }
.sc-mtn-q__sub { font-size:.88rem; color:#64748b; margin-bottom:1.25rem; }
.sc-mtn-q__progress { height:4px; background:rgba(255,255,255,.08); border-radius:2px; overflow:hidden; }
.sc-mtn-q__progress-bar { height:100%; background:var(--mtn-color); border-radius:2px; width:0%; transition:width .4s cubic-bezier(.4,0,.2,1); box-shadow:0 0 8px var(--mtn-color); }
.sc-mtn-q__progress-label { font-size:.75rem; color:#475569; margin-top:.5rem; }

/* Question blocks */
.sc-q-block { display:flex; gap:1.25rem; padding:1.5rem 0; border-bottom:1px solid rgba(255,255,255,.05); }
.sc-q-block:last-of-type { border-bottom:none; }
.sc-q-block--ack { background:rgba(255,255,255,.02); border-radius:12px; padding:1.25rem; margin-top:.5rem; border:1px solid rgba(255,255,255,.07); }
.sc-q-block__num { width:28px; height:28px; border-radius:50%; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; font-size:.72rem; font-weight:800; color:#64748b; flex-shrink:0; margin-top:.1rem; }
.sc-q-block__content { flex:1; }
.sc-q-block__label { font-size:.9rem; font-weight:600; color:#e2e8f0; margin-bottom:1rem; line-height:1.5; }

/* Radio options */
.sc-q-radios { display:flex; flex-direction:column; gap:.5rem; }
.sc-q-radio { display:flex; align-items:flex-start; gap:.75rem; padding:.65rem .9rem; border-radius:10px; background:rgba(255,255,255,.02); border:1px solid rgba(255,255,255,.06); cursor:pointer; transition:background .15s, border-color .15s; }
.sc-q-radio:hover { background:rgba(255,255,255,.05); }
.sc-q-radio-input { position:absolute; opacity:0; pointer-events:none; }
.sc-q-radio-dot { width:16px; height:16px; border-radius:50%; border:2px solid #334155; flex-shrink:0; margin-top:.15rem; transition:border-color .15s, background .15s; position:relative; }
.sc-q-radio-input:checked + .sc-q-radio-dot { border-color:var(--mtn-color); background:var(--mtn-color); box-shadow:0 0 8px var(--mtn-color); }
.sc-q-radio-input:checked + .sc-q-radio-dot::after { content:''; position:absolute; inset:3px; border-radius:50%; background:#0a060c; }
.sc-q-radio:has(.sc-q-radio-input:checked) { background:color-mix(in srgb, var(--mtn-color) 8%, transparent); border-color:color-mix(in srgb, var(--mtn-color) 30%, transparent); }
.sc-q-radio span:last-child { font-size:.85rem; color:#94a3b8; line-height:1.5; }
.sc-q-radio:has(.sc-q-radio-input:checked) span:last-child { color:#e2e8f0; }

/* Checkbox options */
.sc-q-checks { display:flex; flex-direction:column; gap:.45rem; }
.sc-q-check { display:flex; align-items:flex-start; gap:.75rem; padding:.6rem .9rem; border-radius:10px; background:rgba(255,255,255,.02); border:1px solid rgba(255,255,255,.06); cursor:pointer; transition:background .15s, border-color .15s; }
.sc-q-check:hover { background:rgba(255,255,255,.05); }
.sc-q-check--danger { border-color:rgba(239,68,68,.15); }
.sc-q-check--danger:hover { background:rgba(239,68,68,.05); }
.sc-q-check-input { position:absolute; opacity:0; pointer-events:none; }
.sc-q-check-box { width:17px; height:17px; border-radius:4px; border:2px solid #334155; flex-shrink:0; margin-top:.1rem; display:flex; align-items:center; justify-content:center; transition:border-color .15s, background .15s; }
.sc-q-check-box .material-symbols-outlined { font-size:.7rem; color:transparent; transition:color .1s; }
.sc-q-check-input:checked ~ .sc-q-check-box { border-color:var(--mtn-color); background:var(--mtn-color); }
.sc-q-check-input:checked ~ .sc-q-check-box .material-symbols-outlined { color:#0a060c; }
.sc-q-check:has(.sc-q-check-input:checked) { background:color-mix(in srgb, var(--mtn-color) 7%, transparent); border-color:color-mix(in srgb, var(--mtn-color) 25%, transparent); }
.sc-q-check span:last-child { font-size:.85rem; color:#94a3b8; }
.sc-q-check:has(.sc-q-check-input:checked) span:last-child { color:#e2e8f0; }

/* Textarea */
.sc-q-text { width:100%; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:10px; padding:.9rem 1rem; color:#f1f5f9; font-size:.9rem; font-family:inherit; resize:vertical; line-height:1.6; transition:border-color .2s; }
.sc-q-text:focus { outline:none; border-color:var(--mtn-color); box-shadow:0 0 0 3px color-mix(in srgb, var(--mtn-color) 12%, transparent); }
.sc-q-text-hint { font-size:.73rem; color:#475569; margin-top:.4rem; }

/* Acknowledge */
.sc-q-ack-options { display:flex; flex-direction:column; gap:.5rem; }
.sc-q-ack-opt { display:flex; align-items:flex-start; gap:.8rem; cursor:pointer; }
.sc-q-ack-input { position:absolute; opacity:0; pointer-events:none; }
.sc-q-ack-box { width:22px; height:22px; border-radius:6px; border:2px solid #334155; flex-shrink:0; margin-top:.05rem; display:flex; align-items:center; justify-content:center; transition:border-color .15s, background .15s; }
.sc-q-ack-box .material-symbols-outlined { font-size:.8rem; color:transparent; }
.sc-q-ack-input:checked ~ .sc-q-ack-box { border-color:var(--mtn-color); background:var(--mtn-color); }
.sc-q-ack-input:checked ~ .sc-q-ack-box .material-symbols-outlined { color:#0a060c; }
.sc-q-ack-label { font-size:.88rem; color:#94a3b8; line-height:1.5; }
.sc-q-ack-opt:has(.sc-q-ack-input:checked) .sc-q-ack-label { color:#e2e8f0; }

/* Hard stop & complete messages */
.sc-q-hardstop, .sc-q-complete { display:flex; flex-direction:column; align-items:center; text-align:center; padding:2.5rem; border-radius:16px; margin-top:1.5rem; }
.sc-q-hardstop { background:rgba(239,68,68,.08); border:1px solid rgba(239,68,68,.25); }
.sc-q-hardstop .material-symbols-outlined { font-size:2.5rem; color:#ef4444; margin-bottom:1rem; }
.sc-q-hardstop h3 { font-size:1.1rem; font-weight:800; color:#fca5a5; margin-bottom:.5rem; }
.sc-q-hardstop p { font-size:.88rem; color:#94a3b8; line-height:1.7; }
.sc-q-hardstop a { color:#ef4444; }
.sc-q-complete { background:color-mix(in srgb, var(--mtn-color) 8%, transparent); border:1px solid color-mix(in srgb, var(--mtn-color) 25%, transparent); }
.sc-q-complete .material-symbols-outlined { font-size:2.5rem; color:var(--mtn-color); margin-bottom:1rem; }
.sc-q-complete h3 { font-size:1.1rem; font-weight:800; color:var(--mtn-color); margin-bottom:.5rem; }
.sc-q-complete p { font-size:.88rem; color:#94a3b8; }

/* Products section */
.sc-mtn-products { border-top:1px solid rgba(255,255,255,.06); }
.sc-mtn-products__header { margin-bottom:1.5rem; }
.sc-mtn-products__sub { font-size:.85rem; color:#475569; margin-top:-.75rem; margin-bottom:1rem; }

.sc-mtn-products__gate { display:flex; flex-direction:column; align-items:center; gap:.75rem; padding:3rem; border-radius:16px; border:1px dashed rgba(255,255,255,.1); color:#334155; font-size:.9rem; text-align:center; }
.sc-mtn-products__gate .material-symbols-outlined { font-size:2rem; opacity:.5; }

.sc-mtn-products__grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:1.25rem; opacity:.4; pointer-events:none; transition:opacity .4s; }
.sc-mtn-products__grid.sc-products-unlocked { opacity:1; pointer-events:auto; }

/* Gift cards */
.sc-gift-card { position:relative; border-radius:16px; overflow:hidden; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07); transition:transform .25s, border-color .25s, box-shadow .25s; }
.sc-products-unlocked .sc-gift-card:hover { transform:translateY(-4px); border-color:color-mix(in srgb, var(--c) 40%, transparent); box-shadow:0 16px 40px rgba(0,0,0,.35), 0 0 30px color-mix(in srgb, var(--c) 12%, transparent); }
.sc-gift-card__img { position:relative; height:200px; overflow:hidden; background:rgba(175,37,244,.06); }
.sc-gift-card__img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.sc-products-unlocked .sc-gift-card:hover .sc-gift-card__img img { transform:scale(1.04); }
.sc-gift-card__img--ph { display:flex; align-items:center; justify-content:center; }
.sc-gift-card__img--ph .material-symbols-outlined { font-size:3rem; color:var(--c); opacity:.2; }
.sc-gift-card__img-fade { position:absolute; inset:0; background:linear-gradient(to top, rgba(10,6,12,.85) 0%, transparent 55%); }
.sc-gift-card__body { padding:1.25rem; display:flex; flex-direction:column; gap:.75rem; }
.sc-gift-card__format { display:inline-flex; align-items:center; gap:.4rem; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--c); }
.sc-gift-card__format .material-symbols-outlined { font-size:.95rem; }
.sc-gift-card__price-row { display:flex; align-items:baseline; gap:.6rem; }
.sc-gift-card__price { font-size:2rem; font-weight:900; letter-spacing:-.04em; color:#f1f5f9; line-height:1; }
.sc-gift-card__weight { font-size:.75rem; color:#475569; }
.sc-gift-card__desc { font-size:.82rem; color:#64748b; line-height:1.65; }
.sc-gift-card__consult-label { display:inline-flex; align-items:center; gap:.4rem; font-size:.72rem; color:#334155; }
.sc-gift-card__consult-label .material-symbols-outlined { font-size:.8rem; color:var(--c); opacity:.6; }
.sc-gift-card__btn { width:100%; margin-top:.25rem; display:flex; align-items:center; justify-content:center; gap:.5rem; }
.sc-gift-card__btn .material-symbols-outlined { font-size:1rem; }
.sc-gift-card__oos { font-size:.75rem; color:#475569; text-align:center; padding:.5rem; }

/* Safety footer */
.sc-mtn-safety { position:relative; z-index:1; padding:1.5rem; max-width:860px; margin-inline:auto; padding-bottom:4rem; }
.sc-mtn-safety__inner { display:flex; align-items:center; gap:1rem; padding:1rem 1.25rem; border-radius:12px; background:rgba(0,212,255,.04); border:1px solid rgba(0,212,255,.12); font-size:.78rem; color:#475569; line-height:1.7; }
.sc-mtn-safety .material-symbols-outlined { font-size:1.1rem; color:#00d4ff; flex-shrink:0; }
.sc-mtn-safety a { color:#00d4ff; text-decoration:none; }
.sc-mtn-safety a:hover { text-decoration:underline; }

/* spin animation for add-to-cart loading */
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* Responsive */
@media(max-width:768px) {
    .sc-menu-row { grid-template-columns:1fr; gap:1.25rem; }
    .sc-menu-row__options { padding-left:0; border-left:none; border-top:1px solid rgba(255,255,255,.06); padding-top:1.25rem; }
    .sc-mtn-products__grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:480px) {
    .sc-mtn-products__grid { grid-template-columns:1fr; }
    .sc-mtn-hero__name { font-size:3rem; }
}

/* Fallback for browsers without color-mix */
@supports not (color: color-mix(in srgb, red, blue)) {
    .sc-menu-row::before { background:rgba(175,37,244,.04); }
    .sc-menu-row__badge { background:rgba(175,37,244,.1); border-color:rgba(175,37,244,.25); }
    .sc-mtn-hero__badge { background:rgba(175,37,244,.1); border-color:rgba(175,37,244,.25); }
    .sc-q-radio:has(.sc-q-radio-input:checked) { background:rgba(175,37,244,.08); border-color:rgba(175,37,244,.3); }
    .sc-q-check:has(.sc-q-check-input:checked) { background:rgba(175,37,244,.07); border-color:rgba(175,37,244,.25); }
    .sc-mtn-orb--1 { background:radial-gradient(circle, rgba(175,37,244,.08) 0%, transparent 65%); }
}

/* ================================================================
   MOUNTAIN SHOP — v2 (8 peaks, accurate silhouettes)
   ================================================================ */

/* Peak link hover */
.sc-peak-link { cursor:pointer; }
.sc-peak-link:hover .sc-summit-dot { r:7; }
.sc-peak-link:hover path:first-of-type { opacity:1; }
.sc-peak-link:hover .sc-peak-label { font-size:13px; }
.sc-elevation__svg { overflow:visible; }

/* Menu row — right side redesign: price block + single gift row */
.sc-menu-row { display:grid; grid-template-columns:1fr auto; gap:2rem; border-top:1px solid rgba(255,255,255,.07); padding:1.75rem 0; transition:background .2s; position:relative; align-items:center; }
.sc-menu-row:last-child { border-bottom:1px solid rgba(255,255,255,.07); }
.sc-menu-row::before { content:''; position:absolute; left:-1.5rem; right:-1.5rem; top:0; bottom:0; background:rgba(255,255,255,.02); opacity:0; transition:opacity .2s; border-radius:12px; pointer-events:none; }
.sc-menu-row:hover::before { opacity:1; }

.sc-menu-row__right { display:flex; flex-direction:column; align-items:flex-end; gap:.75rem; min-width:260px; }

.sc-menu-row__price-block { text-align:right; }
.sc-menu-row__consult-fee { display:block; font-size:.65rem; font-weight:800; text-transform:uppercase; letter-spacing:.1em; color:#334155; margin-bottom:.2rem; }
.sc-menu-row__price { font-size:2rem; font-weight:900; letter-spacing:-.04em; color:var(--c); line-height:1; }

.sc-menu-opt { display:flex; align-items:center; gap:.65rem; padding:.55rem .9rem; border-radius:10px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07); text-decoration:none; color:inherit; transition:background .18s, border-color .18s; width:100%; }
.sc-menu-opt:hover { background:color-mix(in srgb, var(--c) 8%, transparent); border-color:color-mix(in srgb, var(--c) 25%, transparent); }
.sc-menu-opt__icon { font-size:.95rem; color:var(--c); opacity:.8; flex-shrink:0; }
.sc-menu-opt__sub { font-size:.85rem; font-weight:600; }
.sc-menu-opt__gift { display:inline-flex; align-items:center; gap:.3rem; font-size:.72rem; color:#334155; margin-left:auto; }
.sc-menu-opt__gift .material-symbols-outlined { font-size:.8rem; }
.sc-menu-opt__arrow { font-size:.85rem; color:#334155; transition:color .18s, transform .18s; flex-shrink:0; }
.sc-menu-opt:hover .sc-menu-opt__arrow { color:var(--c); transform:translateX(3px); }

/* Override old options-list styles that no longer apply */
.sc-menu-row__options { display:none; }

/* Responsive */
@media(max-width:860px) {
    .sc-menu-row { grid-template-columns:1fr; }
    .sc-menu-row__right { align-items:flex-start; min-width:unset; width:100%; }
    .sc-menu-row__price-block { text-align:left; }
}

/* Fallback for browsers without color-mix */
@supports not (color: color-mix(in srgb, red, blue)) {
    .sc-menu-opt:hover { background:rgba(175,37,244,.08); border-color:rgba(175,37,244,.25); }
}
