/**
 * SeatMassage Brand Styles
 * 
 * Brand-specific CSS overrides for seatmassage.com
 * These styles complement the base theme and apply only to SeatMassage pages
 * 
 * Colors:
 * - Primary: #0F5E5B
 * - Charcoal: #0A403E
 * - Accent Slate: #2A8E89
 * - Deep Charcoal: #072E2C
 */

/* ==========================================================================
   BRAND COLORS OVERRIDE
   ========================================================================== */

.brand-seatmassage {
    --brand-primary: #0F5E5B;
    --brand-secondary: #0A403E;
    --brand-accent: #2A8E89;
    
    /* Brand-specific variables */
    --seatmassage-orange: #0F5E5B;
    --seatmassage-orange-light: #2A8E89;
    --seatmassage-orange-dark: #072E2C;
    --seatmassage-charcoal: #0A403E;
    --seatmassage-gradient: linear-gradient(135deg, #2A8E89 0%, #0F5E5B 100%);
}

/* Global input focus - clean, no box-shadow */
.brand-seatmassage input:focus,
.brand-seatmassage textarea:focus,
.brand-seatmassage select:focus {
    box-shadow: none !important;
    outline: none;
}

/* ==========================================================================
   BRAND LOGO (SVG-based)
   ========================================================================== */

/* Header logo sizing */
.brand-seatmassage .site-logo {
    max-width: 170px;
    height: auto;
}

/* Landing page hero logo */
.brand-seatmassage .landing-page-v2 .site-logo {
    max-width: 175px;
    height: auto;
}

/* Footer logo sizing */
.brand-seatmassage .footer-logo {
    height: 25px;
    width: auto;
    margin-bottom: var(--space-4);
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .brand-seatmassage .site-logo {
        max-width: 140px;
    }
}

/* ==========================================================================
   TYPOGRAPHY OVERRIDES
   ========================================================================== */

.brand-seatmassage h1,
.brand-seatmassage h2,
.brand-seatmassage .hero-title {
    color: var(--seatmassage-charcoal);
}

.brand-seatmassage .hero-subtitle {
    color: var(--color-text-secondary);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.brand-seatmassage .btn-primary,
.brand-seatmassage .btn-accent {
    background: var(--seatmassage-gradient);
    border: none;
    color: #FFFFFF;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: all var(--transition-base);
}

.brand-seatmassage .btn-primary:hover,
.brand-seatmassage .btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.brand-seatmassage .btn-outline {
    border-color: var(--seatmassage-orange);
    color: var(--seatmassage-orange);
}

.brand-seatmassage .btn-outline:hover {
    background: var(--seatmassage-orange);
    color: #FFFFFF;
}

/* Button Price Styling - ensure all text inside buttons is white */
.brand-seatmassage .btn-primary .woocommerce-Price-amount,
.brand-seatmassage .btn-accent .woocommerce-Price-amount,
.brand-seatmassage .btn-primary del,
.brand-seatmassage .btn-accent del,
.brand-seatmassage .btn-primary del .woocommerce-Price-amount,
.brand-seatmassage .btn-accent del .woocommerce-Price-amount,
.brand-seatmassage .btn-primary ins,
.brand-seatmassage .btn-accent ins,
.brand-seatmassage .btn-primary ins .woocommerce-Price-amount,
.brand-seatmassage .btn-accent ins .woocommerce-Price-amount,
.brand-seatmassage .btn-primary bdi,
.brand-seatmassage .btn-accent bdi,
.brand-seatmassage .btn-primary .amount,
.brand-seatmassage .btn-accent .amount {
    color: #FFFFFF !important;
    text-decoration: inherit;
}

/* Strikethrough price inside button */
.brand-seatmassage .btn-primary del,
.brand-seatmassage .btn-accent del {
    opacity: 0.7;
    text-decoration: line-through;
}

/* Sale price inside button */
.brand-seatmassage .btn-primary ins,
.brand-seatmassage .btn-accent ins {
    text-decoration: none;
    font-weight: 700;
}

/* Currency symbol */
.brand-seatmassage .btn-primary .woocommerce-Price-currencySymbol,
.brand-seatmassage .btn-accent .woocommerce-Price-currencySymbol {
    color: #FFFFFF !important;
}

/* Contact form submit button - match add-to-cart hover style */
.brand-seatmassage .contact-form-wrapper .wpcf7-form input[type="submit"]:hover {
    background: linear-gradient(135deg, #0F5E5B 0%, #072E2C 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.brand-seatmassage .hero,
.brand-seatmassage .section-gradient {
    background: linear-gradient(180deg, 
        rgba(95, 116, 142, 0.14) 0%, 
        rgba(0, 0, 0, 0.06) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

.brand-seatmassage .hero-logo {
    margin-bottom: var(--space-6);
}

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */

.brand-seatmassage .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--seatmassage-charcoal);
}

.brand-seatmassage .trust-badge span:first-child {
    color: var(--seatmassage-orange);
    font-weight: 600;
}

.brand-seatmassage .trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

/* ==========================================================================
   STAR RATINGS
   ========================================================================== */

.brand-seatmassage .star-rating {
    color: #FFB800;
    font-size: var(--text-lg);
    letter-spacing: 2px;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.brand-seatmassage .card {
    border: 1px solid rgba(0, 0, 0, 0.12);
    transition: all var(--transition-base);
}

.brand-seatmassage .card:hover {
    border-color: var(--seatmassage-orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.brand-seatmassage .card-bordered {
    border: 2px solid rgba(17, 19, 22, 0.2);
}

/* ==========================================================================
   SECTION BACKGROUNDS
   ========================================================================== */

.brand-seatmassage .section-light {
    background: linear-gradient(180deg, 
        rgba(95, 116, 142, 0.08) 0%, 
        rgba(255, 255, 255, 1) 100%
    );
}

.brand-seatmassage .section-primary {
    background: var(--seatmassage-gradient);
}

.brand-seatmassage .section-primary h2,
.brand-seatmassage .section-primary p {
    color: #FFFFFF;
}

/* CTA Button on colored background - Charcoal to stand out */
.brand-seatmassage .section-primary .btn,
.brand-seatmassage .section-primary .btn-white,
.brand-seatmassage .section-primary .btn-primary,
.brand-seatmassage .section-primary .btn-accent,
.brand-seatmassage .final-cta-section .btn,
.brand-seatmassage .final-cta-section .btn-white {
    background: var(--seatmassage-charcoal) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(61, 61, 61, 0.3);
}

.brand-seatmassage .section-primary .btn:hover,
.brand-seatmassage .section-primary .btn-white:hover,
.brand-seatmassage .section-primary .btn-primary:hover,
.brand-seatmassage .section-primary .btn-accent:hover,
.brand-seatmassage .final-cta-section .btn:hover,
.brand-seatmassage .final-cta-section .btn-white:hover {
    background: #2D2D2D !important;
    box-shadow: 0 6px 20px rgba(61, 61, 61, 0.4);
    transform: translateY(-2px);
}

.brand-seatmassage .final-cta-section .add_to_cart_button {
    display: block;
    max-width: 276px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.brand-seatmassage details summary {
    border-left: 3px solid transparent;
    transition: all var(--transition-base);
}

.brand-seatmassage details[open] summary {
    border-left-color: var(--seatmassage-orange);
    background: rgba(0, 0, 0, 0.03);
}

.brand-seatmassage details summary:hover {
    background: rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   FEATURE ICONS
   ========================================================================== */

.brand-seatmassage .feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.10);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    margin: 0 auto var(--space-4);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */


/* ==========================================================================
   GUARANTEE BADGE
   ========================================================================== */

.brand-seatmassage .guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: rgba(0, 0, 0, 0.07);
    border: 2px solid var(--seatmassage-orange);
    border-radius: var(--radius-xl);
}

.brand-seatmassage .guarantee-badge svg {
    color: var(--seatmassage-orange);
}

/* ==========================================================================
   PRICE DISPLAY
   ========================================================================== */

.brand-seatmassage .price-display {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--seatmassage-charcoal);
}

.brand-seatmassage .price-original {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    font-weight: 400;
}

/* Final CTA section - ensure strikethrough line matches text color */
.brand-seatmassage .final-cta-section .price-original {
    text-decoration-color: #0A403E;
}

.brand-seatmassage .price-discount {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--seatmassage-orange);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-left: var(--space-2);
}

/* ==========================================================================
   STICKY CTA (Mobile)
   ========================================================================== */

@media (max-width: 768px) {
    .brand-seatmassage .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #FFFFFF;
        padding: var(--space-4);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: var(--z-sticky);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--space-4);
    }
    
    .brand-seatmassage .sticky-cta .btn {
        flex: 1;
    }
    
    /* Add padding to body to account for sticky CTA */
    .brand-seatmassage.has-sticky-cta {
        padding-bottom: 80px;
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.brand-seatmassage .hero-product img {
    animation: float 4s ease-in-out infinite;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .brand-seatmassage .hero-product img {
        animation: none;
    }
}

/* ==========================================================================
   FOOTER - STEADYRELIEF BRAND
   Override Auvira's dark blue footer with SeatMassage charcoal
   ========================================================================== */

.brand-seatmassage .site-footer {
    background-color: #272727;
}

/* Footer links - use white instead of Auvira's slate gray */
.brand-seatmassage .site-footer .footer-link,
.brand-seatmassage .site-footer .footer-links a,
.brand-seatmassage .site-footer a {
    color: rgba(255, 255, 255, 0.8);
}

.brand-seatmassage .site-footer .footer-link:hover,
.brand-seatmassage .site-footer .footer-links a:hover,
.brand-seatmassage .site-footer .footer-legal-link:hover {
    color: #FFFFFF;
}

/* Footer headings */
.brand-seatmassage .site-footer .footer-heading {
    color: #FFFFFF;
}

/* Footer tagline and text */
.brand-seatmassage .site-footer .footer-tagline {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer bottom divider line */
.brand-seatmassage .site-footer .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.15);
}

/* Footer legal links */
.brand-seatmassage .site-footer .footer-legal-link {
    color: rgba(255, 255, 255, 0.6);
}

.brand-seatmassage .site-footer .footer-legal-link:hover {
    color: var(--seatmassage-orange);
}

/* Footer copyright */
.brand-seatmassage .site-footer .footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

/* Parent brand link */
.brand-seatmassage .footer-parent-link a {
    color: var(--seatmassage-orange);
}

.brand-seatmassage .footer-parent-link a:hover {
    color: var(--seatmassage-orange-light);
}

.brand-seatmassage .footer-parent-link {
    color: rgba(255, 255, 255, 0.8);
}

.brand-seatmassage .footer-parent-link .footer-parent-brand {
    color: #FFFFFF;
}

/* Trust badges in footer */
.brand-seatmassage .site-footer .footer-trust-badges {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   FUNNELKIT CART FOR WOOCOMMERCE - SIDE CART STYLING
   
   SeatMassage-specific side cart styling.
   FunnelKit uses CSS variables for theming. We override these variables.
   
   Key FunnelKit CSS Variables:
   --fkcart-primary-bg-color     : Primary button background (default: #0170b9)
   --fkcart-primary-font-color   : Primary button text color
   --fkcart-bg-color             : Cart background
   --fkcart-border-color         : Border color
   --fkcart-primary-text-color   : Main text color
   ========================================================================== */

/* ===== HIDE FLOATING CART BUTTON ===== */
body.brand-seatmassage .fkcart-toggler,
body.brand-seatmassage .fkcart-floating-icon {
    display: none !important;
}

/* ===== FUNNELKIT CSS VARIABLE OVERRIDES ===== */
/* Set at multiple levels to ensure inheritance */
body.brand-seatmassage,
body.brand-seatmassage #fkcart-modal,
body.brand-seatmassage .fkcart-modal {
    --fkcart-primary-bg-color: #0F5E5B !important;
    --fkcart-primary-font-color: #FFFFFF !important;
    --fkcart-bg-color: #FFFFFF !important;
    --fkcart-border-color: #E5E7EB !important; /* Keep neutral gray for borders */
    --fkcart-primary-text-color: #0A403E !important;
    --fkcart-secondary-text-color: #64748B !important;
    --fkcart-strike-through-price-text-color: #94A3B8 !important;
}

/* ===== CART HEADER ===== */
/* Match FunnelKit: body #fkcart-modal .fkcart-preview-ui .fkcart-slider-header */
body.brand-seatmassage #fkcart-modal .fkcart-preview-ui .fkcart-slider-header,
body.brand-seatmassage #fkcart-modal .fkcart-slider-header {
    background: linear-gradient(135deg, #2A8E89 0%, #0F5E5B 100%) !important;
}

body.brand-seatmassage #fkcart-modal .fkcart-preview-ui .fkcart-slider-header .fkcart-title,
body.brand-seatmassage #fkcart-modal .fkcart-preview-ui .fkcart-slider-heading,
body.brand-seatmassage #fkcart-modal .fkcart-slider-header .fkcart-title,
body.brand-seatmassage #fkcart-modal .fkcart-slider-heading {
    color: #FFFFFF !important;
}

/* Match FunnelKit: #fkcart-modal .fkcart-preview-ui .fkcart-slider-heading .fkcart-modal-close */
body.brand-seatmassage #fkcart-modal .fkcart-preview-ui .fkcart-slider-heading .fkcart-modal-close,
body.brand-seatmassage #fkcart-modal .fkcart-modal-close {
    color: #FFFFFF !important;
}

body.brand-seatmassage #fkcart-modal .fkcart-preview-ui .fkcart-modal-close svg,
body.brand-seatmassage #fkcart-modal .fkcart-preview-ui .fkcart-modal-close path,
body.brand-seatmassage #fkcart-modal .fkcart-modal-close svg,
body.brand-seatmassage #fkcart-modal .fkcart-modal-close path {
    fill: #FFFFFF !important;
    stroke: #FFFFFF !important;
}

/* ===== CHECKOUT BUTTON ===== */
/* Match FunnelKit's specificity with brand scope */
body.brand-seatmassage #fkcart-modal .fkcart-checkout-wrap #fkcart-checkout-button,
body.brand-seatmassage #fkcart-modal .fkcart-checkout-info #fkcart-checkout-button,
body.brand-seatmassage #fkcart-modal #fkcart-checkout-button,
body.brand-seatmassage .fkcart-modal #fkcart-checkout-button {
    background: linear-gradient(135deg, #2A8E89 0%, #0F5E5B 100%) !important;
    background-color: #0F5E5B !important;
    border: none !important;
    color: #FFFFFF !important;
}

body.brand-seatmassage #fkcart-modal .fkcart-checkout-wrap #fkcart-checkout-button:hover,
body.brand-seatmassage #fkcart-modal .fkcart-checkout-info #fkcart-checkout-button:hover,
body.brand-seatmassage #fkcart-modal #fkcart-checkout-button:hover {
    background: linear-gradient(135deg, #0F5E5B 0%, #072E2C 100%) !important;
    opacity: 1 !important;
}

body.brand-seatmassage #fkcart-modal #fkcart-checkout-button .fkcart-checkout--text,
body.brand-seatmassage #fkcart-modal #fkcart-checkout-button .fkcart-checkout--price,
body.brand-seatmassage #fkcart-modal #fkcart-checkout-button .fkcart-checkout--price *,
body.brand-seatmassage #fkcart-modal #fkcart-checkout-button .fkcart-checkout--icon,
body.brand-seatmassage #fkcart-modal #fkcart-checkout-button .fkcart-checkout--icon svg,
body.brand-seatmassage #fkcart-modal #fkcart-checkout-button .fkcart-checkout--icon path {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

/* ===== SECONDARY BUTTONS (Add to Cart, etc) ===== */
body.brand-seatmassage #fkcart-modal .fkcart-button {
    box-shadow: inset 0 0 0 1px #0F5E5B !important;
    color: #0F5E5B !important;
}

body.brand-seatmassage #fkcart-modal .fkcart-button:hover {
    background: rgba(0, 0, 0, 0.07) !important;
}

body.brand-seatmassage #fkcart-modal .fkcart-primary-button {
    background: #0F5E5B !important;
    color: #FFFFFF !important;
}

/* ===== COUPON AREA ===== */
/* Match FunnelKit's exact selector: body #fkcart-modal .fkcart-preview-ui .fkcart-coupon-area */
body.brand-seatmassage #fkcart-modal .fkcart-preview-ui .fkcart-coupon-area {
    border-bottom: 1px solid #E5E7EB !important;
    border-top: 1px solid #E5E7EB !important;
}

/* ===== COUPON BUTTON ===== */
body.brand-seatmassage #fkcart-modal .fkcart-coupon-button {
    background: #0F5E5B !important;
    border-color: #0F5E5B !important;
    color: #FFFFFF !important;
}

body.brand-seatmassage #fkcart-modal .fkcart-coupon-button:hover {
    background: #072E2C !important;
}

/* ===== PROGRESS BAR (Free Shipping) ===== */
/* Match FunnelKit: body #fkcart-modal .fkcart-preview-ui .fkcart-reward-panel */
body.brand-seatmassage #fkcart-modal .fkcart-preview-ui .fkcart-progress-wrap,
body.brand-seatmassage #fkcart-modal .fkcart-progress-wrap {
    background: rgba(0, 0, 0, 0.10) !important;
}

body.brand-seatmassage #fkcart-modal .fkcart-preview-ui .fkcart-reward-progress,
body.brand-seatmassage #fkcart-modal .fkcart-reward-progress {
    background: linear-gradient(135deg, #2A8E89 0%, #0F5E5B 100%) !important;
}

/* ===== CART FOOTER ===== */
/* Match FunnelKit: body #fkcart-modal .fkcart-preview-ui .fkcart-slider-footer */
body.brand-seatmassage #fkcart-modal .fkcart-preview-ui .fkcart-slider-footer,
body.brand-seatmassage #fkcart-modal .fkcart-slider-footer {
    background: #FAFBFC !important;
}

/* ===== QUANTITY SELECTOR ===== */
/* FunnelKit uses box-shadow for borders: #fkcart-modal .fkcart-quantity-selector */
body.brand-seatmassage #fkcart-modal .fkcart-quantity-selector {
    box-shadow: 0 0 0 1px #E5E7EB !important;
}

body.brand-seatmassage #fkcart-modal .fkcart-quantity-selector .fkcart-quantity-button {
    color: #0A403E !important;
}

body.brand-seatmassage #fkcart-modal .fkcart-quantity-selector .fkcart-quantity-button:hover {
    background: #F3F4F6 !important;
}

/* FunnelKit uses box-shadow for input border: #fkcart-modal .fkcart-quantity-selector .fkcart-quantity__input */
body.brand-seatmassage #fkcart-modal .fkcart-quantity-selector .fkcart-quantity__input {
    box-shadow: 0 0 0 1px #E5E7EB !important;
}

/* ===== ITEM BORDERS ===== */
/* Keep default border colors for items */

/* ===== LINKS ===== */
body.brand-seatmassage #fkcart-modal .fkcart-item-title a:hover {
    color: #0F5E5B !important;
}

/* ===== UPSELL SECTION ===== */
body.brand-seatmassage #fkcart-modal .fkcart-drawer-heading,
body.brand-seatmassage #fkcart-modal .fkcart-upsell-heading {
    color: #0A403E !important;
}

/* Keep default border for drawer */

/* ===== DISCOUNT BADGES ===== */
/* Keep default styling for discount badges */

/* ==========================================================================
   WOOCOMMERCE GENERAL OVERRIDES
   ========================================================================== */

/* Add to Cart Button (on landing page) */
.brand-seatmassage .add_to_cart_button,
.brand-seatmassage .single_add_to_cart_button,
.brand-seatmassage button.button.alt {
    background: linear-gradient(135deg, #2A8E89 0%, #0F5E5B 100%) !important;
    border: none !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.brand-seatmassage .add_to_cart_button:hover,
.brand-seatmassage .single_add_to_cart_button:hover {
    background: linear-gradient(135deg, #0F5E5B 0%, #072E2C 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

/* Price styling */
.brand-seatmassage .woocommerce-Price-amount {
    color: #0A403E !important;
}

.brand-seatmassage del .woocommerce-Price-amount {
    color: #94A3B8 !important;
}

.brand-seatmassage ins .woocommerce-Price-amount {
    color: #0F5E5B !important;
    font-weight: 700 !important;
}

/* ==========================================================================
   CHECKOUT PAGE BRANDING (Modern Auvira Checkout Template)
   ========================================================================== */

/* Override checkout CSS variables for SeatMassage brand */
.brand-seatmassage.auvira-checkout-page {
    --auvira-checkout-primary: #0F5E5B;
    --auvira-checkout-primary-dark: #072E2C;
    --auvira-checkout-accent: #0F5E5B;
    --auvira-checkout-accent-hover: #072E2C;
}

/* Place Order Button - SeatMassage gradient */
.brand-seatmassage .auvira-checkout-place-order-btn {
    background: linear-gradient(135deg, #2A8E89 0%, #0F5E5B 100%);
    filter: none;
}

.brand-seatmassage .auvira-checkout-place-order-btn:hover {
    background: linear-gradient(135deg, #0F5E5B 0%, #072E2C 100%);
    filter: none;
}

/* Modal Submit Button (Sign In) */
.brand-seatmassage .auvira-checkout-modal-submit {
    background: linear-gradient(135deg, #2A8E89 0%, #0F5E5B 100%);
    filter: none;
}

.brand-seatmassage .auvira-checkout-modal-submit:hover {
    background: linear-gradient(135deg, #0F5E5B 0%, #072E2C 100%);
    filter: none;
}

/* Coupon Apply Button */
.brand-seatmassage .auvira-checkout-coupon-form button {
    background: linear-gradient(135deg, #2A8E89 0%, #0F5E5B 100%);
    filter: none;
}

.brand-seatmassage .auvira-checkout-coupon-form button:hover {
    background: linear-gradient(135deg, #0F5E5B 0%, #072E2C 100%);
    filter: none;
}

/* Continue Shopping Button (on confirmation page) */
.brand-seatmassage .auvira-checkout-continue-btn {
    background: linear-gradient(135deg, #2A8E89 0%, #0F5E5B 100%);
    filter: none;
}

.brand-seatmassage .auvira-checkout-continue-btn:hover {
    background: linear-gradient(135deg, #0F5E5B 0%, #072E2C 100%);
    filter: none;
}

/* Form field focus states - clean, no colored border */
.brand-seatmassage.auvira-checkout-page .auvira-checkout-field input:focus,
.brand-seatmassage.auvira-checkout-page .auvira-checkout-field select:focus,
.brand-seatmassage.auvira-checkout-page .auvira-checkout-field textarea:focus {
    border-color: #e5e7eb;
    box-shadow: none;
    outline: none;
}

/* Modal input focus */
.brand-seatmassage .auvira-checkout-modal-field input:focus {
    border-color: #e5e7eb;
    box-shadow: none;
    outline: none;
}

/* Links and accents */
.brand-seatmassage .auvira-checkout-back-link:hover {
    color: var(--seatmassage-orange);
}

.brand-seatmassage .auvira-checkout-coupon-toggle {
    color: var(--seatmassage-orange);
}

.brand-seatmassage .auvira-checkout-login-trigger {
    color: var(--seatmassage-orange);
}

/* ==========================================================================
   ACCOUNT PAGE BRANDING (Modern Auvira Account Template)
   ========================================================================== */

/* Main Submit Button (Login, Register, Save, etc.) */
.brand-seatmassage .auvira-account-submit-btn {
    background: linear-gradient(135deg, #2A8E89 0%, #0F5E5B 100%);
    filter: none;
}

.brand-seatmassage .auvira-account-submit-btn:hover {
    background: linear-gradient(135deg, #0F5E5B 0%, #072E2C 100%);
    filter: none;
}

/* Primary Button */
.brand-seatmassage .auvira-account-btn-primary {
    background: linear-gradient(135deg, #2A8E89 0%, #0F5E5B 100%);
    filter: none;
}

.brand-seatmassage .auvira-account-btn-primary:hover {
    background: linear-gradient(135deg, #0F5E5B 0%, #072E2C 100%);
    filter: none;
}

/* Track Order Button */
.brand-seatmassage .auvira-account-btn-track {
    background: linear-gradient(135deg, #2A8E89 0%, #0F5E5B 100%);
}

.brand-seatmassage .auvira-account-btn-track:hover {
    background: linear-gradient(135deg, #0F5E5B 0%, #072E2C 100%);
}

/* Form field focus states - clean, no colored border */
.brand-seatmassage .auvira-account-form-group input:focus,
.brand-seatmassage .auvira-account-form-group select:focus,
.brand-seatmassage .auvira-account-form-group textarea:focus {
    border-color: #e5e7eb;
    box-shadow: none;
    outline: none;
}

/* Links */
.brand-seatmassage .auvira-account-back-link:hover {
    color: var(--seatmassage-orange);
}

.brand-seatmassage .auvira-account-lost-password a {
    color: var(--seatmassage-orange);
}

/* Nav card hover */
.brand-seatmassage .auvira-account-nav-card:hover {
    border-color: var(--seatmassage-orange);
}

.brand-seatmassage .auvira-account-nav-card:hover .auvira-account-nav-card-icon {
    background: var(--seatmassage-orange);
}

/* Action card hover */
.brand-seatmassage .auvira-account-action-card:hover {
    border-color: var(--seatmassage-orange);
}

/* ==========================================================================
   LEGACY CHECKOUT PAGE BRANDING (WooCommerce default)
   ========================================================================== */

.brand-seatmassage .woocommerce-checkout .woocommerce-checkout-payment {
    background: #FAFBFC !important;
    border-radius: 12px !important;
}

.brand-seatmassage .woocommerce-checkout #place_order {
    background: linear-gradient(135deg, #2A8E89 0%, #0F5E5B 100%) !important;
    border: none !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    padding: 16px 32px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.brand-seatmassage .woocommerce-checkout #place_order:hover {
    background: linear-gradient(135deg, #0F5E5B 0%, #072E2C 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

/* Form field focus states - clean, no colored border */
.brand-seatmassage .woocommerce-checkout input:focus,
.brand-seatmassage .woocommerce-checkout select:focus,
.brand-seatmassage .woocommerce-checkout textarea:focus {
    border-color: #e5e7eb !important;
    box-shadow: none !important;
    outline: none !important;
}

/* ==========================================================================
   CUSTOM SCROLLBAR - STEADYRELIEF BRAND
   Scoped to html.brand-seatmassage to avoid conflicts with other brands
   
   IMPORTANT: Chrome 121+ prioritizes scrollbar-color/scrollbar-width over
   ::-webkit-scrollbar pseudo-elements, which breaks hover states.
   We use @supports to isolate Firefox styles from Chrome/WebKit.
   ========================================================================== */

/* Webkit/Chrome scrollbar - must NOT have scrollbar-color set */
html.brand-seatmassage::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

html.brand-seatmassage::-webkit-scrollbar-track {
    background: #F9F9F9;
}

html.brand-seatmassage::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2A8E89 0%, #0F5E5B 100%);
    border-radius: 5px;
    border: 2px solid #F9F9F9;
}

html.brand-seatmassage::-webkit-scrollbar-thumb:hover {
    background: #072E2C;
    border-radius: 5px;
    border: 2px solid #F9F9F9;
}

html.brand-seatmassage::-webkit-scrollbar-corner {
    background: #F9F9F9;
}

/* Firefox scrollbar - only apply when webkit scrollbar is NOT supported */
@supports not selector(::-webkit-scrollbar) {
    html.brand-seatmassage {
        scrollbar-width: thin;
        scrollbar-color: #0F5E5B #F9F9F9;
    }
}

/* ==========================================================================
   FINAL CTA SECTION - Price Styling
   ========================================================================== */

.brand-seatmassage .final-cta-section .price-display,
.brand-seatmassage .final-cta-section .price-current,
.brand-seatmassage .final-cta-section .price-current .woocommerce-Price-amount,
.brand-seatmassage .final-cta-section .price-current .woocommerce-Price-currencySymbol,
.brand-seatmassage .final-cta-section .price-current bdi,
.brand-seatmassage .final-cta-section .price-current ins,
.brand-seatmassage .final-cta-section .price-current ins .woocommerce-Price-amount,
.brand-seatmassage .final-cta-section .price-original,
.brand-seatmassage .final-cta-section .price-original .woocommerce-Price-amount,
.brand-seatmassage .final-cta-section .price-original .woocommerce-Price-currencySymbol,
.brand-seatmassage .final-cta-section .price-original bdi,
.brand-seatmassage .final-cta-section .price-original del,
.brand-seatmassage .final-cta-section .price-original del .woocommerce-Price-amount {
    color: #FFFFFF !important;
}

.brand-seatmassage .final-cta-section .price-original {
    opacity: 0.72;
    text-decoration-color: rgba(255, 255, 255, 0.85) !important;
}

/* Trust/urgency lines - mobile fix for screens under 500px */
@media (max-width: 500px) {
    .brand-seatmassage p#urgency-line,
    .brand-seatmassage p#trust-line,
    .brand-seatmassage p#trust-line span,
    .brand-seatmassage p#trust-line svg,
    .brand-seatmassage p#urgency-line span,
    .brand-seatmassage p#urgency-line svg {
        display: inline-block !important;
        vertical-align: text-top;
    }
}

/* ==========================================================================
   DROPDOWN/SELECT STYLING
   ========================================================================== */

/* Native select styling - base styles */
.brand-seatmassage select {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md);
    color: #1f2937;
}

.brand-seatmassage select:focus {
    border-color: #e5e7eb !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Customizable select with appearance: base-select (Chrome 135+, Edge 135+) */
@supports (appearance: base-select) {
    .brand-seatmassage select,
    .brand-seatmassage select::picker(select) {
        appearance: base-select;
    }
    
    .brand-seatmassage select::picker(select) {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: var(--radius-md);
    }
    
    .brand-seatmassage select option {
        background: #ffffff;
        color: #1f2937;
        padding: 0.5rem 1rem;
    }
    
    .brand-seatmassage select option:checked,
    .brand-seatmassage select option:hover {
        background: #0F5E5B;
        color: #ffffff;
    }
}

/* Select2 dropdown styling (WooCommerce uses this for country/state) */
/* Select2 appends dropdown to body, need global selectors */
body.brand-seatmassage .select2-dropdown {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
}

body.brand-seatmassage .select2-search__field {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    color: #1f2937 !important;
}

body.brand-seatmassage .select2-selection__rendered {
    color: #1f2937 !important;
}

/* Select2 options - white default, brand color on hover */
body.brand-seatmassage .select2-results__option {
    background: #ffffff !important;
    color: #1f2937 !important;
}

body.brand-seatmassage .select2-results__option--highlighted,
body.brand-seatmassage .select2-results__option:hover,
body.brand-seatmassage .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: #0F5E5B !important;
    color: #ffffff !important;
}
