.elementor-9 .elementor-element.elementor-element-7c39396{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-fad495a *//* ===== Wrapper ===== */
.woocommerce-account .woocommerce {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-top: 24px;
}

/* ===== Sidebar ===== */
.woocommerce-MyAccount-navigation {
    width: 240px;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

/* Menu base */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 6px;
    border: 1px solid black;
    border: none;
}

/* Hide Downloads */
.woocommerce-MyAccount-navigation-link--downloads {
    display: none;
}

/* Menu links */
.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    transition: .2s ease;
}

.woocommerce-MyAccount-navigation a:hover {
    background: #f3f6ff;
    color: #0d6efd;
}

.woocommerce-MyAccount-navigation .is-active a {
    background: #0d6efd;
    color: #000;
}

/* ===== Logout special ===== */
.woocommerce-MyAccount-navigation-link--customer-logout a {
    background: #fee2e2;
    color: #dc2626;
    font-weight: 600;
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: #dc2626;
    color: #fff;
}

/* ===== Content Card ===== */
.woocommerce-MyAccount-content {
    flex: 1;
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

/* ===== Typography ===== */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    margin-top: 0;
}

/* ===== Tables ===== */
.woocommerce-MyAccount-content table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.woocommerce-MyAccount-content th {
    background: #f9fafb;
    font-weight: 600;
}

.woocommerce-MyAccount-content th,
.woocommerce-MyAccount-content td {
    padding: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.woocommerce-MyAccount-content tr:last-child td {
    border-bottom: none;
}

/* ===== Buttons ===== */
.woocommerce a.button,
.woocommerce button.button {
    background: #0d6efd;
    color: #fff;
    border-radius: 8px;
    padding: 10px 18px;
    border: none;
    transition: .2s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(13,110,253,.25);
}

/* ===== Forms ===== */
.woocommerce-MyAccount-content input,
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    width: 100%;
}

.woocommerce-MyAccount-content input:focus {
    outline: none;
    border-color: #0d6efd;
}

/* ===== Address cards ===== */
.woocommerce-Address {
    background: #f9fafb;
    padding: 18px;
    border-radius: 12px;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {

    .woocommerce-account .woocommerce {
        flex-direction: column;
    }

    .woocommerce-MyAccount-navigation {
        width: 100%;
        padding: 12px;
    }

    /* Grid menu */
    .woocommerce-MyAccount-navigation ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .woocommerce-MyAccount-navigation li {
        margin: 0;
    }

    .woocommerce-MyAccount-navigation a {
        text-align: center;
        padding: 14px 10px;
    }

    /* Logout full width */
    .woocommerce-MyAccount-navigation-link--customer-logout {
        grid-column: span 2;
    }

    .woocommerce-MyAccount-content {
        padding: 20px;
    }
}/* End custom CSS */