@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
    /* Core palette — inspired by LABEL SHYNOVA brand identity */
    --ls-ivory: #F7F3EA;          /* warm cream page base */
    --ls-cream: #EFE6D3;          /* slightly deeper cream for sections */
    --ls-sand: #E6DBC3;           /* luxe sand */
    --ls-navy: #0E3142;           /* brand navy (from visiting card) */
    --ls-navy-deep: #0A2432;      /* deeper navy for footer */
    --ls-navy-soft: #1B4356;      /* softened navy for hovers */
    --ls-gold: #C9A169;           /* brand gold */
    --ls-gold-soft: #D9B584;      /* lighter gold */
    --ls-gold-deep: #A88247;      /* deeper gold */
    --ls-ink: #14212A;            /* nearly-black body text */
    --ls-muted: #6B6558;          /* muted warm taupe */
    --ls-line: rgba(14, 49, 66, 0.16);
    --ls-line-gold: rgba(201, 161, 105, 0.35);
}

/* Color Utilities for JS toggling */
.bg-navy { background-color: var(--ls-navy) !important; }
.text-ivory { color: var(--ls-ivory) !important; }
.border-navy { border-color: var(--ls-navy) !important; }
.bg-ivory { background-color: var(--ls-ivory) !important; }
.text-navy { color: var(--ls-navy) !important; }

/* Out of Stock Variation Button */
.shynova-oos {
    opacity: 0.35 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    text-decoration: line-through !important;
    border-color: rgba(14, 49, 66, 0.1) !important;
    background: rgba(14, 49, 66, 0.03) !important;
    position: relative !important;
    overflow: hidden !important;
}
.shynova-oos::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top right,
        transparent calc(50% - 0.5px),
        var(--ls-navy) calc(50% - 0.5px),
        var(--ls-navy) calc(50% + 0.5px),
        transparent calc(50% + 0.5px)
    );
    opacity: 0.25;
    pointer-events: none;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Manrope', -apple-system, sans-serif;
    background: var(--ls-ivory);
    color: var(--ls-ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'ss01', 'cv11';
    letter-spacing: -0.005em;
}

.font-serif-display {
    font-family: 'Fraunces', 'Times New Roman', serif;
    font-optical-sizing: auto;
    font-variation-settings: "SOFT" 50, "WONK" 0;
    letter-spacing: -0.025em;
}

.font-sans-refined { font-family: 'Manrope', sans-serif; }

/* Gold foil text */
.text-gold {
    color: var(--ls-gold-deep);
    background: linear-gradient(90deg, var(--ls-gold-deep), var(--ls-gold), var(--ls-gold-soft), var(--ls-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtle grain overlay */
.grain::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none !important;
    z-index: 1;
    opacity: 0.045;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Editorial link underline */
.ed-link {
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    transition: color 280ms ease;
}
.ed-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    height: 1px;
    width: 100%;
    background: currentColor;
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 420ms cubic-bezier(.2,.8,.2,1);
}
.ed-link:hover::after {
    transform-origin: left;
    animation: ed-link-sweep 640ms cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes ed-link-sweep {
    0% { transform-origin: right; transform: scaleX(1); }
    50% { transform-origin: right; transform: scaleX(0); }
    51% { transform-origin: left; transform: scaleX(0); }
    100% { transform-origin: left; transform: scaleX(1); }
}

/* Buttons */
.btn-navy {
    background: var(--ls-navy);
    color: var(--ls-ivory);
    padding: 15px 30px;
    font-size: 11.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 320ms ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--ls-navy);
    position: relative;
    overflow: hidden;
}
.btn-navy:hover {
    background: var(--ls-navy-deep);
    border-color: var(--ls-gold);
    color: var(--ls-gold-soft);
}
.btn-navy:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-gold {
    background: var(--ls-gold);
    color: var(--ls-navy-deep);
    padding: 15px 30px;
    font-size: 11.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 320ms ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--ls-gold);
}
.btn-gold:hover {
    background: var(--ls-gold-deep);
    border-color: var(--ls-gold-deep);
    color: var(--ls-ivory);
}

.btn-ghost {
    background: transparent;
    color: var(--ls-navy);
    padding: 15px 30px;
    font-size: 11.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 320ms ease;
    border: 1px solid var(--ls-navy);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.btn-ghost:hover {
    background: var(--ls-navy);
    color: var(--ls-gold-soft);
}

.btn-ghost-gold {
    background: transparent;
    color: var(--ls-gold-soft);
    padding: 15px 30px;
    font-size: 11.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 320ms ease;
    border: 1px solid var(--ls-gold);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.btn-ghost-gold:hover {
    background: var(--ls-gold);
    color: var(--ls-navy-deep);
}

/* Featured Products Carousel */
#featured-products {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}
#featured-products::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* Snap scrolling alignment */
.snap-start {
    scroll-snap-align: start;
}

/* Product image */
.product-img-wrap {
    overflow: hidden;
    background: var(--ls-cream);
    position: relative;
}
.product-img {
    transition: transform 900ms cubic-bezier(.2,.8,.2,1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-img-wrap:hover .product-img { transform: scale(1.04); }

/* Gold hairline */
.gold-rule {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--ls-gold) 20%, var(--ls-gold) 80%, transparent);
    width: 100%;
}
.gold-rule-short {
    height: 1px;
    width: 48px;
    background: var(--ls-gold);
}

/* Reveal on load */
@keyframes rise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 900ms cubic-bezier(.2,.8,.2,1) both; }
.rise-delay-1 { animation-delay: 80ms; }
.rise-delay-2 { animation-delay: 200ms; }
.rise-delay-3 { animation-delay: 320ms; }
.rise-delay-4 { animation-delay: 440ms; }
.rise-delay-5 { animation-delay: 560ms; }

/* Marquee */
[data-testid="top-marquee"] {
    display: block;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.marquee-track {
    animation: marquee 45s linear infinite;
    white-space: nowrap;
    display: inline-flex;
}

::selection {
    background: var(--ls-gold);
    color: var(--ls-navy-deep);
}

/* Shadcn palette overrides — maps to navy+gold */
@layer base {
    :root {
        --background: 42 38% 94%;
        --foreground: 202 32% 12%;
        --card: 42 38% 94%;
        --card-foreground: 202 32% 12%;
        --popover: 42 38% 94%;
        --popover-foreground: 202 32% 12%;
        --primary: 202 65% 16%;
        --primary-foreground: 42 38% 94%;
        --secondary: 40 36% 86%;
        --secondary-foreground: 202 65% 16%;
        --muted: 40 36% 86%;
        --muted-foreground: 35 13% 38%;
        --accent: 36 44% 60%;
        --accent-foreground: 202 65% 16%;
        --destructive: 0 60% 40%;
        --destructive-foreground: 42 38% 94%;
        --border: 202 30% 16% / 0.14;
        --input: 202 30% 16% / 0.16;
        --ring: 36 44% 60%;
        --radius: 0px;
    }
}

@layer base {
    * { border-color: hsl(var(--border) / 0.14); }
    body { 
        background-color: hsl(var(--background));
        color: hsl(var(--foreground));
    }
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Clean up WooCommerce Mini-Cart UI */
.woocommerce-mini-cart__buttons { display: none !important; }
.woocommerce-mini-cart__total { 
    border-top: none !important; 
    padding: 0 !important; 
    margin-bottom: 2rem !important;
    display: none !important; /* We use our own total */
}
.woocommerce-mini-cart-item {
    border-bottom: 1px solid var(--ls-line) !important;
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.woocommerce-mini-cart-item a.remove {
    color: var(--ls-gold) !important;
    font-size: 1.5rem !important;
}
.woocommerce-mini-cart-item .quantity {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    opacity: 0.6 !important;
}

/* Premium My Account Refinement */
.woocommerce-account-dashboard-wrapper {
    background: var(--ls-ivory);
}

.woocommerce-account .woocommerce-MyAccount-content {
    background: rgba(247, 243, 234, 0.9) !important;
}

@media (max-width: 1024px) {
    .woocommerce-account .woocommerce-MyAccount-navigation-wrapper {
        display: none !important;
    }
}

.woocommerce-account .woocommerce-MyAccount-navigation-wrapper {
    background: #0a2432;
    border-right: 1px solid rgba(14, 49, 66, 0.05);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 70%;
}

.woocommerce-MyAccount-navigation ul li a {
    color: var(--ls-ivory);
    opacity: 0.4;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    color: var(--ls-gold) !important;
    opacity: 1 !important;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    opacity: 1;
}

/* Heading & Text Highlights */
.woocommerce-account .woocommerce-MyAccount-content h1,
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-MyAccount-dashboard h2 {
    color: var(--ls-navy) !important;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.woocommerce-account .woocommerce-MyAccount-content a {
    color: var(--ls-navy);
    text-decoration: none;
    border-bottom: 1px solid rgba(14, 49, 66, 0.15);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
    color: var(--ls-gold-deep);
    border-bottom-color: var(--ls-gold-deep);
}

/* Sidebar Navigation - Sophisticated */
.woocommerce-MyAccount-navigation ul li a {
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
}

.woocommerce-MyAccount-navigation ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--ls-gold);
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.woocommerce-MyAccount-navigation ul li.is-active a::after {
    width: 100%;
}

/* Dashboard Cards - Elevated */
.woocommerce-account .woocommerce-MyAccount-dashboard .grid a {
    background: #ffffff;
    border: 1px solid rgba(14, 49, 66, 0.04) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    border-bottom: none !important;
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.woocommerce-account .woocommerce-MyAccount-dashboard .grid a:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 49, 66, 0.06);
    border-color: var(--ls-gold-soft) !important;
}

.woocommerce-account .woocommerce-MyAccount-dashboard .grid a svg {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.woocommerce-account .woocommerce-MyAccount-dashboard .grid a:hover svg {
    transform: scale(1.1) rotate(-5deg);
}

/* --- ORDER DETAILS PAGE (Frozen & Specific) --- */
.woocommerce-view-order .woocommerce-MyAccount-content table.shop_table {
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin-bottom: 60px !important;
}

.woocommerce-view-order .woocommerce-MyAccount-content table.shop_table thead tr {
    background: transparent !important;
    border-bottom: 1px solid var(--ls-navy) !important;
}

.woocommerce-view-order .woocommerce-MyAccount-content table.shop_table thead th {
    color: var(--ls-navy) !important;
    opacity: 0.5;
    text-transform: uppercase !important;
    font-size: 9px !important;
    letter-spacing: 0.3em !important;
    padding: 12px 24px !important;
    border: none !important;
}

.woocommerce-view-order .woocommerce-MyAccount-content table.shop_table tbody td,
.woocommerce-view-order .woocommerce-MyAccount-content table.shop_table tfoot td,
.woocommerce-view-order .woocommerce-MyAccount-content table.shop_table tfoot th {
    padding: 32px 24px !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(14, 49, 66, 0.05) !important;
    vertical-align: middle !important;
}

.woocommerce-view-order .product-image { width: 100px !important; text-align: left !important; }
.woocommerce-view-order .product-name { text-align: left !important; }
.woocommerce-view-order .product-total { text-align: center !important; }
.woocommerce-view-order .product-qty { text-align: right !important; }

/* --- ORDERS LIST PAGE (Backtracked & Stable) --- */
.woocommerce-orders table.shop_table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    width: 100% !important;
    background: var(--ls-ivory) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid rgba(14, 49, 66, 0.05) !important;
}

.woocommerce-orders table.shop_table thead tr {
    background: var(--ls-navy-deep) !important;
}

.woocommerce-orders table.shop_table thead th {
    color: var(--ls-gold) !important;
    padding: 20px !important;
    font-size: 10px !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
}

.woocommerce-orders table.shop_table tr,
.woocommerce-orders table.shop_table td,
.woocommerce-orders table.shop_table td:first-child,
.woocommerce-orders table.shop_table .woocommerce-orders-table__cell {
    background: transparent !important;
}

.woocommerce-orders table.shop_table tbody td {
    padding: 20px !important;
    color: var(--ls-navy) !important;
    border-bottom: 1px solid rgba(14, 49, 66, 0.03) !important;
}

.woocommerce-orders .woocommerce-button {
    background: var(--ls-navy) !important;
    color: var(--ls-ivory) !important;
    padding: 8px 16px !important;
    font-size: 10px !important;
    border-radius: 4px !important;
    margin-right: 12px !important;
    margin-bottom: 6px !important;
    display: inline-block !important;
}

.woocommerce-orders .woocommerce-button:last-child {
    margin-right: 0 !important;
}

/* Circular Imagery */
.woocommerce-view-order .order-product-image {
    width: 64px !important;
    height: 64px !important;
    object-fit: cover !important;
    border-radius: 100% !important; /* Circular */
    background: var(--ls-cream) !important;
    border: 1px solid rgba(14, 49, 66, 0.05) !important;
}

/* Typography Elevation */
.woocommerce-view-order .woocommerce-MyAccount-content table.shop_table .product-name,
.woocommerce-view-order .woocommerce-MyAccount-content table.shop_table .product-name a {
    font-family: 'Manrope', sans-serif !important;
    font-size: 14px !important;
    letter-spacing: -0.01em !important;
    font-weight: 500 !important;
    color: var(--ls-navy) !important;
    text-decoration: none !important;
}

.woocommerce-view-order .woocommerce-MyAccount-content table.shop_table .product-name a:hover {
    color: var(--ls-gold-deep) !important;
}

.woocommerce-view-order .woocommerce-MyAccount-content table.shop_table .product-total,
.woocommerce-view-order .woocommerce-MyAccount-content table.shop_table tfoot td {
    font-family: 'Fraunces', serif !important;
    font-size: 20px !important;
    color: var(--ls-navy) !important;
}

.woocommerce-view-order .woocommerce-MyAccount-content table.shop_table .product-qty strong {
    font-weight: 400 !important;
    opacity: 0.6;
}

/* Premium Status Badge - Inline and Not Stretched */
.woocommerce-MyAccount-content .consultation-booked,
.woocommerce-MyAccount-content .status-badge {
    display: inline-block !important;
    width: auto !important;
    max-width: fit-content !important;
    padding: 4px 12px !important;
    background: rgba(201, 161, 105, 0.08) !important;
    border: 1px solid rgba(201, 161, 105, 0.2) !important;
    color: var(--ls-gold-deep) !important;
    border-radius: 100px !important;
    font-size: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

/* HARD HIDE redundant badges inside product name */
.woocommerce-MyAccount-content .shop_table .product-name .consultation-booked,
.woocommerce-MyAccount-content .shop_table .product-name .shynova-badge {
    display: none !important;
}

/* Remove Heavy Meta Backgrounds */
.woocommerce-MyAccount-content .shop_table .product-name .wc-item-meta,
.woocommerce-MyAccount-content .shop_table .product-name ul.variation,
.woocommerce-MyAccount-content .shop_table .product-name .wc-item-meta-description {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 8px 0 0 0 !important;
    box-shadow: none !important;
}

/* Fail-safe to hide redundant consultation info in rows */
.woocommerce-table__product-name .wc-item-meta,
.woocommerce-table__product-name .variation,
.woocommerce-table__product-name dd,
.woocommerce-table__product-name dt {
    display: none !important;
}

/* Restore meta visibility if it's NOT a consultation (optional, but safer to just hide all if user only has consultation as meta) */
.woocommerce-table__product-name .wc-item-meta {
    display: none !important;
}

/* Hide custom consultation row */
.shynova-consultation-row {
    display: none !important;
}

.shynova-badge.success,
.shynova-badge.completed {
    display: inline-block !important;
    padding: 8px 18px !important;
    background: rgba(46, 125, 50, 0.1) !important;
    border: 1px solid #2e7d32 !important;
    color: #2e7d32 !important;
    border-radius: 100px !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.shynova-badge.processing {
    display: inline-block !important;
    padding: 8px 18px !important;
    background: rgba(201, 161, 105, 0.1) !important;
    border: 1px solid var(--ls-gold) !important;
    color: var(--ls-gold-deep) !important;
    border-radius: 100px !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.shynova-badge.on-hold {
    display: inline-block !important;
    padding: 8px 18px !important;
    background: rgba(255, 152, 0, 0.1) !important;
    border: 1px solid #ff9800 !important;
    color: #ef6c00 !important;
    border-radius: 100px !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.shynova-badge.cancelled,
.shynova-badge.failed {
    display: inline-block !important;
    padding: 8px 18px !important;
    background: rgba(198, 40, 40, 0.1) !important;
    border: 1px solid #c62828 !important;
    color: #c62828 !important;
    border-radius: 100px !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.woocommerce-MyAccount-content .shop_table .button {
    background: var(--ls-navy) !important;
    color: var(--ls-ivory) !important;
    font-size: 9px !important;
    padding: 10px 20px !important;
    border-radius: 2px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.woocommerce-MyAccount-content .shop_table .button:hover {
    background: var(--ls-gold-deep) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Order View Summary Text Visibility */
.woocommerce-MyAccount-content p {
    color: var(--ls-navy) !important;
    line-height: 1.8 !important;
    margin-bottom: 24px !important;
    opacity: 1 !important;
}

/* Form Polish */
.woocommerce-account .woocommerce-form-row label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ls-navy);
    opacity: 0.6;
    margin-bottom: 8px;
    display: block;
}

.woocommerce-Button.button {
    background: var(--ls-navy) !important;
    color: var(--ls-ivory) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    padding: 18px 36px !important;
    border-radius: 0 !important;
    transition: all 0.4s ease !important;
    border: 1px solid var(--ls-navy) !important;
}

.woocommerce-Button.button:hover {
    background: var(--ls-navy-deep) !important;
    color: var(--ls-gold-soft) !important;
    border-color: var(--ls-gold) !important;
}

/* Fix Address Text Color */
.woocommerce-MyAccount-content address,
.woocommerce-Address,
.woocommerce-Address address {
    color: var(--ls-navy) !important;
    font-style: normal;
    line-height: 1.6;
    opacity: 0.8;
}

/* --- MOBILE FORM VISIBILITY & ACCESSIBILITY FIXES --- */
.woocommerce-form input.input-text,
.woocommerce-form input[type="text"],
.woocommerce-form input[type="email"],
.woocommerce-form input[type="tel"],
.woocommerce-form textarea {
    color: var(--ls-navy) !important;
    -webkit-text-fill-color: var(--ls-navy) !important;
    background-color: #ffffff !important;
    opacity: 1 !important;
    font-size: 16px !important;
    pointer-events: auto !important;
    cursor: text !important;
}

/* Password fields need special handling for dots visibility */
.woocommerce-form input[type="password"] {
    color: #0E3142 !important; /* Force hex navy */
    background-color: #ffffff !important;
    opacity: 1 !important;
    font-size: 16px !important;
    pointer-events: auto !important;
    cursor: text !important;
    -webkit-text-fill-color: currentcolor !important;
}

/* Ensure placeholder is visible but muted */
.woocommerce-form input::placeholder {
    color: var(--ls-navy) !important;
    opacity: 0.3 !important;
}

/* Prevent overlap issues on mobile - removed z-index to avoid blocking */
#customer_login {
    position: relative;
}
