/*
Theme Name: High Days
Theme URI: https://highdays.com
Author: Altemose Companies
Description: Custom theme for High Days Beverage Company - Delta-9 THC infused beverages
Version: 1.3.7
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: highdays
*/

/* ============================================
   CSS Variables / Design Tokens
   ============================================ */
:root {
    --hd-bg-primary: #ffffff;
    --hd-bg-secondary: #f8f8f8;
    --hd-bg-tertiary: #f0f0f0;
    --hd-bg-dark: #1a1a1a;
    --hd-gold: rgb(252, 185, 0);
    --hd-gold-dark: rgb(187, 136, 0);
    --hd-gold-light: rgb(255, 210, 70);
    --hd-text-primary: #1a1a1a;
    --hd-text-secondary: #555555;
    --hd-text-muted: #888888;
    --hd-text-on-dark: #ffffff;
    --hd-font-heading: 'Adamina', serif;
    --hd-font-body: 'Poppins', sans-serif;
    --hd-radius: 8px;
    --hd-radius-lg: 16px;
    --hd-transition: 0.3s ease;
    --hd-max-width: 1200px;
    --hd-spacing-xs: 0.5rem;
    --hd-spacing-sm: 1rem;
    --hd-spacing-md: 2rem;
    --hd-spacing-lg: 4rem;
    --hd-spacing-xl: 6rem;
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
body.hd-theme {
    font-family: var(--hd-font-body);
    background-color: #ffffff !important;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--hd-text-primary);
    text-decoration: none;
    transition: color var(--hd-transition);
}

a:hover {
    color: var(--hd-gold-dark);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hd-font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--hd-text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--hd-text-secondary);
}

/* ============================================
   Layout
   ============================================ */
.hd-container {
    width: 100%;
    max-width: var(--hd-max-width);
    margin: 0 auto;
    padding: 0 var(--hd-spacing-md);
}

.hd-section {
    padding: var(--hd-spacing-xl) 0;
}

/* ============================================
   Header & Navigation — Centered Layout
   ============================================ */
.hd-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.hd-header__top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem 1rem;
    max-width: var(--hd-max-width);
    margin: 0 auto;
    position: relative;
}

.hd-header__inner {
    max-width: var(--hd-max-width);
    margin: 0 auto;
}

/* Logo centered at top */
.hd-header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hd-header__logo img {
    height: 70px;
    width: auto;
}

/* Utility icons (search, cart, account) — top right */
.hd-header__icons {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hd-header__icon {
    color: var(--hd-text-primary);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    transition: color var(--hd-transition);
}

.hd-header__icon:hover {
    color: var(--hd-gold-dark);
}

.hd-nav__cart {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--hd-text-primary);
    font-size: 0.9rem;
}

.hd-nav__cart-icon {
    font-size: 1.25rem;
}

.hd-nav__cart-count {
    background-color: var(--hd-gold);
    color: var(--hd-bg-dark);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
}

/* Navigation centered below logo */
.hd-nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hd-nav__list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    padding-bottom: 1rem;
}

.hd-nav__link {
    font-family: var(--hd-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hd-text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--hd-transition);
}

.hd-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--hd-gold);
    transition: width var(--hd-transition);
}

.hd-nav__link:hover,
.hd-nav__link--active {
    color: var(--hd-gold-dark);
}

.hd-nav__link:hover::after,
.hd-nav__link--active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.hd-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.hd-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--hd-text-primary);
    transition: var(--hd-transition);
}

/* ============================================
   Hero Section — Image Carousel + Selling Points
   ============================================ */
.hd-hero {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 500px;
    overflow: hidden;
    background-color: var(--hd-bg-primary);
}

/* Carousel area — takes ~65% of width */
.hd-hero__carousel {
    flex: 0 0 65%;
    position: relative;
    overflow: hidden;
    background-color: var(--hd-bg-secondary);
}

.hd-hero__slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.hd-hero__slide {
    min-width: 100%;
    height: 100%;
}

.hd-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thumbnail strip below carousel */
.hd-hero__thumbs {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.hd-hero__thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all var(--hd-transition);
}

.hd-hero__thumb--active,
.hd-hero__thumb:hover {
    opacity: 1;
    border-color: var(--hd-gold);
}

.hd-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Selling Points panel — gold background, right side */
.hd-hero__selling-points {
    flex: 0 0 35%;
    background-color: var(--hd-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.hd-hero__selling-list {
    text-align: right;
}

.hd-hero__selling-item {
    font-family: var(--hd-font-heading);
    font-size: 2rem;
    color: var(--hd-bg-dark);
    line-height: 1.6;
    font-weight: 400;
}

.hd-hero__cta {
    margin-top: 2rem;
    text-align: right;
}

/* ============================================
   Buttons
   ============================================ */
.hd-btn {
    display: inline-block;
    font-family: var(--hd-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 1rem 2.5rem;
    border-radius: var(--hd-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--hd-transition);
    text-align: center;
}

.hd-btn--primary {
    background-color: var(--hd-bg-dark);
    color: var(--hd-text-on-dark);
    border-color: var(--hd-bg-dark);
}

.hd-btn--primary:hover {
    background-color: #333;
    border-color: #333;
    color: var(--hd-text-on-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hd-btn--gold {
    background-color: var(--hd-gold);
    color: var(--hd-bg-dark);
    border-color: var(--hd-gold);
}

.hd-btn--gold:hover {
    background-color: var(--hd-gold-light);
    border-color: var(--hd-gold-light);
    color: var(--hd-bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(252, 185, 0, 0.3);
}

.hd-btn--outline {
    background-color: transparent;
    color: var(--hd-text-primary);
    border-color: var(--hd-text-primary);
}

.hd-btn--outline:hover {
    background-color: var(--hd-text-primary);
    color: var(--hd-bg-primary);
    transform: translateY(-2px);
}

.hd-btn--outline-gold {
    background-color: transparent;
    color: var(--hd-gold-dark);
    border-color: var(--hd-gold-dark);
}

.hd-btn--outline-gold:hover {
    background-color: var(--hd-gold);
    color: var(--hd-bg-dark);
    transform: translateY(-2px);
}

.hd-btn--small {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

/* ============================================
   Features / Selling Points Strip
   ============================================ */
.hd-features-strip {
    background-color: var(--hd-bg-secondary);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: var(--hd-spacing-md) 0;
}

.hd-features-strip__inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.hd-features-strip__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--hd-text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hd-features-strip__icon {
    font-size: 1.3rem;
}

/* ============================================
   About / Movement Section
   ============================================ */
.hd-about {
    text-align: center;
    padding: var(--hd-spacing-xl) 0;
}

.hd-about__title {
    color: var(--hd-text-primary);
    margin-bottom: 1.5rem;
}

.hd-about__text {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--hd-text-secondary);
}

/* ============================================
   Products Section
   ============================================ */
.hd-products {
    padding: var(--hd-spacing-xl) 0;
}

.hd-products__title {
    text-align: center;
    margin-bottom: var(--hd-spacing-lg);
    color: var(--hd-text-primary);
}

.hd-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.hd-product-card {
    background-color: var(--hd-bg-primary);
    border-radius: var(--hd-radius-lg);
    overflow: hidden;
    transition: transform var(--hd-transition), box-shadow var(--hd-transition);
    border: 1px solid #eee;
}

.hd-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--hd-gold);
}

.hd-product-card__image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background-color: var(--hd-bg-secondary);
}

.hd-product-card__body {
    padding: 1.5rem;
}

.hd-product-card__title {
    font-family: var(--hd-font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--hd-text-primary);
}

.hd-product-card__price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hd-text-primary);
    margin-bottom: 1rem;
}

.hd-product-card__btn {
    width: 100%;
}

/* ============================================
   Age Verification Modal
   ============================================ */
.hd-age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hd-age-gate--hidden {
    opacity: 0;
    pointer-events: none;
}

.hd-age-gate__card {
    background-color: var(--hd-bg-primary);
    border: 2px solid #eee;
    border-radius: var(--hd-radius-lg);
    padding: 3rem;
    text-align: center;
    max-width: 460px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hd-age-gate__logo {
    max-height: 70px;
    margin: 0 auto 2rem;
}

.hd-age-gate__logo-wrap img {
    max-height: 80px;
    margin: 0 auto 1.5rem;
}

.hd-age-gate__title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--hd-text-primary);
}

.hd-age-gate__text {
    color: var(--hd-text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.hd-age-gate__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hd-age-gate__dob-fields {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.hd-age-gate__dob-fields select,
.hd-age-gate__dob-fields input {
    background-color: var(--hd-bg-secondary);
    border: 1px solid #ddd;
    color: var(--hd-text-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--hd-radius);
    font-family: var(--hd-font-body);
    font-size: 0.95rem;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
}

.hd-age-gate__dob-fields select {
    min-width: 100px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

.hd-age-gate__dob-fields input[type="number"] {
    width: 90px;
}

.hd-age-gate__dob-fields select:focus,
.hd-age-gate__dob-fields input:focus {
    outline: none;
    border-color: var(--hd-gold);
}

.hd-age-gate__error {
    color: #cc0000;
    font-size: 0.85rem;
    display: none;
    margin-top: 0.5rem;
}

.hd-age-gate__error--visible {
    display: block;
}

.hd-age-gate__disclaimer {
    font-size: 0.75rem;
    color: var(--hd-text-muted);
    margin-top: 1rem;
}

/* ============================================
   "Excited" Banner (above footer)
   ============================================ */
.hd-banner {
    background-color: var(--hd-bg-dark);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hd-banner__title {
    font-family: var(--hd-font-heading);
    font-size: 2.5rem;
    color: var(--hd-text-on-dark);
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

/* ============================================
   Footer — Dark
   ============================================ */
.hd-footer {
    background-color: var(--hd-bg-dark);
    color: var(--hd-text-on-dark);
    padding: var(--hd-spacing-lg) 0 var(--hd-spacing-md);
    text-align: center;
}

.hd-footer__copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.hd-footer__disclaimer {
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hd-footer__disclaimer strong {
    color: rgba(255, 255, 255, 0.7);
}

.hd-footer__legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hd-footer__legal a {
    color: var(--hd-gold);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--hd-transition);
}

.hd-footer__legal a:hover {
    color: var(--hd-gold-light);
}

.hd-footer__social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.hd-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: all var(--hd-transition);
}

.hd-footer__social a:hover {
    background-color: var(--hd-gold);
    color: var(--hd-bg-dark);
}

/* ============================================
   Blog / Events
   ============================================ */
.hd-posts {
    padding: var(--hd-spacing-xl) 0;
}

.hd-posts__title {
    text-align: center;
    color: var(--hd-text-primary);
    margin-bottom: var(--hd-spacing-lg);
}

.hd-posts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.hd-post-card {
    background-color: var(--hd-bg-primary);
    border-radius: var(--hd-radius-lg);
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform var(--hd-transition), box-shadow var(--hd-transition);
}

.hd-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hd-post-card__image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.hd-post-card__body {
    padding: 1.5rem;
}

.hd-post-card__meta {
    font-size: 0.8rem;
    color: var(--hd-text-muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hd-post-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.hd-post-card__title a {
    color: var(--hd-text-primary);
}

.hd-post-card__title a:hover {
    color: var(--hd-gold-dark);
}

.hd-post-card__excerpt {
    font-size: 0.9rem;
    color: var(--hd-text-secondary);
}

/* ============================================
   COAs Page
   ============================================ */
.hd-coa-banner {
    width: 100%;
    overflow: hidden;
}

.hd-coa-banner__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.hd-coa-banner__placeholder {
    width: 100%;
    height: 200px;
    background: var(--hd-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hd-coa__heading {
    text-align: center;
    color: var(--hd-gold-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.hd-coa-table {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: var(--hd-radius);
    overflow: hidden;
}

.hd-coa-table__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.hd-coa-table__row:last-child {
    border-bottom: none;
}

.hd-coa-table__name {
    font-size: 0.95rem;
    color: var(--hd-text-primary);
}

.hd-coa-table__download {
    color: var(--hd-text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--hd-transition);
}

.hd-coa-table__download:hover {
    color: var(--hd-gold-dark);
}

/* ============================================
   Page Content Wrapper (block editor output)
   ============================================ */
.hd-page-content {
    max-width: 100%;
    overflow: hidden;
}

/* Make full-width blocks work */
.hd-page-content > .alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hd-page-content > .alignwide {
    max-width: var(--hd-max-width);
    margin-left: auto;
    margin-right: auto;
}

/* Default block content gets contained */
.hd-page-content > *:not(.alignfull):not(.alignwide) {
    max-width: var(--hd-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--hd-spacing-md);
    padding-right: var(--hd-spacing-md);
}

/* ============================================
   Block Editor Element Styling
   ============================================ */

/* Headings in content */
.hd-page-content h1,
.hd-page-content h2,
.hd-page-content h3,
.hd-page-content h4 {
    font-family: var(--hd-font-heading);
    color: var(--hd-text-primary);
    margin-bottom: 1rem;
}

.hd-page-content h2 {
    margin-top: 2rem;
}

/* Paragraphs */
.hd-page-content p {
    color: var(--hd-text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Links in content */
.hd-page-content a {
    color: var(--hd-gold-dark);
    text-decoration: underline;
}

.hd-page-content a:hover {
    color: var(--hd-gold);
}

/* Images */
.hd-page-content img {
    border-radius: var(--hd-radius);
}

/* WordPress Buttons */
.hd-page-content .wp-block-button__link,
.hd-page-content .wp-element-button {
    font-family: var(--hd-font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    border-radius: var(--hd-radius);
    transition: all var(--hd-transition);
}

/* Primary/filled buttons — gold */
.hd-page-content .wp-block-button:not(.is-style-outline) .wp-block-button__link {
    background-color: var(--hd-gold) !important;
    color: var(--hd-bg-dark) !important;
    border: none;
}

.hd-page-content .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
    background-color: var(--hd-gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(252, 185, 0, 0.3);
}

/* Outline buttons — dark */
.hd-page-content .wp-block-button.is-style-outline .wp-block-button__link {
    border: 2px solid var(--hd-text-primary) !important;
    color: var(--hd-text-primary) !important;
    background: transparent !important;
}

.hd-page-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--hd-text-primary) !important;
    color: #fff !important;
}

/* Columns */
.hd-page-content .wp-block-columns {
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Cover blocks */
.hd-page-content .wp-block-cover {
    border-radius: 0;
    min-height: 300px;
}

.hd-page-content .wp-block-cover .wp-block-cover__inner-container {
    max-width: var(--hd-max-width);
}

/* Separator / divider */
.hd-page-content .wp-block-separator {
    border-color: #eee;
    opacity: 1;
}

/* Tables (for COA download lists, etc.) */
.hd-page-content table,
.hd-page-content .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    border-radius: var(--hd-radius);
    overflow: hidden;
}

.hd-page-content table td,
.hd-page-content table th {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    text-align: left;
    color: var(--hd-text-primary);
}

.hd-page-content table tr:last-child td {
    border-bottom: none;
}

/* Hours-style table (no outer border, compact) */
.hd-page-content .wp-block-table.is-style-stripes table {
    border: none;
}

.hd-page-content .wp-block-table.is-style-stripes table td {
    padding: 0.4rem 0;
    border-bottom: none;
}

.hd-page-content .wp-block-table.is-style-stripes table td:first-child {
    font-weight: 600;
    color: var(--hd-text-primary);
    width: 50px;
}

.hd-page-content .wp-block-table.is-style-stripes table td:last-child {
    color: #555;
}

.hd-page-content .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background: transparent;
}

/* Group blocks with background */
.hd-page-content .wp-block-group.has-background {
    padding: 2rem;
    border-radius: var(--hd-radius-lg);
}

/* File download blocks */
.hd-page-content .wp-block-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border: 1px solid #eee;
    border-radius: var(--hd-radius);
    margin-bottom: 0.5rem;
}

.hd-page-content .wp-block-file a:first-child {
    color: var(--hd-text-primary);
    text-decoration: none;
    font-weight: 500;
}

.hd-page-content .wp-block-file .wp-block-file__button {
    background-color: var(--hd-bg-dark);
    color: #fff;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: var(--hd-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Spacer adjustments */
.hd-page-content .wp-block-spacer {
    margin: 0;
}

/* Contact Form / WPForms / other form plugins */
.hd-page-content input[type="text"],
.hd-page-content input[type="email"],
.hd-page-content input[type="tel"],
.hd-page-content input[type="url"],
.hd-page-content textarea,
.hd-page-content select {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    color: var(--hd-text-primary);
    padding: 0.85rem 0;
    font-family: var(--hd-font-body);
    font-size: 1rem;
    transition: border-color var(--hd-transition);
    border-radius: 0;
}

.hd-page-content input[type="text"]:focus,
.hd-page-content input[type="email"]:focus,
.hd-page-content input[type="tel"]:focus,
.hd-page-content textarea:focus,
.hd-page-content select:focus {
    outline: none;
    border-bottom-color: var(--hd-gold);
}

.hd-page-content textarea {
    border: 1px solid #ccc;
    border-radius: var(--hd-radius);
    padding: 0.85rem 1rem;
    min-height: 120px;
}

/* Wholesale-style heading (gold uppercase) */
.hd-page-content .has-luminous-vivid-amber-color,
.hd-page-content .hd-gold-heading {
    color: var(--hd-gold-dark) !important;
}

/* ============================================
   Legacy Wholesale (kept for reference)
   ============================================ */
.hd-wholesale__heading {
    color: var(--hd-gold-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.2rem;
    margin-bottom: var(--hd-spacing-md);
}

.hd-wholesale__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hd-form {
    max-width: none;
}

.hd-form__group {
    margin-bottom: 1.5rem;
}

.hd-form__label {
    display: block;
    font-size: 0.85rem;
    color: var(--hd-text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hd-form__input,
.hd-form__textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    color: var(--hd-text-primary);
    padding: 0.85rem 0;
    font-family: var(--hd-font-body);
    font-size: 1rem;
    transition: border-color var(--hd-transition);
    border-radius: 0;
}

.hd-form__input--underline {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding: 0.85rem 0;
}

.hd-form__input:focus,
.hd-form__textarea:focus,
.hd-form__input--underline:focus {
    outline: none;
    border-bottom-color: var(--hd-gold);
}

.hd-form__textarea {
    resize: vertical;
    min-height: 120px;
    border: 1px solid #ccc;
    border-radius: var(--hd-radius);
    padding: 0.85rem 1rem;
}

.hd-hours {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.hd-hours td {
    padding: 0.4rem 0;
    color: var(--hd-text-secondary);
}

.hd-hours td:first-child {
    font-weight: 600;
    color: var(--hd-text-primary);
    padding-right: 1rem;
    width: 50px;
}

/* ============================================
   WooCommerce Overrides
   ============================================ */
.woocommerce ul.products li.product {
    background-color: var(--hd-bg-primary);
    border-radius: var(--hd-radius-lg);
    padding: 0;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform var(--hd-transition), box-shadow var(--hd-transition);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--hd-gold);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--hd-font-heading);
    color: var(--hd-text-primary);
    padding: 0.75rem 1.25rem 0;
    font-size: 1rem;
}

.woocommerce ul.products li.product .price {
    color: var(--hd-text-primary);
    font-size: 1.1rem;
    padding: 0 1.25rem;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background-color: var(--hd-bg-dark) !important;
    color: var(--hd-text-on-dark) !important;
    border-radius: var(--hd-radius) !important;
    font-family: var(--hd-font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
    border: none;
    transition: all var(--hd-transition);
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: #333 !important;
    transform: translateY(-1px);
}

.woocommerce ul.products li.product .button {
    margin: 0.75rem 1.25rem 1.25rem;
    display: block;
    text-align: center;
}

/* WooCommerce single product */
.woocommerce div.product .product_title {
    font-family: var(--hd-font-heading);
    color: var(--hd-text-primary);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--hd-text-primary);
    font-size: 1.5rem;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--hd-text-secondary);
}

/* Cart & Checkout */
.woocommerce table.shop_table {
    background-color: var(--hd-bg-primary);
    border-color: #eee;
    border-radius: var(--hd-radius);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-color: #eee;
    color: var(--hd-text-secondary);
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
    background-color: var(--hd-bg-secondary);
    border-top-color: var(--hd-gold);
    color: var(--hd-text-secondary);
}

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before {
    color: var(--hd-gold);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background-color: var(--hd-bg-secondary);
    border-color: #ddd;
    color: var(--hd-text-primary);
    border-radius: var(--hd-radius);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--hd-gold);
}

.woocommerce .woocommerce-checkout #payment {
    background-color: var(--hd-bg-secondary);
    border-radius: var(--hd-radius);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    h1, .hd-hero__selling-item { font-size: 1.75rem; }
    h2 { font-size: 1.75rem; }

    .hd-hero {
        flex-direction: column;
    }

    .hd-hero__carousel {
        flex: none;
        width: 100%;
        min-height: 350px;
    }

    .hd-hero__selling-points {
        flex: none;
        width: 100%;
        padding: 2rem;
    }

    .hd-hero__selling-list {
        text-align: center;
    }

    .hd-hero__cta {
        text-align: center;
    }

    .hd-wholesale__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hd-banner__title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .hd-menu-toggle {
        display: flex;
    }

    .hd-header__top {
        padding: 1rem;
    }

    .hd-header__logo img {
        height: 50px;
    }

    .hd-header__icons {
        right: 1rem;
    }

    .hd-nav {
        display: none;
    }

    .hd-nav--open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--hd-bg-primary);
        border-bottom: 1px solid #eee;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .hd-nav--open .hd-nav__list {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .hd-nav--open .hd-nav__link {
        display: block;
        padding: 0.75rem 2rem;
    }

    .hd-hero__selling-item {
        font-size: 1.5rem;
    }

    .hd-features-strip__inner {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

    .hd-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .hd-products__grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

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

    .hd-age-gate__card {
        padding: 2rem;
    }

    .hd-age-gate__dob-fields {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hd-hero__selling-item { font-size: 1.25rem; }
    .hd-btn { padding: 0.85rem 2rem; font-size: 0.85rem; }
    .hd-products__grid { grid-template-columns: 1fr; }
    .hd-header__logo img { height: 50px; }
}
