.elementor-2013 .elementor-element.elementor-element-8ead54b{--display:flex;}.elementor-2013 .elementor-element.elementor-element-6b8eb4d{--typography-section-titles-color:#000000;--checkboxes-color:#FFFFFF;}:root{--page-title-display:none;}/* Start custom CSS for woocommerce-my-account, class: .elementor-element-6b8eb4d *//* =========================
GLOBAL FONT & COLORS
========================= */
body .woocommerce {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* =========================
LOGIN / REGISTER PAGE
========================= */
/* Remove eye icon (show password button) */
.woocommerce form .show-password-input {
    display: none !important;
}
#customer_login {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

/* BOXES */
#customer_login .u-column1,
#customer_login .u-column2 {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 0, 80, 0.08);
    width: 100%;
    transition: 0.3s;
}

#customer_login .u-column1:hover,
#customer_login .u-column2:hover {
    transform: translateY(-5px);
}

/* HEADINGS */
#customer_login h2 {
    font-size: 26px;
    color: #2b2b2b;
    margin-bottom: 20px;
    font-weight: 600;
}

/* LABELS */
#customer_login label {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

/* INPUTS */
#customer_login input.input-text {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 14px;
    background: #fafafa;
    transition: 0.3s;
    font-size: 14px;
}

#customer_login input.input-text:focus {
    border-color: #ff5a7a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 90, 122, 0.1);
}

/* BUTTON */
#customer_login button {
    background: linear-gradient(135deg, #ff5a7a, #ff7a7a);
    color: #fff;
    border-radius: 30px;
    padding: 14px;
    width: 100%;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

#customer_login button:hover {
    transform: scale(1.03);
    background: linear-gradient(135deg, #ff3d6b, #ff5a7a);
}

/* LINKS */
#customer_login .lost_password a {
    color: #ff5a7a;
    font-size: 13px;
}

#customer_login p {
    font-size: 13px;
    color: #666;
}

/* =========================
AFTER LOGIN DASHBOARD
========================= */

/* LAYOUT FIX */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

/* SIDEBAR */
.woocommerce-MyAccount-navigation {
    min-width: 260px;
    background: #ffffff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* SIDEBAR LIST */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* SIDEBAR ITEMS */
.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 8px;
}

/* SIDEBAR LINKS */
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 15px;
    border-radius: 12px;
    color: #444;
    font-size: 14px;
    transition: 0.3s;
}

/* ACTIVE + HOVER */
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    background: linear-gradient(135deg, #ff5a7a, #ff7a7a);
    color: #fff;
}

/* RIGHT CONTENT */
.woocommerce-MyAccount-content {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* TEXT */
.woocommerce-MyAccount-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* LINKS */
.woocommerce-MyAccount-content a {
    color: #ff5a7a;
    font-weight: 500;
}

/* LOGOUT LINK */
.woocommerce-MyAccount-content a:hover {
    color: #ff3d6b;
}

/* =========================
REMOVE DEFAULT UGLY STYLES
========================= */
.woocommerce form.login,
.woocommerce form.register {
    border: none !important;
}

/* =========================
MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

    #customer_login {
        flex-direction: column;
    }

    .woocommerce-account .woocommerce {
        flex-direction: column;
    }

    .woocommerce-MyAccount-navigation {
        width: 100%;
    }
}
/* =========================
PRIMARY BRAND COLOR FIX
========================= */
:root {
    --primary-color: #ff5a7a;
}

/* ALL LINKS */
.woocommerce-MyAccount-content a,
.woocommerce a {
    color: var(--primary-color) !important;
}

/* HOVER LINKS */
.woocommerce a:hover {
    color: #ff3d6b !important;
}

/* SIDEBAR ACTIVE TAB */
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: linear-gradient(135deg, #ff5a7a, #ff7a7a) !important;
    color: #fff !important;
}

/* SIDEBAR NORMAL LINKS */
.woocommerce-MyAccount-navigation ul li a {
    color: #444 !important;
}

/* SIDEBAR HOVER */
.woocommerce-MyAccount-navigation ul li a:hover {
    background: #ffe6eb !important;
    color: #ff5a7a !important;
}

/* DASHBOARD TEXT LINKS (orders, address etc.) */
.woocommerce-MyAccount-content p a {
    color: #ff5a7a !important;
    font-weight: 500;
}

/* LOGOUT LINK */
.woocommerce-MyAccount-content a[href*="logout"] {
    color: #ff5a7a !important;
}

/* REMOVE BLUE FOCUS OUTLINE */
.woocommerce a:focus {
    outline: none !important;
    box-shadow: none !important;
}/* End custom CSS */