/* =============================================================================
   LIVESTOCK PERFORMANCE PRODUCTS — Homepage Clone
   Plugin:  livestock-homepage-clone
   Version: 1.1.0
   Scope:   All rules scoped to .lhc-homepage to avoid theme conflicts.
   ============================================================================= */

/* ---------------------------------------------------------------------------
   1. CSS Custom Properties
   --------------------------------------------------------------------------- */
.lhc-homepage {
    /* Colors — matches Shopify Dawn-style minimal palette */
    --lhc-black:        #121212;
    --lhc-dark:         #1a1a1a;
    --lhc-text:         #121212;
    --lhc-text-mid:     #6d6d6d;
    --lhc-text-light:   #949494;
    --lhc-white:        #ffffff;
    --lhc-bg-light:     #f4f4f0;
    --lhc-bg-alt:       #f0f0ec;
    --lhc-border:       #e3e3db;
    --lhc-sale-red:     #c90000;
    --lhc-soldout-gray: #b5b5b5;
    --lhc-dark-blue:    #0d47a1;
    --lhc-cart-bg:      #121212;
    --lhc-cart-hover:   #3d3d3d;

    /* Overlays */
    --lhc-overlay-hero:      rgba(0, 0, 0, 0.36);
    --lhc-overlay-browse:    rgba(0, 0, 0, 0.52);
    --lhc-overlay-banner:    rgba(0, 0, 0, 0.58);
    --lhc-overlay-precision: rgba(0, 0, 0, 0.48);

    /* Typography */
    --lhc-font-base: -apple-system, BlinkMacSystemFont, 'Helvetica Neue',
                     Helvetica, Arial, sans-serif;
    --lhc-font-heading: var(--lhc-font-base);

    /* Sizing */
    --lhc-container-max: 1200px;
    --lhc-container-px:  20px;
    --lhc-section-py:    60px;
    --lhc-card-radius:   0px;
    --lhc-btn-radius:    0px;

    /* Transitions */
    --lhc-ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --lhc-trans: 0.2s var(--lhc-ease);
}

/* ---------------------------------------------------------------------------
   2. Base Reset (scoped)
   --------------------------------------------------------------------------- */
.lhc-homepage *,
.lhc-homepage *::before,
.lhc-homepage *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lhc-homepage {
    font-family: var(--lhc-font-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--lhc-text);
    background: var(--lhc-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.lhc-homepage a {
    color: inherit;
    text-decoration: none;
}

.lhc-homepage button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.lhc-homepage ul,
.lhc-homepage ol {
    list-style: none;
}

/* ---------------------------------------------------------------------------
   3. Layout Utilities
   --------------------------------------------------------------------------- */
.lhc-container {
    width: 100%;
    max-width: var(--lhc-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--lhc-container-px);
    padding-right: var(--lhc-container-px);
}

/* ---------------------------------------------------------------------------
   4. Button System
   --------------------------------------------------------------------------- */
.lhc-btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    border-radius: var(--lhc-btn-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--lhc-trans),
                color var(--lhc-trans),
                border-color var(--lhc-trans);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}

/* Solid black */
.lhc-btn--dark {
    background: var(--lhc-black);
    color: var(--lhc-white);
    border-color: var(--lhc-black);
}
.lhc-btn--dark:hover {
    background: var(--lhc-cart-hover);
    border-color: var(--lhc-cart-hover);
}

/* White fill — used on dark banner backgrounds */
.lhc-btn--white {
    background: var(--lhc-white);
    color: var(--lhc-black);
    border-color: var(--lhc-white);
    font-weight: 700;
}
.lhc-btn--white:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.88);
}

/* White outline — used on hero overlay */
.lhc-btn--outline-white {
    background: transparent;
    color: var(--lhc-white);
    border-color: var(--lhc-white);
}
.lhc-btn--outline-white:hover {
    background: var(--lhc-white);
    color: var(--lhc-black);
}

/* Add to Cart / Choose Options */
.lhc-btn--cart {
    display: block;
    width: 100%;
    padding: 13px 16px;
    background: var(--lhc-cart-bg);
    color: var(--lhc-white);
    border-color: var(--lhc-cart-bg);
    font-size: 12px;
    letter-spacing: 0.09em;
    border-radius: 0;
    text-align: center;
}
.lhc-btn--cart:hover {
    background: var(--lhc-cart-hover);
    border-color: var(--lhc-cart-hover);
}

/* Sold Out */
.lhc-btn--soldout {
    display: block;
    width: 100%;
    padding: 13px 16px;
    background: var(--lhc-bg-light);
    color: var(--lhc-soldout-gray);
    border: 2px solid var(--lhc-border);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: not-allowed;
    opacity: 0.8;
}

/* Large variant */
.lhc-btn--lg {
    padding: 17px 44px;
    font-size: 14px;
}

/* ---------------------------------------------------------------------------
   5. Badges
   --------------------------------------------------------------------------- */
.lhc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 4px 9px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    line-height: 1;
}

.lhc-badge--sale {
    background: var(--lhc-sale-red);
    color: var(--lhc-white);
}

.lhc-badge--soldout {
    background: #4a4a4a;
    color: var(--lhc-white);
}

.lhc-badge--used {
    background: #e8a020;
    color: var(--lhc-white);
    border-radius: 6px;
}

/* ---------------------------------------------------------------------------
   6. Section Header
   --------------------------------------------------------------------------- */
.lhc-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--lhc-border);
}

.lhc-section-title {
    font-family: var(--lhc-font-heading);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    color: var(--lhc-dark);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.lhc-view-all-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lhc-text-mid);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--lhc-trans);
    white-space: nowrap;
    flex-shrink: 0;
}
.lhc-view-all-link:hover {
    color: var(--lhc-black);
}

/* ---------------------------------------------------------------------------
   7. Product Grid
   --------------------------------------------------------------------------- */
.lhc-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ---------------------------------------------------------------------------
   8. Product Card
   --------------------------------------------------------------------------- */
.lhc-product-card {
    background: var(--lhc-white);
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.lhc-product-card--soldout {
    opacity: 0.75;
}

.lhc-product-card__img-link {
    display: block;
    overflow: hidden;
    position: relative;
}

.lhc-product-card__img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--lhc-bg-light);
}

.lhc-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--lhc-ease);
}

/* Fix: two-class selector (0,2,0) beats the global .lhc-homepage img (0,1,1) rule
   that sets height:auto, causing cards to render at their natural image heights. */
.lhc-product-card__img-wrapper .lhc-product-card__img {
    height: 100%;
}

.lhc-product-card:hover .lhc-product-card__img {
    transform: scale(1.05);
}

.lhc-product-card__body {
    padding: 14px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-height: 0;
}

.lhc-product-card__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--lhc-dark);
}
.lhc-product-card__title a {
    color: inherit;
    transition: color var(--lhc-trans);
}
.lhc-product-card__title a:hover {
    color: var(--lhc-text-mid);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lhc-product-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.lhc-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--lhc-dark);
}

.lhc-price-from {
    font-size: 12px;
    font-weight: 400;
    color: var(--lhc-text-light);
}

.lhc-price-sale {
    font-size: 14px;
    font-weight: 600;
    color: var(--lhc-sale-red);
}

.lhc-price-original {
    font-size: 13px;
    font-weight: 400;
    color: var(--lhc-text-light);
    text-decoration: line-through;
}

.lhc-price-highlight {
    font-size: 18px;
    font-weight: 700;
    color: #e8a020;
}

/* Product card meta — SKU & excerpt */
.lhc-product-card__sku {
    font-size: 11px;
    color: var(--lhc-text-light);
    letter-spacing: 0.03em;
}

.lhc-product-card__excerpt {
    font-size: 12px;
    color: var(--lhc-text-mid);
    line-height: 1.4;
}

/* Two-button action row */
.lhc-product-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 8px;
}

.lhc-btn--atc {
    flex: 1;
    padding: 11px 8px;
    background: #003d7a !important;
    color: #ffffff !important;
    border: 2px solid #003d7a !important;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: background var(--lhc-trans), border-color var(--lhc-trans);
    white-space: nowrap;
    text-decoration: none;
}
.lhc-btn--atc:hover {
    background: #002b5c !important;
    border-color: #002b5c !important;
    color: #ffffff !important;
}

.lhc-btn--details {
    flex: 1;
    padding: 11px 8px;
    background: #c8a456;
    color: #ffffff;
    border: 2px solid #c8a456;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: background var(--lhc-trans), border-color var(--lhc-trans);
    white-space: nowrap;
    text-decoration: none;
}
.lhc-btn--details:hover {
    background: #b8944a;
    border-color: #b8944a;
    color: #ffffff;
}

/* ---------------------------------------------------------------------------
   9. Products Section Wrapper
   --------------------------------------------------------------------------- */
.lhc-products-section {
    padding: var(--lhc-section-py) 0;
    background: var(--lhc-white);
}

.lhc-products-section--alt {
    background: var(--lhc-bg-light);
}

.lhc-no-products {
    grid-column: 1 / -1;
    padding: 48px 0;
    text-align: center;
    color: var(--lhc-text-muted, #6b7280);
    font-size: 1rem;
}

/* ---------------------------------------------------------------------------
   10. Hero Section
   --------------------------------------------------------------------------- */
.lhc-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('https://www.livestockperformanceproducts.com/cdn/shop/files/A7R01587-1_6d7afd69-c540-4ca9-ba57-45ffddc4a689.jpg');
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    background-color: #0d0d0d;
}

.lhc-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--lhc-overlay-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px var(--lhc-container-px);
    width: 100%;
}

.lhc-hero__content {
    text-align: center;
    color: var(--lhc-white);
    max-width: 580px;
    animation: lhcFadeUp 0.6s var(--lhc-ease) both;
}

.lhc-hero__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 18px;
}

.lhc-hero__title {
    font-family: var(--lhc-font-heading);
    font-size: clamp(30px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--lhc-white);
    margin-bottom: 18px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.lhc-hero__subtitle {
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 36px;
    line-height: 1.55;
}

/* ---------------------------------------------------------------------------
   11. Browse Products CTA Section
   --------------------------------------------------------------------------- */
.lhc-browse-cta {
    position: relative;
    overflow: hidden;
}

.lhc-browse-cta__bg {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    background-image: url('https://www.livestockperformanceproducts.com/cdn/shop/files/new1.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    background-color: #3a4a28;
}

.lhc-browse-cta__overlay {
    position: absolute;
    inset: 0;
    background: var(--lhc-overlay-browse);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px var(--lhc-container-px);
}

.lhc-browse-cta__inner {
    text-align: center;
}

.lhc-browse-cta__title {
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--lhc-white);
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* ---------------------------------------------------------------------------
   12. Banner Sections (testimonial & precision)
   --------------------------------------------------------------------------- */
.lhc-banner {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

/* Customer success / testimonial — 4×3 show-ring photo grid background */
.lhc-banner--testimonial {
    min-height: 400px;
    background-image: url('https://www.livestockperformanceproducts.com/cdn/shop/files/Screen_Shot_2019-09-19_at_6.58.28_PM.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #888;
}

/* Precision Made Products — industrial CNC plasma cutter */
.lhc-banner--precision {
    min-height: 500px;
    background-image: url('https://www.livestockperformanceproducts.com/cdn/shop/files/5100_-_3_-_1200x800_03180df1-6994-45b3-9e9c-0a30be7d5657.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
}

.lhc-banner__overlay {
    position: absolute;
    inset: 0;
    background: var(--lhc-overlay-banner);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px var(--lhc-container-px);
    width: 100%;
}

.lhc-banner--precision .lhc-banner__overlay {
    background: var(--lhc-overlay-precision);
}

.lhc-banner__content {
    text-align: center;
    color: var(--lhc-white);
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.lhc-banner__title {
    font-size: clamp(24px, 3.2vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--lhc-white);
    margin-bottom: 16px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.lhc-banner__title--large {
    font-size: clamp(28px, 4.2vw, 56px);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.lhc-banner__subtitle {
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    margin-bottom: 32px;
}

.lhc-banner--testimonial .lhc-banner__subtitle {
    margin-bottom: 0;
}

/* ---------------------------------------------------------------------------
   13. Animations
   --------------------------------------------------------------------------- */
@keyframes lhcFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------------------------------------------------------------------
   14a. Treadmills Section — overrides
   --------------------------------------------------------------------------- */
.lhc-treadmills-section {
    background: #f0f0f5;
}

.lhc-treadmills-section .lhc-section-header {
    border-bottom: none;
    margin-bottom: 28px;
}

.lhc-treadmills-section .lhc-section-title {
    color: #2d2d72;
}

.lhc-treadmills-section .lhc-product-card {
    border: 1.5px solid #d8d8e0;
    border-radius: 14px;
    overflow: hidden;
}

.lhc-treadmills-section .lhc-product-card__img-wrapper {
    padding: 12px;
    background: #ffffff;
}

.lhc-treadmills-section .lhc-product-card__img {
    object-fit: cover;
}

.lhc-treadmills-section .lhc-product-card__body {
    padding: 14px 16px 18px;
}

.lhc-section-footer {
    text-align: center;
    margin-top: 36px;
}

.lhc-btn--view-all {
    display: inline-block;
    padding: 13px 44px;
    background: #4a7ce8;
    color: #ffffff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: background 0.2s ease;
}

.lhc-btn--view-all:hover {
    background: #3568d4;
    color: #ffffff;
}

/* ---------------------------------------------------------------------------
   14b. Supplements Section — card and button overrides
   --------------------------------------------------------------------------- */
.lhc-products-section--alt .lhc-product-card {
    border: 1.5px solid #d8d8e0;
    border-radius: 14px;
    overflow: hidden;
    background: var(--lhc-white);
}

.lhc-products-section--alt .lhc-product-card__img-wrapper {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: var(--lhc-white);
}

.lhc-products-section--alt .lhc-product-card__body {
    padding: 14px 16px 18px;
}


/* ---------------------------------------------------------------------------
   14. Responsive — Tablet (≤ 1024px)
   --------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .lhc-homepage {
        --lhc-section-py: 52px;
    }

    .lhc-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .lhc-hero {
        min-height: 500px;
    }

    .lhc-banner--precision {
        min-height: 420px;
    }
}

/* ---------------------------------------------------------------------------
   15. Responsive — Mobile (≤ 640px)
   --------------------------------------------------------------------------- */
@media (max-width: 640px) {
    .lhc-homepage {
        --lhc-section-py: 44px;
        --lhc-container-px: 16px;
    }

    .lhc-hero {
        min-height: 440px;
    }
    .lhc-hero__overlay {
        padding: 50px var(--lhc-container-px);
    }

    .lhc-browse-cta__bg {
        min-height: 230px;
    }
    .lhc-browse-cta__overlay {
        padding: 40px var(--lhc-container-px);
    }

    .lhc-section-header {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 22px;
    }

    .lhc-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .lhc-product-card__body {
        padding: 10px 0 14px;
    }

    .lhc-product-card__actions {
        flex-direction: column-reverse;
    }

    .lhc-banner {
        min-height: 320px;
    }
    .lhc-banner--precision {
        min-height: 380px;
    }
    .lhc-banner__overlay {
        padding: 50px var(--lhc-container-px);
    }
    .lhc-banner__subtitle br {
        display: none;
    }

    .lhc-btn {
        padding: 13px 24px;
    }
    .lhc-btn--lg {
        padding: 15px 34px;
    }
}

/* ---------------------------------------------------------------------------
   16. Reduced Motion
   --------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .lhc-homepage *,
    .lhc-homepage *::before,
    .lhc-homepage *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* =============================================================================
   17. Single Product Page
   ============================================================================= */

.lhc-single-product {
    padding: 40px 0 100px;
    background: var(--lhc-white);
}

/* Breadcrumb */
.lhc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--lhc-text-mid);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.lhc-breadcrumb a {
    color: var(--lhc-text-mid);
    text-decoration: none;
    transition: color var(--lhc-trans);
}

.lhc-breadcrumb a:hover {
    color: var(--lhc-black);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lhc-breadcrumb__sep {
    color: var(--lhc-border);
    font-size: 15px;
    line-height: 1;
    flex-shrink: 0;
}

/* Two-column layout */
.lhc-single-product__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ── Gallery Column ── */
.lhc-single-product__gallery {
    position: sticky;
    top: 32px;
    align-self: start;
}

/* Fix: two-class selector (0,2,0) beats the global .lhc-homepage img (0,1,1) rule
   that sets height:auto, preventing the image from filling its container. */
.lhc-single-product__main-img-wrap .lhc-single-product__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}

.lhc-single-product__main-img-wrap {
    width: 100%;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    background: var(--lhc-bg-light);
    border: 1px solid var(--lhc-border);
    border-radius: 12px;
}

.lhc-single-product__img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--lhc-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Thumbnails */
.lhc-single-product__thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.lhc-thumb {
    width: 76px;
    height: 76px;
    padding: 0;
    border: 2px solid var(--lhc-border);
    border-radius: 8px;
    cursor: pointer;
    background: var(--lhc-bg-light);
    overflow: hidden;
    flex-shrink: 0;
    transition: border-color var(--lhc-trans);
}

.lhc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lhc-thumb:hover {
    border-color: var(--lhc-black);
}

.lhc-thumb--active {
    border-color: var(--lhc-black);
    outline: 2px solid var(--lhc-black);
    outline-offset: 2px;
}

/* ── Info Column ── */

/* Category badge */
.lhc-single-product__category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lhc-text-mid);
    background: var(--lhc-bg-light);
    border: 1px solid var(--lhc-border);
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 14px;
}

.lhc-single-product__title {
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--lhc-black);
    margin-bottom: 20px;
}

.lhc-single-product__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--lhc-border);
    border-bottom: 1px solid var(--lhc-border);
    margin-bottom: 16px;
}

.lhc-single-product__price .lhc-price {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--lhc-black);
}

.lhc-single-product__price .lhc-price-from {
    font-size: 14px;
    font-weight: 400;
    color: var(--lhc-text-mid);
}

.lhc-single-product__sku {
    font-size: 12.5px;
    color: var(--lhc-text-mid);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lhc-single-product__sku span + span {
    color: var(--lhc-text);
    font-weight: 500;
}

/* CTA button */
.lhc-single-product__cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 50%;
    margin-bottom: 20px;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--lhc-dark-blue) !important;
    color: var(--lhc-white) !important;
    text-align: center;
    border: 2px solid var(--lhc-dark-blue) !important;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background var(--lhc-trans), color var(--lhc-trans),
                box-shadow var(--lhc-trans), transform var(--lhc-trans);
    cursor: pointer;
    text-decoration: none;
}

.lhc-single-product__cta:hover {
    background: #062d5f;
    border-color: #062d5f;
    color: var(--lhc-white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

/* Trust badges */
.lhc-trust-badges {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 12px;
    padding: 14px 16px;
    background: var(--lhc-bg-light);
    border: 1px solid var(--lhc-border);
    margin-bottom: 32px;
}

.lhc-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.lhc-trust-badge__icon {
    width: 20px;
    height: 20px;
    color: var(--lhc-text-mid);
    flex-shrink: 0;
}

.lhc-trust-badge__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lhc-text-mid);
    line-height: 1.3;
}

/* Description accordion */
.lhc-single-product__description {
    border-top: 1px solid var(--lhc-border);
    font-size: 15px;
    line-height: 1.8;
    color: var(--lhc-text);
}

.lhc-desc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lhc-black);
}

.lhc-desc-toggle__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.25s var(--lhc-ease);
}

.lhc-desc-toggle[aria-expanded="true"] .lhc-desc-toggle__icon {
    transform: rotate(180deg);
}

.lhc-desc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--lhc-ease);
    padding-bottom: 0;
}

.lhc-desc-body > * {
    padding-bottom: 20px;
}

.lhc-single-product__description p {
    margin-bottom: 1em;
}

.lhc-single-product__description p:last-child {
    margin-bottom: 0;
}

.lhc-single-product__description ul,
.lhc-single-product__description ol {
    list-style: initial;
    padding-left: 20px;
    margin-bottom: 1em;
}

.lhc-single-product__description li {
    margin-bottom: 0.4em;
}

/* Responsive — collapse to single column on tablet */
@media (max-width: 900px) {
    .lhc-single-product__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lhc-single-product__gallery {
        position: static;
    }
}

@media (max-width: 640px) {
    .lhc-single-product {
        padding: 24px 0 64px;
    }

    .lhc-single-product__title {
        font-size: 22px;
    }

    .lhc-single-product__price .lhc-price {
        font-size: 18px;
    }

    .lhc-thumb {
        width: 62px;
        height: 62px;
    }

    .lhc-trust-badges {
        gap: 8px;
        padding: 12px 10px;
    }
}

/* =============================================================================
   18. "You May Also Like" Section
   ============================================================================= */
.lhc-you-may-also-like {
    padding: 60px 0 80px;
    background: var(--lhc-bg-light);
    border-top: 1px solid var(--lhc-border);
}

.lhc-you-may-also-like .lhc-product-card {
    border: 1.5px solid #d8d8e0;
    border-radius: 14px;
    overflow: hidden;
}

.lhc-you-may-also-like .lhc-product-card__img-wrapper {
    padding: 12px;
    background: #ffffff;
}

.lhc-you-may-also-like .lhc-product-card__img {
    object-fit: cover;
}

.lhc-you-may-also-like .lhc-product-card__body {
    padding: 14px 16px 18px;
}

.lhc-product-card__cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lhc-text-light);
}

.lhc-product-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--lhc-bg-alt);
}

@media (max-width: 640px) {
    .lhc-you-may-also-like {
        padding: 44px 0 60px;
    }

    .lhc-you-may-also-like .lhc-section-header {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
    }

    .lhc-you-may-also-like .lhc-section-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* =============================================================================
   19. Shop All Page
   ============================================================================= */

/* Page header bar */
.lhc-shop-header {
    padding: 36px 0 28px;
    background: #f0f0f5;
    border-bottom: 1px solid var(--lhc-border);
}

.lhc-shop-header .lhc-breadcrumb {
    margin-bottom: 14px;
}

.lhc-shop-header__title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: #2d2d72;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 6px;
}

.lhc-shop-header__meta {
    font-size: 13.5px;
    color: var(--lhc-text-mid);
}

/* Outer section padding */
.lhc-shop-layout {
    padding: 40px 0 80px;
    background: var(--lhc-white);
}

/* Two-column body: sidebar | grid */
.lhc-shop-body {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Sidebar ── */
.lhc-shop-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
}

/* Mobile toggle — hidden on desktop */
.lhc-shop-filter-toggle {
    display: none;
    width: 100%;
    padding: 12px 16px;
    background: #f0f0f5;
    border: 1.5px solid #d8d8e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--lhc-dark);
    cursor: pointer;
    text-align: left;
    margin-bottom: 12px;
    align-items: center;
    justify-content: space-between;
    transition: background var(--lhc-trans), border-color var(--lhc-trans);
}

.lhc-shop-filter-toggle:hover {
    background: #e6e6ee;
    border-color: #b8b8cc;
}

.lhc-toggle-icon {
    flex-shrink: 0;
    transition: transform 0.25s var(--lhc-ease);
}

/* Filter panel */
.lhc-filter-panel {
    background: #ffffff;
    border: 1px solid #e2e2e8;
    border-radius: 12px;
    padding: 20px 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.lhc-filter-panel__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--lhc-dark);
    margin-bottom: 14px;
}

.lhc-filter-panel__divider {
    border: none;
    border-top: 1px solid #e8e8ee;
    margin: 0 0 16px 0;
}

/* Select wrapper */
.lhc-filter-select-wrap {
    position: relative;
}

.lhc-filter-select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 10px 36px 10px 12px;
    background: #f8f8fb;
    border: 1px solid #e0e0e8;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--lhc-dark);
    cursor: pointer;
    transition: border-color var(--lhc-trans), box-shadow var(--lhc-trans);
}

.lhc-filter-select:focus {
    outline: none;
    border-color: #2d2d72;
    box-shadow: 0 0 0 2px rgba(45, 45, 114, 0.1);
}

.lhc-filter-select-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--lhc-text-mid);
    display: flex;
    align-items: center;
}

/* Badge showing product count (mobile dropdown) */
.lhc-filter-count {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.09);
    flex-shrink: 0;
    margin-left: 8px;
    line-height: 1.6;
    min-width: 24px;
    text-align: center;
}

/* ── Category colour dot ── */
.lhc-cat-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Main area ── */
.lhc-shop-main {
    min-width: 0; /* prevent grid blowout */
}

/* Results bar above the grid */
.lhc-shop-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--lhc-border);
}

.lhc-shop-results-count {
    font-size: 13px;
    color: var(--lhc-text-mid);
    font-weight: 500;
}

/* 3-column grid inside the shop (overrides global 4-col) */
.lhc-shop-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Product card style inside shop page */
.lhc-shop-card {
    border: 1.5px solid #d8d8e0;
    border-radius: 14px;
    overflow: hidden;
}

.lhc-shop-card .lhc-product-card__img-wrapper {
    padding: 12px;
    background: #ffffff;
}

.lhc-shop-card .lhc-product-card__body {
    padding: 14px 16px 18px;
}

/* Empty state */
.lhc-shop-empty {
    text-align: center;
    padding: 64px 20px;
    color: var(--lhc-text-mid);
    font-size: 15px;
}

.lhc-shop-empty__icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 14px;
    opacity: 0.35;
    display: block;
}

/* ── Responsive: Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
    .lhc-shop-body {
        grid-template-columns: 200px 1fr;
        gap: 28px;
    }

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

/* ── Responsive: Portrait tablet / large mobile (≤ 768px) ── */
@media (max-width: 768px) {
    .lhc-shop-body {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .lhc-shop-sidebar {
        position: static;
        margin-bottom: 24px;
    }

    .lhc-filter-panel {
        display: block;
    }
}

/* ── Responsive: Mobile (≤ 640px) ── */
@media (max-width: 640px) {
    .lhc-shop-layout {
        padding: 24px 0 60px;
    }

    .lhc-shop-header {
        padding: 24px 0 18px;
    }

    .lhc-shop-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* =============================================================================
   20. About Us Page
   ============================================================================= */

/* --- About Hero --- */
.lhc-about-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('https://www.livestockperformanceproducts.com/cdn/shop/files/Screen_Shot_2019-09-19_at_6.58.28_PM.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
}

.lhc-about-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px var(--lhc-container-px);
    width: 100%;
}

.lhc-about-hero__content {
    text-align: center;
    color: var(--lhc-white);
    max-width: 640px;
    animation: lhcFadeUp 0.6s var(--lhc-ease) both;
}

/* --- Shared About Section Typography --- */
.lhc-about-section-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c8a456;
    margin-bottom: 14px;
}

.lhc-about-section-title {
    font-family: var(--lhc-font-heading);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--lhc-dark);
    margin-bottom: 24px;
}

.lhc-about-centered-header {
    text-align: center;
    margin-bottom: 52px;
}

/* Override inherited link color for dark buttons inside text-content sections */
.lhc-about-story .lhc-btn--dark {
    color: var(--lhc-white);
}

/* --- Our Story Section --- */
.lhc-about-story {
    padding: 80px 0;
    background: var(--lhc-white);
}

.lhc-about-story__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.lhc-about-story__img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 6 / 5;
    background: var(--lhc-bg-light);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.lhc-about-story__img-wrap .lhc-about-story__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lhc-about-story__content p {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--lhc-text-mid);
    margin-bottom: 18px;
}

.lhc-about-story__content p:last-of-type {
    margin-bottom: 32px;
}

/* --- Core Values Section --- */
.lhc-about-values {
    padding: 80px 0;
    background: var(--lhc-bg-light);
}

.lhc-about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lhc-about-value-card {
    background: var(--lhc-white);
    border: 1.5px solid var(--lhc-border);
    border-radius: 16px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow var(--lhc-trans), transform var(--lhc-trans);
}

.lhc-about-value-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.lhc-about-value-card__icon {
    width: 52px;
    height: 52px;
    background: #f0f0f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d2d72;
    flex-shrink: 0;
}

.lhc-about-value-card__icon svg {
    width: 26px;
    height: 26px;
}

.lhc-about-value-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--lhc-dark);
    line-height: 1.3;
}

.lhc-about-value-card__desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--lhc-text-mid);
}

/* --- Stats Section --- */
.lhc-about-stats {
    padding: 72px 0;
    background: #2d2d72;
}

.lhc-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.lhc-about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.lhc-about-stat:last-child {
    border-right: none;
}

.lhc-about-stat__number {
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 800;
    color: #c8a456;
    letter-spacing: -0.02em;
    line-height: 1;
}

.lhc-about-stat__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
}

/* --- Origin Banner --- */
.lhc-banner--origin {
    min-height: 460px;
    background-image: url('https://www.livestockperformanceproducts.com/cdn/shop/files/A7R01587-1_6d7afd69-c540-4ca9-ba57-45ffddc4a689.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-color: #0d0d0d;
}

.lhc-banner--origin .lhc-banner__overlay {
    background: rgba(0, 0, 0, 0.58);
}

/* --- Testimonials Section --- */
.lhc-about-testimonials {
    padding: 80px 0 90px;
    background: var(--lhc-white);
}

.lhc-about-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lhc-about-testimonial-card {
    background: var(--lhc-bg-light);
    border: 1.5px solid var(--lhc-border);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lhc-about-testimonial-card__icon {
    width: 32px;
    height: 32px;
    color: #c8a456;
    flex-shrink: 0;
}

.lhc-about-testimonial-card__quote {
    font-size: 15px;
    line-height: 1.72;
    color: var(--lhc-text);
    flex: 1;
    font-style: italic;
}

.lhc-about-testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 16px;
    border-top: 1px solid var(--lhc-border);
}

.lhc-about-testimonial-card__author strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--lhc-dark);
}

.lhc-about-testimonial-card__author span {
    font-size: 12px;
    color: var(--lhc-text-light);
    letter-spacing: 0.02em;
}

/* --- About Us Responsive: Tablet (≤ 1024px) --- */
@media (max-width: 1024px) {
    .lhc-about-story__layout {
        gap: 48px;
    }

    .lhc-about-values__grid {
        gap: 20px;
    }

    .lhc-about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lhc-about-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 28px 24px;
    }

    .lhc-about-stat:nth-child(3),
    .lhc-about-stat:nth-child(4) {
        border-bottom: none;
    }

    .lhc-about-testimonials__grid {
        gap: 18px;
    }
}

/* --- About Us Responsive: Portrait Tablet (≤ 768px) --- */
@media (max-width: 768px) {
    .lhc-about-story__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lhc-about-values__grid {
        grid-template-columns: 1fr;
    }

    .lhc-about-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

/* --- About Us Responsive: Mobile (≤ 640px) --- */
@media (max-width: 640px) {
    .lhc-about-hero {
        min-height: 380px;
    }

    .lhc-about-hero__overlay {
        padding: 60px var(--lhc-container-px);
    }

    .lhc-about-story {
        padding: 56px 0;
    }

    .lhc-about-values {
        padding: 56px 0;
    }

    .lhc-about-testimonials {
        padding: 56px 0 64px;
    }

    .lhc-about-stats {
        padding: 52px 0;
    }

    .lhc-about-value-card {
        padding: 28px 22px;
    }

    .lhc-about-testimonial-card {
        padding: 26px 22px;
    }

    .lhc-about-centered-header {
        margin-bottom: 36px;
    }
}

/* =============================================================================
   CONTACT PAGE
   Shortcode: [live_contact]   Sections: Hero → Contact Info + Form → CTA Banner
   ============================================================================= */

/* --- Contact Hero --- */
.lhc-contact-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('https://www.livestockperformanceproducts.com/cdn/shop/files/A7R01587-1_6d7afd69-c540-4ca9-ba57-45ffddc4a689.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
}

.lhc-contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px var(--lhc-container-px);
    width: 100%;
}

.lhc-contact-hero__content {
    text-align: center;
    color: var(--lhc-white);
    max-width: 640px;
}

/* --- Contact Main Section --- */
.lhc-contact-main {
    padding: 80px 0 90px;
    background: var(--lhc-white);
}

.lhc-contact-main__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* --- Contact Info Column --- */
.lhc-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lhc-contact-info__intro {
    font-size: 15px;
    line-height: 1.72;
    color: var(--lhc-text-mid);
    margin-top: 20px;
    margin-bottom: 36px;
}

/* --- Contact Cards (phone / email / address / hours) --- */
.lhc-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--lhc-border);
    margin-bottom: 36px;
}

.lhc-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--lhc-border);
}

.lhc-contact-card__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lhc-bg-light);
    border: 1px solid var(--lhc-border);
}

.lhc-contact-card__icon svg {
    width: 18px;
    height: 18px;
    color: var(--lhc-dark);
}

.lhc-contact-card__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 2px;
}

.lhc-contact-card__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--lhc-text-light);
}

.lhc-contact-card__value {
    font-size: 15px;
    color: var(--lhc-dark);
    line-height: 1.5;
    font-weight: 500;
}

a.lhc-contact-card__value:hover {
    color: var(--lhc-dark-blue);
    text-decoration: underline;
}

/* --- Social Links --- */
.lhc-contact-social {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lhc-contact-social__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--lhc-text-light);
}

.lhc-contact-social__links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lhc-contact-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--lhc-bg-light);
    border: 1px solid var(--lhc-border);
    color: var(--lhc-dark);
    transition: background var(--lhc-trans), color var(--lhc-trans), border-color var(--lhc-trans);
}

.lhc-contact-social__link svg {
    width: 18px;
    height: 18px;
}

.lhc-contact-social__link:hover {
    background: var(--lhc-black);
    border-color: var(--lhc-black);
    color: var(--lhc-white);
}

/* --- Contact Form Wrapper --- */
.lhc-contact-form-wrap {
    background: var(--lhc-bg-light);
    border: 1px solid var(--lhc-border);
    padding: 40px 36px;
}

/* --- Contact Form --- */
.lhc-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lhc-contact-form__row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lhc-contact-form__row--two {
    flex-direction: row;
    gap: 20px;
}

.lhc-contact-form__row--two .lhc-contact-form__field {
    flex: 1;
    min-width: 0;
}

.lhc-contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.lhc-contact-form__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lhc-dark);
}

.lhc-contact-form__required {
    color: var(--lhc-sale-red);
}

.lhc-contact-form__input {
    width: 100%;
    padding: 11px 14px;
    font-family: var(--lhc-font-base);
    font-size: 14px;
    color: var(--lhc-text);
    background: var(--lhc-white);
    border: 1.5px solid var(--lhc-border);
    border-radius: 0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color var(--lhc-trans);
}

.lhc-contact-form__input:focus {
    border-color: var(--lhc-dark);
}

.lhc-contact-form__input::placeholder {
    color: var(--lhc-soldout-gray);
}

.lhc-contact-form__input.lhc-contact-form__select {
    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 d='M1 1l5 5 5-5' stroke='%23121212' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.lhc-contact-form__textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.lhc-contact-form__footer {
    display: flex;
    align-items: center;
}

.lhc-contact-form__submit {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.lhc-contact-form__submit.lhc-btn--dark,
.lhc-contact-form__submit.lhc-btn--dark:hover {
    background: var(--lhc-black);
    border-color: var(--lhc-black);
    transition: none;
}

/* Spinner — hidden by default, shown when loading */
.lhc-contact-form__submit-spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: lhc-cf-spin 0.7s linear infinite;
}

@keyframes lhc-cf-spin {
    to { transform: rotate(360deg); }
}

.lhc-contact-form__submit--loading .lhc-contact-form__submit-spinner {
    display: block;
}

.lhc-contact-form__submit--loading .lhc-contact-form__submit-text {
    opacity: 0.75;
}

.lhc-contact-form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

/* Feedback message */
.lhc-contact-form__feedback {
    display: none;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.lhc-contact-form__feedback--success {
    display: block;
    background: #edf7ed;
    border-color: #2e7d32;
    color: #1b5e20;
}

.lhc-contact-form__feedback--error {
    display: block;
    background: #fdecea;
    border-color: var(--lhc-sale-red);
    color: #7f0000;
}

/* --- Contact Responsive: Tablet (≤ 960px) --- */
@media (max-width: 960px) {
    .lhc-contact-main__layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .lhc-contact-form-wrap {
        padding: 36px 28px;
    }
}

/* --- Contact Responsive: Mobile (≤ 640px) --- */
@media (max-width: 640px) {
    .lhc-contact-hero {
        min-height: 380px;
    }

    .lhc-contact-hero__overlay {
        padding: 60px var(--lhc-container-px);
    }

    .lhc-contact-main {
        padding: 56px 0 64px;
    }

    .lhc-contact-form__row--two {
        flex-direction: column;
        gap: 24px;
    }

    .lhc-contact-form-wrap {
        padding: 28px 20px;
    }
}

/* =============================================================================
   REVIEWS PAGE
   Shortcode: [live_reviews]
   Sections: Hero → Rating Summary → Reviews Grid → Write CTA → CTA Banner
   ============================================================================= */

/* --- Reviews Hero --- */
.lhc-reviews-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('https://www.livestockperformanceproducts.com/cdn/shop/files/Screen_Shot_2019-09-19_at_6.58.28_PM.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
}

.lhc-reviews-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px var(--lhc-container-px);
    width: 100%;
}

.lhc-reviews-hero__content {
    text-align: center;
    color: var(--lhc-white);
    max-width: 680px;
    animation: lhcFadeUp 0.6s var(--lhc-ease) both;
}

/* --- Stars --- */
.lhc-stars {
    display: inline-flex;
    gap: 2px;
    line-height: 1;
}

.lhc-star {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.lhc-star--filled {
    fill: #c8a456;
    color: #c8a456;
}

.lhc-star--empty {
    fill: #e0e0e0;
    color: #e0e0e0;
}

/* --- Rating Summary Section --- */
.lhc-reviews-summary {
    padding: 80px 0 72px;
    background: var(--lhc-white);
}

.lhc-reviews-summary__layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
}

.lhc-reviews-summary__score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 40px 32px;
    background: var(--lhc-bg-light);
    border: 1.5px solid var(--lhc-border);
    border-radius: 16px;
}

.lhc-reviews-summary__number {
    font-size: clamp(52px, 7vw, 80px);
    font-weight: 800;
    line-height: 1;
    color: var(--lhc-dark);
    letter-spacing: -0.03em;
}

.lhc-reviews-summary__stars .lhc-star {
    width: 26px;
    height: 26px;
}

.lhc-reviews-summary__count {
    font-size: 13px;
    font-weight: 500;
    color: var(--lhc-text-mid);
    letter-spacing: 0.02em;
}

/* Rating breakdown bars */
.lhc-reviews-summary__bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lhc-reviews-bar {
    display: grid;
    grid-template-columns: 36px 1fr 40px;
    align-items: center;
    gap: 12px;
}

.lhc-reviews-bar__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--lhc-text-mid);
    text-align: right;
    white-space: nowrap;
}

.lhc-reviews-bar__track {
    height: 10px;
    background: var(--lhc-bg-light);
    border: 1px solid var(--lhc-border);
    border-radius: 99px;
    overflow: hidden;
}

.lhc-reviews-bar__fill {
    height: 100%;
    background: #c8a456;
    border-radius: 99px;
    transition: width 0.6s var(--lhc-ease);
}

.lhc-reviews-bar__pct {
    font-size: 12px;
    font-weight: 600;
    color: var(--lhc-text-mid);
    text-align: right;
}

/* --- Reviews Grid Section --- */
.lhc-reviews-grid-section {
    padding: 72px 0 80px;
    background: var(--lhc-bg-light);
}

.lhc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* --- Review Card --- */
.lhc-review-card {
    background: var(--lhc-white);
    border: 1.5px solid var(--lhc-border);
    border-radius: 16px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow var(--lhc-trans), transform var(--lhc-trans);
}

.lhc-review-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.lhc-review-card__top {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
}

.lhc-review-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--lhc-dark);
    line-height: 1.3;
}

.lhc-review-card__body {
    font-size: 14px;
    line-height: 1.72;
    color: var(--lhc-text-mid);
    font-style: italic;
}

.lhc-review-card__footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--lhc-border);
}

.lhc-review-card__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lhc-review-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--lhc-dark);
}

.lhc-review-card__location {
    font-size: 12px;
    color: var(--lhc-text-light);
    letter-spacing: 0.02em;
}

.lhc-review-card__product {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lhc-text-mid);
}

.lhc-review-card__product svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: var(--lhc-text-light);
}

/* --- Write a Review CTA --- */
.lhc-reviews-write {
    position: relative;
    padding: 0;
    background-image: url('https://www.livestockperformanceproducts.com/cdn/shop/files/A7R01587-1_6d7afd69-c540-4ca9-ba57-45ffddc4a689.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-color: #2d2d72;
}

.lhc-reviews-write__overlay {
    position: relative;
    background: rgba(30, 30, 80, 0.88);
    padding: 90px var(--lhc-container-px);
}

.lhc-reviews-write__content {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lhc-about-section-eyebrow--light {
    color: #c8a456;
}

.lhc-reviews-write__title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--lhc-white);
}

.lhc-reviews-write__subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
}

/* --- Reviews Responsive: Tablet (≤ 1024px) --- */
@media (max-width: 1024px) {
    .lhc-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lhc-reviews-summary__layout {
        grid-template-columns: 240px 1fr;
        gap: 40px;
    }
}

/* --- Reviews Responsive: Portrait Tablet (≤ 768px) --- */
@media (max-width: 768px) {
    .lhc-reviews-summary__layout {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 480px;
    }

    .lhc-reviews-summary__score {
        padding: 28px 24px;
    }
}

/* --- Reviews Responsive: Mobile (≤ 640px) --- */
@media (max-width: 640px) {
    .lhc-reviews-hero {
        min-height: 380px;
    }

    .lhc-reviews-hero__overlay {
        padding: 60px var(--lhc-container-px);
    }

    .lhc-reviews-summary {
        padding: 56px 0 52px;
    }

    .lhc-reviews-grid-section {
        padding: 52px 0 60px;
    }

    .lhc-reviews-grid {
        grid-template-columns: 1fr;
    }

    .lhc-reviews-write__overlay {
        padding: 64px var(--lhc-container-px);
    }

    .lhc-review-card {
        padding: 24px 20px;
    }
}
