.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS *//* General Font and Text Color */
.woocommerce form.woocommerce-form,
.woocommerce form label,
.woocommerce form .woocommerce-form__label-for-checkbox,
.woocommerce form .woocommerce-LostPassword a,
.woocommerce form .woocommerce-form-login__rememberme {
    font-family: 'Poppins', sans-serif;
    color: #001124;
}

/* Container */
.woocommerce form.woocommerce-form {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin: 50px auto;
}

/* Headings */
.woocommerce h2 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 25px;
    color: #001124;
    font-weight: 600;
}

/* Labels */
.woocommerce form .form-row label {
    font-weight: 500;
    margin-bottom: 6px;
}

/* Input Fields */
.woocommerce form .input-text {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    transition: 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.woocommerce form .input-text:focus {
    border-color: #0079C1;
    box-shadow: 0 0 0 3px rgba(0, 121, 193, 0.2);
    outline: none;
}

/* Button Styling */
.woocommerce form .button {
    background-color: #0079C1;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: 0.3s ease;
}

.woocommerce form .button:hover {
    background-color: #005c91;
}

/* Checkbox & Remember Me */
.woocommerce form .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Overall Container */
.woocommerce-MyAccount-content, .woocommerce-MyAccount-navigation {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    font-family: 'Poppins', sans-serif;
    color: #001124;
}

/* Layout Styling */
.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.woocommerce-MyAccount-navigation {
    flex: 0 0 250px;
}
.woocommerce-MyAccount-content {
    flex: 1;
}

/* Navigation Links */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
}
.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px;
}
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    align-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #001124;
    /*background: #fff;*/
    transition: all 0.3s ease;
    font-weight: 500;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    color: #3966ff;
}

/* Content Area */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-weight: 600;
    color: #001124;
    margin-bottom: 20px;
}
.woocommerce-MyAccount-content p,
.woocommerce-MyAccount-content address {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

/* Buttons inside dashboard */
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content a.button {
    background-color: #0079C1;
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}
.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content a.button:hover {
    background-color: #005c91;
}

/* Order Table */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
}
.woocommerce-orders-table th,
.woocommerce-orders-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 14px;
}
.woocommerce-orders-table th {
    background: #0079C1;
    color: #fff;
}
.woocommerce-MyAccount-navigation ul li:nth-child(4) {
    display: none !important;
}
.u-column2.col-2.woocommerce-Address{
    width: 48%;
    display: none;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    width: 48%;
}

.woocommerce-account .addresses .title .edit {
    float: left;
    color: #3966ff;
    margin-bottom: 15px;

}

/* Responsive adjustments */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }
    .woocommerce-MyAccount-navigation {
        width: 100%;
    }
}


/* Lost Password */
.woocommerce-LostPassword {
    text-align: right;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 15px;
}

/* Notices */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    background-color: #eaf6ff;
    border-left: 4px solid #0079C1;
    /*padding: 15px 20px;*/
    border-radius: 10px;
    color: #001124;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
    font-size: 14px;
}


/* Lost Password Form Container */
.woocommerce form.woocommerce-ResetPassword {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 50px auto;
    font-family: 'Poppins', sans-serif;
    color: #001124;
}

/* Headings */
.woocommerce-ResetPassword h2,
.woocommerce-ResetPassword legend {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #001124;
}

/* Input fields */
.woocommerce form .input-text {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #001124;
    transition: border-color 0.3s ease;
}

.woocommerce form .input-text:focus {
    border-color: #0079C1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 121, 193, 0.15);
}

/* Submit Button */
.woocommerce form .button {
    background-color: #0079C1;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    width: 100%;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.woocommerce form .button:hover {
    background-color: #005c91;
}

/* Notices (error/info) */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    background-color: #eaf6ff;
    border-left: 4px solid #0079C1;
    /*padding: 15px 20px;*/
    border-radius: 10px;
    color: #001124;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 8px rgba(0,0,0,0.03);
}

/* Form alignment and responsiveness */
.woocommerce form.woocommerce-ResetPassword fieldset {
    border: none;
    padding: 0;
    margin: 0;
}/* End custom CSS */