.elementor-15 .elementor-element.elementor-element-2c74e05a{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}/* Start custom CSS for container, class: .elementor-element-2c74e05a *//* 1. Center the entire My Account Container */
.woocommerce-account .woocommerce {
    max-width: 1100px;
    margin: 40px auto !important;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
}

/* 2. Style the Sidebar Navigation */
.woocommerce-MyAccount-navigation {
    flex: 0 0 250px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px !important;
}

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

.woocommerce-MyAccount-navigation li {
    border-bottom: 1px solid #f7f7f7;
}

.woocommerce-MyAccount-navigation li a {
    padding: 12px 10px;
    display: block;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

/* 3. The Active/Hover Link (Using your Brand Red) */
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
    color: #DD4B39 !important;
    background-color: rgba(221, 75, 57, 0.05);
    border-radius: 4px;
}

/* 4. Style the Content Area */
.woocommerce-MyAccount-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    line-height: 1.6;
}

/* 5. Style the "Log Out" and "Edit" links inside text */
.woocommerce-MyAccount-content a {
    color: #DD4B39;
    font-weight: 600;
}

/* 6. Mobile Layout - Stack them vertically */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }
    .woocommerce-MyAccount-navigation {
        flex: 0 0 100%;
    }
}
/* 1. Target the Login & Register Columns on the My-Account page */
.woocommerce-account .u-columns.col2-set {
    display: flex !important;
    gap: 40px;
    margin-top: 40px !important;
    justify-content: center;
}

/* 2. Styling the individual Login/Register and Edit Profile boxes */
.woocommerce-account .u-column1, 
.woocommerce-account .u-column2,
.woocommerce-edit-account fieldset,
.woocommerce-address-fields {
    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    padding: 35px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04) !important;
}

/* 3. Global Input Field Styling (For Login, Register, and Edit Profile) */
.woocommerce-account input.input-text,
.woocommerce-account select,
.woocommerce-account textarea {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    background-color: #fcfcfc !important;
    margin-bottom: 10px;
}

/* 4. Brand Gradient for Login, Register, and Save Changes buttons */
.woocommerce-account .button {
    background: linear-gradient(135deg, #DD4B39 0%, #C13B2A 100%) !important;
    color: #fff !important;
    padding: 14px 28px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    border: none !important;
    width: 100%; /* Makes buttons full-width for a modern look */
    transition: 0.3s ease;
}

.woocommerce-account .button:hover {
    filter: brightness(1.1);
    box-shadow: 0 5px 15px rgba(221, 75, 57, 0.3) !important;
}

/* 5. Center Account Titles */
.woocommerce-account h2 {
    text-align: center;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px !important;
}

/* 6. Fix Mobile View */
@media (max-width: 768px) {
    .woocommerce-account .u-columns.col2-set {
        flex-direction: column !important;
    }
}
/* 1. Style the Notice Container (The Blue Bar) */
.woocommerce-info {
    background: #ffffff !important; /* Change from blue to white */
    border-top-color: #DD4B39 !important; /* Add your brand red at the top */
    color: #333 !important; /* Darker text for readability */
    border-radius: 8px !important;
    padding: 20px 25px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}


.woocommerce-info::before {
    color: #DD4B39 !important; 
}

/* 4. Hover effect for the button */
.woocommerce-info .button:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 10px rgba(221, 75, 57, 0.2) !important;
}
/* Hide Address tab from My Account Sidebar */
.woocommerce-MyAccount-navigation-link--edit-address {
    display: none !important;
}/* End custom CSS */