.elementor-9 .elementor-element.elementor-element-575086bc{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family );font-size:var( --e-global-typography-text-font-size );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 );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}/* Start custom CSS *//* WooCommerce My Account Page Styling */

/* Main Container */
.woocommerce-info::before{
    display: none;
}

.woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header .entry-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0;
}

/* Force Flex Layout for WooCommerce Account */
.woocommerce:has(.woocommerce-MyAccount-navigation) {
    display: flex !important;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

/* Layout Container */
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(201, 71, 232, 0.1);
}

/* Navigation Sidebar */
.woocommerce-MyAccount-navigation {
    flex: 0 0 280px;
    width: 280px;
    padding: 30px 0;
    margin-bottom: 0;
}

/* Content Area Flex */
.woocommerce-MyAccount-content {
    flex: 1;
    min-width: 0;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation-link {
    margin: 0;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation-link a {
    display: block;
    padding: 18px 30px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-right: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.woocommerce-MyAccount-navigation-link a:hover {
    color: #c947e8;
    background: linear-gradient(90deg, rgba(201, 71, 232, 0.05) 0%, transparent 100%);
    border-right-color: #c947e8;
}

.woocommerce-MyAccount-navigation-link.is-active a {
    color: #ffffff;
    background: linear-gradient(135deg, #c947e8 0%, #9b3bb8 100%);
    border-right-color: #7b2b98;
    font-weight: 600;
}

/* Content Area */
.woocommerce-MyAccount-content {
    padding: 40px;
    min-height: 400px;
}

.woocommerce-MyAccount-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content strong {
    color: #c947e8;
    font-weight: 600;
}

.woocommerce-MyAccount-content a {
    color: #c947e8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.woocommerce-MyAccount-content a:hover {
    color: #9b3bb8;
    border-bottom-color: #c947e8;
}

/* Welcome Message */
.woocommerce-MyAccount-content > p:first-of-type {
    background: linear-gradient(135deg, #f8f0fd 0%, #fef7ff 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border-right: 5px solid #c947e8;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .woocommerce:has(.woocommerce-MyAccount-navigation) {
        display: flex !important;
        flex-direction: row;
        gap: 30px;
        align-items: flex-start;
    }
    
    .woocommerce-MyAccount-navigation {
        position: sticky;
        top: 30px;
        flex-shrink: 0;
    }
    
    .woocommerce-MyAccount-content {
        flex-grow: 1;
    }
}

/* Buttons and Forms Styling */
.woocommerce button.button,
.woocommerce input[type="submit"],
.woocommerce .button {
    background: linear-gradient(135deg, #c947e8 0%, #9b3bb8 100%);
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 71, 232, 0.3);
}

.woocommerce button.button:hover,
.woocommerce input[type="submit"]:hover,
.woocommerce .button:hover {
    background: linear-gradient(135deg, #9b3bb8 0%, #7b2b98 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 71, 232, 0.4);
}

/* Form Fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: #c947e8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 71, 232, 0.1);
}

/* Orders Table */
.woocommerce-orders-table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.woocommerce-orders-table thead {
    background: linear-gradient(135deg, #c947e8 0%, #9b3bb8 100%);
}

.woocommerce-orders-table thead th {
    color: #ffffff;
    font-weight: 600;
    padding: 18px 15px;
    border: none;
}

.woocommerce-orders-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.woocommerce-orders-table tbody tr:hover {
    background: #fef7ff;
}

.woocommerce-orders-table td {
    padding: 18px 15px;
}

/* Addresses */
.woocommerce-Address {
    background: #fef7ff;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #f0e6f6;
    margin-bottom: 20px;
}

.woocommerce-Address-title h3 {
    color: #c947e8;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .page-header .entry-title {
        font-size: 32px;
    }
    
    .woocommerce:has(.woocommerce-MyAccount-navigation) {
        display: block !important;
    }
    
    .woocommerce-MyAccount-navigation {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .woocommerce-MyAccount-navigation-link a {
        padding: 15px 20px;
        border-right: none;
        border-bottom: 3px solid transparent;
    }
    
    .woocommerce-MyAccount-navigation-link a:hover,
    .woocommerce-MyAccount-navigation-link.is-active a {
        border-right: none;
        border-bottom-color: #c947e8;
    }
    
    .woocommerce-MyAccount-content {
        padding: 25px 20px;
    }
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
    background: #e8f5e9;
    border-right: 4px solid #4caf50;
    padding: 15px 20px;
    border-radius: 10px;
    color: #2e7d32;
}

.woocommerce-error {
    background: #ffebee;
    border-right: 4px solid #f44336;
    padding: 15px 20px;
    border-radius: 10px;
    color: #c62828;
}

/* Loading and Animations */
.woocommerce-MyAccount-navigation-link a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background: rgba(201, 71, 232, 0.1);
    transition: width 0.3s ease;
    border-radius: 10px 0 0 10px;
}

.woocommerce-MyAccount-navigation-link a:hover::before {
    width: 100%;
}

.woocommerce-MyAccount-navigation-link.is-active a::before {
    display: none;
}/* End custom CSS */