html {
    scroll-behavior: smooth;
}

body {
    background-color: #101510;
    color: #dfe4dc;
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: 18px;
    line-height: 1.65;
    padding-bottom: env(safe-area-inset-bottom);
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.bronze-metallic-gradient {
    background: linear-gradient(135deg, #FF6700 0%, #FF8533 45%, #FF6700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-bronze {
    background: #FF6700;
    color: #1a0800;
}

.cta-bronze:hover {
    background: #FF8533;
}

.stealth-border {
    border-color: rgba(142, 146, 139, 0.2);
}

.hunter-green-bg {
    background-color: #2d3b2d;
}

.page-pad {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .page-pad {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .page-pad {
        padding-left: 64px;
        padding-right: 64px;
    }
}

.reveal {
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.is-hidden {
    opacity: 0;
    transform: translateY(2rem);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .reveal,
    .reveal.is-hidden,
    .reveal.is-visible {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

.page-hero {
    background:
        linear-gradient(180deg, rgba(16, 21, 16, 0.72) 0%, rgba(16, 21, 16, 0.92) 100%),
        url("../images/hero.jpg") center / cover no-repeat;
}

.instruction-step {
    counter-increment: climb-step;
}

.instruction-step::before {
    content: counter(climb-step, decimal-leading-zero);
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #FF6700;
    margin-bottom: 0.75rem;
}

.instructions-list {
    counter-reset: climb-step;
}

.nav-link-active {
    color: #FF6700 !important;
    font-weight: 700;
    border-bottom: 1px solid #FF6700;
    padding-bottom: 0.25rem;
}

.form-field {
    width: 100%;
    background: #0b0f0b;
    border: 1px solid rgba(68, 72, 66, 0.45);
    color: #dfe4dc;
    padding: 0.75rem 1rem;
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.form-field:focus {
    outline: none;
    border-color: #FF6700;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(68, 72, 66, 0.45);
    background: #181d18;
}

.qty-control button {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dfe4dc;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.qty-control button:hover {
    color: #FF6700;
    background: rgba(223, 142, 64, 0.08);
}

.qty-control input {
    width: 3rem;
    height: 2.5rem;
    text-align: center;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(68, 72, 66, 0.45);
    border-right: 1px solid rgba(68, 72, 66, 0.45);
    color: #dfe4dc;
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-badge {
    position: absolute;
    top: -0.15rem;
    right: -0.15rem;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: #FF6700;
    color: #1a0800;
    font-family: "Oswald", sans-serif;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-badge.is-empty {
    display: none;
}

.breadcrumb a:hover {
    color: #FF6700;
}

/* -----------------------------------------------------------------
 * WooCommerce
 * --------------------------------------------------------------- */

.hsusa-wc-notices {
    max-width: 1280px;
    margin: 0 auto;
}

.hsusa-wc-notices:empty {
    display: none;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    background: #1c211c;
    border: 1px solid rgba(68, 72, 66, 0.45);
    border-left: 3px solid #FF6700;
    color: #dfe4dc;
    padding: 0.9rem 1.25rem;
    margin: 0 0 0.75rem;
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: 14px;
}

.woocommerce-error {
    border-left-color: #e2685a;
}

.woocommerce-error li,
.woocommerce-message li,
.woocommerce-info li {
    list-style: none;
    margin: 0;
}

.woocommerce-error .button,
.woocommerce-message .button,
.woocommerce-info .button {
    background: #FF6700;
    color: #1a0800;
    padding: 0.4rem 1rem;
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* Checkout / form fields — mirrors .form-field for core WC markup. */
.woocommerce form .form-row {
    margin: 0 0 1rem;
}

.woocommerce form .form-row-wide {
    grid-column: 1 / -1;
}

.woocommerce form label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c4c8c0;
}

.woocommerce form label.woocommerce-form__label-for-checkbox,
.woocommerce form label.checkbox {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: none;
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: 14px;
}

.woocommerce form .required {
    color: #FF6700;
    text-decoration: none;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce form .form-row .select2-selection {
    width: 100%;
    background: #0b0f0b;
    border: 1px solid rgba(68, 72, 66, 0.45);
    color: #dfe4dc;
    padding: 0.75rem 1rem;
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    outline: none;
    border-color: #FF6700;
}

.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
    border-color: #e2685a;
}

.woocommerce form .input-checkbox {
    width: 1rem;
    height: 1rem;
    accent-color: #FF6700;
}

.select2-container .select2-selection--single {
    height: auto !important;
    background: #0b0f0b !important;
    border: 1px solid rgba(68, 72, 66, 0.45) !important;
    border-radius: 0 !important;
    padding: 0.75rem 1rem !important;
}

.select2-container .select2-selection__rendered {
    color: #dfe4dc !important;
    padding: 0 !important;
    line-height: 1.5 !important;
}

.select2-container .select2-selection__arrow {
    height: 100% !important;
}

.select2-dropdown {
    background: #181d18 !important;
    border: 1px solid rgba(68, 72, 66, 0.45) !important;
    color: #dfe4dc !important;
}

.select2-results__option--highlighted {
    background: #FF6700 !important;
    color: #1a0800 !important;
}

/* Checkout coupon */
.hsusa-checkout-coupon .woocommerce-info {
    margin-bottom: 0;
}

.hsusa-checkout-coupon .showcoupon {
    color: #FF6700;
    text-decoration: none;
    font-weight: 600;
}

.hsusa-checkout-coupon .showcoupon:hover {
    color: #fff;
}

.hsusa-coupon-form .input-text {
    width: 100%;
    background: #0b0f0b;
    border: 1px solid rgba(68, 72, 66, 0.45);
    color: #dfe4dc;
    padding: 0.75rem 1rem;
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.hsusa-coupon-form .input-text:focus {
    outline: none;
    border-color: #FF6700;
}

.hsusa-coupon-form button[name="apply_coupon"] {
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}

/* Payment methods list */
.wc_payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wc_payment_methods .wc_payment_method {
    border: 1px solid rgba(68, 72, 66, 0.45);
    background: #181d18;
    padding: 0.9rem 1rem;
    margin-bottom: 0.6rem;
}

.wc_payment_methods .payment_box {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(68, 72, 66, 0.3);
    font-size: 13px;
    color: #dfe4dc;
}

.wc_payment_methods label {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    text-transform: none !important;
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif !important;
    font-size: 14px !important;
    color: #dfe4dc;
    cursor: pointer;
}

/* Checkout payment / privacy / terms — keep readable on dark surfaces */
.woocommerce-checkout-payment,
.woocommerce-checkout-payment p,
.hsusa-checkout-secure-note {
    color: #dfe4dc;
}

.woocommerce-checkout-payment .woocommerce-info,
.woocommerce-checkout-payment .woocommerce-info p {
    color: #dfe4dc;
}

.hsusa-checkout-terms,
.hsusa-checkout-terms p,
.hsusa-place-order .woocommerce-privacy-policy-text,
.hsusa-place-order .woocommerce-privacy-policy-text p,
.woocommerce-checkout .woocommerce-privacy-policy-text,
.woocommerce-checkout .woocommerce-privacy-policy-text p,
.woocommerce-checkout .woocommerce-terms-and-conditions,
.woocommerce-checkout .woocommerce-terms-and-conditions p {
    color: #dfe4dc !important;
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: 13px;
    line-height: 1.6;
}

.hsusa-checkout-terms a,
.hsusa-place-order .woocommerce-privacy-policy-text a,
.woocommerce-checkout .woocommerce-privacy-policy-text a,
.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text a {
    color: #FF6700 !important;
}

.hsusa-checkout-terms a:hover,
.hsusa-place-order .woocommerce-privacy-policy-text a:hover,
.woocommerce-checkout .woocommerce-privacy-policy-text a:hover {
    color: #FF8533 !important;
}

.hsusa-place-order #place_order {
    border: 0;
    cursor: pointer;
    color: #1a0800;
}

/* Price formatting (sale strike-through) */
.woocommerce del {
    color: #8e928b;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.woocommerce ins {
    text-decoration: none;
}

/* Add-to-cart loading state */
.add_to_cart_button.loading,
.single_add_to_cart_button.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Category / pagination links */
.cat-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.cat-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(68, 72, 66, 0.45);
    color: #dfe4dc;
    font-family: "Oswald", sans-serif;
    font-size: 12px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.cat-pagination .page-numbers:hover {
    color: #FF6700;
    border-color: rgba(223, 142, 64, 0.6);
}

.cat-pagination .page-numbers.current {
    background: #FF6700;
    color: #1a0800;
    border-color: #FF6700;
}

/* Single product copy — keep short/long descriptions readable on dark bg. */
.hsusa-product-excerpt,
.hsusa-product-copy {
    color: #dfe4dc;
}

.hsusa-product-excerpt p,
.hsusa-product-copy p {
    margin: 0 0 0.75rem;
    color: inherit;
}

.hsusa-product-excerpt p:last-child,
.hsusa-product-copy p:last-child {
    margin-bottom: 0;
}

.hsusa-product-excerpt a,
.hsusa-product-copy a {
    color: #FF6700;
}

/* Auth / Login — reinforce layout + kill browser autofill washout */
.woocommerce .hsusa-auth,
.hsusa-auth {
    width: 100%;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.woocommerce .hsusa-auth--split,
.hsusa-auth--split {
    max-width: 56rem;
}

.woocommerce .hsusa-auth-panel,
.hsusa-auth-panel {
    background: #1c211c;
    border: 1px solid rgba(68, 72, 66, 0.3);
    padding: 1.75rem 1.5rem;
}

@media (min-width: 640px) {
    .woocommerce .hsusa-auth-panel,
    .hsusa-auth-panel {
        padding: 2.25rem;
    }
}

.hsusa-auth .form-row {
    margin: 0 !important;
}

.hsusa-auth-input,
.hsusa-auth input.input-text,
.hsusa-auth input.woocommerce-Input--text,
.woocommerce .hsusa-auth input[type="text"],
.woocommerce .hsusa-auth input[type="email"],
.woocommerce .hsusa-auth input[type="password"] {
    width: 100% !important;
    max-width: 100% !important;
    background-color: #0b0f0b !important;
    border: 1px solid rgba(68, 72, 66, 0.45) !important;
    color: #dfe4dc !important;
    padding: 0.85rem 1rem !important;
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
}

.hsusa-auth-input:focus,
.hsusa-auth input.input-text:focus,
.woocommerce .hsusa-auth input:focus {
    outline: none !important;
    border-color: #FF6700 !important;
}

.hsusa-auth input:-webkit-autofill,
.hsusa-auth input:-webkit-autofill:hover,
.hsusa-auth input:-webkit-autofill:focus,
.hsusa-auth input:-webkit-autofill:active {
    -webkit-text-fill-color: #dfe4dc !important;
    caret-color: #dfe4dc;
    transition: background-color 99999s ease-in-out 0s;
    -webkit-box-shadow: 0 0 0 1000px #0b0f0b inset !important;
    box-shadow: 0 0 0 1000px #0b0f0b inset !important;
}

.hsusa-auth button.button,
.hsusa-auth .woocommerce-button {
    border: 0 !important;
    cursor: pointer;
    color: #1a0800 !important;
}

.hsusa-auth .woocommerce-privacy-policy-text {
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: 13px;
    color: #c4c8c0;
    line-height: 1.5;
}

.hsusa-auth .woocommerce-privacy-policy-text a {
    color: #FF6700;
}

/* My Account */
.woocommerce-MyAccount-content table,
.account-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: 14px;
}

.woocommerce-MyAccount-content th,
.woocommerce-MyAccount-content td {
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(68, 72, 66, 0.3);
    color: #dfe4dc;
}

.woocommerce-MyAccount-content th {
    color: #c4c8c0;
    font-family: "Oswald", sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.woocommerce-MyAccount-content a {
    color: #FF6700;
}

.woocommerce-MyAccount-content a:hover {
    color: #FF8533;
}

.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content input[type="submit"] {
    background: linear-gradient(135deg, #FF6700 0%, #FF8533 100%);
    color: #1a0800;
    border: 0;
    padding: 0.75rem 1.5rem;
    font-family: "Oswald", sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.woocommerce-MyAccount-content fieldset {
    border: 1px solid rgba(68, 72, 66, 0.45);
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.woocommerce-MyAccount-content legend {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    color: #ffffff;
    padding: 0 0.5rem;
}

/* Contact form notices + captcha */
.hsusa-contact-notice {
    padding: 0.9rem 1.1rem;
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid rgba(68, 72, 66, 0.45);
}

.hsusa-contact-notice--success {
    border-left: 3px solid #FF6700;
    background: #181d18;
    color: #dfe4dc;
}

.hsusa-contact-notice--error {
    border-left: 3px solid #e2685a;
    background: #181d18;
    color: #dfe4dc;
}

.hsusa-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.hsusa-captcha {
    margin-top: 0.25rem;
}

.hsusa-captcha input {
    margin-top: 0.75rem;
}

/* CMS / legal pages */
.hsusa-cms-content {
    color: #dfe4dc;
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

.hsusa-cms-content > *:first-child {
    margin-top: 0;
}

.hsusa-cms-content h2,
.hsusa-cms-content h3,
.hsusa-cms-content h4 {
    font-family: "Oswald", sans-serif;
    color: #ffffff;
    margin: 2rem 0 0.75rem;
    line-height: 1.25;
}

.hsusa-cms-content h2 {
    font-size: 1.75rem;
}

.hsusa-cms-content h3 {
    font-size: 1.35rem;
}

.hsusa-cms-content p,
.hsusa-cms-content ul,
.hsusa-cms-content ol {
    margin: 0 0 1rem;
    color: #dfe4dc;
}

.hsusa-cms-content ul,
.hsusa-cms-content ol {
    padding-left: 1.25rem;
}

.hsusa-cms-content li {
    margin-bottom: 0.4rem;
}

.hsusa-cms-content a {
    color: #FF6700;
}

.hsusa-cms-content a:hover {
    color: #FF8533;
}

.hsusa-cms-content strong {
    color: #ffffff;
}

/* -----------------------------------------------------------------
 * Logos — oval clip hides the square plate; hero/footer render white
 * --------------------------------------------------------------- */

.hsusa-header-logo,
.hsusa-footer-logo,
.hsusa-hero-logo {
    background: transparent !important;
    border-radius: 50%;
    clip-path: ellipse(49.5% 49.5% at 50% 50%);
}

.hsusa-header-logo {
    filter: none;
}

.hsusa-hero-logo,
.hsusa-footer-logo {
    filter: brightness(0) invert(1);
}

.hsusa-hero-logo {
    filter: brightness(0) invert(1) drop-shadow(0 18px 36px rgba(0, 0, 0, 0.45));
}

/* -----------------------------------------------------------------
 * Mobile-first readability
 * Tiny utilities (10–14px) become phone-readable; desktop stays tighter.
 * --------------------------------------------------------------- */

@media (max-width: 767px) {
    body {
        font-size: 18px;
        line-height: 1.65;
    }

    .text-\[10px\],
    .text-\[11px\] {
        font-size: 14px !important;
        line-height: 1.45;
    }

    .text-xs {
        font-size: 0.9375rem !important;
        line-height: 1.45;
    }

    .text-sm {
        font-size: 1.0625rem !important;
        line-height: 1.65;
    }

    .text-base {
        font-size: 1.125rem !important;
        line-height: 1.65;
    }

    .text-lg {
        font-size: 1.25rem !important;
        line-height: 1.7;
    }

    .text-xl {
        font-size: 1.375rem !important;
        line-height: 1.4;
    }

    .text-label-sm,
    .font-label-sm {
        letter-spacing: 0.08em;
    }

    .text-label-sm {
        font-size: 15px;
        line-height: 1.4;
    }

    .text-body-md {
        font-size: 18px;
        line-height: 1.65;
    }

    .text-body-lg {
        font-size: 20px;
        line-height: 1.7;
    }

    .hsusa-cms-content {
        font-size: 18px;
    }

    .hsusa-cms-content h2 {
        font-size: 2rem;
    }

    .hsusa-cms-content h3 {
        font-size: 1.5rem;
    }

    .woocommerce form label {
        font-size: 14px;
    }

    .woocommerce-MyAccount-content table,
    .account-table,
    .woocommerce-error,
    .woocommerce-message,
    .woocommerce-info,
    .hsusa-contact-notice,
    .hsusa-auth .woocommerce-privacy-policy-text,
    .hsusa-checkout-terms,
    .hsusa-checkout-terms p,
    .hsusa-place-order .woocommerce-privacy-policy-text,
    .woocommerce-checkout .woocommerce-privacy-policy-text,
    .woocommerce-checkout .woocommerce-privacy-policy-text p {
        font-size: 17px;
    }

    .cat-pagination .page-numbers {
        font-size: 15px;
        min-width: 2.75rem;
        height: 2.75rem;
    }

    #mobile-menu {
        font-size: 1.125rem;
    }

    .hsusa-header-nav {
        padding-left: 0.55rem;
    }

    .hsusa-header-logo {
        margin-left: -0.15rem;
    }

    .hsusa-header-shop {
        font-size: 12px !important;
        letter-spacing: 0.03em;
        line-height: 1.2;
        min-height: 2.5rem;
        margin-left: 0.45rem;
        padding-left: 0.45rem;
        padding-right: 0.45rem;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }
}
