.elementor-27 .elementor-element.elementor-element-58231bc8{--display:flex;--padding-top:80px;--padding-bottom:80px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-58231bc8 *//* ====================================================
   WOOCOMMERCE MY ACCOUNT - CUSTOM STYLING
==================================================== */

/* 1. Main Container Layout (Desktop) */
.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* 2. Left Navigation Menu Sidebar */
.woocommerce-MyAccount-navigation {
    flex: 0 0 25%; /* Takes up 25% of the width */
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    align-self: flex-start; /* Prevents stretching to match content height */
}

/* Remove default list styling */
.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Space out the links */
.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 8px;
}

.woocommerce-MyAccount-navigation ul li:last-child {
    margin-bottom: 0;
}

/* Style the navigation links to look like modern buttons */
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 14px 18px;
    color: #4a4a4a;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    font-weight: 500;
    font-size: 15px;
    background: transparent;
}

/* Hover and Active State */
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: #222222; /* Change this to your brand's primary color */
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 3. Right Content Area */
.woocommerce-MyAccount-content {
    flex: 1; /* Takes up the remaining space */
    background: #ffffff;
    padding: 40px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Form inputs inside My Account */
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Buttons inside My Account */
.woocommerce-MyAccount-content .button {
    background: #222222; /* Change this to your brand's primary color */
    color: #fff;
    border-radius: 5px;
    padding: 12px 24px;
    border: none;
    transition: background 0.3s ease;
}

.woocommerce-MyAccount-content .button:hover {
    background: #444444; /* Slightly lighter shade for hover */
}

/* 4. Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
        gap: 20px;
    }
    
    .woocommerce-MyAccount-navigation {
        flex: 100%;
        width: 100%;
    }
    
    .woocommerce-MyAccount-content {
        padding: 20px;
    }
}/* End custom CSS */