/*
Theme Name: Bashere Penny Auction Pro
Theme URI: https://bashere.com
Description: Premium, high-end penny auction theme with modern design
Author: Bashere
Version: 4.1.0 Final
Text Domain: bashere-auction
*/

/* ---------------------------------------------------------
   CSS VARIABLES – Premium Brand Colors
---------------------------------------------------------- */
:root {
    --primary-color: #FF6B35;
    --primary-dark: #E85A2A;
    --primary-light: #FF8C5F;
    --accent-color: #F7B801;
    --accent-dark: #E6A700;
    --secondary-color: #004E89;
    --secondary-light: #0066B3;

    --white: #FFFFFF;
    --black: #0F1419;
    --grey-50: #F9FAFB;
    --grey-100: #F3F4F6;
    --grey-200: #E5E7EB;
    --grey-300: #D1D5DB;
    --grey-400: #9CA3AF;
    --grey-500: #6B7280;
    --grey-600: #4B5563;
    --grey-700: #374151;
    --grey-800: #1F2937;
    --grey-900: #111827;

    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);

    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%);
    --gradient-secondary: linear-gradient(135deg, #004E89 0%, #0066B3 100%);
    --gradient-success: linear-gradient(135deg, #00C896 0%, #00E5A0 100%);
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------------------------------------
   GLOBAL BASE – Premium Typography
---------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--grey-50);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

/* ---------------------------------------------------------
   HEADER – Premium Glassmorphism
---------------------------------------------------------- */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 2.5rem;
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-title a {
    font-size: 1.875rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
}

.site-title a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    border-radius: 2px;
}

.site-title a:hover::after {
    transform: scaleX(1);
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.primary-nav ul li a {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--grey-700);
    position: relative;
    transition: all var(--transition-base);
}

.primary-nav ul li a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.primary-nav ul li a:hover::before,
.primary-nav ul li.current-menu-item a::before {
    opacity: 1;
}

.primary-nav ul li a:hover,
.primary-nav ul li.current-menu-item a {
    color: #FFF;
    transform: translateY(-1px);
}

.primary-nav ul li a span {
    position: relative;
    z-index: 1;
}

/* Navigation active state fix */
.primary-nav ul li.current-menu-item a,
.primary-nav ul li.current_page_item a {
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    color: #FFF !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.primary-nav ul li.current-menu-item a::before,
.primary-nav ul li.current_page_item a::before {
    opacity: 0 !important;
}

/* ---------------------------------------------------------
   HERO – Premium Animated Gradient
---------------------------------------------------------- */
.hero {
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 50%, #FF6B35 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    padding: 5rem 2rem;
    text-align: center;
    color: #FFF;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: float 8s ease-in-out infinite;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.375rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
    position: relative;
}

.hero .btn {
    padding: 1.125rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.0625rem;
    font-weight: 700;
    position: relative;
    transition: all var(--transition-base);
}

.hero .btn-primary {
    background: #FFF;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* ---------------------------------------------------------
   MAIN WRAPPER
---------------------------------------------------------- */
.site-main {
    max-width: 1320px;
    margin: auto;
    padding: 0 2rem 5rem;
}

/* ---------------------------------------------------------
   AUCTION GRID – Premium Cards
---------------------------------------------------------- */
.bashere-lite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bashere-lite-card {
    background: #FFF;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bashere-lite-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.bashere-lite-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.2);
}

.bashere-lite-card:hover::before {
    transform: scaleX(1);
}

.bashere-lite-card img {
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    transition: all var(--transition-slow);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.bashere-lite-card:hover img {
    transform: scale(1.05);
}

.bashere-lite-price {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* ---------------------------------------------------------
   BID BUTTON – Premium Animation
---------------------------------------------------------- */
.bashere-lite-bid-button {
    background: var(--gradient-success);
    color: #FFF;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    border-radius: 9999px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.bashere-lite-bid-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.bashere-lite-bid-button:hover::before {
    width: 300px;
    height: 300px;
}

.bashere-lite-bid-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 200, 150, 0.4);
}

.bashere-lite-bid-button:active {
    transform: scale(0.98);
}

/* ---------------------------------------------------------
   CREDITS CARD – Premium Glassmorphism
---------------------------------------------------------- */
.bashere-lite-credits-card {
    background: var(--gradient-secondary);
    color: #FFF;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.bashere-lite-credits-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bashere-lite-credits-card p {
    font-size: 3rem;
    font-weight: 900;
    position: relative;
    letter-spacing: -0.02em;
}

/* ---------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
.site-footer {
    background: var(--grey-900);
    color: var(--grey-400);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 5rem;
    border-top: 1px solid var(--grey-800);
}

.site-footer a {
    color: var(--grey-300);
    transition: color var(--transition-base);
}

.site-footer a:hover {
    color: var(--primary-color);
}

/* ---------------------------------------------------------
   BUTTONS – Premium Global Style
---------------------------------------------------------- */
.button,
a.button,
button.button,
input.button {
    background: var(--gradient-primary);
    color: #FFF !important;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-block;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.button::before,
a.button::before,
button.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.button:hover::before,
a.button:hover::before,
button.button:hover::before {
    left: 100%;
}

.button:hover,
a.button:hover,
button.button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.button:active,
a.button:active,
button.button:active {
    transform: scale(0.98);
}

/* =========================================================
   WOOCOMMERCE SHOP – ULTRA-STRONG 4-COLUMN GRID
========================================================= */

/* Force 4-column grid - Nuclear option */
body.woocommerce .woocommerce ul.products,
body.woocommerce-page .woocommerce ul.products,
.woocommerce ul.products,
.woocommerce-page ul.products,
body ul.products,
ul.products.columns-4,
ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    list-style: none !important;
    margin: 2rem 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
}

/* Force each product card */
body.woocommerce ul.products li.product,
body.woocommerce-page ul.products li.product,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
ul.products li.product {
    background: #FFFFFF !important;
    border-radius: 2rem !important;
    padding: 1.5rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    margin: 0 !important;
    clear: none !important;
}

/* Top gradient bar */
body.woocommerce ul.products li.product::before,
body.woocommerce-page ul.products li.product::before,
.woocommerce ul.products li.product::before,
.woocommerce-page ul.products li.product::before,
ul.products li.product::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    transform: scaleX(0) !important;
    border-radius: 2rem 2rem 0 0 !important;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1 !important;
}

/* Hover effects */
body.woocommerce ul.products li.product:hover,
body.woocommerce-page ul.products li.product:hover,
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover,
ul.products li.product:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 107, 53, 0.3) !important;
    border-color: rgba(255, 107, 53, 0.2) !important;
}

body.woocommerce ul.products li.product:hover::before,
body.woocommerce-page ul.products li.product:hover::before,
.woocommerce ul.products li.product:hover::before,
.woocommerce-page ul.products li.product:hover::before,
ul.products li.product:hover::before {
    transform: scaleX(1) !important;
}

/* Product images */
body.woocommerce ul.products li.product img,
body.woocommerce-page ul.products li.product img,
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img,
ul.products li.product img {
    width: 100% !important;
    height: auto !important;
    max-height: 200px !important;
    object-fit: contain !important;
    margin: 0 auto 1rem !important;
    border-radius: 1rem !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.woocommerce ul.products li.product:hover img,
body.woocommerce-page ul.products li.product:hover img,
.woocommerce ul.products li.product:hover img,
.woocommerce-page ul.products li.product:hover img,
ul.products li.product:hover img {
    transform: scale(1.05) !important;
}

/* Product titles */
body.woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title,
body.woocommerce ul.products li.product h2,
body.woocommerce-page ul.products li.product h2,
.woocommerce ul.products li.product h2,
.woocommerce-page ul.products li.product h2,
ul.products li.product h2 {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #0F1419 !important;
    text-align: center !important;
    min-height: 2.5rem !important;
    margin: 0.5rem 0 !important;
    line-height: 1.4 !important;
}

/* Prices */
body.woocommerce ul.products li.product .price,
body.woocommerce-page ul.products li.product .price,
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
ul.products li.product .price {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin: 0.75rem 0 1rem !important;
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: block !important;
}

/* Add to cart buttons */
body.woocommerce ul.products li.product .button,
body.woocommerce-page ul.products li.product .button,
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
ul.products li.product .button,
body.woocommerce ul.products li.product .add_to_cart_button,
body.woocommerce-page ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce-page ul.products li.product .add_to_cart_button,
ul.products li.product .add_to_cart_button {
    margin-top: auto !important;
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    color: #ffffff !important;
    padding: 0.875rem 1.75rem !important;
    border-radius: 9999px !important;
    font-weight: 700 !important;
    font-size: 0.9375rem !important;
    border: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: inline-block !important;
    width: 100% !important;
}

body.woocommerce ul.products li.product .button:hover,
body.woocommerce-page ul.products li.product .button:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover,
ul.products li.product .button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

/* View Cart button */
body.woocommerce ul.products li.product .added_to_cart,
body.woocommerce-page ul.products li.product .added_to_cart,
.woocommerce ul.products li.product .added_to_cart,
.woocommerce-page ul.products li.product .added_to_cart,
ul.products li.product .added_to_cart {
    background: linear-gradient(135deg, #004E89 0%, #0066B3 100%) !important;
    color: #ffffff !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: 9999px !important;
    font-size: 0.875rem !important;
    margin-top: 0.75rem !important;
    display: inline-block !important;
    font-weight: 600 !important;
}

/* Out of stock */
body.woocommerce ul.products li.product.outofstock .button,
body.woocommerce-page ul.products li.product.outofstock .button,
.woocommerce ul.products li.product.outofstock .button,
.woocommerce-page ul.products li.product.outofstock .button,
ul.products li.product.outofstock .button {
    background: #D1D5DB !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Shop page header */
.woocommerce-products-header,
.woocommerce .woocommerce-products-header {
    text-align: center !important;
    margin-bottom: 3rem !important;
    padding: 2rem 0 !important;
}

.woocommerce-products-header h1,
.woocommerce .woocommerce-products-header h1 {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.02em !important;
}

/* Result count and ordering */
.woocommerce-result-count,
.woocommerce-ordering {
    color: #6B7280 !important;
    font-size: 0.9375rem !important;
    margin-bottom: 2rem !important;
}

/* Responsive grid breakpoints */
@media (max-width: 1200px) {
    body.woocommerce ul.products,
    body.woocommerce-page ul.products,
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    body.woocommerce ul.products,
    body.woocommerce-page ul.products,
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    body.woocommerce ul.products,
    body.woocommerce-page ul.products,
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    ul.products {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* ============================================
   MY ACCOUNT – PREMIUM LOGIN/REGISTER
============================================ */

/* Logged-in dashboard */
.woocommerce-account .woocommerce-MyAccount-content {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    color: var(--black) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.woocommerce-account .woocommerce-MyAccount-content p,
.woocommerce-account .woocommerce-MyAccount-content a,
.woocommerce-account .woocommerce-MyAccount-content strong {
    color: var(--black) !important;
}

.woocommerce-account .woocommerce-MyAccount-content a {
    color: var(--primary-color) !important;
    font-weight: 600;
    transition: all var(--transition-base);
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
    color: var(--primary-dark) !important;
    text-decoration: underline;
}

/* Sidebar navigation */
.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 0.5rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-lg);
    color: var(--grey-700) !important;
    font-weight: 600;
    transition: all var(--transition-base);
    position: relative;
}

.woocommerce-account .woocommerce-MyAccount-navigation a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 0 3px 3px 0;
    transition: height var(--transition-base);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a::before,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover::before {
    height: 70%;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 184, 1, 0.1) 100%);
    color: var(--primary-color) !important;
    transform: translateX(4px);
}

/* Page title */
.woocommerce-account .entry-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 2rem 0;
    color: var(--black);
    letter-spacing: -0.02em;
}

/* Login/Register container */
.woocommerce-account #customer_login {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 2rem !important;
    margin: 2rem auto 4rem !important;
    max-width: 1100px !important;
    padding: 0 2rem !important;
}

/* Cards – Premium glassmorphism effect */
.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    width: 480px !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all var(--transition-slow);
}

.woocommerce-account #customer_login .u-column1:hover,
.woocommerce-account #customer_login .u-column2:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

/* Headers – Premium gradients with shine effect */
.woocommerce-account #customer_login .u-column1 h2,
.woocommerce-account #customer_login .u-column2 h2 {
    margin: 0 0 2rem 0;
    padding: 2rem 2rem;
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.02em;
}

.woocommerce-account #customer_login .u-column1 h2::before,
.woocommerce-account #customer_login .u-column2 h2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.woocommerce-account #customer_login .u-column1 h2 {
    background: var(--gradient-purple);
}

.woocommerce-account #customer_login .u-column2 h2 {
    background: var(--gradient-primary);
}

/* Forms */
.woocommerce-account #customer_login .u-column1 form,
.woocommerce-account #customer_login .u-column2 form {
    padding: 0 2rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.woocommerce-account #customer_login .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce-account #customer_login .form-row:last-of-type {
    margin-top: auto;
}

.woocommerce-account #customer_login label {
    display: block;
    font-weight: 600;
    color: var(--grey-700);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

/* Premium inputs with floating effect */
.woocommerce-account #customer_login input[type="text"],
.woocommerce-account #customer_login input[type="email"],
.woocommerce-account #customer_login input[type="password"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--grey-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--transition-base);
    box-sizing: border-box;
    background: var(--grey-50);
}

.woocommerce-account #customer_login .u-column1 input:focus {
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    outline: none;
    transform: translateY(-1px);
}

.woocommerce-account #customer_login .u-column2 input:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    outline: none;
    transform: translateY(-1px);
}

/* Premium buttons with animation */
.woocommerce-account #customer_login button[type="submit"] {
    width: 100%;
    padding: 1rem 0;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    border: none !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.woocommerce-account #customer_login .u-column1 button[type="submit"] {
    background: var(--gradient-purple) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.woocommerce-account #customer_login .u-column2 button[type="submit"] {
    background: var(--gradient-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.woocommerce-account #customer_login button[type="submit"]:hover {
    transform: translateY(-3px);
}

.woocommerce-account #customer_login .u-column1 button:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.woocommerce-account #customer_login .u-column2 button:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Checkbox */
.woocommerce-account #customer_login input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin-right: 0.5rem;
    cursor: pointer;
}

/* Lost password */
.woocommerce-account #customer_login .woocommerce-LostPassword {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--grey-200);
}

.woocommerce-account #customer_login .woocommerce-LostPassword a {
    color: #667eea !important;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
}

.woocommerce-account #customer_login .woocommerce-LostPassword a:hover {
    color: #764ba2 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }

    .primary-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .woocommerce-account #customer_login {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .woocommerce-account #customer_login .u-column1,
    .woocommerce-account #customer_login .u-column2 {
        width: 100% !important;
        max-width: 480px !important;
    }
}
/* ============================================
   ABSOLUTE FINAL FIX - PASTE AT VERY END
   This overrides EVERYTHING including WooCommerce
   ============================================ */

/* Remove WooCommerce's column classes */
ul.products.columns-1,
ul.products.columns-2,
ul.products.columns-3,
ul.products.columns-4,
ul.products.columns-5,
ul.products.columns-6 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin: 2rem 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

/* Override ALL WooCommerce float rules */
ul.products li.product,
ul.products li.product.first,
ul.products li.product.last {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    clear: none !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Force grid on body classes */
body.woocommerce ul.products,
body.woocommerce-page ul.products,
body.woocommerce .woocommerce ul.products,
body.woocommerce-page .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
}

/* Responsive */
@media (max-width: 1200px) {
    ul.products,
    ul.products.columns-4 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    ul.products,
    ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    ul.products,
    ul.products.columns-4 {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   END OF ABSOLUTE FINAL FIX
   ============================================ */
/* ============================================
   END OF COMPLETE PREMIUM STYLING
   ============================================ */
/* ============================================
   ADDITIONAL DESIGN FIXES
   Add this to the END of style.css
   ============================================ */

/* ---------------------------------------------------------
   FIX 1: MY ACCOUNT DASHBOARD - Premium Styling
---------------------------------------------------------- */

/* Main dashboard content area */
.woocommerce-account .woocommerce-MyAccount-content {
    background: #ffffff !important;
    padding: 2.5rem !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    color: #0F1419 !important;
}

/* Dashboard welcome text */
.woocommerce-account .woocommerce-MyAccount-content p {
    color: #0F1419 !important;
    font-size: 1rem;
    line-height: 1.6;
}

/* Links in dashboard */
.woocommerce-account .woocommerce-MyAccount-content a {
    color: #FF6B35 !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
    color: #E85A2A !important;
    text-decoration: underline;
}

/* Credits card on dashboard */
.bashere-lite-credits-card,
.woocommerce-account .bashere-lite-credits-card {
    background: linear-gradient(135deg, #004E89 0%, #0066B3 100%) !important;
    color: #ffffff !important;
    padding: 2rem !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
    margin: 2rem 0 !important;
    position: relative;
    overflow: hidden;
}

.bashere-lite-credits-card h3,
.bashere-lite-credits-card p {
    color: #ffffff !important;
    position: relative;
    z-index: 2;
}

.bashere-lite-credits-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bashere-lite-credits-card p {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
}

/* Sidebar navigation styling */
.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #ffffff !important;
    padding: 1.5rem !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 0.5rem !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block !important;
    padding: 0.875rem 1.25rem !important;
    border-radius: 0.75rem !important;
    color: #374151 !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
    position: relative !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 184, 1, 0.1) 100%) !important;
    color: #FF6B35 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 184, 1, 0.1) 100%) !important;
    color: #FF6B35 !important;
    transform: translateX(4px) !important;
}

/* ---------------------------------------------------------
   FIX 2: ALL AUCTIONS PAGE - Match Theme Buttons
---------------------------------------------------------- */

/* Auction cards container */
.bashere-lite-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    margin: 2rem 0 !important;
}

/* Individual auction cards */
.bashere-lite-card {
    background: #ffffff !important;
    border-radius: 1.5rem !important;
    padding: 1.5rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    position: relative !important;
}

.bashere-lite-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    transform: scaleX(0) !important;
    transition: transform 0.25s !important;
    border-radius: 1.5rem 1.5rem 0 0 !important;
}

.bashere-lite-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 107, 53, 0.3) !important;
    border-color: rgba(255, 107, 53, 0.2) !important;
}

.bashere-lite-card:hover::before {
    transform: scaleX(1) !important;
}

/* Card images */
.bashere-lite-card img {
    border-radius: 1rem !important;
    margin-bottom: 1rem !important;
    transition: transform 0.35s !important;
}

.bashere-lite-card:hover img {
    transform: scale(1.05) !important;
}

/* Card titles */
.bashere-lite-card h3 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #0F1419 !important;
    margin: 0.5rem 0 !important;
}

/* Price display */
.bashere-lite-price {
    font-size: 1.75rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 0.5rem 0 !important;
}

/* Bid meta info */
.bashere-lite-meta {
    font-size: 0.875rem !important;
    color: #6B7280 !important;
    margin-bottom: 1rem !important;
}

/* BID BUTTONS - MATCH THEME (Green for logged in) */
.bashere-lite-bid-button,
button.bashere-lite-bid-button {
    background: linear-gradient(135deg, #00C896 0%, #00E5A0 100%) !important;
    color: #ffffff !important;
    padding: 0.875rem 1.75rem !important;
    font-size: 1rem !important;
    border-radius: 9999px !important;
    border: none !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    width: 100% !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: inline-block !important;
    text-align: center !important;
}

.bashere-lite-bid-button:hover,
button.bashere-lite-bid-button:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 10px 25px rgba(0, 200, 150, 0.4) !important;
    background: linear-gradient(135deg, #00A077 0%, #00C896 100%) !important;
}

.bashere-lite-bid-button:active,
button.bashere-lite-bid-button:active {
    transform: scale(0.98) !important;
}

.bashere-lite-bid-button:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* LOGIN TO BID LINKS - Style as buttons when logged out */
.bashere-lite-card a[href*="my-account"],
.bashere-lite-card a[href*="login"],
a.bashere-login-link {
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    color: #ffffff !important;
    padding: 0.875rem 1.75rem !important;
    font-size: 1rem !important;
    border-radius: 9999px !important;
    font-weight: 700 !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    width: 100% !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: inline-block !important;
    text-align: center !important;
    text-decoration: none !important;
}

.bashere-lite-card a[href*="my-account"]:hover,
.bashere-lite-card a[href*="login"]:hover,
a.bashere-login-link:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
    background: linear-gradient(135deg, #E85A2A 0%, #E6A700 100%) !important;
}

/* Bid box container */
.bashere-lite-bid-box {
    margin-top: 1rem !important;
    padding: 1.25rem !important;
    border-radius: 0.75rem !important;
    background: #F9FAFB !important;
}

/* Bid messages */
.bashere-lite-bid-message {
    margin-top: 0.75rem !important;
    font-size: 0.875rem !important;
    text-align: center !important;
    font-weight: 600 !important;
}

.bashere-lite-bid-message.bashere-lite-success {
    color: #047857 !important;
}

.bashere-lite-bid-message.bashere-lite-error {
    color: #DC2626 !important;
}

/* ---------------------------------------------------------
   FIX 3: HERO BANNER ON ALL AUCTIONS PAGE
---------------------------------------------------------- */

/* All Auctions page hero */
.page-template-default .hero,
body.post-type-archive-auction .hero {
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    padding: 3rem 2rem !important;
    text-align: center !important;
    color: #ffffff !important;
    margin-bottom: 3rem !important;
    border-radius: 1.5rem !important;
    position: relative !important;
    overflow: hidden !important;
}

.page-template-default .hero h1,
body.post-type-archive-auction .hero h1 {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    margin: 0 0 0.75rem !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.page-template-default .hero p,
body.post-type-archive-auction .hero p {
    font-size: 1.125rem !important;
    color: #ffffff !important;
    opacity: 0.95 !important;
    margin: 0 !important;
}

/* ============================================
   END OF ADDITIONAL FIXES
   ============================================ */
/* ============================================
   MY ACCOUNT PAGE - ULTRA-STRONG FIX
   Paste this at the VERY END of style.css
   ============================================ */

/* Force white background and proper styling on dashboard content */
body.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-MyAccount-content {
    background: #ffffff !important;
    padding: 2.5rem !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* All text in dashboard should be black */
body.woocommerce-account .woocommerce-MyAccount-content p,
body.woocommerce-account .woocommerce-MyAccount-content strong,
body.woocommerce-account .woocommerce-MyAccount-content span,
body.woocommerce-account .woocommerce-MyAccount-content div,
.woocommerce-account .woocommerce-MyAccount-content p,
.woocommerce-account .woocommerce-MyAccount-content strong,
.woocommerce-account .woocommerce-MyAccount-content span,
.woocommerce-MyAccount-content p,
.woocommerce-MyAccount-content strong {
    color: #0F1419 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

/* Links should be orange */
body.woocommerce-account .woocommerce-MyAccount-content a,
.woocommerce-account .woocommerce-MyAccount-content a,
.woocommerce-MyAccount-content a {
    color: #FF6B35 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

body.woocommerce-account .woocommerce-MyAccount-content a:hover,
.woocommerce-account .woocommerce-MyAccount-content a:hover,
.woocommerce-MyAccount-content a:hover {
    color: #E85A2A !important;
    text-decoration: underline !important;
}

/* Sidebar navigation - white background */
body.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-navigation {
    background: #ffffff !important;
    padding: 1.5rem !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Navigation list */
body.woocommerce-account .woocommerce-MyAccount-navigation ul,
.woocommerce-account .woocommerce-MyAccount-navigation ul,
.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li,
.woocommerce-account .woocommerce-MyAccount-navigation li,
.woocommerce-MyAccount-navigation li {
    margin-bottom: 0.5rem !important;
}

/* Navigation links */
body.woocommerce-account .woocommerce-MyAccount-navigation a,
.woocommerce-account .woocommerce-MyAccount-navigation a,
.woocommerce-MyAccount-navigation a {
    display: block !important;
    padding: 0.875rem 1.25rem !important;
    border-radius: 0.75rem !important;
    color: #374151 !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

/* Active nav item */
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li.is-active a {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 184, 1, 0.1) 100%) !important;
    color: #FF6B35 !important;
}

/* Hover state */
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation a:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 184, 1, 0.1) 100%) !important;
    color: #FF6B35 !important;
    transform: translateX(4px) !important;
}

/* Credits card styling */
body.woocommerce-account .bashere-lite-credits-card,
.woocommerce-account .bashere-lite-credits-card,
.bashere-lite-credits-card {
    background: linear-gradient(135deg, #004E89 0%, #0066B3 100%) !important;
    color: #ffffff !important;
    padding: 2rem !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    margin: 2rem 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Credits card text - must be white */
body.woocommerce-account .bashere-lite-credits-card h3,
body.woocommerce-account .bashere-lite-credits-card p,
body.woocommerce-account .bashere-lite-credits-card span,
.woocommerce-account .bashere-lite-credits-card h3,
.woocommerce-account .bashere-lite-credits-card p,
.woocommerce-account .bashere-lite-credits-card span,
.bashere-lite-credits-card h3,
.bashere-lite-credits-card p,
.bashere-lite-credits-card span {
    color: #ffffff !important;
    position: relative !important;
    z-index: 2 !important;
}

.bashere-lite-credits-card h3 {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
}

.bashere-lite-credits-card p {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    margin: 0 !important;
}

/* Animated background effect on credits card */
.bashere-lite-credits-card::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    right: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%) !important;
    animation: rotate 20s linear infinite !important;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   END OF MY ACCOUNT FIX
   ============================================ */
/* ============================================
   MY ACCOUNT - FIX TWO-COLUMN LAYOUT
   Paste this at the END of style.css
   ============================================ */

/* Force proper two-column layout */
.woocommerce-account .woocommerce {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2rem !important;
    align-items: flex-start !important;
}

/* Sidebar navigation - LEFT COLUMN */
.woocommerce-account .woocommerce-MyAccount-navigation {
    flex: 0 0 280px !important;
    width: 280px !important;
    background: #ffffff !important;
    padding: 1.5rem !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Content area - RIGHT COLUMN */
.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1 !important;
    min-width: 0 !important;
    background: #ffffff !important;
    padding: 2.5rem !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Ensure navigation list styling */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 0.5rem !important;
}

/* Navigation links */
.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block !important;
    padding: 0.875rem 1.25rem !important;
    border-radius: 0.75rem !important;
    color: #374151 !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

/* Active menu item */
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 184, 1, 0.1) 100%) !important;
    color: #FF6B35 !important;
}

/* Hover state */
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 184, 1, 0.1) 100%) !important;
    color: #FF6B35 !important;
    transform: translateX(4px) !important;
}

/* Content text styling */
.woocommerce-account .woocommerce-MyAccount-content p,
.woocommerce-account .woocommerce-MyAccount-content strong,
.woocommerce-account .woocommerce-MyAccount-content span,
.woocommerce-account .woocommerce-MyAccount-content div {
    color: #0F1419 !important;
}

/* Content links */
.woocommerce-account .woocommerce-MyAccount-content a {
    color: #FF6B35 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
    color: #E85A2A !important;
    text-decoration: underline !important;
}

/* Credits card */
.woocommerce-account .bashere-lite-credits-card {
    background: linear-gradient(135deg, #004E89 0%, #0066B3 100%) !important;
    color: #ffffff !important;
    padding: 2rem !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
    margin: 2rem 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.woocommerce-account .bashere-lite-credits-card h3,
.woocommerce-account .bashere-lite-credits-card p {
    color: #ffffff !important;
}

.bashere-lite-credits-card h3 {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
}

.bashere-lite-credits-card p {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    margin: 0 !important;
}

/* Responsive - stack on mobile */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column !important;
    }
    
    .woocommerce-account .woocommerce-MyAccount-navigation {
        flex: 1 !important;
        width: 100% !important;
    }
}

/* ============================================
   END OF MY ACCOUNT LAYOUT FIX
   ============================================ */
/* ============================================
   FIX VIEW BUTTONS IN MY ACCOUNT
   Make them readable with white text
   ============================================ */

/* WooCommerce Orders table buttons */
.woocommerce-orders-table .button,
.woocommerce-orders-table a.button,
.woocommerce-account .woocommerce-button,
.woocommerce-account .button.view,
.woocommerce-MyAccount-content .woocommerce-button,
.woocommerce-MyAccount-content .button {
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 9999px !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    display: inline-block !important;
    text-decoration: none !important;
    text-align: center !important;
}

.woocommerce-orders-table .button:hover,
.woocommerce-orders-table a.button:hover,
.woocommerce-account .woocommerce-button:hover,
.woocommerce-account .button.view:hover,
.woocommerce-MyAccount-content .woocommerce-button:hover,
.woocommerce-MyAccount-content .button:hover {
    background: linear-gradient(135deg, #E85A2A 0%, #E6A700 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2) !important;
    color: #ffffff !important;
}

/* Make sure "View" text is white */
.woocommerce-orders-table .button span,
.woocommerce-MyAccount-content .button span {
    color: #ffffff !important;
}

/* Orders table styling */
.woocommerce-orders-table {
    border: none !important;
    background: transparent !important;
}

.woocommerce-orders-table thead {
    background: #F9FAFB !important;
}

.woocommerce-orders-table th {
    background: #F9FAFB !important;
    color: #374151 !important;
    font-weight: 700 !important;
    padding: 1rem !important;
    border-bottom: 2px solid #E5E7EB !important;
}

.woocommerce-orders-table td {
    padding: 1rem !important;
    border-bottom: 1px solid #F3F4F6 !important;
    color: #0F1419 !important;
}

.woocommerce-orders-table tr:hover {
    background: #F9FAFB !important;
}

/* Order numbers - make them orange and clickable-looking */
.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a {
    color: #FF6B35 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a:hover {
    color: #E85A2A !important;
    text-decoration: underline !important;
}

/* Status badges */
.woocommerce-orders-table .woocommerce-orders-table__cell-order-status {
    font-weight: 600 !important;
}

/* ============================================
   END OF VIEW BUTTONS FIX
   ============================================ */
/* ============================================
   FIX ALL MY ACCOUNT BUTTONS - ALL TABS
   Downloads, Payment Methods, Addresses, etc.
   ============================================ */

/* ALL BUTTONS IN MY ACCOUNT CONTENT AREA */
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content a.button,
.woocommerce-MyAccount-content button,
.woocommerce-MyAccount-content input[type="submit"],
.woocommerce-MyAccount-content .woocommerce-button,
.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content a.button,
.woocommerce-account .woocommerce-MyAccount-content button {
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 9999px !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    display: inline-block !important;
    text-decoration: none !important;
    text-align: center !important;
    cursor: pointer !important;
}

/* Hover state for all buttons */
.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content a.button:hover,
.woocommerce-MyAccount-content button:hover,
.woocommerce-MyAccount-content input[type="submit"]:hover,
.woocommerce-MyAccount-content .woocommerce-button:hover,
.woocommerce-account .woocommerce-MyAccount-content .button:hover,
.woocommerce-account .woocommerce-MyAccount-content a.button:hover,
.woocommerce-account .woocommerce-MyAccount-content button:hover {
    background: linear-gradient(135deg, #E85A2A 0%, #E6A700 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2) !important;
    color: #ffffff !important;
}

/* Make sure button text is white */
.woocommerce-MyAccount-content .button span,
.woocommerce-MyAccount-content button span,
.woocommerce-account .woocommerce-MyAccount-content .button span {
    color: #ffffff !important;
}

/* Downloads table buttons */
.woocommerce-MyAccount-downloads .button,
.woocommerce-MyAccount-downloads a.button {
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    color: #ffffff !important;
}

/* Payment methods buttons */
.woocommerce-PaymentMethods .button,
.woocommerce-PaymentMethods a.button {
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    color: #ffffff !important;
}

/* Edit/Add address buttons */
.woocommerce-Addresses .button,
.woocommerce-Addresses a.button {
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    color: #ffffff !important;
}

/* Account details save button */
.woocommerce-EditAccountForm .button,
.woocommerce-EditAccountForm button[type="submit"] {
    background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%) !important;
    color: #ffffff !important;
}

/* Delete/Remove buttons - make them red */
.woocommerce-MyAccount-content .button.delete,
.woocommerce-MyAccount-content a.button.delete,
.woocommerce-MyAccount-content .button[name="delete_payment_method"] {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%) !important;
    color: #ffffff !important;
}

.woocommerce-MyAccount-content .button.delete:hover,
.woocommerce-MyAccount-content a.button.delete:hover,
.woocommerce-MyAccount-content .button[name="delete_payment_method"]:hover {
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%) !important;
    color: #ffffff !important;
}

/* Downloads table styling */
.woocommerce-MyAccount-downloads {
    background: transparent !important;
    border: none !important;
}

.woocommerce-MyAccount-downloads thead {
    background: #F9FAFB !important;
}

.woocommerce-MyAccount-downloads th {
    background: #F9FAFB !important;
    color: #374151 !important;
    font-weight: 700 !important;
    padding: 1rem !important;
    border-bottom: 2px solid #E5E7EB !important;
}

.woocommerce-MyAccount-downloads td {
    padding: 1rem !important;
    border-bottom: 1px solid #F3F4F6 !important;
    color: #0F1419 !important;
}

.woocommerce-MyAccount-downloads tr:hover {
    background: #F9FAFB !important;
}

/* Payment methods table styling */
.woocommerce-PaymentMethods {
    background: transparent !important;
    border: none !important;
}

.woocommerce-PaymentMethods thead {
    background: #F9FAFB !important;
}

.woocommerce-PaymentMethods th {
    background: #F9FAFB !important;
    color: #374151 !important;
    font-weight: 700 !important;
    padding: 1rem !important;
    border-bottom: 2px solid #E5E7EB !important;
}

.woocommerce-PaymentMethods td {
    padding: 1rem !important;
    border-bottom: 1px solid #F3F4F6 !important;
    color: #0F1419 !important;
}

.woocommerce-PaymentMethods tr:hover {
    background: #F9FAFB !important;
}

/* Addresses section styling */
.woocommerce-Addresses .woocommerce-Address {
    background: #F9FAFB !important;
    padding: 1.5rem !important;
    border-radius: 1rem !important;
    border: 1px solid #E5E7EB !important;
    margin-bottom: 1.5rem !important;
}

.woocommerce-Addresses .woocommerce-Address-title h3 {
    color: #0F1419 !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}

.woocommerce-Addresses address {
    color: #374151 !important;
    line-height: 1.6 !important;
}

/* Form inputs styling */
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content input[type="tel"],
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
    transition: all 0.2s ease !important;
    background: #ffffff !important;
    color: #0F1419 !important;
}

.woocommerce-MyAccount-content input[type="text"]:focus,
.woocommerce-MyAccount-content input[type="email"]:focus,
.woocommerce-MyAccount-content input[type="password"]:focus,
.woocommerce-MyAccount-content input[type="tel"]:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus {
    border-color: #FF6B35 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

/* Form labels */
.woocommerce-MyAccount-content label {
    color: #374151 !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

/* ============================================
   END OF ALL TABS BUTTONS FIX
   ============================================ */
/* ============================================
   NUCLEAR LABEL FIX - ACCOUNT DETAILS
   Ultimate override for password field labels
   ============================================ */

/* FORCE all labels to be readable - nuclear strength */
body.woocommerce-account .woocommerce-EditAccountForm label,
body .woocommerce-EditAccountForm label,
.woocommerce-EditAccountForm label,
body.woocommerce-account .woocommerce-MyAccount-content label,
body .woocommerce-MyAccount-content label,
.woocommerce-MyAccount-content label,
body.woocommerce-account label,
body label,
label {
    background: transparent !important;
    background-color: transparent !important;
    color: #374151 !important;
    font-weight: 600 !important;
    font-size: 0.9375rem !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.5 !important;
}

/* Specifically target password labels */
.woocommerce-EditAccountForm .woocommerce-form-row label[for*="password"],
.woocommerce-EditAccountForm label[for="password_current"],
.woocommerce-EditAccountForm label[for="password_1"],
.woocommerce-EditAccountForm label[for="password_2"] {
    background: none !important;
    background-color: white !important;
    color: #0F1419 !important;
    font-weight: 600 !important;
    padding: 0.25rem 0 !important;
    margin-bottom: 0.5rem !important;
}

/* Legend (Password change heading) */
body.woocommerce-account .woocommerce-EditAccountForm fieldset legend,
body .woocommerce-EditAccountForm fieldset legend,
.woocommerce-EditAccountForm fieldset legend,
fieldset legend {
    background: transparent !important;
    background-color: transparent !important;
    color: #0F1419 !important;
    font-weight: 700 !important;
    font-size: 1.125rem !important;
    margin-bottom: 1rem !important;
    padding: 0 !important;
    border: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

/* Remove any background from form rows */
.woocommerce-EditAccountForm .form-row,
.woocommerce-EditAccountForm .woocommerce-form-row {
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 1.5rem !important;
}

/* Fix required asterisk */
.woocommerce-EditAccountForm label .required,
.woocommerce-EditAccountForm label abbr,
label .required,
label abbr {
    color: #DC2626 !important;
    background: transparent !important;
    text-decoration: none !important;
    border: none !important;
}

/* Help text styling */
.woocommerce-EditAccountForm span.description,
.woocommerce-EditAccountForm em,
span.description,
em {
    color: #6B7280 !important;
    background: transparent !important;
    font-size: 0.875rem !important;
    font-style: italic !important;
    display: block !important;
    margin-top: 0.5rem !important;
}

/* Input fields - make sure they're styled properly */
.woocommerce-EditAccountForm input[type="text"],
.woocommerce-EditAccountForm input[type="email"],
.woocommerce-EditAccountForm input[type="password"] {
    width: 100% !important;
    padding: 0.875rem 1rem !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
    background: #ffffff !important;
    color: #0F1419 !important;
    box-sizing: border-box !important;
}

.woocommerce-EditAccountForm input:focus {
    border-color: #FF6B35 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

/* ============================================
   END OF NUCLEAR LABEL FIX
   ============================================ */
/* ============================================
   SIMPLE PASSWORD FIX - HIDE BROKEN LABELS
   Add readable text with CSS instead
   ============================================ */

/* HIDE the broken orange label boxes completely */
.woocommerce-EditAccountForm label[for="password_current"],
.woocommerce-EditAccountForm label[for="password_1"],
.woocommerce-EditAccountForm label[for="password_2"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* HIDE the Password change legend too if it's broken */
.woocommerce-EditAccountForm fieldset legend {
    display: none !important;
}

/* Add readable labels using pseudo-elements */
.woocommerce-EditAccountForm input#password_current {
    margin-top: 2rem !important;
}

.woocommerce-EditAccountForm input#password_current::placeholder {
    color: #9CA3AF !important;
}

.woocommerce-EditAccountForm input#password_1::placeholder {
    color: #9CA3AF !important;
}

.woocommerce-EditAccountForm input#password_2::placeholder {
    color: #9CA3AF !important;
}

/* Style the password fieldset */
.woocommerce-EditAccountForm fieldset {
    background: #F9FAFB !important;
    padding: 2rem !important;
    border-radius: 1rem !important;
    border: 1px solid #E5E7EB !important;
    margin: 2rem 0 !important;
    position: relative !important;
}

/* Add "Password Change" heading */
.woocommerce-EditAccountForm fieldset::before {
    content: "Password Change" !important;
    display: block !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #0F1419 !important;
    margin-bottom: 1.5rem !important;
    background: transparent !important;
}

/* Add eye icon to password fields */
.woocommerce-EditAccountForm input[type="password"] {
    padding-right: 3rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 20px !important;
}

/* Make input fields look good */
.woocommerce-EditAccountForm input[type="password"] {
    width: 100% !important;
    padding: 0.875rem 3rem 0.875rem 1rem !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
    background-color: #ffffff !important;
    color: #0F1419 !important;
    margin-bottom: 1.5rem !important;
}

.woocommerce-EditAccountForm input[type="password"]:focus {
    border-color: #FF6B35 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

/* ============================================
   END OF SIMPLE PASSWORD FIX
   ============================================ */
/* ============================================
   REMOVE ORANGE BOXES COMPLETELY
   And style password fields properly
   ============================================ */

/* COMPLETELY REMOVE the orange label boxes */
.woocommerce-EditAccountForm label[for="password_current"],
.woocommerce-EditAccountForm label[for="password_1"],
.woocommerce-EditAccountForm label[for="password_2"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Remove the CSS background image eye icon since we're adding JS one */
.woocommerce-EditAccountForm input[type="password"] {
    background-image: none !important;
    padding-right: 3rem !important;
}

/* Style password input fields */
.woocommerce-EditAccountForm input[type="password"],
.woocommerce-EditAccountForm input[type="text"][name*="password"] {
    width: 100% !important;
    padding: 0.875rem 3rem 0.875rem 1rem !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
    background-color: #ffffff !important;
    color: #0F1419 !important;
    margin-bottom: 1.5rem !important;
    box-sizing: border-box !important;
}

.woocommerce-EditAccountForm input[type="password"]:focus,
.woocommerce-EditAccountForm input[type="text"][name*="password"]:focus {
    border-color: #FF6B35 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

/* Style the fieldset containing password fields */
.woocommerce-EditAccountForm fieldset {
    background: #F9FAFB !important;
    padding: 2rem !important;
    border-radius: 1rem !important;
    border: 1px solid #E5E7EB !important;
    margin: 2rem 0 !important;
    position: relative !important;
}

/* Hide broken legend */
.woocommerce-EditAccountForm fieldset legend {
    display: none !important;
}

/* Add "Password Change" heading with CSS */
.woocommerce-EditAccountForm fieldset::before {
    content: "Password Change" !important;
    display: block !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #0F1419 !important;
    margin-bottom: 1.5rem !important;
    background: transparent !important;
}

/* Password toggle button positioning */
.password-toggle-btn {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    color: #6B7280 !important;
    transition: color 0.2s ease !important;
    z-index: 10 !important;
}

.password-toggle-btn:hover {
    color: #FF6B35 !important;
}

.password-toggle-btn svg {
    display: block !important;
}

/* Make wrapper relative for absolute positioning of button */
.woocommerce-EditAccountForm .woocommerce-form-row {
    position: relative !important;
}

/* ============================================
   END OF REMOVE ORANGE BOXES
   ============================================ */
   /* ============================================
   FINAL FIX - COMPLETELY HIDE ORANGE BOXES
   Ultra-strong selectors to remove all labels
   ============================================ */

/* Nuclear-strength hiding of password labels */
body.woocommerce-account .woocommerce-EditAccountForm label[for="password_current"],
body.woocommerce-account .woocommerce-EditAccountForm label[for="password_1"],
body.woocommerce-account .woocommerce-EditAccountForm label[for="password_2"],
body .woocommerce-EditAccountForm label[for="password_current"],
body .woocommerce-EditAccountForm label[for="password_1"],
body .woocommerce-EditAccountForm label[for="password_2"],
.woocommerce-EditAccountForm label[for="password_current"],
.woocommerce-EditAccountForm label[for="password_1"],
.woocommerce-EditAccountForm label[for="password_2"],
label[for="password_current"],
label[for="password_1"],
label[for="password_2"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

/* Also hide any spans or other elements that might be the orange boxes */
.woocommerce-EditAccountForm .woocommerce-form-row > label,
.woocommerce-EditAccountForm .form-row > label {
    display: none !important;
}

/* Make sure password fields look good */
.woocommerce-EditAccountForm input[type="password"],
.woocommerce-EditAccountForm input[type="text"][id*="password"] {
    width: 100% !important;
    padding: 0.875rem 3rem 0.875rem 1rem !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
    background: #ffffff !important;
    color: #0F1419 !important;
    margin-bottom: 1.5rem !important;
    box-sizing: border-box !important;
}

.woocommerce-EditAccountForm input[type="password"]:focus,
.woocommerce-EditAccountForm input[type="text"][id*="password"]:focus {
    border-color: #FF6B35 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

/* Style the password fieldset */
.woocommerce-EditAccountForm fieldset {
    background: #F9FAFB !important;
    padding: 2rem !important;
    border-radius: 1rem !important;
    border: 1px solid #E5E7EB !important;
    margin: 2rem 0 !important;
}

/* Hide the legend */
.woocommerce-EditAccountForm fieldset legend {
    display: none !important;
}

/* Add "Password Change" heading */
.woocommerce-EditAccountForm fieldset::before {
    content: "Password Change" !important;
    display: block !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #0F1419 !important;
    margin-bottom: 1.5rem !important;
    background: transparent !important;
}

/* Position wrappers for eye icons */
.woocommerce-EditAccountForm .woocommerce-form-row,
.woocommerce-EditAccountForm .form-row {
    position: relative !important;
    margin-bottom: 0 !important;
}

/* Style the eye toggle button */
.password-toggle-btn {
    position: absolute !important;
    right: 12px !important;
    top: 12px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    color: #6B7280 !important;
    transition: color 0.2s ease !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.password-toggle-btn:hover {
    color: #FF6B35 !important;
}

.password-toggle-btn svg {
    display: block !important;
    pointer-events: none !important;
}

/* ============================================
   END OF FINAL HIDE ORANGE BOXES
   ============================================ */
/* ============================================
   FINAL ORANGE LABEL FIX
   Target the actual orange label elements
   ============================================ */

/* Hide ALL labels inside the password fieldset */
html body .woocommerce-EditAccountForm fieldset label,
html body .woocommerce-EditAccountForm fieldset .woocommerce-form-row label,
html body .woocommerce-EditAccountForm fieldset .form-row label,
html .woocommerce-EditAccountForm fieldset label,
.woocommerce-EditAccountForm fieldset label {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    max-height: 0 !important;
    max-width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -99999px !important;
    top: -99999px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    background-color: transparent !important;
    clip: rect(0,0,0,0) !important;
    pointer-events: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

/* Make sure inputs are visible and styled */
html .woocommerce-EditAccountForm fieldset input[type="password"],
html .woocommerce-EditAccountForm fieldset input[type="text"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: 100% !important;
    position: relative !important;
    left: 0 !important;
    padding: 0.875rem 3rem 0.875rem 1rem !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
    background: #ffffff !important;
    background-image: none !important;
    color: #0F1419 !important;
    margin-bottom: 1.5rem !important;
    box-sizing: border-box !important;
}

html .woocommerce-EditAccountForm fieldset input:focus {
    border-color: #FF6B35 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

/* Password fieldset styling */
html .woocommerce-EditAccountForm fieldset {
    background: #F9FAFB !important;
    padding: 2rem !important;
    border-radius: 1rem !important;
    border: 1px solid #E5E7EB !important;
    margin: 2rem 0 !important;
    position: relative !important;
}

/* Hide legend */
html .woocommerce-EditAccountForm fieldset legend {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Add "Password Change" heading */
html .woocommerce-EditAccountForm fieldset::before {
    content: "Password Change" !important;
    display: block !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #0F1419 !important;
    margin-bottom: 1.5rem !important;
    background: transparent !important;
}

/* Form row positioning */
html .woocommerce-EditAccountForm fieldset .woocommerce-form-row,
html .woocommerce-EditAccountForm fieldset .form-row {
    position: relative !important;
    margin-bottom: 0 !important;
    display: block !important;
}

/* Eye toggle button */
html .password-toggle-btn {
    position: absolute !important;
    right: 12px !important;
    top: 12px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    color: #6B7280 !important;
    transition: color 0.2s ease !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html .password-toggle-btn:hover {
    color: #FF6B35 !important;
}

html .password-toggle-btn svg {
    display: block !important;
    pointer-events: none !important;
}

/* ============================================
   END FINAL ORANGE LABEL FIX
   ============================================ */
   /* ================================
   MY ACCOUNT – PASSWORD FIELD FIX
   ================================ */

/* 1) Remove WooCommerce orange toggle pills completely */
.woocommerce-account .show-password-input,
.woocommerce-account .show-password-input::before,
.woocommerce-account .show-password-input::after {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* 2) Make sure the custom eye icon is clean + centered */
.woocommerce-account button.bashere-password-toggle {
    /* alignment */
    top: 48% !important;                 /* tweak this if needed: 47–50 */
    transform: translateY(-48%) !important;

    /* appearance (no orange background/hover) */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Keep the eye grey, turn orange only as a color on hover */
.woocommerce-account button.bashere-password-toggle {
    color: #6B7280 !important;
}

.woocommerce-account button.bashere-password-toggle:hover {
    color: #FF6B35 !important;          /* just color, no box */
}

/* 3) Optional: remove orange strength bar / hints if any appear */
.woocommerce-account .woocommerce-password-strength,
.woocommerce-account .woocommerce-password-hint {
    display: none !important;
}
/* ===========================================
   FIX: Remove WooCommerce default toggle pill
   =========================================== */
.woocommerce-account .password-input,
.woocommerce-account .show-password-input,
.woocommerce-account .show-password-input:before,
.woocommerce-account .show-password-input:after {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ===========================================
   FIX: Eye icon alignment
   =========================================== */
.woocommerce-account .bashere-password-wrap {
    position: relative !important;
}

.woocommerce-account .bashere-password-wrap input[type="password"],
.woocommerce-account .bashere-password-wrap input[type="text"] {
    padding-right: 46px !important;
}

.woocommerce-account button.bashere-password-toggle {
    all: unset !important;
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;

    color: #6B7280 !important;
    cursor: pointer !important;
}

.woocommerce-account button.bashere-password-toggle:hover {
    color: #FF6B35 !important;
}

/* Prevent ANY hover background on eye */
.woocommerce-account button.bashere-password-toggle:hover,
.woocommerce-account button.bashere-password-toggle:focus,
.woocommerce-account button.bashere-password-toggle:active {
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

/* ===========================================
   FIX: Remove duplicate “Password Change” text
   =========================================== */
.woocommerce-EditAccountForm fieldset legend {
    display: none !important;
}
