.hh-auth-page-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 60vh;
        padding: 40px 20px;
        background: #f5f5f5;
    }

    /* Auth Form Box - WHITE with proper styling */
    .hh-auth-form-box {
        width: 100%;
        max-width: 432px;
        background: #ffffff;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        padding: 40px 30px;
        border: 1px solid #e8e8e8;
    }

    /* Title - UNIFIED */
    .hh-auth-title {
        font-size: 18px;
        font-weight: 700;
        color: #111111;
        text-align: center;
        margin: 0 0 30px 0;
        line-height: 1;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    /* Form Groups */
    .hh-form-group {
        margin-bottom: 20px;
    }

    .hh-form-group:last-of-type:not(.hh-terms-group) {
        margin-bottom: 15px;
    }

    /* Form Labels - UNIFIED */
    .hh-form-label {
        display: flex;
        align-items: center;
        font-size: 11px;
        font-weight: 600;
        color: #555555;
        margin-bottom: 6px;
        gap: 8px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }

    .hh-country-code {
        color: #999999;
    }

    .hh-label-text {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .required {
        color: #111111;
        font-weight: 700;
        font-size: 12px;
    }

    /* Form Inputs - UNIFIED */
    .hh-form-input {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #e0e0e0;
        border-radius: 2px;
        font-size: 13px;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        color: #111111;
        background: #ffffff;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        box-sizing: border-box;
        height: 44px;
        display: flex;
        align-items: center;
    }

    .hh-form-input:focus {
        outline: none;
        border-color: #111111;
        box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.1);
    }

    .hh-form-input:disabled {
        background-color: #f5f5f5;
        color: #999999;
        border-color: #ebebeb;
        cursor: not-allowed;
    }

    .hh-form-input::placeholder {
        color: #cccccc;
        font-size: 13px;
    }

    /* Terms Checkbox */
    .hh-terms-group {
        margin-bottom: 24px;
        margin-top: 16px;
    }

    .hh-checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 12px;
        color: #555555;
        line-height: 1.5;
        cursor: pointer;
    }

    .hh-checkbox-label input[type="checkbox"] {
        margin-top: 4px;
        width: 16px;
        height: 16px;
        cursor: pointer;
        flex-shrink: 0;
        accent-color: #111111;
    }

    /* Buttons - UNIFIED */
    .hh-btn {
        width: 100%;
        padding: 0 20px;
        border: none;
        border-radius: 2px;
        font-size: 11px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.15s ease-in-out;
        text-transform: uppercase;
        letter-spacing: 1px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    .hh-btn-primary {
        background: #111111;
        color: #ffffff;
    }

    .hh-btn-primary:hover {
        background: #000000;
        box-shadow: none;
    }

    .hh-btn-primary:active {
        transform: scale(0.98);
    }

    .hh-btn-primary:disabled {
        background: #cccccc;
        cursor: not-allowed;
        transform: none;
    }

    /* Help Link */
    .hh-help-link {
        text-align: center;
        margin-top: 20px;
        font-size: 12px;
    }

    .hh-help-link .hh-link-text {
        text-decoration: none;
        color: #555555;
        transition: color 0.15s ease-in-out;
    }

    .hh-help-link .hh-get-help {
        color: #111111;
        font-weight: 600;
        margin-left: 2px;
    }

    .hh-help-link .hh-link-text:hover {
        color: #111111;
    }

    .hh-help-link .hh-link-text:hover .hh-get-help {
        color: #000000;
    }

    /* Registration Footer Text */
    .hh-registration-footer-text {
        text-align: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e8e8e8;
        font-size: 12px;
        color: #555555;
    }

    .hh-registration-footer-text p {
        margin: 0;
    }

    /* Links in Terms */
    .hh-link {
        color: #111111;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.15s ease-in-out;
    }

    .hh-link:hover {
        color: #000000;
        text-decoration: underline;
    }

    /* Signup Link */
    .hh-signup-link {
        color: #111111;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .hh-signup-link:hover {
        color: #000000;
        text-decoration: underline;
    }

    /* Email Section */
    .hh-email-section {
        margin-bottom: 0;
        padding-bottom: 24px;
    }

    .hh-email-section .hh-form-group:last-child {
        margin-bottom: 16px;
    }

    /* Horizontal Separator */
    .hh-email-separator {
        height: 1px;
        background: #e8e8e8;
        margin: 24px 0;
        display: none;
    }

    /* Email Confirmation Box */
    .hh-email-confirmation {
        text-align: center;
        padding: 20px 0;
    }

    .hh-confirmation-box p {
        margin: 12px 0;
        font-size: 14px;
        color: #333333;
        line-height: 1.5;
    }

    .hh-confirmation-email {
        font-weight: 600;
        font-size: 16px;
        color: #000000;
        margin: 16px 0 !important;
    }

    .hh-form-input[readonly] {
        background-color: #f9f9f9;
        cursor: not-allowed;
    }

    /* Error Message */
    .hh-error-message {
        display: block;
        color: #d32f2f;
        font-size: 12px;
        margin-top: 6px;
        padding: 8px 12px;
        background: #ffebee;
        border-radius: 4px;
        border-left: 3px solid #d32f2f;
    }

    .hh-email-check-form {
        display: block;
    }

    /* Form Footer Text */
    .hh-form-footer-text {
        text-align: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e8e8e8;
        font-size: 14px;
    }

    .hh-form-footer-text p {
        margin: 0;
    }

    .hh-form-footer-text a {
        color: #000000;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .hh-form-footer-text a:hover {
        color: #666666;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hh-auth-page-wrapper {
            padding: 30px 16px;
            min-height: 50vh;
        }

        .hh-auth-form-box {
            max-width: 100%;
            padding: 30px 24px;
        }

        .hh-auth-title {
            font-size: 16px;
            margin-bottom: 24px;
        }

        .hh-form-group {
            margin-bottom: 18px;
        }

        .hh-form-label {
            font-size: 10px;
            margin-bottom: 6px;
        }

        .hh-form-input {
            height: 42px;
            padding: 9px 10px;
            font-size: 13px;
            border-radius: 2px;
        }

        .hh-btn {
            height: 42px;
            font-size: 10px;
            padding: 0 16px;
        }

        .hh-checkbox-label {
            font-size: 11px;
        }

        .hh-registration-footer-text {
            font-size: 11px;
            margin-top: 18px;
            padding-top: 18px;
        }
    }

    @media (max-width: 480px) {
        .hh-auth-page-wrapper {
            padding: 20px 12px;
        }

        .hh-auth-form-box {
            max-width: 100%;
            padding: 24px 16px;
            border-radius: 2px;
        }

        .hh-auth-title {
            font-size: 14px;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .hh-form-group {
            margin-bottom: 16px;
        }

        .hh-form-label {
            font-size: 10px;
            margin-bottom: 5px;
        }

        .hh-form-input {
            height: 40px;
            padding: 8px 10px;
            font-size: 12px;
        }

        .hh-btn {
            height: 40px;
            font-size: 10px;
            letter-spacing: 0.5px;
        }

        .hh-checkbox-label {
            font-size: 11px;
            line-height: 1.4;
        }

        .hh-checkbox-label input[type="checkbox"] {
            margin-top: 2px;
        }

        .hh-help-link {
            font-size: 11px;
        }

        .hh-registration-footer-text {
            font-size: 10px;
            margin-top: 16px;
            padding-top: 16px;
        }
    }

    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
        .hh-auth-page-wrapper { background: #ffffff; }
        .hh-auth-form-box {
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(204, 204, 204, 0.5);
            border-color: #dbdbdb;
        }
        .hh-auth-title { color: #ffffff; }
        .hh-form-input {
            background: #3a3a3a;
            border-color: #444444;
            color: #ffffff;
        }
        .hh-form-input::placeholder { color: #999999; }
        .hh-form-input:focus {
            border-color: #e91e63;
            box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
        }
        .hh-checkbox-label { color: #000000; }
        .hh-help-link .hh-link-text { color: #000000; }
        .hh-registration-footer-text {
            color: #000000;
            border-color: #444444;
        }
    }

/* =====================================================
   MY ACCOUNT PAGE — LUXURY REDESIGN
   ===================================================== */

.woocommerce-account {
    background: #ffffff;
    padding: 20px 0 40px 0;
}

/* Page title */
.woocommerce-account .entry-title,
.woocommerce-account .page-title {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #111 !important;
    text-align: center !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    margin: 0 0 32px 0 !important;
    line-height: 1 !important;
}



/* ── SIDEBAR NAVIGATION ── */
.woocommerce-MyAccount-navigation {
    flex: 0 0 160px !important;
    width: 160px !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    position: sticky !important;
    top: 80px !important;
    height: fit-content !important;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-top: 1px solid #ebebeb !important;
}

.woocommerce-MyAccount-navigation ul li {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #ebebeb !important;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block !important;
    padding: 12px 0 12px 14px !important;
    color: #aaa !important;
    text-decoration: none !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    transition: color 0.2s ease !important;
    background: transparent !important;
    border-radius: 0 !important;
    line-height: 1 !important;
    position: relative !important;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    color: #111 !important;
    background: transparent !important;
}

/* Active item — left black bar */
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a[aria-current="page"] {
    color: #111 !important;
    font-weight: 700 !important;
    background: transparent !important;
}

.woocommerce-MyAccount-navigation ul li.is-active a::before,
.woocommerce-MyAccount-navigation ul li a[aria-current="page"]::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 2px !important;
    height: 14px !important;
    background: #111 !important;
}

/* Logout red hover */
.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    color: #c00 !important;
}

/* ── CONTENT AREA ── */
.woocommerce-MyAccount-content {
    flex: 1 !important;
    min-width: 0 !important;
    background: #ffffff !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Notices always on top */
.woocommerce-MyAccount-content .woocommerce-notices-wrapper,
body.woocommerce-account .woocommerce-notices-wrapper {
    order: -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px !important;
}

body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-error {
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
    padding: 10px 14px !important;
    border: 1px solid rgba(107, 91, 78, 0.22) !important;
    border-radius: 12px !important;
    background: rgba(250, 248, 245, 0.96) !important;
    color: var(--hoot-fg) !important;
    min-height: 0 !important;
    box-shadow: none !important;
}

body.woocommerce-account .woocommerce-message::before,
body.woocommerce-account .woocommerce-info::before,
body.woocommerce-account .woocommerce-error::before,
body.woocommerce-account .woocommerce-message::after,
body.woocommerce-account .woocommerce-info::after,
body.woocommerce-account .woocommerce-error::after {
    display: none !important;
}

/* Intro text */
.woocommerce-MyAccount-content > p {
    font-size: 12px !important;
    color: #999 !important;
    margin-bottom: 24px !important;
    line-height: 1.6 !important;
}

/* Section headings */
.woocommerce-MyAccount-content h3 {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #111 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin: 0 0 14px 0 !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #ebebeb !important;
    line-height: 1 !important;
}

/* Address boxes */
.woocommerce-MyAccount-content .woocommerce-Address {
    margin-bottom: 20px !important;
    padding: 18px !important;
    border: 1px solid #ebebeb !important;
    background: #fafafa !important;
}

.woocommerce-MyAccount-content .woocommerce-Address address {
    font-size: 13px !important;
    color: #555 !important;
    line-height: 1.7 !important;
    font-style: normal !important;
}

/* Address title row with Edit link */
.woocommerce-address-title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 12px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #ebebeb !important;
}

.woocommerce-address-title h3 {
    border-bottom: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-address-title .edit {
    font-size: 10px !important;
    color: #999 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
    border-bottom: 1px solid #ccc !important;
    padding-bottom: 1px !important;
    transition: all 0.2s ease !important;
}

.woocommerce-address-title .edit:hover {
    color: #111 !important;
    border-color: #111 !important;
}

/* Tables */
.woocommerce-MyAccount-content table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 15px !important;
    font-size: 12px !important;
}

.woocommerce-MyAccount-content table th {
    background: transparent !important;
    padding: 10px 12px !important;
    text-align: left !important;
    font-weight: 700 !important;
    color: #111 !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-bottom: 1px solid #111 !important;
}

.woocommerce-MyAccount-content table td {
    padding: 12px !important;
    border-bottom: 1px solid #ebebeb !important;
    color: #555 !important;
    vertical-align: middle !important;
}

.woocommerce-MyAccount-content table tr:last-child td {
    border-bottom: none !important;
}

/* ── THEMEHIGH MULTIPLE ADDRESSES — contained fix ── */
.thmaf-my-acnt {
    position: relative !important;
    margin-top: 20px !important;
    width: 100% !important;
    clear: both !important;
    overflow: hidden !important;
}

.thmaf-acnt-cus-addr {
    background: #fafafa !important;
    border: 1px solid #ebebeb !important;
    padding: 18px !important;
    margin-bottom: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.thmaf-acnt-cus-addr .th-head h3 {
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #111 !important;
    margin: 0 0 14px 0 !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #ebebeb !important;
    line-height: 1 !important;
}

/* Address card */
.thmaf-adr-box {
    border: 1px solid #ebebeb !important;
    padding: 14px !important;
    background: #fff !important;
    margin-bottom: 10px !important;
    position: relative !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.thmaf-adr-text,
.acnt-adrr-text {
    font-size: 13px !important;
    color: #555 !important;
    line-height: 1.7 !important;
    margin-bottom: 12px !important;
    font-style: normal !important;
    display: block !important;
}

/* Set as default button */
.thmaf-acnt-dflt,
.account-default {
    background: #111 !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 14px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    border-radius: 0 !important;
    transition: background 0.2s ease !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    display: inline-block !important;
}

.thmaf-acnt-dflt:hover,
.account-default:hover {
    background: #333 !important;
}

/* Delete button */
.thmaf-del-acnt,
.th-del-acnt {
    background: transparent !important;
    color: #bbb !important;
    border: none !important;
    font-size: 10px !important;
    cursor: pointer !important;
    padding: 6px 0 0 0 !important;
    text-decoration: underline !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: color 0.2s ease !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    display: block !important;
}

.thmaf-del-acnt:hover,
.th-del-acnt:hover {
    color: #c00 !important;
}

/* Footer (delete button wrapper) */
.thmaf-acnt-adr-footer {
    margin-top: 8px !important;
    padding-top: 8px !important;
    border-top: 1px solid #f0f0f0 !important;
}

/* CRITICAL: Kill the carousel, make it a normal list */
.thmaf-thslider {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
}

.thmaf-thslider-box {
    width: 100% !important;
    overflow: hidden !important;
}

.thmaf-thslider-viewport {
    width: 100% !important;
    overflow: visible !important;
    height: auto !important;
}

.thmaf-thslider-list {
    display: block !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    transform: none !important;
    position: static !important;
    height: auto !important;
    white-space: normal !important;
}

.thmaf-thslider-item {
    display: block !important;
    width: 100% !important;
    float: none !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    margin-bottom: 10px !important;
    white-space: normal !important;
}

.thmaf-thslider-item:last-child {
    margin-bottom: 0 !important;
}

/* Hide carousel navigation arrows */
.control-buttons {
    display: none !important;
}

/* ── RESET PASSWORD FORM ── */
.woocommerce-ResetPassword {
    max-width: 420px;
    margin: 50px auto;
    padding: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.woocommerce-ResetPassword p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.woocommerce-ResetPassword .form-row {
    margin-bottom: 20px;
}

.woocommerce-ResetPassword label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.woocommerce-ResetPassword input.input-text {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border 0.3s;
    box-sizing: border-box;
}

.woocommerce-ResetPassword input.input-text:focus {
    outline: none;
    border-color: #000;
}

.woocommerce-ResetPassword button[type="submit"] {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.woocommerce-ResetPassword button[type="submit"]:hover {
    background: #333;
}

body.woocommerce-lost-password .entry-content .woocommerce,
body.woocommerce-reset-password .entry-content .woocommerce {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body .woocommerce-ResetPassword,
body .lost_reset_password {
    width: 100%;
    max-width: 420px;
    margin: 40px auto;
    padding: 40px;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

body.woocommerce-lost-password .woocommerce-notices-wrapper,
body.woocommerce-reset-password .woocommerce-notices-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 0 auto;
    padding-bottom: 0;
}

body .woocommerce-ResetPassword,
body .lost_reset_password {
    margin-top: 10px;
}

body.woocommerce-reset-password .woocommerce-ResetPassword p.form-row label,
body.woocommerce-lost-password .woocommerce-ResetPassword p.form-row label {
    text-align: left;
    display: block;
    width: 100%;
}

body.woocommerce-reset-password .woocommerce-ResetPassword p.form-row,
body.woocommerce-lost-password .woocommerce-ResetPassword p.form-row {
    text-align: left;
    width: 100%;
}

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 15px !important;
    }

    /* Nav: compact horizontal scrollable row */
    .woocommerce-MyAccount-navigation {
        flex: none !important;
        width: 100% !important;
        position: static !important;
        margin-bottom: 24px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .woocommerce-MyAccount-navigation::-webkit-scrollbar {
        display: none !important;
    }

    .woocommerce-MyAccount-navigation ul {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        border-top: none !important;
        border-bottom: 1px solid #ebebeb !important;
        gap: 0 !important;
        white-space: nowrap !important;
    }

    .woocommerce-MyAccount-navigation ul li {
        border-bottom: none !important;
        flex-shrink: 0 !important;
    }

    .woocommerce-MyAccount-navigation ul li a {
        padding: 10px 14px !important;
        font-size: 9px !important;
        letter-spacing: 1px !important;
        color: #aaa !important;
        border-bottom: 2px solid transparent !important;
        display: inline-block !important;
    }

    /* Active: bottom border instead of left bar */
    .woocommerce-MyAccount-navigation ul li.is-active a,
    .woocommerce-MyAccount-navigation ul li a[aria-current="page"] {
        color: #111 !important;
        border-bottom: 2px solid #111 !important;
    }

    .woocommerce-MyAccount-navigation ul li.is-active a::before,
    .woocommerce-MyAccount-navigation ul li a[aria-current="page"]::before {
        display: none !important;
    }

    .woocommerce-MyAccount-content {
        width: 100% !important;
        padding: 0 !important;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .woocommerce-account .woocommerce {
        padding: 0 12px !important;
    }

    .woocommerce-MyAccount-navigation ul li a {
        padding: 10px 12px !important;
        font-size: 9px !important;
    }

    .woocommerce-MyAccount-content .woocommerce-Address {
        padding: 14px !important;
    }

    .thmaf-acnt-cus-addr {
        padding: 14px !important;
    }

    .thmaf-adr-box {
        padding: 12px !important;
    }
}