.elementor-4283 .elementor-element.elementor-element-2ca572d8{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-7742315e *//* ===============================
   MY ACCOUNT MENU – FINAL FIX
   =============================== */

/* Remove <br> causing misalignment */
body.woocommerce-account .woocommerce-MyAccount-navigation a br {
    display: none !important;
}

/* Sidebar */
body.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #0b1424;
    padding: 16px;
    border-radius: 16px;
}

/* Reset list */
body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li {
    list-style: none;
    margin-bottom: 10px;
}

/* Menu links */
body.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    gap: 14px;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    transition: all 0.25s ease;
}

/* Hover & active */
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: rgba(254,150,0,0.18);
    color: #fe9600 !important;
    box-shadow: inset 0 0 0 1px rgba(254,150,0,0.7);
}

/* ICON BASE */
body.woocommerce-account .woocommerce-MyAccount-navigation a::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    color: #fe9600;
    width: 24px;
    min-width: 24px;
    text-align: center;
    line-height: 1;
}

/* ICONS PER ITEM */
.woocommerce-MyAccount-navigation-link--dashboard a::before {
    content: "\f3fd";
}

.woocommerce-MyAccount-navigation-link--orders a::before {
    content: "\f07a";
}

.woocommerce-MyAccount-navigation-link--downloads a::before {
    content: "\f019";
}

.woocommerce-MyAccount-navigation-link--edit-address a::before {
    content: "\f3c5";
}

/* ✅ PAYMENT METHODS ICON (FIXED) */
.woocommerce-MyAccount-navigation-link--payment-methods a::before {
    content: "\f09d";
}

.woocommerce-MyAccount-navigation-link--edit-account a::before {
    content: "\f007";
}

.woocommerce-MyAccount-navigation-link--waitlist a::before {
    content: "\f06e";
}

.woocommerce-MyAccount-navigation-link--wishlist a::before {
    content: "\f004";
}

.woocommerce-MyAccount-navigation-link--customer-logout a::before {
    content: "\f2f5";
}

/* ===============================
   MOBILE OPTIMIZATION
   =============================== */
@media (max-width: 768px) {
    body.woocommerce-account .woocommerce-MyAccount-navigation a {
        font-size: 14px;
        padding: 10px 14px;
        min-height: 44px;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation a::before {
        font-size: 17px;
    }
}


/* ===========================================
   MY ACCOUNT MENU - COLOR & SIZE CONTROL
   =========================================== */

/* 1. BOX SIZE & BASE COLORS */
.wd-my-account-links li a {
    /* --- CONTROL SIZE HERE --- */
    width: 100%;            /* Change width (e.g., 250px) */
    min-height: 80px;       /* CHANGE THIS TO CONTROL HEIGHT */
    /* ------------------------- */
    
    background-color: #0b1424 !important; /* Dark Navy */
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* 2. HOVER & ACTIVE STATE COLORS */
.wd-my-account-links li:hover a,
.wd-my-account-links li.wd-active a {
    background-color: rgba(254, 150, 0, 0.18) !important; /* Orange Tint */
    color: #fe9600 !important; /* Orange Text */
    box-shadow: inset 0 0 0 1px #fe9600 !important; /* Orange Border */
}

/* 3. EXISTING ICON COLOR */
.wd-my-account-links li a .wd-nav-icon,
.wd-my-account-links li a .wd-nav-icon::before {
    color: #fe9600 !important;
    margin-bottom: 5px;
}

/* 4. CLEANUP (Removes extra gaps from <br> tags) */
.wd-my-account-links li a br {
    display: none !important;
}


/* Target ONLY the My Account Navigation wrapper */
.woocommerce-account .woocommerce-MyAccount-navigation .wd-my-account-links {
    background: transparent !important; /* Prevents container from stretching */
    display: grid !important;
}

/* 1. THE TITLE */
.woocommerce-account h3.woocommerce-MyAccount-title {
    color: #0b1424 !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
}

/* 2. THE BOXES (Color & Size Control) */
.woocommerce-account .woocommerce-MyAccount-navigation .wd-my-account-links li a {
    background-color: #0b1424 !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    
    /* CONTROL SIZE HERE */
    min-height: 120px !important; /* Set your height */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

/* 3. HOVER & ACTIVE (Exact Ref Colors) */
.woocommerce-account .woocommerce-MyAccount-navigation .wd-my-account-links li:hover a,
.woocommerce-account .woocommerce-MyAccount-navigation .wd-my-account-links li.wd-active a {
    background: rgba(254,150,0,0.18) !important;
    color: #fe9600 !important;
    box-shadow: inset 0 0 0 1px rgba(254,150,0,0.7) !important;
}

/* 4. ICON COLOR */
.woocommerce-account .woocommerce-MyAccount-navigation .wd-my-account-links .wd-nav-icon {
    color: #fe9600 !important;
}

/* 5. FIX FOR EXTRA SPACING (Hiding BRs only in this specific menu) */
.woocommerce-account .woocommerce-MyAccount-navigation .wd-my-account-links a br {
    display: none !important;
}/* End custom CSS */