.elementor-10 .elementor-element.elementor-element-1b65107{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:80px;--padding-bottom:80px;--padding-left:100px;--padding-right:100px;}.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 for container, class: .elementor-element-1b65107 *//* --- 1. Main Layout & Responsiveness --- */
.woocommerce {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on mobile */
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    align-items: flex-start; /* Prevents sidebar from stretching vertically */
}

/* --- 2. Sidebar Navigation --- */
.woocommerce-MyAccount-navigation {
    width: 100%; /* Full width on mobile */
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Soft card shadow */
    overflow: hidden; /* Keeps rounded corners clean */
}

/* Desktop Sidebar Width */
@media (min-width: 768px) {
    .woocommerce-MyAccount-navigation {
        flex: 0 0 25%; 
    }
}

.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation li {
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 16px 20px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hide the awkward <br> tags output by the theme */
.woocommerce-MyAccount-navigation a br {
    display: none;
}

/* Hover Effect: Indents slightly and changes background */
.woocommerce-MyAccount-navigation a:hover {
    background-color: #fafafa;
    color: #000;
    padding-left: 25px; 
}

/* Active State: Matches your brand yellow */
.woocommerce-MyAccount-navigation li.is-active a {
    background-color: #ffc107; /* Adjust this hex to match your header perfectly */
    color: #000;
    font-weight: 700;
    border-left: 5px solid #333; /* Sharp dark accent line */
}

/* --- 3. Main Content Area --- */
.woocommerce-MyAccount-content {
    width: 100%; /* Full width on mobile */
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Soft card shadow */
    color: #555;
    line-height: 1.8;
}

/* Desktop Content Width */
@media (min-width: 768px) {
    .woocommerce-MyAccount-content {
        flex: 1; /* Takes up all remaining space next to the sidebar */
    }
}

/* Fix the pink text links inside paragraphs */
.woocommerce-MyAccount-content p a {
    color: #333;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.woocommerce-MyAccount-content p a:hover {
    color: #ffc107;
}

/* --- 4. Vendor Dashboard Button --- */
.woocommerce-MyAccount-content .dokan-btn.vendor-dashboard {
    display: inline-block;
    background-color: #333; /* Sleek dark button */
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.woocommerce-MyAccount-content .dokan-btn.vendor-dashboard:hover {
    background-color: #ffc107; /* Matches brand on hover */
    color: #000000;
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}


/* --- Aggressive Mobile Fixes --- */
@media (max-width: 767px) {
    /* 1. Force form rows to stack and take full width */
    .woocommerce-MyAccount-content form .form-row,
    .woocommerce-MyAccount-content form .form-row-first,
    .woocommerce-MyAccount-content form .form-row-last {
        width: 100% !important;
        float: none !important;
        display: block !important;
        margin-right: 0 !important;
        margin-bottom: 20px !important;
    }

    /* 2. Force input boxes to stretch the full width of their container */
    .woocommerce-MyAccount-content form .form-row input.input-text,
    .woocommerce-MyAccount-content form .form-row input[type="text"],
    .woocommerce-MyAccount-content form .form-row input[type="email"],
    .woocommerce-MyAccount-content form .form-row input[type="password"] {
        width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 3. Reclaim screen space by reducing the massive white padding on mobile */
    .woocommerce-MyAccount-content {
        padding: 20px 15px !important;
    }
}

/* 4. Fix the floating red asterisk (*) on ALL screen sizes */
.woocommerce form .form-row label abbr.required,
.woocommerce form .form-row label .required {
    position: static !important;
    float: none !important;
    right: auto !important;
    top: auto !important;
    margin-left: 3px;
    display: inline-block;
}

/* 5. Ensure labels don't get restricted */
.woocommerce form .form-row label {
    display: block !important;
    width: 100% !important;
}/* End custom CSS */