/*
Theme Name: Supplements.Men
Theme URI: https://supplements.men
Description: Dark premium affiliate theme for supplements.men - GeneratePress child theme
Author: supplements.men
Author URI: https://supplements.men
Template: generatepress
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: supplements-men
*/

/* ============================================
   SUPPLEMENTS.MEN - Premium Supplement Brand
   ============================================ */

/* Reset - override GP defaults */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c8a84e;
    --gold-light: #e2c97e;
    --gold-dark: #9a7b2f;
    --black: #0a0a0a;
    --black-soft: #111111;
    --black-card: #161616;
    --black-border: #222222;
    --white: #ffffff;
    --gray-100: #f0f0f0;
    --gray-200: #d4d4d4;
    --gray-400: #8a8a8a;
    --gray-600: #555555;
    --green: #22c55e;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Bebas Neue', 'Inter', sans-serif;
    --max-width: 1200px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--gray-200);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold);
    color: var(--black);
}
.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(200, 168, 78, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--sm { padding: 0.5rem 1.2rem; font-size: 0.75rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header--light .section-header__title { color: var(--white); }
.section-header--light .section-header__sub { color: var(--gray-400); }

.section-header__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.section-header__sub {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section-header__disclosure {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}
.nav--scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: rgba(200, 168, 78, 0.15);
}

.nav__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
}
.nav__logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 2px;
}
.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}
.nav__logo-dot { color: var(--gold); }

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-400);
    transition: color var(--transition);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 1rem; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

/* -- Nav Dropdown (Guides) -- */
.nav__item--dropdown {
    position: relative;
}
.nav__link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.nav__dropdown-arrow {
    width: 10px;
    height: 6px;
    transition: transform 0.25s ease;
    opacity: 0.6;
}
.nav__item--dropdown:hover .nav__dropdown-arrow,
.nav__item--dropdown.active .nav__dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}
.nav__dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
    min-width: 520px;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown.active .nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
/* Invisible hover bridge so mouse can travel from link to dropdown */
.nav__dropdown::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}
.nav__dropdown-inner {
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.nav__dropdown-heading {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(200, 168, 78, 0.15);
}
.nav__dropdown-col {
    display: flex;
    flex-direction: column;
}
.nav__dropdown-link {
    font-size: 0.8rem;
    color: var(--gray-400);
    padding: 0.4rem 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
    white-space: nowrap;
}
.nav__dropdown-link:hover {
    color: var(--white);
    padding-left: 4px;
}
.nav__dropdown-footer {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    text-align: center;
}
.nav__dropdown-all {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    transition: color 0.2s ease;
}
.nav__dropdown-all:hover {
    color: var(--white);
}


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
}
.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.7) 0%,
        rgba(10,10,10,0.4) 40%,
        rgba(10,10,10,0.8) 100%
    );
}

.hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 8rem 2rem 4rem;
}

.hero__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--gold);
    border: 1px solid rgba(200, 168, 78, 0.3);
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    color: var(--white);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}
.hero__title--gold { color: var(--gold); }

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.hero__stat { text-align: center; }
.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1;
}
.hero__stat-plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
}
.hero__stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}
.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    padding: 7rem 2rem;
    background: var(--black-soft);
}
.products__container { max-width: var(--max-width); margin: 0 auto; }

.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: rgba(200, 168, 78, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
}
.product-card__badge--green { background: var(--green); color: var(--white); }
.product-card__badge--trending { background: linear-gradient(135deg, #c8a84e, #e2c97e); color: var(--black); }
.products--featured { border-top: 1px solid rgba(200, 168, 78, 0.15); border-bottom: 1px solid rgba(200, 168, 78, 0.15); background: linear-gradient(180deg, rgba(200, 168, 78, 0.03) 0%, transparent 100%); }
.products--featured .product-card { border-color: rgba(200, 168, 78, 0.15); }
.products--featured .product-card:hover { border-color: rgba(200, 168, 78, 0.5); box-shadow: 0 20px 40px rgba(200, 168, 78, 0.1); }

.product-card__image {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}
.product-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--black-card) 0%, transparent 30%);
    pointer-events: none;
}
.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.75rem;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.product-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.product-card__desc {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}
.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.product-card__price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
}
.product-card__buttons {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}
.product-card__buttons .btn {
    flex: 1;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
    position: relative;
    padding: 7rem 2rem;
    overflow: hidden;
}
.benefits__bg {
    position: absolute;
    inset: 0;
}
.benefits__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}
.benefits__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.9), rgba(10,10,10,0.7));
}
.benefits__container {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}
.benefit:hover {
    border-color: rgba(200, 168, 78, 0.2);
    background: rgba(200, 168, 78, 0.04);
}

.benefit__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    color: var(--gold);
}
.benefit__icon svg { width: 100%; height: 100%; }

.benefit__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.benefit__text {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ============================================
   LIFESTYLE
   ============================================ */
.lifestyle {
    padding: 7rem 2rem;
    background: var(--black);
}
.lifestyle__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.lifestyle__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.lifestyle__text {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.lifestyle__list {
    list-style: none;
    margin-bottom: 2rem;
}
.lifestyle__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-200);
}
.lifestyle__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.lifestyle__image {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.lifestyle__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: 8px;
    pointer-events: none;
}
.lifestyle__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}

/* ============================================
   INGREDIENTS
   ============================================ */
.ingredients {
    padding: 7rem 2rem;
    background: var(--black-soft);
}
.ingredients__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.ingredients__image {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.ingredients__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: 8px;
    pointer-events: none;
}
.ingredients__image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.ingredients__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 2rem;
}

.ingredients__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ingredient-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--black-border);
}
.ingredient-item:first-child { border-top: 1px solid var(--black-border); }

.ingredient-item__name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}
.ingredient-item__detail {
    font-size: 0.85rem;
    color: var(--gold);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    padding: 7rem 2rem;
    background: var(--black);
}
.reviews__container { max-width: var(--max-width); margin: 0 auto; }

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    padding: 2rem;
    transition: all var(--transition);
}
.review:hover {
    border-color: rgba(200, 168, 78, 0.2);
}

.review__stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.review__text {
    font-size: 0.95rem;
    color: var(--gray-200);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.review__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.review__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.review__name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}
.review__detail {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ============================================
   CTA
   ============================================ */
.cta {
    position: relative;
    padding: 7rem 2rem;
    overflow: hidden;
    text-align: center;
}
.cta__bg {
    position: absolute;
    inset: 0;
}
.cta__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}
.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.92), rgba(10,10,10,0.85));
}

.cta__container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}
.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 1.5rem;
}
.cta__title--gold { color: var(--gold); }

.cta__text {
    font-size: 1.05rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta__form-group {
    display: flex;
    gap: 0;
    max-width: 450px;
    margin: 0 auto;
}
.cta__input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--black-border);
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: var(--black-card);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
}
.cta__input:focus { border-color: var(--gold); }
.cta__input::placeholder { color: var(--gray-600); }

.cta__form .btn {
    border-radius: 0 4px 4px 0;
}

.cta__disclaimer {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem 2rem 2rem;
    background: var(--black);
    border-top: 1px solid var(--black-border);
}
.footer__container { max-width: var(--max-width); margin: 0 auto; }

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__tagline {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-400);
    max-width: 280px;
}

.footer__heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer__links {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
    border-top: 1px solid var(--black-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__bottom p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ============================================
   AMAZON BUTTON
   ============================================ */
.btn--amazon {
    background: #ff9900;
    color: #111;
}
.btn--amazon:hover {
    background: #ffad33;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
    padding: 6rem 2rem;
    background: var(--black);
}
.categories__container { max-width: var(--max-width); margin: 0 auto; }
.categories__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
.category-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    transition: all var(--transition);
    cursor: pointer;
}
.category-tile:hover {
    border-color: var(--gold);
    background: rgba(200, 168, 78, 0.05);
    transform: translateY(-3px);
}
.category-tile__icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.category-tile__icon svg { width: 100%; height: 100%; }
.category-tile__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}
.category-tile__count {
    font-size: 0.7rem;
    color: var(--gray-400);
}

/* ============================================
   PRODUCT SECTIONS
   ============================================ */
.product-section {
    margin-bottom: 4rem;
}
.product-section__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--black-border);
}

.product-card__name-link { text-decoration: none; color: inherit; }
.product-card__name-link:hover .product-card__name { color: var(--gold); }

.product-card__rating {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.product-card--cta {
    background: transparent;
    border: 2px dashed var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}
.product-card--cta:hover {
    border-color: var(--gold);
    background: rgba(200, 168, 78, 0.03);
}
.product-card__cta-inner {
    padding: 2rem;
    text-align: center;
}
.product-card__cta-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.products__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   QUICK LINKS
   ============================================ */
.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 6px;
    transition: all var(--transition);
}
.quick-link:hover {
    border-color: var(--gold);
    background: rgba(200, 168, 78, 0.05);
}
.quick-link__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}
.quick-link__arrow {
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform var(--transition);
}
.quick-link:hover .quick-link__arrow { transform: translateX(4px); }

/* ============================================
   GUIDES
   ============================================ */
.guides {
    position: relative;
    padding: 7rem 2rem;
    overflow: hidden;
}
.guides__bg { position: absolute; inset: 0; }
.guides__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}
.guides__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.92), rgba(10,10,10,0.85));
}
.guides__container {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
}
.guides__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.guide-card {
    display: block;
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    transition: all var(--transition);
}
.guide-card:hover {
    border-color: rgba(200, 168, 78, 0.3);
    background: rgba(200, 168, 78, 0.05);
    transform: translateY(-3px);
}
.guide-card__tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.guide-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.guide-card__desc {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.guide-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   WORDPRESS CONTENT STYLES
   ============================================ */

/* Override GP defaults */
body.supplements-men-theme,
body.supplements-men-theme .site {
    background: var(--black);
    color: var(--gray-200);
}

/* Article/Page Content */
.article-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.article-wrapper .entry-title,
.article-wrapper h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.article-wrapper h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    line-height: 1.15;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-wrapper h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.article-wrapper p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-200);
    margin-bottom: 1.5rem;
}

.article-wrapper a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(200, 168, 78, 0.3);
    text-underline-offset: 3px;
    transition: all var(--transition);
}
.article-wrapper a:hover {
    color: var(--gold-light);
    text-decoration-color: var(--gold);
}

.article-wrapper ul,
.article-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.article-wrapper li {
    margin-bottom: 0.5rem;
    color: var(--gray-200);
    line-height: 1.7;
}

.article-wrapper blockquote {
    border-left: 3px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--black-card);
    border-radius: 0 8px 8px 0;
}
.article-wrapper blockquote p {
    color: var(--gray-100);
    font-style: italic;
    margin-bottom: 0;
}

.article-wrapper img {
    border-radius: 8px;
    margin: 2rem 0;
}

.article-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}
.article-wrapper th {
    background: var(--black-card);
    color: var(--gold);
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--gold-dark);
}
.article-wrapper td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--black-border);
    color: var(--gray-200);
}
.article-wrapper tr:hover td {
    background: rgba(200, 168, 78, 0.03);
}

/* Article meta */
.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--black-border);
}
.article-meta__item {
    font-size: 0.85rem;
    color: var(--gray-400);
}
.article-meta__item strong {
    color: var(--gold);
}

/* Affiliate disclosure bar */
.affiliate-notice {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-left: 3px solid var(--gold);
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    border-radius: 0 6px 6px 0;
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* WordPress admin bar offset */
body.admin-bar .nav {
    top: 32px;
}
@media (max-width: 782px) {
    body.admin-bar .nav {
        top: 46px;
    }
}

/* ============================================
   PRODUCT BOX (in-article)
   ============================================ */
.product-box {
    position: relative;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    margin: 2rem 0;
    overflow: hidden;
}
.product-box__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    text-transform: uppercase;
}
.product-box__inner {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
}
.product-box__image {
    flex: 0 0 180px;
    aspect-ratio: 1;
    background: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-box__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}
.product-box__content {
    flex: 1;
    min-width: 0;
}
.product-box__category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}
.product-box__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}
.product-box__name a {
    color: inherit;
    text-decoration: none;
}
.product-box__name a:hover {
    color: var(--gold);
}
.product-box__rating {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}
.product-box__desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.product-box__pros-cons {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.25rem;
}
.product-box__pros,
.product-box__cons {
    flex: 1;
}
.product-box__list-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.product-box__pros .product-box__list-label { color: var(--green); }
.product-box__cons .product-box__list-label { color: #ef4444; }
.product-box__pros ul,
.product-box__cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-box__pros li,
.product-box__cons li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.85rem;
    color: var(--gray-200);
    line-height: 1.6;
    margin-bottom: 0.25rem;
}
.product-box__pros li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}
.product-box__cons li::before {
    content: '-';
    position: absolute;
    left: 0.1rem;
    color: #ef4444;
    font-weight: 700;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    overflow: hidden;
}
.comparison-table thead th {
    background: rgba(200, 168, 78, 0.1);
    color: var(--gold);
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--gold-dark);
}
.comparison-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--black-border);
    color: var(--gray-200);
    vertical-align: middle;
    font-size: 0.9rem;
}
.comparison-table__highlighted {
    background: rgba(200, 168, 78, 0.04);
}
.comparison-table__product {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
}
.comparison-table__img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: contain;
    background: #f5f5f5;
    flex-shrink: 0;
}
.comparison-table__badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    margin-left: 0.5rem;
}
.comparison-table__rating {
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}
.comparison-table__highlights {
    max-width: 280px;
}

/* ============================================
   AD SLOTS
   ============================================ */
.ad-slot {
    margin: 2rem 0;
    text-align: center;
}
.ad-slot--before-content { margin-top: 0; }
.ad-slot--after-content { margin-bottom: 0; }

/* ============================================
   RELATED POSTS
   ============================================ */
.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--black-border);
}
.related-posts__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}
.related-posts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ============================================
   GUIDES ARCHIVE PAGE
   ============================================ */
.guides-archive__hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}
.guides-archive__hero-bg {
    position: absolute;
    inset: 0;
}
.guides-archive__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.guides-archive__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%);
}
.guides-archive__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
}
.guides-archive__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin: 0.5rem 0;
    line-height: 1.1;
}
.guides-archive__subtitle {
    color: var(--gray-400);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}
.guides-archive__body {
    padding: 4rem 0;
}
.guides-archive__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}
.guides-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.guide-card--archive {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--black-border);
    background: var(--bg-card);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.guide-card--archive:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 168, 78, 0.3);
}
.guide-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #161616, #1a1a1a);
}
.guide-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.guide-card--archive:hover .guide-card__image img {
    transform: scale(1.05);
}
.guide-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.guide-card--archive .guide-card__title {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}
.guide-card--archive .guide-card__desc {
    flex: 1;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .products__grid { grid-template-columns: repeat(2, 1fr); }
    .products__grid--3 { grid-template-columns: repeat(2, 1fr); }
    .benefits__grid { grid-template-columns: repeat(2, 1fr); }
    .categories__grid { grid-template-columns: repeat(4, 1fr); }
    .quick-links { grid-template-columns: repeat(3, 1fr); }
    .guides__grid { grid-template-columns: repeat(2, 1fr); }
    .related-posts__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .guides-archive__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav__menu { display: none; }
    .nav__menu--active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.98);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--black-border);
    }
    .nav__toggle { display: flex; }
    /* Mobile dropdown styles */
    .nav__dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: hidden;
        pointer-events: none;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, visibility 0.35s ease, opacity 0.2s ease;
    }
    .nav__item--dropdown.active .nav__dropdown {
        visibility: visible;
        pointer-events: auto;
        max-height: 600px;
        transform: none;
    }
    .nav__dropdown::before { display: none; }
    .nav__dropdown-inner {
        grid-template-columns: 1fr;
        border: none;
        border-radius: 0;
        padding: 0.75rem 0 0 1rem;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        gap: 1rem;
    }
    .nav__dropdown-footer {
        text-align: left;
    }
    .nav__dropdown-arrow { display: inline-block; }
    .nav__actions .btn { display: none; }

    .hero__cta { flex-direction: column; align-items: center; }
    .hero__stats { flex-wrap: wrap; gap: 1.5rem; }
    .hero__stat-divider { display: none; }

    .products__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .products__grid--3 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .categories__grid { grid-template-columns: repeat(3, 1fr); }
    .quick-links { grid-template-columns: repeat(2, 1fr); }
    .guides__grid { grid-template-columns: 1fr; }
    .guides-archive__grid { grid-template-columns: 1fr; }

    .benefits__grid { grid-template-columns: 1fr; }

    .lifestyle__container { grid-template-columns: 1fr; gap: 2rem; }
    .lifestyle__image { order: -1; }

    .ingredients__container { grid-template-columns: 1fr; gap: 2rem; }

    .reviews__grid { grid-template-columns: 1fr; }
    .related-posts__grid { grid-template-columns: 1fr; }

    .product-box__inner { flex-direction: column; gap: 1rem; }
    .product-box__image { flex: none; max-width: 180px; margin: 0 auto; }
    .product-box__pros-cons { flex-direction: column; gap: 1rem; }

    .comparison-table__product { min-width: 150px; }
    .comparison-table__highlights { max-width: 180px; }

    .cta__form-group { flex-direction: column; }
    .cta__input { border-right: 1px solid var(--black-border); border-radius: 4px; }
    .cta__form .btn { border-radius: 4px; }

    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    .article-wrapper { padding: 6rem 1.25rem 3rem; }
}

/* Mobile CTA button minimum tap target */
@media (max-width: 768px) {
    .product-card__buttons .btn,
    .woocommerce ul.products li.product a.button,
    a.add_to_cart_button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* ============================================
   WOOCOMMERCE PRODUCT GRID — 5-column flex
   Mirrors vape site product grid layout
   ============================================ */
ul.products {
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.products li.product {
    width: calc(20% - 16px) !important;
    float: none !important;
    margin: 0 !important;
    background: var(--black-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid var(--black-border);
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column !important;
}

ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.4), 0 4px 8px rgba(0,0,0,0.3);
}

ul.products li.product img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: var(--black-soft);
    transition: transform 0.4s ease;
}

ul.products li.product:hover img {
    transform: scale(1.05);
}

ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 12px 0;
    margin: 0;
    color: var(--gray-200);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    max-height: 4.2em;
}

ul.products li.product .woocommerce-LoopProduct-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

ul.products li.product .button,
ul.products li.product .add_to_cart_button {
    border-radius: 6px !important;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    width: calc(100% - 24px);
    margin: auto 12px 12px;
    box-sizing: border-box;
    text-align: center;
    background: var(--gold) !important;
    color: var(--black) !important;
    border: none !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.2s ease;
}

ul.products li.product .button:hover,
ul.products li.product .add_to_cart_button:hover {
    background: var(--gold-light) !important;
}

/* Price hidden on grid */
ul.products li.product .price {
    display: none !important;
}

/* Responsive grid */
@media only screen and (max-width: 1024px) {
    ul.products li.product { width: calc(25% - 15px) !important; }
}
@media only screen and (max-width: 760px) {
    ul.products li.product { width: calc(50% - 10px) !important; }
}
@media only screen and (max-width: 546px) {
    ul.products li.product { width: 100% !important; }
}

/* WooCommerce category page wrapper */
.woocommerce .site-content,
.woocommerce-page .site-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.woocommerce .entry-title,
.woocommerce-page .page-title,
.woocommerce .woocommerce-products-header__title {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    color: var(--gray-400);
    font-size: 0.85rem;
}

.woocommerce .woocommerce-ordering select {
    background: var(--black-card);
    color: var(--gray-200);
    border: 1px solid var(--black-border);
    padding: 6px 10px;
    border-radius: 4px;
}

/* WooCommerce breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.woocommerce .woocommerce-breadcrumb a {
    color: var(--gold);
}
.woocommerce .woocommerce-breadcrumb a:hover {
    color: var(--gold-light);
}

/* WooCommerce pagination */
.woocommerce nav.woocommerce-pagination {
    margin-top: 2rem;
    text-align: center;
}
.woocommerce nav.woocommerce-pagination ul {
    display: inline-flex;
    gap: 4px;
    border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    background: var(--black-card);
    color: var(--gray-200);
    border: 1px solid var(--black-border);
    padding: 8px 14px;
    border-radius: 4px;
    min-width: auto;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: var(--gold-dark);
    color: var(--white);
}

/* ============================================
   SINGLE PRODUCT PAGE — Two-column layout
   Mirrors vape site single product styling
   ============================================ */
.single-product div.product {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.single-product .woocommerce-product-gallery {
    flex: 0 0 45%;
    max-width: 45%;
}

.single-product .summary.entry-summary {
    flex: 0 0 50%;
    max-width: 50%;
}

.single-product .woocommerce-product-gallery img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    background: var(--black-soft);
    border-radius: 8px;
}

.single-product .woocommerce-tabs,
.single-product .related.products {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (max-width: 767px) {
    .single-product .woocommerce-product-gallery,
    .single-product .summary.entry-summary {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Product title */
.single-product .product_title {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

/* Hide prices — affiliate model */
.single-product .price,
.single-product .summary .price,
.single-product .woocommerce-Price-amount,
.single-product p.price,
.single-product span.price {
    display: none !important;
}

/* Shop Now / Buy button */
.single-product .summary .button,
.single-product .summary .single_add_to_cart_button {
    background: var(--gold) !important;
    color: var(--black) !important;
    border: none !important;
    border-radius: 6px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: 1rem;
}

.single-product .summary .button:hover,
.single-product .summary .single_add_to_cart_button:hover {
    background: var(--gold-light) !important;
}

/* Product meta / category links */
.single-product .product_meta {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-top: 1.5rem;
}

.single-product .product_meta a {
    color: var(--gold);
}

.single-product .product_meta a:hover {
    color: var(--gold-light);
}

/* Short description */
.single-product .woocommerce-product-details__short-description {
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Tabs */
.single-product .woocommerce-tabs ul.tabs {
    list-style: none;
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid var(--black-border);
}

.single-product .woocommerce-tabs ul.tabs li {
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.single-product .woocommerce-tabs ul.tabs li a {
    color: var(--gray-400);
    padding: 12px 20px;
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.single-product .woocommerce-tabs .panel {
    color: var(--gray-200);
    padding: 20px 0;
    line-height: 1.7;
}

.single-product .woocommerce-tabs .panel h2 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Related products */
.single-product .related.products h2 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Hide sidebar on product pages */
.single-product .sidebar,
.post-type-archive-product .sidebar,
.tax-product_cat .sidebar {
    display: none !important;
}

.single-product #content,
.single-product .site-main {
    width: 100% !important;
    max-width: 100% !important;
}

/* Mobile overflow fix for category tiles (Session 34) */
.categories { overflow-x: hidden; }
.categories__container { overflow-x: hidden; padding: 0 1rem; }
@media (max-width: 480px) {
    .categories__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .category-tile { padding: 1rem 0.5rem; }
    .category-tile__name { font-size: 0.75rem; }
    .category-tile__count { font-size: 0.65rem; }
}

/* Featured product taglines (Session 42) */
.product-card__tagline {
    font-size: 0.85rem;
    color: rgba(200, 168, 78, 0.75);
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex: 1;
    letter-spacing: 0.01em;
}
.products--featured .product-card:hover .product-card__tagline {
    color: rgba(200, 168, 78, 0.95);
}
