/*
 * HugeSupps Theme Styles
 * Premium men's performance supplement ecommerce
 */

:root {
    --hs-bg: #030508;
    --hs-bg-soft: #080b10;
    --hs-surface: #0d1117;
    --hs-surface-elevated: #131922;
    --hs-surface-highlight: #1a2330;
    --hs-border: rgba(255, 255, 255, 0.08);
    --hs-border-strong: rgba(255, 255, 255, 0.14);
    --hs-text: #f8fafc;
    --hs-text-secondary: #94a3b8;
    --hs-text-muted: #64748b;
    --hs-blue: #2563eb;
    --hs-blue-bright: #3b82f6;
    --hs-cyan: #22d3ee;
    --hs-accent-gradient: linear-gradient(135deg, #2563eb 0%, #22d3ee 100%);
    --hs-radius: 16px;
    --hs-radius-sm: 12px;
    --hs-radius-xs: 8px;
    --hs-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --hs-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    --hs-shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.45);
    --hs-glow-blue: 0 0 60px rgba(37, 99, 235, 0.2);
    --hs-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --hs-container: 1400px;
    --hs-gutter: 24px;
    --hs-header-height: 80px;
    --hs-header-height-scrolled: 64px;
}

@media (min-width: 1024px) {
    :root {
        --hs-gutter: 32px;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--hs-header-height) + 24px);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--hs-text-secondary);
    background-color: var(--hs-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--hs-blue-bright);
    text-decoration: none;
    transition: color var(--hs-transition), opacity var(--hs-transition);
}

a:hover {
    color: var(--hs-cyan);
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    line-height: 1.1;
    font-weight: 800;
    color: var(--hs-text);
    letter-spacing: -0.02em;
}

p {
    margin-top: 0;
}

button, .button, input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    border: none;
    border-radius: var(--hs-radius-xs);
    cursor: pointer;
    transition: transform var(--hs-transition), background var(--hs-transition), box-shadow var(--hs-transition), border-color var(--hs-transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

button:hover, .button:hover, input[type="submit"]:hover {
    transform: translateY(-2px);
}

button:focus-visible, .button:focus-visible {
    outline: 2px solid var(--hs-blue-bright);
    outline-offset: 3px;
}

.hugesupps-button-large {
    padding: 20px 36px;
    font-size: 16px;
}

.hugesupps-button-primary {
    background: var(--hs-accent-gradient);
    color: var(--hs-text);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

.hugesupps-button-primary:hover {
    color: #fff;
    box-shadow: 0 12px 36px rgba(37, 99, 235, 0.55);
}

.hugesupps-button-secondary {
    background: transparent;
    color: var(--hs-text);
    border: 1.5px solid var(--hs-border-strong);
    box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.03);
}

.hugesupps-button-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.hugesupps-container {
    width: 100%;
    max-width: var(--hs-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--hs-gutter);
    padding-right: var(--hs-gutter);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Notice bar */
.hugesupps-notice {
    position: relative;
    z-index: 1001;
    padding: 14px 24px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

.hugesupps-notice.success {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.hugesupps-notice.error {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

/* Section utilities */
.hugesupps-section {
    position: relative;
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .hugesupps-section {
        padding: 110px 0;
    }
}

.hugesupps-section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 48px;
}

.hugesupps-section-header.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hugesupps-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--hs-blue-bright);
    margin-bottom: 12px;
}

.hugesupps-section-title {
    font-size: clamp(34px, 5.5vw, 56px);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.hugesupps-section-subtitle {
    font-size: 18px;
    max-width: 680px;
    margin-top: 18px;
    margin-bottom: 0;
    color: var(--hs-text-secondary);
}

.hugesupps-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--hs-text);
    transition: color var(--hs-transition), transform var(--hs-transition);
}

.hugesupps-link:hover {
    color: var(--hs-cyan);
    transform: translateX(3px);
}

.hugesupps-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--hs-transition);
}

.hugesupps-link:hover svg {
    transform: translateX(3px);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--hs-header-height);
    background: rgba(3, 5, 8, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--hs-border);
    transition: height var(--hs-transition), background var(--hs-transition), border-color var(--hs-transition);
}

.site-header.is-scrolled {
    height: var(--hs-header-height-scrolled);
    background: rgba(3, 5, 8, 0.92);
    border-color: var(--hs-border-strong);
}

.hugesupps-header-inner {
    height: 100%;
}

.hugesupps-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.site-branding .site-title {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.hugesupps-logo-link img {
    display: block;
    width: auto;
    height: 70px;
    max-width: 100%;
}

.site-header.is-scrolled .hugesupps-logo-link img {
    height: 52px;
}

@media (max-width: 639px) {
    .hugesupps-logo-link img {
        height: 50px;
    }
    
    .site-header.is-scrolled .hugesupps-logo-link img {
        height: 42px;
    }
}

.site-title-main {
    color: var(--hs-text);
}

.site-title-accent {
    color: var(--hs-blue-bright);
}

.custom-logo {
    max-height: 48px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--hs-text-secondary);
    border-radius: var(--hs-radius-xs);
    transition: color var(--hs-transition), background var(--hs-transition);
}

.nav-menu a:hover,
.nav-menu .current-menu-item a,
.nav-menu .current_page_item a {
    color: var(--hs-text);
    background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    gap: 7px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--hs-text);
    border-radius: 2px;
    transition: transform var(--hs-transition), opacity var(--hs-transition);
}

.hugesupps-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hugesupps-header-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--hs-text-secondary);
    border-radius: var(--hs-radius-xs);
    transition: color var(--hs-transition), background var(--hs-transition);
}

.hugesupps-header-icon svg {
    width: 23px;
    height: 23px;
}

.hugesupps-header-icon:hover {
    color: var(--hs-text);
    background: rgba(255, 255, 255, 0.07);
}

.hugesupps-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 900;
    background: var(--hs-accent-gradient);
    color: var(--hs-bg);
    border-radius: 999px;
    border: 2px solid var(--hs-bg);
}

.hugesupps-search-toggle {
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hugesupps-search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 18px 0;
    background: var(--hs-surface);
    border-top: 1px solid var(--hs-border);
    border-bottom: 1px solid var(--hs-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--hs-transition), transform var(--hs-transition), visibility var(--hs-transition);
}

.hugesupps-search-overlay.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hugesupps-search-form {
    display: flex;
    gap: 12px;
}

.hugesupps-search-input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 500;
    color: var(--hs-text);
    background: var(--hs-bg-soft);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    outline: none;
    transition: border-color var(--hs-transition), box-shadow var(--hs-transition);
}

.hugesupps-search-input::placeholder {
    color: var(--hs-text-muted);
}

.hugesupps-search-input:focus {
    border-color: var(--hs-border-strong);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.hugesupps-search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    padding: 0;
    color: var(--hs-text);
    background: var(--hs-accent-gradient);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: transform var(--hs-transition), box-shadow var(--hs-transition), filter var(--hs-transition);
}

.hugesupps-search-submit:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
    filter: brightness(1.08);
}

.hugesupps-search-submit:active {
    transform: translateY(0) scale(0.98);
}

.hugesupps-search-submit svg {
    width: 22px;
    height: 22px;
}

.hugesupps-search-results {
    padding-top: 48px;
    padding-bottom: 80px;
}

.hugesupps-search-header {
    text-align: center;
    margin-bottom: 48px;
}

.hugesupps-search-header .hugesupps-section-title span {
    color: var(--hs-text-secondary);
}

.hugesupps-no-results {
    text-align: center;
    padding: 48px 0;
}

.hugesupps-no-results p {
    margin-bottom: 24px;
    color: var(--hs-text-secondary);
}

/* Hero - cinematic full-bleed lifestyle */
.hugesupps-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 620px;
    max-height: 720px;
    padding: calc(var(--hs-header-height) + 40px) 0 72px;
    background-color: var(--hs-bg);
    overflow: hidden;
}

.hugesupps-hero-picture {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
    padding: 0;
}

.hugesupps-hero-picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 30%;
}

.hugesupps-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        /* Strong left-to-right gradient for text readability, fading back to black at the right edge */
        linear-gradient(90deg, rgba(3, 5, 8, 0.97) 0%, rgba(3, 5, 8, 0.88) 35%, rgba(3, 5, 8, 0.55) 52%, rgba(3, 5, 8, 0.18) 68%, rgba(3, 5, 8, 0.55) 85%, rgba(3, 5, 8, 0.95) 100%),
        /* Top gradient blending into header */
        linear-gradient(180deg, rgba(3, 5, 8, 0.65) 0%, transparent 18%),
        /* Bottom gradient blending into next section */
        linear-gradient(0deg, rgba(3, 5, 8, 0.85) 0%, transparent 32%),
        /* Subtle blue atmospheric glow */
        radial-gradient(ellipse at 20% 45%, rgba(37, 99, 235, 0.14) 0%, transparent 55%);
    pointer-events: none;
}

.hugesupps-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.hugesupps-hero-content {
    max-width: 620px;
}

.hugesupps-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hs-blue-bright);
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
}

.hugesupps-hero-title {
    font-size: clamp(46px, 8vw, 86px);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 26px;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    max-width: 680px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.hugesupps-hero-subtitle {
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
    margin-bottom: 38px;
    max-width: 520px;
    color: var(--hs-text-secondary);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hugesupps-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 44px;
}

.hugesupps-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
}

.hugesupps-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--hs-text-muted);
}

.hugesupps-trust-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--hs-blue);
    color: var(--hs-text);
    border-radius: 999px;
    font-size: 11px;
}

/* Categories */
.hugesupps-categories {
    background: var(--hs-bg-soft);
}

.hugesupps-category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.hugesupps-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 3 / 4;
    min-height: 320px;
    padding: 24px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    color: var(--hs-text);
    overflow: hidden;
    transition: transform var(--hs-transition), box-shadow var(--hs-transition), border-color var(--hs-transition);
}

.hugesupps-category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(3, 5, 8, 0.65) 70%, rgba(3, 5, 8, 0.92) 100%);
    z-index: 1;
}

.hugesupps-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hs-shadow-lg);
    border-color: var(--hs-border-strong);
}

.hugesupps-category-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    transition: transform var(--hs-transition), opacity var(--hs-transition);
}

.hugesupps-category-card:hover .hugesupps-category-image {
    transform: scale(1.06);
    opacity: 0.85;
}

.hugesupps-category-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.hugesupps-category-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hugesupps-category-desc {
    font-size: 14px;
    color: var(--hs-text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
    min-height: 5em;
}

.hugesupps-category-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--hs-blue-bright);
    transition: color var(--hs-transition), transform var(--hs-transition);
}

.hugesupps-category-card:hover .hugesupps-category-cta {
    color: var(--hs-cyan);
    transform: translateX(4px);
}

/* Best sellers */
.hugesupps-best-sellers {
    background: var(--hs-bg);
}

.hugesupps-product-grid {
    display: block;
    width: 100%;
}

.hugesupps-product-grid > .products,
.woocommerce .hugesupps-product-grid > .products,
.woocommerce-page .hugesupps-product-grid > .products,
.woocommerce ul.products.hugesupps-product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: start;
}

.hugesupps-product-grid > .products::before,
.hugesupps-product-grid > .products::after,
.woocommerce .hugesupps-product-grid > .products::before,
.woocommerce-page .hugesupps-product-grid > .products::before,
.woocommerce .hugesupps-product-grid > .products::after,
.woocommerce-page .hugesupps-product-grid > .products::after {
    display: none;
}

.hugesupps-product-grid > .products li.product,
.woocommerce .hugesupps-product-grid > .products li.product,
.woocommerce-page .hugesupps-product-grid > .products li.product,
.woocommerce ul.products.hugesupps-product-grid li.product,
.hugesupps-product-grid > .products[class*="columns-"] li.product,
.woocommerce .hugesupps-product-grid > .products[class*="columns-"] li.product,
.woocommerce-page .hugesupps-product-grid > .products[class*="columns-"] li.product {
    float: none;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    clear: none;
    position: relative;
}

.hugesupps-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    height: 100%;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    overflow: hidden;
    transition: transform var(--hs-transition), box-shadow var(--hs-transition), border-color var(--hs-transition);
}

.hugesupps-product-card:hover {
    transform: translateY(-4px);
    border-color: var(--hs-border-strong);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hugesupps-product-link {
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hugesupps-product-link:hover {
    color: inherit;
}

.hugesupps-product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, #0d1117 0%, #070a0f 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.hugesupps-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--hs-transition);
}

.hugesupps-product-card:hover .hugesupps-product-img {
    transform: scale(1.04);
}

.hugesupps-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hugesupps-badge-sale {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #fff;
}

.hugesupps-badge-best {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1a1000;
}

.hugesupps-product-info {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.hugesupps-product-category {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--hs-blue-bright);
}

.hugesupps-product-title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--hs-text);
}

.hugesupps-product-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: var(--hs-text-secondary);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hugesupps-product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    margin-top: auto;
}

.hugesupps-product-rating:empty {
    display: none;
}

.hugesupps-product-rating .star-rating {
    font-size: 13px;
    color: #fbbf24;
}

.hugesupps-review-count {
    font-size: 12px;
    color: var(--hs-text-muted);
    font-weight: 700;
}

.hugesupps-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 18px;
}

.hugesupps-price-current,
.hugesupps-price-sale {
    font-size: 21px;
    font-weight: 900;
    color: var(--hs-text);
}

.hugesupps-price-sale {
    color: var(--hs-blue-bright);
}

.hugesupps-price-regular {
    font-size: 15px;
    font-weight: 700;
    color: var(--hs-text-muted);
    text-decoration: line-through;
}

.hugesupps-product-actions {
    padding: 0 22px 22px;
    margin-top: auto;
}

.hugesupps-product-actions .button,
.hugesupps-product-actions a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.2;
    background: var(--hs-accent-gradient);
    color: #fff;
    border: none;
    border-radius: var(--hs-radius-xs);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    transition: transform var(--hs-transition), box-shadow var(--hs-transition), filter var(--hs-transition);
}

.hugesupps-product-actions a.button:hover,
.hugesupps-product-actions button.button:hover,
.hugesupps-product-actions a.button:focus-visible,
.hugesupps-product-actions button.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.4);
    filter: brightness(1.05);
    background: var(--hs-accent-gradient);
    color: #fff;
    outline: none;
}

.hugesupps-product-actions .button.added {
    background: #10b981;
}

.hugesupps-product-actions .button.loading {
    opacity: 0.85;
}

.hugesupps-product-actions .added_to_cart {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    color: var(--hs-blue-bright);
}

.hugesupps-product-actions .added_to_cart:hover {
    color: var(--hs-cyan);
}

.hugesupps-empty-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
}

.hugesupps-empty-products h3 {
    margin-bottom: 12px;
}

.hugesupps-empty-products p {
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits */
.hugesupps-benefits {
    background: linear-gradient(180deg, var(--hs-bg-soft) 0%, var(--hs-surface) 100%);
}

.hugesupps-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.hugesupps-benefit-card {
    padding: 36px 28px;
    background: var(--hs-surface-elevated);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    text-align: left;
    transition: transform var(--hs-transition), border-color var(--hs-transition);
}

.hugesupps-benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--hs-border-strong);
}

.hugesupps-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 26px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 14px;
    margin-bottom: 22px;
}

.hugesupps-benefit-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hugesupps-benefit-card p {
    margin-bottom: 0;
    color: var(--hs-text-secondary);
    font-size: 16px;
}

/* Why choose */
.hugesupps-why-choose {
    background: var(--hs-bg);
}

.hugesupps-why-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

.hugesupps-why-image {
    position: relative;
    border-radius: var(--hs-radius);
    overflow: hidden;
    border: 1px solid var(--hs-border);
}

.hugesupps-why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.hugesupps-why-content {
    max-width: 560px;
}

.hugesupps-why-content .hugesupps-section-title {
    font-size: clamp(34px, 5vw, 52px);
    margin-bottom: 20px;
}

.hugesupps-why-content .hugesupps-section-subtitle {
    margin-bottom: 32px;
}

.hugesupps-why-points {
    display: grid;
    gap: 14px;
    margin-bottom: 36px;
}

.hugesupps-why-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 16px;
    color: var(--hs-text);
}

.hugesupps-why-point span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--hs-blue);
    color: var(--hs-text);
    border-radius: 999px;
    font-size: 12px;
    flex-shrink: 0;
}

/* Reviews */
.hugesupps-reviews {
    background: var(--hs-bg-soft);
    overflow: hidden;
}

.hugesupps-reviews-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
}

.hugesupps-reviews-intro .hugesupps-section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hugesupps-reviews-scroll {
    overflow: hidden;
    width: 100%;
}

.hugesupps-reviews-track {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    will-change: transform;
    transition: transform 0.8s ease;
}

.hugesupps-review-card {
    flex: 0 0 85%;
    padding: 0 10px;
    box-sizing: border-box;
}

.hugesupps-review-card-inner {
    height: 100%;
    padding: 32px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    transition: transform var(--hs-transition), border-color var(--hs-transition);
}

.hugesupps-review-card-inner:hover {
    transform: translateY(-4px);
    border-color: var(--hs-border-strong);
}

.hugesupps-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.hugesupps-star {
    color: var(--hs-text-muted);
    font-size: 18px;
}

.hugesupps-star.filled {
    color: #fbbf24;
}

.hugesupps-review-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--hs-text);
}

.hugesupps-review-card p {
    margin-bottom: 24px;
    color: var(--hs-text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.hugesupps-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hugesupps-author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--hs-accent-gradient);
    color: var(--hs-text);
    border-radius: 999px;
    font-size: 14px;
    flex-shrink: 0;
}

.hugesupps-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hugesupps-author-name {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--hs-text);
}

.hugesupps-author-location {
    font-size: 13px;
    font-weight: 500;
    color: var(--hs-text-secondary);
}

.hugesupps-review-sample-note {
    text-align: center;
    font-size: 13px;
    color: var(--hs-text-muted);
    margin-top: 24px;
}

/* Trust strip */
.hugesupps-trust {
    background: var(--hs-surface);
    border-top: 1px solid var(--hs-border);
    border-bottom: 1px solid var(--hs-border);
    padding: 32px 0;
}

.hugesupps-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: center;
}

.hugesupps-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--hs-text-secondary);
}

.hugesupps-trust .hugesupps-trust-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--hs-accent-gradient);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.hugesupps-trust .hugesupps-trust-check svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Newsletter */
.hugesupps-newsletter {
    background: linear-gradient(135deg, var(--hs-surface) 0%, var(--hs-bg-soft) 100%);
}

.hugesupps-newsletter-inner {
    display: grid;
    gap: 32px;
    align-items: center;
    padding: 48px 32px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
}

.hugesupps-newsletter-text .hugesupps-section-title {
    text-align: left;
    margin-bottom: 12px;
}

.hugesupps-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hugesupps-newsletter-form input[type="email"] {
    flex: 1;
    padding: 18px 22px;
    font-size: 16px;
    background: var(--hs-bg);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-xs);
    color: var(--hs-text);
}

.hugesupps-newsletter-form input[type="email"]::placeholder {
    color: var(--hs-text-muted);
}

.hugesupps-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--hs-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Footer */
.site-footer {
    background: var(--hs-bg);
    border-top: 1px solid var(--hs-border);
}

.hugesupps-footer-top {
    padding: 80px 0 48px;
}

.hugesupps-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.hugesupps-footer-brand .site-title {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.hugesupps-footer-brand .hugesupps-logo-link img {
    height: 80px;
    max-width: 100%;
    width: auto;
}

.hugesupps-footer-brand p {
    color: var(--hs-text-secondary);
    margin-bottom: 24px;
    max-width: 340px;
    font-size: 16px;
}

.hugesupps-footer-blurb {
    color: var(--hs-text-secondary);
    font-size: 15px;
    line-height: 1.65;
    max-width: 340px;
    margin: 0 0 24px;
    text-align: left;
}

.hugesupps-social-links {
    display: flex;
    gap: 12px;
}

.hugesupps-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--hs-text-secondary);
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: 999px;
    transition: color var(--hs-transition), background var(--hs-transition), border-color var(--hs-transition);
}

.hugesupps-social-links a svg {
    width: 18px;
    height: 18px;
}

.hugesupps-social-links a:hover {
    color: var(--hs-text);
    background: var(--hs-blue);
    border-color: var(--hs-blue);
}

.hugesupps-footer-title {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    color: var(--hs-text);
}

.hugesupps-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hugesupps-footer-links li {
    margin-bottom: 12px;
}

.hugesupps-footer-links a {
    color: var(--hs-text-secondary);
    font-size: 15px;
    font-weight: 600;
    transition: color var(--hs-transition), transform var(--hs-transition);
    display: inline-block;
}

.hugesupps-footer-links a:hover {
    color: var(--hs-text);
    transform: translateX(3px);
}

.hugesupps-footer-bottom {
    border-top: 1px solid var(--hs-border);
    padding: 28px 0;
}

.hugesupps-footer-bottom-row {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--hs-text-muted);
    text-align: center;
}

.hugesupps-footer-bottom-row p {
    margin: 0;
    color: var(--hs-text-muted);
}

.hugesupps-footer-payment {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.hugesupps-payment-icon {
    display: block;
    width: auto;
    height: 42px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 4px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Single product */
.hugesupps-single-product {
    padding-top: 0;
    padding-bottom: 0;
}

.hugesupps-product-grid-single {
    display: grid;
    gap: 40px;
}

/* Product gallery */
.hugesupps-product-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    overflow: hidden;
}

.hugesupps-product-gallery .woocommerce-product-gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.hugesupps-product-gallery .woocommerce-product-gallery {
    margin: 0;
}

.hugesupps-product-gallery .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 5, 8, 0.7);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-xs);
    color: var(--hs-text-secondary);
    font-size: 0;
    backdrop-filter: blur(6px);
    transition: color var(--hs-transition), background var(--hs-transition), border-color var(--hs-transition);
}

.hugesupps-product-gallery .woocommerce-product-gallery__trigger:hover {
    color: var(--hs-text);
    background: rgba(3, 5, 8, 0.9);
    border-color: var(--hs-border-strong);
}

.hugesupps-product-gallery .woocommerce-product-gallery__trigger::before {
    content: '';
    width: 18px;
    height: 18px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3Cpath d='M11 8v6M8 11h6'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3Cpath d='M11 8v6M8 11h6'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
}

.hugesupps-product-gallery .woocommerce-product-gallery__wrapper {
    margin: 0;
}

.hugesupps-product-gallery .woocommerce-product-gallery__image,
.hugesupps-product-gallery .woocommerce-product-gallery__image--placeholder {
    width: 100%;
    background: linear-gradient(145deg, #0d1117 0%, #070a0f 100%);
}

.hugesupps-product-gallery .woocommerce-product-gallery__image img,
.hugesupps-product-gallery .woocommerce-product-gallery__image--placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hugesupps-product-gallery .flex-control-thumbs {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 16px;
    background: var(--hs-bg-soft);
    border-top: 1px solid var(--hs-border);
    overflow-x: auto;
}

.hugesupps-product-gallery .flex-control-thumbs li {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-xs);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--hs-transition), opacity var(--hs-transition);
}

.hugesupps-product-gallery .flex-control-thumbs li:hover,
.hugesupps-product-gallery .flex-control-thumbs li.flex-active {
    border-color: var(--hs-blue);
    opacity: 1;
}

.hugesupps-product-gallery .flex-control-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity var(--hs-transition);
}

.hugesupps-product-gallery .flex-control-thumbs li.flex-active img,
.hugesupps-product-gallery .flex-control-thumbs li:hover img {
    opacity: 1;
}

/* Product summary */
.hugesupps-product-summary {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hugesupps-product-summary .product_title {
    font-size: clamp(26px, 3vw, 40px);
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 1.08;
}

body.woocommerce .hugesupps-single-product .hugesupps-product-summary .price,
body.woocommerce-page .hugesupps-single-product .hugesupps-product-summary .price {
    font-size: 28px;
    font-weight: 900;
    color: var(--hs-text);
}

body.woocommerce .hugesupps-single-product .hugesupps-product-summary .price ins,
body.woocommerce-page .hugesupps-single-product .hugesupps-product-summary .price ins {
    text-decoration: none;
    color: var(--hs-blue-bright);
}

body.woocommerce .hugesupps-single-product .hugesupps-product-summary .price del,
body.woocommerce-page .hugesupps-single-product .hugesupps-product-summary .price del {
    color: var(--hs-text-muted);
    font-size: 18px;
    margin-right: 10px;
}

.hugesupps-product-summary .woocommerce-product-details__short-description {
    color: var(--hs-text-secondary);
    font-size: 16px;
    line-height: 1.65;
}

.hugesupps-product-summary .cart {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 14px;
    margin: 8px 0 0;
}

.hugesupps-product-summary .quantity {
    flex: 0 0 auto;
}

.hugesupps-product-summary .quantity input {
    width: 80px;
    min-height: 56px;
    padding: 16px;
    background: var(--hs-bg);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-xs);
    color: var(--hs-text);
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    -moz-appearance: textfield;
}

.hugesupps-product-summary .quantity input::-webkit-outer-spin-button,
.hugesupps-product-summary .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hugesupps-product-summary .single_add_to_cart_button {
    flex: 1 1 auto;
    min-height: 56px;
    padding: 16px 32px;
    font-size: 15px;
    background: var(--hs-accent-gradient);
    color: var(--hs-text);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

body.woocommerce-page .hugesupps-product-summary button.single_add_to_cart_button:hover {
    color: #fff;
    background-image: var(--hs-accent-gradient);
    box-shadow: 0 12px 36px rgba(37, 99, 235, 0.55);
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.hugesupps-product-summary .product_meta {
    margin-top: 4px;
    font-size: 13px;
    color: var(--hs-text-muted);
    line-height: 1.5;
}

.hugesupps-product-summary .product_meta > span {
    display: inline;
    margin-right: 16px;
}

.hugesupps-product-summary .product_meta a {
    color: var(--hs-blue-bright);
    font-weight: 700;
}

.hugesupps-product-summary .product_meta a:hover {
    color: var(--hs-cyan);
}

.hugesupps-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
    padding: 18px 20px;
    background: var(--hs-bg-soft);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
}

.hugesupps-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--hs-text-secondary);
    flex: 1 1 auto;
    min-width: 160px;
}

.hugesupps-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--hs-accent-gradient);
    color: var(--hs-bg);
    border-radius: 999px;
    font-size: 12px;
    flex-shrink: 0;
}

.hugesupps-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--hs-border);
    padding: 14px 0;
    transform: translateY(100%);
    transition: transform var(--hs-transition);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
}

.hugesupps-sticky-bar.is-visible {
    transform: translateY(0);
}

.hugesupps-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hugesupps-sticky-product {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.hugesupps-sticky-product img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--hs-border);
    flex-shrink: 0;
}

.hugesupps-sticky-title {
    display: block;
    font-weight: 900;
    font-size: 14px;
    color: var(--hs-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hugesupps-sticky-price {
    display: block;
    font-size: 13px;
    color: var(--hs-text-secondary);
    font-weight: 800;
}

.hugesupps-sticky-cta {
    padding: 15px 30px;
    font-size: 13px;
    background: var(--hs-accent-gradient);
    color: var(--hs-text);
    white-space: nowrap;
}

.hugesupps-sticky-cta:hover {
    color: #fff;
}

/* Product after-summary wrapper */
.hugesupps-product-after-summary {
    width: 100%;
}

/* Single product layout refinements (scoped) */
body.single-product .hugesupps-product-page-container {
    width: calc(100% - 48px);
    max-width: 1320px;
    margin-inline: auto;
    padding-left: 0;
    padding-right: 0;
}

body.single-product .hugesupps-single-product-main {
    display: grid;
    grid-template-columns: minmax(500px, 0.95fr) minmax(0, 1.15fr);
    gap: 56px;
    align-items: start;
    padding-top: calc(var(--hs-header-height) + 40px);
    padding-bottom: 72px;
}

body.single-product .hugesupps-product-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 600px;
    min-height: 600px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    overflow: hidden;
}

/* Single-image gallery: dominant image filling the panel */
body.single-product .hugesupps-product-gallery .woocommerce-product-gallery--without-images {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100% !important;
    flex: 1 1 auto;
}

body.single-product .hugesupps-product-gallery .woocommerce-product-gallery--without-images .woocommerce-product-gallery__wrapper,
body.single-product .hugesupps-product-gallery .woocommerce-product-gallery--without-images .woocommerce-product-gallery__image--placeholder {
    width: 100%;
    height: 100%;
}

body.single-product .hugesupps-product-gallery .woocommerce-product-gallery--without-images .woocommerce-product-gallery__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.single-product .hugesupps-product-gallery .woocommerce-product-gallery--without-images .woocommerce-product-gallery__image--placeholder img {
    width: 92%;
    height: 92%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center;
}

body.single-product .hugesupps-product-gallery .woocommerce-product-gallery--without-images .flex-control-thumbs {
    display: none;
}

/* Multi-image gallery: retain WooCommerce behaviour, keep panel width */
body.single-product .hugesupps-product-gallery .woocommerce-product-gallery:not(.woocommerce-product-gallery--without-images) {
    width: 100% !important;
}

body.single-product .hugesupps-product-gallery .woocommerce-product-gallery:not(.woocommerce-product-gallery--without-images) .woocommerce-product-gallery__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.single-product .hugesupps-product-gallery .woocommerce-product-gallery:not(.woocommerce-product-gallery--without-images) .woocommerce-product-gallery__image > a {
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.single-product .hugesupps-product-gallery .woocommerce-product-gallery:not(.woocommerce-product-gallery--without-images) .woocommerce-product-gallery__image img {
    width: 92%;
    height: 92%;
    max-width: none;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
}

body.single-product .hugesupps-product-summary {
    position: relative;
    top: auto !important;
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    gap: 16px;
}

body.single-product .hugesupps-product-summary .product_title {
    max-width: 720px;
    font-size: clamp(40px, 3.2vw, 54px);
    line-height: 0.98;
}

body.single-product .hugesupps-product-summary .price {
    margin-top: 16px;
}

body.single-product .hugesupps-product-summary .woocommerce-product-details__short-description {
    margin-top: 28px;
}

body.single-product .hugesupps-product-summary .hugesupps-trust-badges {
    margin-top: 24px;
}

body.single-product .hugesupps-product-summary .cart {
    margin-top: 22px;
}

body.single-product .hugesupps-product-summary .product_meta {
    margin-top: 36px;
}

body.single-product .hugesupps-product-after-summary .woocommerce-tabs {
    padding: 56px 0;
}

body.single-product .hugesupps-product-after-summary .woocommerce-tabs ul.tabs {
    margin-bottom: 24px;
}

body.single-product .hugesupps-related-products > .hugesupps-container {
    max-width: 1320px;
}

body.single-product .woocommerce-Tabs-panel .description-content,
body.single-product .woocommerce-Tabs-panel--description p,
body.single-product .woocommerce-Tabs-panel--description ul,
body.single-product .woocommerce-Tabs-panel--description ol,
body.single-product .woocommerce-Tabs-panel--description h2 {
    max-width: 1050px;
}

@media (max-width: 1100px) {
    body.single-product .hugesupps-single-product-main {
        gap: 40px;
        grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.15fr);
    }

    body.single-product .hugesupps-product-gallery {
        min-height: 520px;
        height: 520px;
    }
}

@media (max-width: 850px) {
    body.single-product .hugesupps-single-product-main {
        grid-template-columns: 1fr;
        padding-bottom: 48px;
    }

    body.single-product .hugesupps-product-summary {
        position: static;
    }

    body.single-product .hugesupps-product-gallery {
        min-height: 480px;
        height: 480px;
    }
}

@media (max-width: 639px) {
    body.single-product .hugesupps-product-page-container {
        width: calc(100% - 32px);
    }

    body.single-product .hugesupps-single-product-main {
        padding-top: calc(var(--hs-header-height) + 24px);
        padding-bottom: 36px;
        gap: 32px;
    }

    body.single-product .hugesupps-product-gallery {
        min-height: 420px;
        height: 420px;
    }

    body.single-product .hugesupps-product-summary .product_title {
        font-size: clamp(30px, 8vw, 36px);
    }

    body.single-product .hugesupps-product-after-summary .woocommerce-tabs {
        padding: 40px 0;
    }
}

/* Product detail sections */
.hugesupps-product-benefits,
.hugesupps-product-ingredients,
.hugesupps-product-faq {
    padding: 72px 0;
    background: var(--hs-bg-soft);
    border-top: 1px solid var(--hs-border);
}

.hugesupps-product-ingredients {
    background: var(--hs-bg);
}

.hugesupps-product-faq {
    background: var(--hs-bg-soft);
}

.hugesupps-product-benefits .hugesupps-section-title,
.hugesupps-product-ingredients .hugesupps-section-title,
.hugesupps-product-faq .hugesupps-section-title {
    margin-bottom: 40px;
}

.hugesupps-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.hugesupps-benefit-list li {
    position: relative;
    padding: 22px 26px 22px 60px;
    font-size: 17px;
    font-weight: 700;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
    color: var(--hs-text);
}

.hugesupps-benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hs-blue);
    color: var(--hs-text);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.hugesupps-ingredient-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hugesupps-ingredient-card {
    padding: 26px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
    transition: transform var(--hs-transition), border-color var(--hs-transition);
}

.hugesupps-ingredient-card:hover {
    transform: translateY(-4px);
    border-color: var(--hs-border-strong);
}

.hugesupps-ingredient-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hugesupps-dose {
    font-size: 14px;
    color: var(--hs-blue-bright);
    font-weight: 900;
}

.hugesupps-faq-list {
    display: grid;
    gap: 12px;
}

.hugesupps-faq-item {
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
    overflow: hidden;
}

.hugesupps-faq-item summary {
    padding: 22px 52px 22px 26px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 15px;
    list-style: none;
    color: var(--hs-text);
    transition: background var(--hs-transition);
    position: relative;
}

.hugesupps-faq-item summary::-webkit-details-marker {
    display: none;
}

.hugesupps-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hs-surface-elevated);
    border: 1px solid var(--hs-border);
    border-radius: 999px;
    font-size: 18px;
    font-weight: 400;
    color: var(--hs-text-secondary);
    transition: transform var(--hs-transition), background var(--hs-transition);
}

.hugesupps-faq-item[open] summary::after {
    content: '−';
    background: var(--hs-blue);
    color: var(--hs-text);
    border-color: var(--hs-blue);
}

.hugesupps-faq-item summary:hover {
    background: rgba(255, 255, 255, 0.03);
}

.hugesupps-faq-answer {
    padding: 0 26px 22px;
    color: var(--hs-text-secondary);
    line-height: 1.7;
}

/* WooCommerce tabs */
.hugesupps-product-after-summary .woocommerce-tabs {
    margin: 0;
    padding: 72px 0;
    background: var(--hs-bg);
    border-top: 1px solid var(--hs-border);
}

body.woocommerce .hugesupps-single-product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    border-bottom: 1px solid var(--hs-border);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--hs-border) transparent;
}

body.woocommerce .hugesupps-single-product .woocommerce-tabs ul.tabs::-webkit-scrollbar {
    height: 4px;
}

body.woocommerce .hugesupps-single-product .woocommerce-tabs ul.tabs::-webkit-scrollbar-thumb {
    background: var(--hs-border);
    border-radius: 2px;
}

body.woocommerce .hugesupps-single-product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

body.woocommerce .hugesupps-single-product .woocommerce-tabs ul.tabs li::before,
body.woocommerce .hugesupps-single-product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

body.woocommerce .hugesupps-single-product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 16px 22px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--hs-text-muted);
    border-bottom: 3px solid transparent;
    transition: color var(--hs-transition), border-color var(--hs-transition);
    background: transparent !important;
}

body.woocommerce .hugesupps-single-product .woocommerce-tabs ul.tabs li.active a,
body.woocommerce .hugesupps-single-product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--hs-text);
    border-color: var(--hs-blue);
    background: transparent !important;
}

.woocommerce-Tabs-panel {
    color: var(--hs-text-secondary);
    line-height: 1.7;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
}

.woocommerce-Tabs-panel > h2:first-child,
.woocommerce-Tabs-panel .woocommerce-Reviews-title {
    font-size: 24px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.woocommerce-Tabs-panel p {
    color: var(--hs-text-secondary);
}

.woocommerce-Tabs-panel a {
    color: var(--hs-blue-bright);
}

.woocommerce-Tabs-panel a:hover {
    color: var(--hs-cyan);
}

/* Reviews */
.woocommerce-Reviews {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.woocommerce-Reviews .woocommerce-noreviews {
    margin: 0;
    padding: 24px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
    color: var(--hs-text-secondary);
    font-size: 16px;
}

.woocommerce-Reviews .commentlist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.woocommerce-Reviews .commentlist .review {
    margin: 0;
    padding: 24px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
}

.woocommerce-Reviews .comment_container {
    display: flex;
    gap: 16px;
}

.woocommerce-Reviews .avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid var(--hs-border);
    flex-shrink: 0;
}

.woocommerce-Reviews .comment-text {
    flex: 1;
}

.woocommerce-Reviews .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--hs-text-muted);
}

.woocommerce-review__author {
    color: var(--hs-text);
    font-weight: 800;
    font-size: 16px;
}

.woocommerce-review__dash {
    display: none;
}

.woocommerce-review__published-date {
    font-size: 13px;
}

.woocommerce-Reviews .star-rating {
    font-size: 14px;
    color: #fbbf24;
    margin-bottom: 10px;
}

.woocommerce-Reviews .description p {
    margin: 0;
    color: var(--hs-text-secondary);
    line-height: 1.7;
}

/* Review form */
.woocommerce-Reviews .comment-respond {
    padding: 32px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
}

.woocommerce-Reviews .comment-reply-title {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--hs-text);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.woocommerce-Reviews .comment-reply-title small {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
}

.woocommerce-Reviews .comment-reply-title small a {
    color: var(--hs-blue-bright);
}

.woocommerce-Reviews .comment-notes {
    font-size: 14px;
    color: var(--hs-text-muted);
    margin-bottom: 24px;
}

.woocommerce-Reviews .comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.woocommerce-Reviews .comment-form > p {
    margin: 0;
    padding: 0;
}

.woocommerce-Reviews .comment-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--hs-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.woocommerce-Reviews .comment-form .required {
    color: #ef4444;
    text-decoration: none;
}

.woocommerce-Reviews .comment-form-rating .stars {
    display: inline-flex;
    gap: 6px;
    margin: 0;
    font-size: 20px;
    line-height: 1;
}

.woocommerce-Reviews .comment-form-rating .stars a {
    position: relative;
    width: 1em;
    height: 1em;
    color: var(--hs-text-muted);
    text-indent: -9999px;
    transition: color var(--hs-transition);
}

.woocommerce-Reviews .comment-form-rating .stars a::before {
    content: "\2605";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-indent: 0;
}

.woocommerce-Reviews .comment-form-rating .stars a:hover,
.woocommerce-Reviews .comment-form-rating .stars a.active,
.woocommerce-Reviews .comment-form-rating .stars.selected a {
    color: #fbbf24;
}

.woocommerce-Reviews .comment-form input[type="text"],
.woocommerce-Reviews .comment-form input[type="email"],
.woocommerce-Reviews .comment-form textarea {
    width: 100%;
    padding: 16px;
    background: var(--hs-bg);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-xs);
    color: var(--hs-text);
    font-size: 15px;
    font-family: inherit;
    transition: border-color var(--hs-transition), box-shadow var(--hs-transition);
}

.woocommerce-Reviews .comment-form input[type="text"]:focus,
.woocommerce-Reviews .comment-form input[type="email"]:focus,
.woocommerce-Reviews .comment-form textarea:focus {
    outline: none;
    border-color: var(--hs-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.woocommerce-Reviews .comment-form textarea {
    min-height: 140px;
    resize: vertical;
}

.woocommerce-Reviews .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.woocommerce-Reviews .comment-form-cookies-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--hs-blue);
}

.woocommerce-Reviews .comment-form-cookies-consent label {
    margin: 0;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--hs-text-secondary);
    font-size: 14px;
}

body.woocommerce .hugesupps-single-product #reviews #respond .form-submit input#submit,
body.woocommerce-page .hugesupps-single-product #reviews #respond .form-submit input#submit.submit {
    background: var(--hs-accent-gradient);
    background-color: transparent;
    background-image: var(--hs-accent-gradient);
    color: var(--hs-text);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

body.woocommerce .hugesupps-single-product #reviews #respond .form-submit input#submit:hover,
body.woocommerce-page .hugesupps-single-product #reviews #respond .form-submit input#submit.submit:hover {
    color: #fff;
    box-shadow: 0 12px 36px rgba(37, 99, 235, 0.55);
}

/* Related products */
.hugesupps-related-products {
    padding: 56px 0;
    background: var(--hs-bg-soft);
    border-top: 1px solid var(--hs-border);
}

.hugesupps-related-products > .hugesupps-container > h2 {
    font-size: clamp(26px, 2.8vw, 36px);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.hugesupps-related-products .products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hugesupps-related-products .products::before,
.hugesupps-related-products .products::after {
    display: none !important;
}

.hugesupps-related-products .products li.product,
.hugesupps-related-products .products li.product.first,
.hugesupps-related-products .products li.product.last {
    display: block;
    float: none;
    width: 100% !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0;
    clear: none !important;
}

.hugesupps-related-products .hugesupps-product-card {
    border-radius: var(--hs-radius-sm);
}

.hugesupps-related-products .hugesupps-product-image {
    aspect-ratio: 4 / 3;
    padding: 12px;
}

.hugesupps-related-products .hugesupps-product-info {
    padding: 14px;
}

.hugesupps-related-products .hugesupps-product-title {
    font-size: 14px;
}

.hugesupps-related-products .hugesupps-product-excerpt {
    font-size: 12px;
    -webkit-line-clamp: 2;
}

.hugesupps-related-products .hugesupps-product-price {
    margin-bottom: 12px;
}

.hugesupps-related-products .hugesupps-price-current,
.hugesupps-related-products .hugesupps-price-sale {
    font-size: 16px;
}

.hugesupps-related-products .hugesupps-product-actions {
    padding: 0 14px 14px;
}

.hugesupps-related-products .hugesupps-product-actions .button {
    min-height: 38px;
    padding: 10px 14px;
    font-size: 11px;
}

/* Shop */
.hugesupps-shop-header {
    position: relative;
    min-height: 230px;
    max-height: 280px;
    height: 22vw;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    overflow: hidden;
    background: var(--hs-bg-soft);
}

.hugesupps-shop-header__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hugesupps-shop-header__image {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 55% center;
}

.hugesupps-shop-header__image--mobile {
    display: none;
}

.hugesupps-shop-header__overlay {
    position: absolute;
    inset: 0;
    background:
        /* Strong left-to-right black gradient for heading readability, fading to black at the right edge */
        linear-gradient(90deg, rgba(3, 5, 8, 0.98) 0%, rgba(3, 5, 8, 0.92) 42%, rgba(3, 5, 8, 0.60) 62%, rgba(3, 5, 8, 0.20) 75%, rgba(3, 5, 8, 0.90) 100%),
        /* Subtle full-image dark overlay */
        linear-gradient(180deg, rgba(3, 5, 8, 0.35) 0%, rgba(3, 5, 8, 0.55) 100%),
        /* Soft navy atmospheric glow near the subject */
        radial-gradient(circle at 78% 50%, rgba(37, 99, 235, 0.10) 0%, transparent 45%);
}

.hugesupps-shop-header__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: calc(var(--hs-header-height) + 8px);
    padding-bottom: 32px;
}

.hugesupps-shop-header__title {
    margin: 0;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--hs-text);
}

.hugesupps-shop-header__subtitle {
    max-width: 520px;
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.55;
    color: var(--hs-text-secondary);
}

@media (max-width: 639px) {
    .hugesupps-shop-header {
        min-height: 200px;
        max-height: 260px;
        height: 46vw;
    }

    .hugesupps-shop-header__image--desktop {
        display: none;
    }

    .hugesupps-shop-header__image--mobile {
        display: block;
        background-position: 50% center;
    }

    .hugesupps-shop-header__overlay {
        background:
            linear-gradient(90deg, rgba(3, 5, 8, 0.97) 0%, rgba(3, 5, 8, 0.82) 55%, rgba(3, 5, 8, 0.50) 80%, rgba(3, 5, 8, 0.90) 100%),
            linear-gradient(180deg, rgba(3, 5, 8, 0.45) 0%, rgba(3, 5, 8, 0.65) 100%),
            radial-gradient(circle at 80% 60%, rgba(37, 99, 235, 0.10) 0%, transparent 40%);
    }

    .hugesupps-shop-header__content {
        padding-top: calc(var(--hs-header-height) + 6px);
        padding-bottom: 28px;
    }

    .hugesupps-shop-header__title {
        font-size: clamp(32px, 9vw, 44px);
    }

    .hugesupps-shop-header__subtitle {
        font-size: 14px;
        max-width: 280px;
    }
}

/* Shop layout */
.hugesupps-shop-layout {
    display: block;
    width: 100%;
    padding-bottom: 80px;
}

.woocommerce-notices-wrapper:empty {
    display: none;
}

.woocommerce-notices-wrapper {
    margin-bottom: 24px;
}

/* Shop controls: merged category nav + shop toolbar */
.hugesupps-shop-controls {
    margin-bottom: 36px;
}

.hugesupps-shop-controls__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 16px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
}

.hugesupps-shop-controls__categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.hugesupps-shop-controls__tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    min-width: 0;
}

.hugesupps-shop-controls__link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--hs-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--hs-text-secondary);
    white-space: nowrap;
    transition: color var(--hs-transition), background var(--hs-transition), border-color var(--hs-transition), box-shadow var(--hs-transition);
}

.hugesupps-shop-controls__link:hover {
    color: var(--hs-text);
    border-color: var(--hs-border-strong);
    background: var(--hs-surface-elevated);
}

.hugesupps-shop-controls__link.is-active {
    background: var(--hs-accent-gradient);
    border-color: transparent;
    color: var(--hs-bg);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.hugesupps-shop-controls .woocommerce-result-count {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--hs-text-secondary);
    white-space: nowrap;
}

.hugesupps-shop-controls .woocommerce-ordering {
    margin: 0;
}

.hugesupps-shop-controls .woocommerce-ordering select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    min-width: 200px;
    padding: 10px 38px 10px 14px;
    background: var(--hs-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 12px center / 12px no-repeat;
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-xs);
    color: var(--hs-text);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color var(--hs-transition), box-shadow var(--hs-transition);
}

.hugesupps-shop-controls .woocommerce-ordering select:focus {
    outline: none;
    border-color: var(--hs-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

@media (min-width: 1024px) {
    .hugesupps-shop-controls__inner {
        flex-wrap: nowrap;
    }

    .hugesupps-shop-controls__categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .hugesupps-shop-controls__categories::-webkit-scrollbar {
        display: none;
    }

    .hugesupps-shop-controls__tools {
        flex-wrap: nowrap;
        justify-content: flex-end;
        flex-shrink: 0;
        margin-left: auto;
    }

    .hugesupps-shop-controls .woocommerce-ordering select {
        width: auto;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .hugesupps-shop-controls__categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100%;
    }

    .hugesupps-shop-controls__categories::-webkit-scrollbar {
        display: none;
    }

    .hugesupps-shop-controls__tools {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 639px) {
    .hugesupps-shop-controls {
        margin-bottom: 28px;
    }

    .hugesupps-shop-controls__categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100%;
        padding-bottom: 4px;
    }

    .hugesupps-shop-controls__categories::-webkit-scrollbar {
        display: none;
    }

    .hugesupps-shop-controls__tools {
        width: 100%;
        justify-content: space-between;
    }

    .hugesupps-shop-controls__link {
        padding: 9px 14px;
        font-size: 12px;
    }

    .hugesupps-shop-controls .woocommerce-ordering {
        flex: 1 1 auto;
    }

    .hugesupps-shop-controls .woocommerce-ordering select {
        width: 100%;
        min-width: 0;
    }
}

/* Empty shop state */
.woocommerce-no-products-found {
    margin: 0;
}

.woocommerce-no-products-found .woocommerce-info {
    text-align: center;
    padding: 64px 24px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-left: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    color: var(--hs-text-secondary);
}

.woocommerce-no-products-found .woocommerce-info::before {
    display: none;
}

.woocommerce-no-products-found .woocommerce-info a {
    color: var(--hs-blue-bright);
    font-weight: 800;
}

.woocommerce-no-products-found .woocommerce-info a:hover {
    color: var(--hs-cyan);
}

.hugesupps-empty-shop {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 72px 24px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
}

.hugesupps-empty-shop__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 24px;
    color: var(--hs-blue-bright);
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
}

.hugesupps-empty-shop__title {
    margin-bottom: 12px;
    font-size: 24px;
    text-transform: uppercase;
}

.hugesupps-empty-shop__text {
    max-width: 480px;
    margin-bottom: 28px;
    color: var(--hs-text-secondary);
    line-height: 1.6;
}

/* Cart page layout */
.woocommerce-cart .entry-header {
    margin-bottom: 24px;
    padding-top: 8px;
}

.woocommerce-cart .entry-title {
    margin: 0;
}

.hugesupps-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(360px, 1fr);
    gap: 32px;
    align-items: start;
}

@media (max-width: 1100px) {
    .hugesupps-cart-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Cart products card */
.woocommerce-cart .woocommerce-cart-form {
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    overflow: hidden;
}

.woocommerce-cart-form table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    color: var(--hs-text-secondary);
    background: transparent;
    border: none;
}

.woocommerce-cart-form th,
.woocommerce-cart-form td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--hs-border);
    vertical-align: middle;
    text-align: left;
}

.woocommerce-cart-form th {
    color: var(--hs-text-secondary);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: transparent;
}

.woocommerce-cart-form td.product-remove {
    width: 60px;
    padding-left: 24px;
    padding-right: 0;
    text-align: center;
}

.woocommerce-cart-form td.product-thumbnail {
    width: 110px;
    padding-left: 0;
    padding-right: 0;
}

.woocommerce-cart-form td.product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--hs-radius-xs);
    border: 1px solid var(--hs-border);
    display: block;
}

.woocommerce-cart-form td.product-name {
    color: var(--hs-text);
    font-weight: 700;
    font-size: 16px;
}

.woocommerce-cart-form td.product-name a {
    color: var(--hs-text);
}

.woocommerce-cart-form td.product-name a:hover {
    color: var(--hs-blue-bright);
}

.woocommerce-cart-form td.product-price,
.woocommerce-cart-form td.product-subtotal {
    font-weight: 700;
    color: var(--hs-text);
}

.woocommerce-cart-form td.product-subtotal {
    color: var(--hs-blue-bright);
}

/* Remove button */
.woocommerce-cart-form .product-remove a.remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #ef4444;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: background var(--hs-transition), color var(--hs-transition), border-color var(--hs-transition), transform var(--hs-transition);
}

.woocommerce-cart-form .product-remove a.remove:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
    transform: scale(1.05);
}

/* Quantity field */
.woocommerce-cart-form .quantity {
    display: inline-flex;
}

.woocommerce-cart-form .quantity .qty {
    width: 70px;
    height: 44px;
    padding: 0 10px;
    background: var(--hs-bg-soft);
    border: 1px solid var(--hs-border-strong);
    border-radius: var(--hs-radius-xs);
    color: var(--hs-text);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    -moz-appearance: textfield;
}

.woocommerce-cart-form .quantity .qty::-webkit-outer-spin-button,
.woocommerce-cart-form .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.woocommerce-cart-form .quantity .qty:focus {
    outline: none;
    border-color: var(--hs-blue);
}

/* Coupon & update controls */
.woocommerce-cart-form .actions {
    padding: 20px 24px;
    border-top: 1px solid var(--hs-border);
    border-bottom: none;
    background: transparent;
}

.woocommerce-cart-form .actions::after,
.woocommerce-cart-form .actions::before {
    content: none;
}

.woocommerce-cart-form .actions .coupon {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
    margin: 0;
    float: none;
}

.woocommerce-cart-form .actions .coupon input.input-text {
    flex: 1 1 160px;
    min-width: 160px;
    height: 48px;
    padding: 0 16px;
    background: var(--hs-bg-soft);
    border: 1px solid var(--hs-border-strong);
    border-radius: var(--hs-radius-xs);
    color: var(--hs-text);
    font-size: 15px;
}

.woocommerce-cart-form .actions .coupon input.input-text::placeholder {
    color: var(--hs-text-muted);
}

.woocommerce-cart-form .actions .coupon input.input-text:focus {
    outline: none;
    border-color: var(--hs-blue);
}

.woocommerce-cart .woocommerce-cart-form .actions .button {
    height: 48px;
    padding: 0 22px;
    background: transparent;
    border: 1.5px solid var(--hs-border-strong);
    color: var(--hs-text);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--hs-radius-xs);
    cursor: pointer;
    transition: background var(--hs-transition), border-color var(--hs-transition), color var(--hs-transition), transform var(--hs-transition);
}

.woocommerce-cart .woocommerce-cart-form .actions .button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    transform: translateY(-2px);
}

.woocommerce-cart .woocommerce-cart-form .actions .button:disabled,
.woocommerce-cart .woocommerce-cart-form .actions .button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.woocommerce-cart-form .actions .button[name="update_cart"] {
    margin-left: auto;
}



/* Cart totals card */
.woocommerce-cart .cart-collaterals {
    margin-top: 0;
    padding: 20px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
}

.woocommerce-cart .cart-collaterals h2 {
    margin: 0 0 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--hs-text);
}

.woocommerce-cart .cart-collaterals .shop_table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 20px;
    color: var(--hs-text-secondary);
}

.woocommerce-cart .cart-collaterals .shop_table th,
.woocommerce-cart .cart-collaterals .shop_table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--hs-border);
    text-align: left;
    font-weight: 400;
}

.woocommerce-cart .cart-collaterals .shop_table td {
    text-align: right;
}

.woocommerce-cart .cart-collaterals .shop_table {
    width: 100%;
}

.woocommerce-cart .cart-collaterals .shop_table tr:last-child th,
.woocommerce-cart .cart-collaterals .shop_table tr:last-child td {
    border-bottom: none;
}

.woocommerce-cart .cart-collaterals .shop_table .order-total th,
.woocommerce-cart .cart-collaterals .shop_table .order-total td {
    padding-top: 16px;
    color: var(--hs-text);
    font-weight: 900;
    font-size: 18px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    float: none;
    width: 100%;
}

.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
    margin: 0;
}

.woocommerce-cart .cart-collaterals .checkout-button.button.alt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    background-color: transparent;
    background-image: var(--hs-accent-gradient);
    color: var(--hs-text);
    border: none;
    border-radius: var(--hs-radius-xs);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
    transition: transform var(--hs-transition), box-shadow var(--hs-transition), filter var(--hs-transition);
}

.woocommerce-cart .cart-collaterals .checkout-button.button.alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(37, 99, 235, 0.55);
    filter: brightness(1.05);
}

@media (max-width: 1200px) {
    .woocommerce-cart .cart-collaterals {
        padding: 16px;
    }

    .woocommerce-cart .cart-collaterals h2 {
        font-size: 15px;
    }

    .woocommerce-cart .cart-collaterals .checkout-button.button.alt {
        padding: 14px 16px;
        font-size: 13px;
    }
}

/* Empty cart return button */
.woocommerce-cart .return-to-shop .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    background: transparent;
    border: 1.5px solid var(--hs-border-strong);
    color: var(--hs-text);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--hs-radius-xs);
    transition: background var(--hs-transition), border-color var(--hs-transition), color var(--hs-transition), transform var(--hs-transition);
}

.woocommerce-cart .return-to-shop .button:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    transform: translateY(-2px);
}

.hugesupps-my-account {
    display: grid;
    gap: 32px;
    align-items: start;
}

.woocommerce-MyAccount-navigation {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.hugesupps-my-account .woocommerce-MyAccount-navigation {
    width: 100%;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
}

.woocommerce-MyAccount-navigation li {
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--hs-radius-xs);
    font-weight: 800;
    font-size: 13px;
    color: var(--hs-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
    white-space: nowrap;
    transition: color var(--hs-transition), background var(--hs-transition), border-color var(--hs-transition), box-shadow var(--hs-transition);
}

.hugesupps-my-account__label {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.woocommerce-MyAccount-navigation a:hover {
    color: var(--hs-text);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--hs-border);
}

.woocommerce-MyAccount-navigation .is-active a {
    background: rgba(37, 99, 235, 0.12);
    color: var(--hs-text);
    border-color: rgba(37, 99, 235, 0.35);
}

.hugesupps-my-account__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: currentColor;
}

.hugesupps-my-account__icon svg {
    width: 100%;
    height: 100%;
}

.woocommerce-MyAccount-content {
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    padding: 36px;
}

.woocommerce-MyAccount-content p:first-child {
    margin-top: 0;
}

.woocommerce-MyAccount-content a {
    color: var(--hs-blue-bright);
    font-weight: 700;
}

.woocommerce-MyAccount-content a:hover {
    color: var(--hs-cyan);
}

.woocommerce-checkout .col2-set {
    display: grid;
    gap: 32px;
    align-items: start;
}

body.woocommerce-checkout .col2-set .col-1,
body.woocommerce-checkout .col2-set .col-2 {
    width: 100%;
    float: none;
    min-width: 0;
}

/* Remove WooCommerce clearfix pseudo-items that break CSS Grid placement */
.woocommerce-checkout .col2-set::before,
.woocommerce-checkout .col2-set::after {
    content: none;
    display: none;
}

.woocommerce-checkout table {
    width: 100%;
    border-collapse: collapse;
    color: var(--hs-text-secondary);
}

.woocommerce-checkout .form-row {
    margin-bottom: 16px;
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3 {
    font-size: 18px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

body.woocommerce-checkout .form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 900;
    color: var(--hs-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

body.woocommerce-checkout .form-row .input-text,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--hs-bg);
    border: 1px solid var(--hs-border-strong);
    border-radius: var(--hs-radius-xs);
    color: var(--hs-text);
    font-size: 15px;
    transition: border-color var(--hs-transition), box-shadow var(--hs-transition);
}

body.woocommerce-checkout .form-row select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

body.woocommerce-checkout .form-row .input-text:focus,
body.woocommerce-checkout .form-row select:focus,
body.woocommerce-checkout .form-row textarea:focus {
    outline: none;
    border-color: var(--hs-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Select2 dropdowns used for country/state */
.woocommerce-checkout .select2-container--default .select2-selection--single {
    height: auto;
    background: var(--hs-bg);
    border: 1px solid var(--hs-border-strong);
    border-radius: var(--hs-radius-xs);
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--hs-text);
    padding: 14px 40px 14px 16px;
    line-height: 1.5;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 12px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--hs-text-secondary) transparent transparent transparent;
}

.woocommerce-checkout .select2-dropdown {
    background: var(--hs-surface);
    border: 1px solid var(--hs-border-strong);
    color: var(--hs-text);
    border-radius: var(--hs-radius-xs);
}

.woocommerce-checkout .select2-container--default .select2-results__option {
    padding: 10px 16px;
}

.woocommerce-checkout .select2-container--default .select2-results__option--highlighted[aria-selected],
.woocommerce-checkout .select2-container--default .select2-results__option--selected {
    background: var(--hs-blue);
    color: var(--hs-text);
}

.woocommerce-checkout .select2-container--default .select2-search--dropdown .select2-search__field {
    background: var(--hs-bg);
    border: 1px solid var(--hs-border-strong);
    color: var(--hs-text);
    border-radius: var(--hs-radius-xs);
    padding: 10px 12px;
}

#order_review_heading {
    font-size: 18px;
    margin-bottom: 0;
    padding: 24px 36px;
    text-transform: uppercase;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-bottom: none;
    border-radius: var(--hs-radius) var(--hs-radius) 0 0;
}

#order_review {
    padding: 24px 36px 36px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: 0 0 var(--hs-radius) var(--hs-radius);
}

#order_review table.shop_table {
    width: 100%;
    margin-bottom: 24px;
}

#order_review table.shop_table th,
#order_review table.shop_table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--hs-border);
    text-align: left;
    vertical-align: top;
}

#order_review table.shop_table td {
    text-align: right;
}

#order_review table.shop_table tr:last-child th,
#order_review table.shop_table tr:last-child td {
    border-bottom: none;
}

#order_review table.shop_table .order-total th,
#order_review table.shop_table .order-total td {
    color: var(--hs-text);
    font-weight: 900;
    font-size: 18px;
}

/* Checkout order-review product list alignment */
#order_review table.shop_table td.product-name {
    text-align: left;
    word-break: normal;
    overflow-wrap: anywhere;
}

#order_review table.shop_table td.product-total {
    width: 110px;
    min-width: 110px;
    padding-left: 16px;
    text-align: right;
    white-space: nowrap;
}

#order_review table.shop_table tr.cart_item td {
    padding: 16px 0;
}

#order_review table.shop_table td.product-name .product-quantity {
    display: inline;
    white-space: nowrap;
    font-weight: 600;
}

@media (max-width: 768px) {
    #order_review table.shop_table td.product-total {
        width: 90px;
        min-width: 90px;
        padding-left: 12px;
    }
}

/* Checkout coupon */
.woocommerce-form-coupon-toggle .woocommerce-info {
    background: var(--hs-surface);
    color: var(--hs-text);
    border: 1px solid var(--hs-border);
    border-left: 4px solid var(--hs-blue);
    border-radius: var(--hs-radius-xs);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.woocommerce-form-coupon-toggle .woocommerce-info::before {
    display: none;
}

.woocommerce-form-coupon-toggle .woocommerce-info a {
    color: var(--hs-blue-bright);
    font-weight: 800;
}

.woocommerce-form-coupon-toggle .woocommerce-info a:hover {
    color: var(--hs-cyan);
}

.woocommerce-form-coupon {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-xs);
}

.woocommerce-form-coupon .form-row-first,
.woocommerce-form-coupon .form-row-last {
    margin: 0;
}

.woocommerce-form-coupon .form-row-first {
    flex: 1 1 200px;
}

.woocommerce-form-coupon .form-row-last {
    flex: 0 0 auto;
}

.woocommerce-form-coupon .input-text {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    background: var(--hs-bg);
    border: 1px solid var(--hs-border-strong);
    border-radius: var(--hs-radius-xs);
    color: var(--hs-text);
    font-size: 15px;
}

body.woocommerce-checkout .woocommerce-form-coupon button.button {
    height: 48px;
    padding: 0 24px;
    background: transparent;
    border: 1.5px solid var(--hs-border-strong);
    border-radius: var(--hs-radius-xs);
    color: var(--hs-text);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background var(--hs-transition), border-color var(--hs-transition), transform var(--hs-transition);
}

body.woocommerce-checkout .woocommerce-form-coupon button.button:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* Checkout payment & place order */
.woocommerce-checkout #payment {
    background: transparent;
    border-radius: 0;
}

.woocommerce-checkout #payment .woocommerce-info {
    background: var(--hs-bg-soft);
    color: var(--hs-text);
    border: 1px solid var(--hs-border);
    border-left: 4px solid var(--hs-blue);
    border-radius: var(--hs-radius-xs);
    padding: 16px;
    margin-bottom: 16px;
}

.woocommerce-checkout #payment .woocommerce-info::before {
    display: none;
}

.woocommerce-checkout #payment .woocommerce-info a {
    color: var(--hs-blue-bright);
    font-weight: 800;
}

.woocommerce-checkout #payment .place-order {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin-top: 16px;
    float: none;
}

.woocommerce-checkout #payment .place-order .button {
    width: 100%;
    margin: 0;
}

.woocommerce-checkout #payment #place_order {
    background-image: var(--hs-accent-gradient);
    color: var(--hs-text);
    border: none;
    border-radius: var(--hs-radius-xs);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 16px 24px;
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
    transition: transform var(--hs-transition), filter var(--hs-transition), box-shadow var(--hs-transition);
}

.woocommerce-checkout #payment #place_order:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(37, 99, 235, 0.55);
    filter: brightness(1.05);
}

/* Payment methods list */
.woocommerce-checkout .wc_payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.woocommerce-checkout .wc_payment_method {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.woocommerce-checkout .wc_payment_method > label {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    margin: 0;
    background: var(--hs-bg-soft);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-xs);
    font-size: 15px;
    font-weight: 800;
    color: var(--hs-text);
    cursor: pointer;
    transition: background var(--hs-transition), border-color var(--hs-transition);
}

.woocommerce-checkout .wc_payment_method > label:hover {
    background: var(--hs-surface);
    border-color: var(--hs-border-strong);
}

.woocommerce-checkout .wc_payment_method > label img {
    max-height: 24px;
    width: auto;
}

.woocommerce-checkout .wc_payment_method input.input-radio {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--hs-blue);
    flex-shrink: 0;
}

/* Selected payment method card */
.woocommerce-checkout .wc_payment_method > input.input-radio:checked + label {
    position: relative;
    padding-right: 40px;
    background: var(--hs-surface);
    border-left: 4px solid var(--hs-blue);
}

.woocommerce-checkout .wc_payment_method > input.input-radio:checked + label::after {
    content: "\2713";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    font-size: 16px;
    color: var(--hs-blue);
}

/* Flatten the label bottom corners when a payment box follows it. */
.woocommerce-checkout .wc_payment_method:has(> .payment_box) > input.input-radio:checked + label {
    border-radius: var(--hs-radius-xs) var(--hs-radius-xs) 0 0;
}

body.woocommerce-checkout #payment div.payment_box {
    width: 100%;
    position: relative;
    padding: 16px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-top: none;
    border-radius: 0 0 var(--hs-radius-xs) var(--hs-radius-xs);
    color: var(--hs-text);
}

body.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}

/* The custom Credit Card gateway prints a redundant description box that only
   repeats the label. Hide it so the selected label acts as the method card.
   WooCommerce sets display:block inline on the selected method's box, so
   !important is required. Keep the label fully rounded since no box follows. */
body.woocommerce-checkout #payment .wc_payment_method.payment_method_paygatedotto-instant-payment-gateway-customprovider .payment_box {
    display: none !important;
}

body.woocommerce-checkout #payment .wc_payment_method.payment_method_paygatedotto-instant-payment-gateway-customprovider > input.input-radio:checked + label {
    border-radius: var(--hs-radius-xs);
}

body.woocommerce-checkout #payment div.payment_box fieldset,
body.woocommerce-checkout #payment div.payment_box .form-row {
    margin-bottom: 12px;
}

body.woocommerce-checkout #payment div.payment_box .form-row label {
    margin-bottom: 6px;
}

/* WooCommerce forms global */
.woocommerce-form,
.woocommerce-form-login,
.woocommerce-ResetPassword,
.woocommerce-form-register {
    padding: 36px;
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
}

.woocommerce-form label,
.woocommerce-form-login label,
.woocommerce-ResetPassword label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 900;
    color: var(--hs-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.woocommerce-form input[type="text"],
.woocommerce-form input[type="email"],
.woocommerce-form input[type="password"],
.woocommerce-form-login input[type="text"],
.woocommerce-form-login input[type="password"],
.woocommerce-ResetPassword input[type="password"] {
    width: 100%;
    padding: 16px;
    background: var(--hs-bg);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-xs);
    color: var(--hs-text);
    font-size: 15px;
    margin-bottom: 16px;
}

.woocommerce-form input:focus,
.woocommerce-form-login input:focus {
    outline: none;
    border-color: var(--hs-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.woocommerce-form .woocommerce-Button,
.woocommerce-form-login .woocommerce-Button,
.woocommerce-ResetPassword .woocommerce-Button {
    background: var(--hs-accent-gradient);
    color: var(--hs-text);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

.woocommerce-LostPassword a {
    color: var(--hs-blue-bright);
    font-weight: 800;
}

/* Pagination */
.woocommerce-pagination,
.pagination,
.nav-links {
    margin-top: 64px;
    text-align: center;
}

.woocommerce-pagination .page-numbers,
.pagination .page-numbers,
.nav-links .page-numbers {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-pagination .page-numbers li,
.pagination .page-numbers li,
.nav-links .page-numbers li {
    display: block;
    margin: 0;
}

/* WooCommerce adds light borders to the pagination list/items; strip them. */
body.woocommerce nav.woocommerce-pagination .page-numbers,
body.woocommerce nav.woocommerce-pagination .page-numbers li {
    border: none !important;
}

body.woocommerce nav.woocommerce-pagination .page-numbers a,
body.woocommerce nav.woocommerce-pagination .page-numbers span,
.pagination .page-numbers a,
.pagination .page-numbers span,
.nav-links .page-numbers a,
.nav-links .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--hs-surface);
    border: none !important;
    outline: none;
    color: var(--hs-text-secondary);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: color var(--hs-transition), background var(--hs-transition), box-shadow var(--hs-transition), transform var(--hs-transition);
}

body.woocommerce nav.woocommerce-pagination .page-numbers a:hover,
body.woocommerce nav.woocommerce-pagination .page-numbers a:focus,
.pagination .page-numbers a:hover,
.pagination .page-numbers a:focus,
.nav-links .page-numbers a:hover,
.nav-links .page-numbers a:focus {
    background: var(--hs-surface-highlight);
    border: none !important;
    color: var(--hs-text);
    transform: translateY(-2px);
}

body.woocommerce nav.woocommerce-pagination .page-numbers .current,
.pagination .page-numbers .current,
.nav-links .page-numbers .current {
    background: var(--hs-accent-gradient);
    border: none !important;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

body.woocommerce nav.woocommerce-pagination .page-numbers .dots,
.pagination .page-numbers .dots,
.nav-links .page-numbers .dots {
    background: transparent;
    border: none !important;
    color: var(--hs-text-muted);
    cursor: default;
    pointer-events: none;
    min-width: auto;
    padding: 0 6px;
}

body.woocommerce nav.woocommerce-pagination .page-numbers .next,
body.woocommerce nav.woocommerce-pagination .page-numbers .prev,
.pagination .page-numbers .next,
.pagination .page-numbers .prev,
.nav-links .page-numbers .next,
.nav-links .page-numbers .prev {
    min-width: 56px;
    padding: 0 18px;
    font-size: 20px;
    line-height: 1;
}

/* Posts */
.hugesupps-post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.hugesupps-post-card {
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    overflow: hidden;
    transition: transform var(--hs-transition), box-shadow var(--hs-transition);
}

.hugesupps-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hs-shadow-lg);
}

.hugesupps-post-content {
    padding: 28px;
}

.hugesupps-post-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.hugesupps-post-title a {
    color: var(--hs-text);
}

.hugesupps-read-more {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--hs-blue-bright);
}

/* 404 */
.hugesupps-not-found {
    text-align: center;
    padding: 120px 0;
}

.hugesupps-not-found-title {
    font-size: 150px;
    font-weight: 900;
    background: var(--hs-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.hugesupps-not-found h2 {
    margin-bottom: 16px;
}

.hugesupps-not-found p {
    margin-bottom: 32px;
}

/* Search */
.search-form {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 16px;
    background: var(--hs-bg);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-xs);
    color: var(--hs-text);
    font-size: 15px;
}

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 18px 24px;
    margin-bottom: 24px;
    border-radius: var(--hs-radius-xs);
    font-weight: 800;
    border-left: 4px solid;
}

.woocommerce-message {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border-color: #10b981;
}

.woocommerce-info {
    background: rgba(37, 99, 235, 0.1);
    color: var(--hs-blue-bright);
    border-color: var(--hs-blue);
}

.woocommerce-error {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border-color: #ef4444;
}

.woocommerce-message .button {
    margin-right: 12px;
    background: var(--hs-text);
    color: var(--hs-bg);
}

/* Widgets */
.widget-area .widget {
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    padding: 28px;
    margin-bottom: 24px;
}

.widget-title {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    color: var(--hs-text);
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget li {
    margin-bottom: 10px;
}

.widget a {
    color: var(--hs-text-secondary);
}

.widget a:hover {
    color: var(--hs-text);
}

/* Offset fixed header for generic pages */
.page .site-main,
.single-post .site-main,
.blog .site-main,
.search .site-main,
.error404 .site-main {
    padding-top: calc(var(--hs-header-height) + 32px);
}

/* Mobile menu */
.main-navigation.toggled .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--hs-header-height);
    left: 0;
    right: 0;
    background: rgba(8, 11, 16, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow-lg);
    z-index: 999;
}

.main-navigation.toggled .menu-toggle span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.main-navigation.toggled .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.main-navigation.toggled .menu-toggle span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Mobile header: account/cart first, then hamburger on the far right */
@media (max-width: 1023px) {
    .hugesupps-header-row {
        gap: 6px;
    }

    .site-branding {
        margin-right: auto;
    }

    .hugesupps-header-actions {
        order: 2;
    }

    .main-navigation {
        order: 3;
    }
}

/* Tablet */
@media (min-width: 640px) {
    .hugesupps-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .hugesupps-trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .hugesupps-category-card {
        min-height: 360px;
    }

    .hugesupps-product-grid > .products,
    .woocommerce .hugesupps-product-grid > .products,
    .woocommerce-page .hugesupps-product-grid > .products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .hugesupps-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hugesupps-review-card {
        flex: 0 0 50%;
    }

    .hugesupps-newsletter-form {
        flex-direction: row;
    }

    .hugesupps-trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px;
        padding: 18px 22px;
    }

    .hugesupps-trust-badge {
        font-size: 13px;
        min-width: 140px;
        flex: 1 1 auto;
    }

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

    .hugesupps-benefit-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .hugesupps-related-products .products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px;
    }

    .hugesupps-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .hugesupps-hero-grid {
        gap: 64px;
    }

    .hugesupps-category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .hugesupps-category-card {
        min-height: 420px;
    }

    .hugesupps-product-grid > .products,
    .woocommerce .hugesupps-product-grid > .products,
    .woocommerce-page .hugesupps-product-grid > .products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .hugesupps-benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hugesupps-review-card {
        flex: 0 0 25%;
    }

    .hugesupps-why-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
    }

    .hugesupps-why-grid.image-right {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .hugesupps-footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 48px;
    }

    .hugesupps-footer-title {
        margin-top: 28px;
    }

    .hugesupps-footer-bottom-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .hugesupps-product-grid-single {
        grid-template-columns: minmax(500px, 0.95fr) minmax(0, 1.15fr);
        align-items: start;
        gap: 56px;
    }

    .hugesupps-product-summary {
        position: sticky;
        top: calc(var(--hs-header-height) + 40px);
    }

    .hugesupps-newsletter-inner {
        grid-template-columns: 1fr 1fr;
        padding: 64px;
    }

    .hugesupps-shop-layout {
        padding-bottom: 100px;
    }

    .hugesupps-my-account {
        grid-template-columns: 300px 1fr;
    }

    .woocommerce-MyAccount-navigation a {
        padding: 14px 16px;
        gap: 14px;
        font-size: 14px;
    }

    .hugesupps-my-account__icon {
        width: 20px;
        height: 20px;
    }

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

    .hugesupps-ingredient-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hugesupps-trust-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }

    .hugesupps-trust-item {
        font-size: 12px;
        letter-spacing: 0.03em;
    }

    .hugesupps-trust-badges {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 16px;
        padding: 18px 22px;
    }

    .hugesupps-trust-badge {
        font-size: 13px;
        min-width: 0;
        flex: 1 1 0;
    }

    .hugesupps-related-products .products {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 18px;
    }

    .woocommerce-checkout .col2-set {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

/* =========================================================
 * Premium refinements
 * ========================================================= */

/* Product card refinements */
.hugesupps-product-rating:empty {
    display: none;
}

/* Header refinements */
.hugesupps-header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 1023px) {
    .hugesupps-header-actions {
        flex-direction: row;
    }
    
    .hugesupps-header-actions .hugesupps-cart-link {
        order: 1;
    }
    
    .hugesupps-header-actions .hugesupps-header-account {
        order: 2;
    }
}

.hugesupps-header-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--hs-text-secondary);
    border-radius: var(--hs-radius-xs);
    transition: color var(--hs-transition), background var(--hs-transition);
}

.hugesupps-header-icon svg {
    width: 22px;
    height: 22px;
}

/* Footer social refinements */
.hugesupps-footer-brand p {
    margin-bottom: 20px;
}

.hugesupps-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hugesupps-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--hs-text-secondary);
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: 999px;
    transition: color var(--hs-transition), background var(--hs-transition), border-color var(--hs-transition), transform var(--hs-transition);
}

.hugesupps-social-links a svg {
    width: 18px;
    height: 18px;
}

.hugesupps-social-links a:hover {
    color: var(--hs-text);
    background: var(--hs-blue);
    border-color: var(--hs-blue);
    transform: translateY(-2px);
}

/* Mobile menu overlay */
.main-navigation.toggled .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--hs-header-height);
    left: 0;
    right: 0;
    background: rgba(3, 5, 8, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 28px var(--hs-gutter) 36px;
    border-bottom: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow-lg);
    z-index: 999;
    gap: 4px;
}

.main-navigation.toggled .nav-menu a {
    padding: 14px 16px;
    font-size: 14px;
}

/* Section rhythm */
@media (max-width: 639px) {
    .hugesupps-section {
        padding: 64px 0;
    }

    .hugesupps-section-header {
        margin-bottom: 36px;
    }

    .hugesupps-hero {
        min-height: 560px;
        max-height: none;
        padding: calc(var(--hs-header-height) + 28px) 0 48px;
    }

    .hugesupps-hero-picture img {
        object-position: 62% 12%;
    }

    .hugesupps-hero-overlay {
        background:
            /* Strong top-to-bottom darkening for stacked mobile text */
            linear-gradient(180deg, rgba(3, 5, 8, 0.96) 0%, rgba(3, 5, 8, 0.85) 35%, rgba(3, 5, 8, 0.58) 55%, rgba(3, 5, 8, 0.28) 78%, transparent 92%),
            /* Left-to-right safeguard */
            linear-gradient(90deg, rgba(3, 5, 8, 0.94) 0%, rgba(3, 5, 8, 0.6) 45%, transparent 80%),
            /* Bottom blend */
            linear-gradient(0deg, rgba(3, 5, 8, 0.9) 0%, transparent 28%),
            /* Blue glow */
            radial-gradient(ellipse at 20% 30%, rgba(37, 99, 235, 0.16) 0%, transparent 55%);
    }

    .hugesupps-hero-content {
        max-width: 100%;
    }

    .hugesupps-hero-title {
        font-size: clamp(40px, 12vw, 64px);
    }

    .hugesupps-hero-subtitle {
        font-size: 17px;
        max-width: 480px;
    }

    .hugesupps-hero-buttons {
        flex-direction: column;
    }

    .hugesupps-hero-buttons .button {
        width: 100%;
    }

    .hugesupps-hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .hugesupps-category-card {
        min-height: 260px;
        padding: 20px;
    }

    .hugesupps-category-card h3 {
        font-size: 18px;
    }

    .hugesupps-category-desc {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .hugesupps-product-info,
    .hugesupps-product-actions {
        padding: 18px;
    }

    .hugesupps-product-title {
        font-size: 15px;
    }

    .hugesupps-price-current,
    .hugesupps-price-sale {
        font-size: 18px;
    }

    .hugesupps-footer-top {
        padding: 64px 0 40px;
    }

    .hugesupps-footer-grid {
        gap: 40px;
    }

    .hugesupps-footer-bottom-row {
        gap: 14px;
    }
}

/* Tablet refinements */
@media (min-width: 640px) and (max-width: 1023px) {
    .hugesupps-hero {
        min-height: 600px;
        max-height: 680px;
    }

    .hugesupps-hero-picture img {
        object-position: 72% 35%;
    }

    .hugesupps-hero-title {
        font-size: clamp(42px, 7vw, 64px);
    }
}

/* Desktop refinements */
@media (min-width: 1024px) {
    .hugesupps-hero {
        min-height: 640px;
        max-height: 720px;
        padding: calc(var(--hs-header-height) + 40px) 0 72px;
    }

    .hugesupps-hero-picture img {
        object-position: 76% 45%;
    }

    .hugesupps-hero-grid {
        gap: 64px;
    }

    .hugesupps-hero-content {
        max-width: 620px;
    }

    .hugesupps-hero-title {
        font-size: clamp(54px, 6.5vw, 86px);
        max-width: 720px;
    }

    .hugesupps-category-card {
        min-height: 420px;
    }
}

@media (min-width: 1280px) {
    .hugesupps-product-grid > .products,
    .woocommerce .hugesupps-product-grid > .products,
    .woocommerce-page .hugesupps-product-grid > .products {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 28px;
    }
}

/* Large desktop */
@media (min-width: 1400px) {
    .hugesupps-hero {
        min-height: 660px;
    }

    .hugesupps-hero-picture img {
        object-position: 74% 45%;
    }

    .hugesupps-hero-grid {
        gap: 80px;
    }

    .hugesupps-hero-content {
        max-width: 660px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hugesupps-category-card:hover .hugesupps-category-image,
    .hugesupps-product-card:hover .hugesupps-product-img,
    .hugesupps-product-actions .button:hover,
    .hugesupps-social-links a:hover {
        transform: none;
    }
}

/* Single product gallery placeholder */
.hugesupps-product-gallery .woocommerce-product-gallery__image--placeholder img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.hugesupps-product-gallery .onsale {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #fff;
}

.hugesupps-product-gallery {
    position: relative;
}

/* Responsive cart refinements */
@media (max-width: 1100px) {
    .woocommerce-cart .woocommerce-cart-form {
        border-radius: var(--hs-radius-sm);
    }

    .woocommerce-cart-form table.shop_table,
    .woocommerce-cart-form table.shop_table thead,
    .woocommerce-cart-form table.shop_table tbody,
    .woocommerce-cart-form table.shop_table th,
    .woocommerce-cart-form table.shop_table td,
    .woocommerce-cart-form table.shop_table tr {
        display: block;
    }

    .woocommerce-cart-form table.shop_table thead {
        display: none;
    }

    .woocommerce-cart-form table.shop_table tbody tr {
        position: relative;
        padding: 16px;
        border-bottom: 1px solid var(--hs-border);
    }

    .woocommerce-cart-form table.shop_table tbody tr:last-child {
        border-bottom: none;
    }

    .woocommerce-cart-form table.shop_table td {
        padding: 4px 0;
        border: none;
        text-align: left;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.product-thumbnail {
        display: block !important;
        float: left;
        margin-right: 16px;
        margin-bottom: 8px;
    }

    .woocommerce-cart-form table.shop_table td.product-thumbnail img {
        width: 80px;
        height: 80px;
    }

    .woocommerce-cart-form table.shop_table td.product-name {
        padding-right: 36px;
        margin-bottom: 8px;
        font-size: 15px;
    }

    .woocommerce-cart-form table.shop_table td.product-name::before,
    .woocommerce-cart-form table.shop_table td.product-remove::before,
    .woocommerce-cart-form table.shop_table td.product-thumbnail::before {
        display: none;
    }

    .woocommerce-cart-form table.shop_table td.product-remove {
        position: absolute;
        top: 12px;
        right: 12px;
        width: auto;
        padding: 0;
    }

    .woocommerce-cart-form table.shop_table td.product-price,
    .woocommerce-cart-form table.shop_table td.product-quantity,
    .woocommerce-cart-form table.shop_table td.product-subtotal {
        clear: left;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .woocommerce-cart-form table.shop_table td.product-price::before,
    .woocommerce-cart-form table.shop_table td.product-quantity::before,
    .woocommerce-cart-form table.shop_table td.product-subtotal::before {
        content: attr(data-title);
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--hs-text-muted);
    }

    .woocommerce-cart-form table.shop_table td.actions {
        clear: both;
        padding: 16px 0 0;
        border-top: 1px solid var(--hs-border);
    }

    .woocommerce-cart-form .actions .coupon,
    .woocommerce-cart-form .actions .button[name="update_cart"] {
        width: 100%;
    }

    /* Remove default colon from responsive product-table labels */
    .woocommerce-cart-form table.shop_table td::before {
        content: attr(data-title) !important;
    }

    .woocommerce-cart-form .actions .coupon input.input-text,
    .woocommerce-cart-form .actions .button {
        flex: 1 1 auto;
        width: 100%;
    }

    .woocommerce-cart .cart-collaterals {
        padding: 24px;
    }

    .woocommerce-checkout .col2-set,
    #order_review {
        padding: 24px;
    }

    #order_review_heading {
        padding: 20px 24px;
    }

    .woocommerce-MyAccount-content {
        padding: 24px;
    }
}


/* ============================================================
   Category navigation dropdowns
   ============================================================ */

.nav-menu .menu-item-has-children {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu .menu-item-has-children > a {
    flex: 1 1 auto;
}

.dropdown-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--hs-radius-xs);
    color: var(--hs-text-secondary);
    cursor: pointer;
    transition: color var(--hs-transition), background var(--hs-transition), border-color var(--hs-transition);
}

.dropdown-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform var(--hs-transition);
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
    color: var(--hs-text);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--hs-border);
    outline: none;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    max-width: calc(100vw - 40px);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    background: rgba(8, 11, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius-sm);
    box-shadow: var(--hs-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1001;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    width: 100%;
}

.sub-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.01em;
    color: var(--hs-text-secondary);
    border-radius: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sub-menu a:hover,
.sub-menu a:focus,
.sub-menu .current-menu-item a,
.sub-menu .current_page_item a {
    color: var(--hs-text);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

/* Ensure the dropdown can be reached when moving the cursor down. */
.menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
    pointer-events: none;
}

/* Mobile dropdowns */
@media (max-width: 1023px) {
    .nav-menu .menu-item-has-children {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

    .nav-menu .menu-item-has-children > a {
        flex: 1 1 auto;
        min-width: 0;
    }

    .dropdown-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        margin-left: 6px;
        flex: 0 0 auto;
    }

    .menu-item-has-children.sub-menu-open .dropdown-toggle svg {
        transform: rotate(180deg);
    }

    .sub-menu {
        position: static;
        display: none;
        width: 100%;
        max-width: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-left: 2px solid var(--hs-border);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: hidden;
        transform: none;
        padding: 4px 0 4px 12px;
        margin: 4px 0 4px 14px;
    }

    .sub-menu.toggled {
        display: block;
        visibility: visible;
    }

    .sub-menu a {
        padding: 10px 14px;
        white-space: normal;
    }

    .menu-item-has-children::after {
        display: none;
    }
}

/* ============================================================
   Breadcrumbs on category archives
   ============================================================ */

.hugesupps-breadcrumb-wrap {
    padding-top: 18px;
    padding-bottom: 18px;
}

.hugesupps-breadcrumb {
    font-size: 13px;
    color: var(--hs-text-muted);
}

.hugesupps-breadcrumb a {
    color: var(--hs-text-secondary);
    text-decoration: none;
    transition: color var(--hs-transition);
}

.hugesupps-breadcrumb a:hover,
.hugesupps-breadcrumb a:focus {
    color: var(--hs-text);
}

.hugesupps-breadcrumb-sep {
    margin: 0 8px;
    color: var(--hs-text-muted);
}

/* Strip default colon from responsive cart-totals labels */
@media (max-width: 768px) {
    .woocommerce-cart .cart_totals table.shop_table_responsive td::before {
        content: attr(data-title) !important;
    }
}

/* Checkout: stack first/last name fields on very small screens */
@media (max-width: 639px) {
    body.woocommerce-checkout .form-row-first,
    body.woocommerce-checkout .form-row-last {
        width: 100% !important;
        float: none !important;
    }
}

/* Policy / info page alignment and readability */
.hugesupps-info-page .entry-header {
    text-align: center;
}

.hugesupps-info-page .entry-title {
    margin: 0 0 40px;
}

.hugesupps-policy-page {
    max-width: none;
    margin: 0;
    color: var(--hs-text-secondary);
    line-height: 1.7;
}

.hugesupps-policy-page h1,
.hugesupps-policy-page h2,
.hugesupps-policy-page h3 {
    color: var(--hs-text);
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.hugesupps-policy-page h1 {
    font-size: 32px;
    margin-top: 0;
}

.hugesupps-policy-page h2 {
    font-size: 24px;
}

.hugesupps-policy-page h3 {
    font-size: 18px;
}

.hugesupps-policy-page p {
    margin-bottom: 16px;
}

.hugesupps-policy-page ul,
.hugesupps-policy-page ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.hugesupps-policy-page li {
    margin-bottom: 8px;
}

.hugesupps-policy-page a {
    color: var(--hs-blue);
    text-decoration: underline;
}

.hugesupps-policy-page a:hover,
.hugesupps-policy-page a:focus {
    color: var(--hs-blue-bright);
}

@media (max-width: 768px) {
    .hugesupps-policy-page h1 {
        font-size: 26px;
    }

    .hugesupps-policy-page h2 {
        font-size: 20px;
    }

    .hugesupps-policy-page {
        padding: 0 4px;
    }
}

/* Blog */
.hugesupps-blog-hero {
    padding: 80px 0 48px;
    text-align: center;
    border-bottom: 1px solid var(--hs-border);
    margin-bottom: 48px;
}

.hugesupps-blog-hero-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--hs-text);
}

.hugesupps-blog-hero-subtitle {
    font-size: 18px;
    color: var(--hs-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.hugesupps-post-card-meta {
    font-size: 13px;
    color: var(--hs-text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

/* Single post */
.hugesupps-single-post {
    padding-bottom: 80px;
}

.hugesupps-post-hero {
    padding: 40px 0 48px;
    border-bottom: 1px solid var(--hs-border);
    margin-bottom: 48px;
}

.hugesupps-post-hero-inner {
    display: grid;
    gap: 40px;
    align-items: center;
}

.hugesupps-post-hero-image {
    border-radius: var(--hs-radius);
    overflow: hidden;
    border: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow-lg);
}

.hugesupps-post-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hugesupps-post-hero-content {
    max-width: 800px;
}

.hugesupps-post-hero-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--hs-text);
    margin-bottom: 20px;
}

.hugesupps-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--hs-text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.hugesupps-post-meta a {
    color: var(--hs-blue-bright);
}

.hugesupps-post-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.75;
    color: var(--hs-text-secondary);
}

.hugesupps-post-body h2,
.hugesupps-post-body h3 {
    color: var(--hs-text);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hugesupps-post-body h2 {
    font-size: 28px;
}

.hugesupps-post-body h3 {
    font-size: 22px;
}

.hugesupps-post-body p {
    margin-bottom: 24px;
}

.hugesupps-post-body ul,
.hugesupps-post-body ol {
    margin-bottom: 24px;
    padding-left: 28px;
}

.hugesupps-post-body li {
    margin-bottom: 10px;
}

.hugesupps-post-body a {
    color: var(--hs-blue-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hugesupps-post-body strong {
    color: var(--hs-text);
    font-weight: 700;
}

.hugesupps-post-cta {
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    padding: 32px;
    margin-top: 48px;
    text-align: center;
}

.hugesupps-post-cta p {
    font-size: 20px;
    color: var(--hs-text);
    margin-bottom: 20px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .hugesupps-post-hero-inner {
        grid-template-columns: 1.2fr 1fr;
    }

    .hugesupps-blog-hero-title {
        font-size: 64px;
    }

    .hugesupps-post-hero-title {
        font-size: 52px;
    }
}
