  /**
 * LAWASIA WRAPPER STYLES
 * Compatible avec les maquettes fournies
 */

/* ============================================
   VARIABLES
   ============================================ */
:root {
    --lawasia-primary: #2161A3;
    --lawasia-primary-dark: #2c5a7f;
    --lawasia-white: #ffffff;
    --lawasia-dark: #212529;
    --lawasia-gray-100: #f5f5f5;
    --lawasia-gray-300: #e0e0e0;
    --lawasia-gray-400: #999999;
    --lawasia-gray-600: #757575;
    --lawasia-gray-900: #212121;
    --lawasia-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --lawasia-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --lawasia-radius: 8px;
    --lawasia-wrapper-height: 565px;
}

/* ============================================
   LAYOUT 2 COLONNES
   ============================================ */
.lawasia-wrapper {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
    align-items: flex-start;
}

.lawasia-left {
    flex: 0 0 40%;
    min-width: 0;
}

.lawasia-right {
    flex: 0 0 60%;
    min-width: 0;
}

/* ============================================
   CARTE FORMULAIRE (gauche)
   ============================================ */
.lawasia-card {
    background: var(--lawasia-white);
    padding: 2.5rem;
    border-radius: var(--lawasia-radius);
    box-shadow: var(--lawasia-shadow);
}

.lawasia-card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--lawasia-gray-900);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--lawasia-gray-300);
}

/* Override UMP styles si nécessaire */
.lawasia-card .ihc-form-create-edit input[type="text"],
.lawasia-card .ihc-form-create-edit input[type="email"],
.lawasia-card .ihc-form-create-edit input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--lawasia-gray-300);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}



.lawasia-card .ihc-form-create-edit input:focus {
    outline: none;
    border-color: var(--lawasia-primary);
    box-shadow: 0 0 0 3px rgba(74, 123, 167, 0.1);
}

/* ============================================
   CARTE PROMO (droite)
   ============================================ */
.lawasia-promo,
.lawasia-benefits {
    background: linear-gradient(135deg, var(--lawasia-primary) 0%, var(--lawasia-primary-dark) 100%);
    color: var(--lawasia-white);
    padding: 2.5rem;
    border-radius: var(--lawasia-radius);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lawasia-promo h2,
.lawasia-benefits h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.lawasia-promo p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   LISTE BENEFITS
   ============================================ */
.lawasia-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lawasia-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.lawasia-benefits-list svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.125rem;
    fill: currentColor;
    background: var(--lawasia-primary);
    border-radius: 50%;
    padding: 4px;
}
.lawasia-benefits-list li span {
    color: var(--lawasia-primary);
}

/* ============================================
   BOUTONS
   ============================================ */
.lawasia-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    background: var(--lawasia-primary);
    color: var(--lawasia-white);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    cursor: pointer;
}

.lawasia-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--lawasia-shadow-lg);
}

.lawasia-btn svg {
    width: 20px;
    height: 20px;
}

.lawasia-btn-secondary {
    background: transparent;
    color: var(--lawasia-primary);
    border: 2px solid var(--lawasia-primary);
}

.lawasia-btn-secondary:hover {
    background: var(--lawasia-primary);
    color: var(--lawasia-white);
}

/* ============================================
   PAGE ACCOUNT
   ============================================ */
.td-main-content:has(.lawasia-account) .ihc-ap-menu,
.td-main-content:has(.lawasia-account) .iump-user-page-details {
    display: none;
}

#dood-account-page .iump-user-page-details,
#dood-account-page .ihc-ap-menu {
    display: none;
}

#dood-account-page #ihc_account_page_wrapp {
    width: 100%;
    display: flex;
}
 
.lawasia-welcome {
    padding: 2rem;
    background-color: white;
    border-radius: var(--lawasia-radius);
    border-left: 5px solid var(--lawasia-primary);
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

.lawasia-welcome h2 {
    font-size: 1.5rem;
    color: var(--lawasia-gray-900);
    margin-bottom: 30px;
}

/* TO REMOVE WHEN WE HAVE THE LOGIC TO APPLLY */
.lawasia-welcome p,
.lawasia-section-directory,
.dood-card-footer {
    display: none !important;
}

.dood-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lawasia-user-name {
    color: var(--lawasia-primary);
    font-weight: 700;
}

.lawasia-logout {
    /*
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    */
    padding: 12px 33px;
    color: var(--lawasia-primary);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #00000014;
    border-radius: 8%;
    box-shadow: 0px 1px 2px 0px #0000001A;
    background: white;
}

.lawasia-logout:hover {
    text-decoration: underline;
}

.lawasia-section {
    background: var(--lawasia-white);
    padding: 2rem;
    border-radius: var(--lawasia-radius);
    box-shadow: var(--lawasia-shadow);
    margin-bottom: 1.5rem;
}

.lawasia-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--lawasia-gray-900);
}

.lawasia-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.dood-card-footer {
    display: flex;
    justify-content: end;
}
.lawasia-link {
    width: 100%;
}

/* ============================================
   FORM EDIT ACCOUNT
   ============================================ */
#dood-account-page #ihc_account_page_wrapp {
    display: flex;
    width: 100%;
}

#dood-account-page #ihc_account_page_wrapp #ihc_account_page_tab_content{
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

#dood-account-page #ihc_account_page_wrapp #ihc_account_page_tab_content .lawasia-account {
  width: 100%;
  display: flex;
  flex-direction: column;
}

#dood-account-page #ihc_account_page_wrapp #ihc_account_page_tab_content .iump-account-content-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #2161A3;
}

.dood-manage-account-wrapper .iump-register-form.ihc-register-6 {
    margin-bottom: 0;
}

.dood-manage-account-wrapper form .iump-form-line-register {
    padding: 0;
    margin: 0;
}
.dood-manage-account-wrapper form .iump-form-line-register .iump-labels-register {
    width: 100% !important;
    gap: 15px;
    display: flex;
}
.dood-manage-account-wrapper form .iump-form-line-register input {
    width: 100% !important;
    border-radius: 5px !important;
    border-width: 1px !important;
    min-height: 45px;
}

.dood-manage-account-wrapper .general_section .iump-form-line-register .iump-labels-register,
.dood-manage-account-wrapper .address_section .iump-form-line-register .iump-labels-register  {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 15px;
}

.dood-manage-account-wrapper .general_section .iump-form-line-register .iump-labels-register .ihc-required-sign,
.dood-manage-account-wrapper .password_section .iump-form-line-register .iump-labels-register .ihc-required-sign,
.dood-manage-account-wrapper .address_section .iump-form-line-register .iump-labels-register .ihc-required-sign,
.dood-manage-account-wrapper .delivery_section .iump-form-line-register .iump-labels-register .ihc-required-sign {
    color: red;
}

.dood-manage-account-wrapper .password_section .lawasia-btn {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    padding: 10px 20px;
}
.dood-manage-account-wrapper .newsletter_section .newsletter-checkbox.newsletter .iump-labels-register {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.dood-manage-account-wrapper .iump-submit-form .lawasia-btn {
    margin: 0;
}
.dood-manage-account-wrapper .general_section .iump-labels-container,
.dood-manage-account-wrapper .password_section .iump-labels-container,
.dood-manage-account-wrapper .delivery_section .iump-labels-container,
.dood-manage-account-wrapper .address_section .iump-labels-container {
    gap: 8px;
    display: flex;
    flex-direction: row-reverse;
}
.dood-manage-account-wrapper .address_section select {
    width: 100% !important;
    border-radius: 5px !important;
    border-width: 1px !important;
    min-height: 45px;
    background: transparent;
}

.dood-manage-account-wrapper .newsletter_section .newsletter-checkbox.newsletter .iump-labels-container {
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
}

.dood-manage-account-wrapper .delivery_section .dood-subtitle,
.dood-manage-account-wrapper .address_section .dood-subtitle {
    color: #999999;
}
.dood-manage-account-wrapper .newsletter_section .dood-subtitle {
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
}

.dood-manage-account-wrapper .ihc-subscr-section {
    margin-bottom: 24px;
}
.dood-manage-account-wrapper .ihc-subscr-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lawasia-primary);
    margin-bottom: 12px;
}
.dood-manage-account-wrapper .ihc-subscr-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;  /* nom à gauche, boutons à droite */
    padding: 14px 18px;
    background: var(--lawasia-gray-100);
    border: 1px solid var(--lawasia-gray-200);
    border-radius: 6px;
    margin-bottom: 10px;
}
.dood-manage-account-wrapper .ihc-subscr-row-name {
    flex: 1;
}
.dood-manage-account-wrapper .ihc-subscr-row-name .ihc-level-name {
    font-weight: 600;
    color: var(--lawasia-primary);
    font-size: 15px;
}
.dood-manage-account-wrapper .ihc-subscr-row-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-shrink: 0;
}
.dood-manage-account-wrapper .ihc-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.dood-manage-account-wrapper .ihc-btn:hover {
    opacity: 0.85;
    text-decoration: none;
}
.dood-manage-account-wrapper .ihc-btn-dark {
    background-color: var(--lawasia-dark);
    color: #ffffff !important;
}
.dood-manage-account-wrapper .ihc-btn-blue {
    background-color: var(--lawasia-primary);
    color: #ffffff !important;
}
.dood-manage-account-wrapper .ihc-subscr-divider {
    border: none;
    border-top: 1px solid var(--lawasia-gray-200);
    margin: 24px 0;
}
.dood-manage-account-wrapper .ihc-subscr-empty {
    color: var(--lawasia-gray-500);
    font-style: italic;
    padding: 10px 0;
}

/* ============================================
   LATEST ISSUES
   ============================================ */
.lawasia-issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.lawasia-issue img.magazine-cover-img.shortcode-generated {
    width: 100%;
    height: 100% !important;
}
.lawasia-issue {
    text-align: center;
    height: 433px !important;
}
.lawasia-issue img {
    width: 100%;
    height: auto;
    border-radius: var(--lawasia-radius);
    box-shadow: var(--lawasia-shadow);
    transition: all 0.3s ease;
}
.lawasia-issue img:hover {
    transform: translateY(-4px);
    box-shadow: var(--lawasia-shadow-lg);
}
.lawasia-issue p {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--lawasia-gray-600);
}

/**
 * ============================================
 * LAWASIA LOGIN TEMPLATE 8 - 2 COLUMNS
 * ============================================
 */
.lawasia-login-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  align-items: flex-start;
  height: 410px;
  min-height: 410px;
  max-height: 410px;
}
.lawasia-login-form {
    flex: 0 0 45%;
    background: #ffffff;
    padding: 40px 30px 40px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--lawasia-primary);
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    height: 100%;
}
.lawasia-login-title {
    border: none;
    width: 166;
    color: var(--lawasia-primary);
    font-size: 28px;
    font-family: 'Calluna Sans';
    font-weight: 700;
    font-style: 'bold';
    line-height: 24px;
}
.lawasia-form-group {
    margin-bottom: 1rem;
}
.lawasia-form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lawasia-primary);
}
.lawasia-form-input {
    width: 100%;
    height: 45px;
    min-height: 45px;
    max-height: 45px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.lawasia-form-input:focus {
    outline: none;
    border-color: #4a7ba7;
    box-shadow: 0 0 0 3px rgba(74, 123, 167, 0.1);
}
.lawasia-form-input::placeholder {
    color: #9e9e9e;
}
.lawasia-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.lawasia-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
#lawasia-remember-me {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
    vertical-align: middle;
}
#lawasia-remember-me:checked {
    background-color: #0056b3;
    border-color: #0056b3;
}
#lawasia-remember-me:checked::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    display: block;
}
.lawasia-remember input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}
.lawasia-remember label {
    font-size: 0.9rem;
    cursor: pointer;
    margin: 0;
    color: rgb(153, 153, 153);
}
.lawasia-forgot {
    font-size: 0.9rem;
    color: #4a7ba7;
    text-decoration: none;
    font-weight: 500;
}
.lawasia-forgot:hover {
    text-decoration: underline;
}
.lawasia-login-promo-link {
    display: flex;
    flex-direction: row;
    gap: 8px;
    color: white;
    justify-content: center;
}
.lawasia-login-promo-text-link {
    color: white;
    text-decoration: underline;
}
.lawasia-form-footer-button {
  display: flex;
  align-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.lawasia-btn-submit {
    width: 33%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--lawasia-primary);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lawasia-btn-submit:hover {
    background: #2c5a7f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(74, 123, 167, 0.3);
}
.lawasia-btn-submit:disabled {
    background: #bdbdbd;
    cursor: not-allowed;
    transform: none;
}
.lawasia-register-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.95rem;
    color: #616161;
}
.lawasia-register-link a {
    color: #4a7ba7;
    font-weight: 600;
    text-decoration: none;
}
.lawasia-register-link a:hover {
    text-decoration: underline;
}
.td-main-content-wrap:has(#dood_call_to_action),    
.td-main-content-wrap:has(#createuser),    
.td-main-content-wrap:has(#ihc_account_page_wrapp) {
  background-image: url("/wp-content/uploads/2026/03/login-background.jpg");
  background-size: cover;
}
.lawasia-login-promo {
  flex: 0 0 55%;
  position: relative;
  background: linear-gradient(135deg, #4a7ba7 0%, #2c5a7f 100%);
  background-image: url("/wp-content/uploads/2026/02/23967c6a85ef81bdcdb7b418a6e617a4b91bbb92.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #ffffff;
  padding: 2.5rem;
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
  align-content: center;
  align-items: center;
}
.lawasia-login-promo-background {
  background: rgb(33, 97, 163, 0.8);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  z-index: 1;
}
.lawasia-login-promo-text {
  z-index: 2;
  width: 100%;
}
.lawasia-login-promo-text-link {
    font-size: 28px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Calluna Sans';
    font-weight: 700;
    font-style: bold;
    font-size: 28px;
    line-height: 32px;
    text-align: center;
} 
.lawasia-login-promo h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
}
.lawasia-login-promo p {
    font-size: 28px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Calluna Sans';
    font-weight: 700;
    font-style: bold;
    font-size: 28px;
    line-height: 32px;
    text-align: center;
}
.lawasia-btn-promo {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    text-align: center;
    background: #ffffff;
    color: #4a7ba7;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 50%;
    margin-top: 25px;
    font-family: 'Calluna Sans';
    font-weight: 400;
    font-style: 'regular';
    font-size: 16px;
    line-height: 24px;
}
.lawasia-btn-promo:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
#dood_call_to_action .vc_general {
    background: unset !important;
}
#dood_call_to_action .vc_general.vc_cta3.vc_cta3-shape-rounded {
  border-radius: 0px;
}
#dood_call_to_action .vc_general.vc_cta3.vc_cta3-style-classic {
  border-color: unset;
  background-color: unset;
}
#dood_call_to_action .vc_general.vc_cta3 {
  border: unset;
  padding: 0;
}
.ihc-login-form-wrap.ihc-login-template-8 {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.ihc-login-form-wrap.ihc-login-template-8 form {
    background: transparent !important;
}
.ihc-login-template-8 .impu-form-line-fr,
.ihc-login-template-8 .impu-form-submit {
    display: none !important;
}

/**
 * ============================================
 * LAWASIA REGISTER TEMPLATE (Version Figma)
 * ============================================
 */

.lawasia-register-wrapper {
    display: flex;
    min-height: var(--lawasia-wrapper-height);
    max-width: 1200px;
    align-items: flex-start;
}
.lawasia-register-left {
    flex: 1;
    min-width: 0;
    min-height: var(--lawasia-wrapper-height);
    max-height: var(--lawasia-wrapper-height);
}
.lawasia-register-right {
    flex: 1;
    min-width: 0;
    min-height: var(--lawasia-wrapper-height);
    max-height: var(--lawasia-wrapper-height);
}
.lawasia-register-card {
    background: #ffffff;
    padding: 25px 40px 25px 40px;
    border: 1px solid #E0E0E0;
    border-left: 5px solid var(--lawasia-primary);
    border-top-left-radius: var(--lawasia-radius);
    border-bottom-left-radius: var(--lawasia-radius);
    min-height: var(--lawasia-wrapper-height);
    max-height: var(--lawasia-wrapper-height);
}

.lawasia-register-card-title {
    color: var(--lawasia-primary);
    font-size: 28px;
    font-family: 'Calluna Sans', sans-serif;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.lawasia-register-card .lawasia-form-group {
    margin-bottom: 8px;
}
.lawasia-register-card .lawasia-form-group label {
    display: block;
    color: var(--lawasia-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

.lawasia-register-card .lawasia-form-group-split {
    display: flex;
    gap: 20px;
    margin-bottom: 8px;
}
.lawasia-register-card .lawasia-form-group-split .lawasia-form-group {
    flex: 1;
    margin-bottom: 0;
}

.lawasia-register-card .register-input {
    width: 100%;
    height: 45px;
    padding: 0 1rem;
    border: 1px solid var(--lawasia-gray-300);
    border-radius: 4px;
    box-sizing: border-box;
}

.lawasia-register-card .lawasia-checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 8px;
}
.lawasia-register-card .lawasia-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.lawasia-register-card .lawasia-checkbox-item label {
    font-size: 14px;
    color: #616161;
    font-weight: normal;
}
.lawasia-register-card .lawasia-checkbox-item a {
    color: var(--lawasia-primary);
    text-decoration: underline;
}

.lawasia-register-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 20px;
}
.lawasia-register-footer span, .lawasia-register-footer span a {
    font-size: 14px;
    color: #616161;
}
.lawasia-register-footer span a {
    color: var(--lawasia-primary);
    font-weight: bold;
}
.lawasia-register-footer .button-blue {
    background-color: var(--lawasia-primary);
    color: white;
    border: none;
    padding: 10px 40px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Calluna Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}
.dood-manage-account-wrapper .button-blue {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--lawasia-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Calluna Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    margin-bottom: 60px;
    max-width: 195px;
}
.lawasia-register-benefits,
.lawasia-register-checkout {
    padding: 40px;
    border-top-right-radius: var(--lawasia-radius);
    border-bottom-right-radius: var(--lawasia-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
.lawasia-register-benefits {
    background: linear-gradient(rgba(33, 97, 163, 0.7), rgba(33, 97, 163, 0.7)), url("/wp-content/uploads/2026/02/23967c6a85ef81bdcdb7b418a6e617a4b91bbb92.jpg") no-repeat center center;
    background-size: cover;
    color: #ffffff;
    min-height: var(--lawasia-wrapper-height);
  max-height: var(--lawasia-wrapper-height);
}
.lawasia-register-benefits h2 {
    font-family: 'Calluna Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: white;
}
.lawasia-register-benefits .lawasia-benefits-list {
    list-style: none; padding: 0; margin: 0;
}
.lawasia-register-benefits .lawasia-benefits-list li {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 0 10px 0;
}
.lawasia-register-benefits .lawasia-benefits-list li svg {
    fill: #ffffff;
    width: 24px;
    flex-shrink: 0;
}

.lawasia-register-checkout {
    background-color: #ffffff;
    border: 1px solid var(--lawasia-gray-300);
}
.lawasia-register-checkout h3 {
    font-family: 'Calluna Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--lawasia-primary);
    margin: 0;
}
.lawasia-register-checkout .register-cart .cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.lawasia-register-checkout .register-cart .cart-item-details {
    font-weight: bold;
}
.lawasia-register-checkout .register-cart hr {
    border: none;
    border-top: 1px solid var(--lawasia-gray-300);
    margin: 1.5rem 0;
}
.lawasia-register-checkout .register-cart .cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lawasia-checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.lawasia-checkbox-item input[type="checkbox"] {
    display: none;
}
.lawasia-checkbox-item label {
    position: relative;
    padding-left: 30px; 
    font-size: 16px;
    color: #555;
    cursor: pointer;
}
.lawasia-checkbox-item label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--lawasia-primary);
    border-radius: 5px;
    box-sizing: border-box;
}
.lawasia-checkbox-item label::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 8px;
    height: 8px;
    background-color: var(--lawasia-primary);
    transition: transform 0.1s ease-in-out;
    box-sizing: border-box;
}
label[for="ihc_agree_tos"]::before {
    border-radius: 50%;
}   
.lawasia-checkbox-item input[type="checkbox"]:checked + label::after {
    transform: translateY(-50%) scale(1); 
}
.dood-footer {
    text-align: center;
}
.dood-footer p {
    font-weight: 300;
    font-style: Light;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;
}
.dood-footer span {
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
}
.dood-footer a {
    text-align: center;
    color: var(--lawasia-primary);
}

/**
 * ============================================
 * MANAGE ACCOUNT PAGE (Style Figma)
 * ============================================
 */

.dood-manage-account-wrapper {
    margin: 0;
    padding: 0;
    width: 100%;
}

.dood-manage-account-wrapper .iump-user-page-box {
    background: var(--lawasia-white);
    padding: 2.5rem 3rem; 
    border-radius: var(--lawasia-radius);
    box-shadow: var(--lawasia-shadow);
    border-left: 5px solid var(--lawasia-primary); 
}
.dood-manage-account-wrapper .iump-user-page-box-title {
    margin-bottom: 20px;
    font-weight: 700;
    font-style: Bold;
    font-size: 28px;
    text-transform: capitalize;
    line-height: 32px;
    letter-spacing: 0%;
    color: var(--lawasia-primary);
}
.dood-manage-account-wrapper .iump-user-page-box-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    color: var(--lawasia-gray-400);
    margin-bottom: 60px;
}
.dood-manage-account-wrapper .iump-register-form {
    margin-bottom: 60px;
}
.dood-manage-account-wrapper .dood-subtitle {
    margin-bottom: 20px;
}

.dood-manage-account-wrapper .ihc-form-create-edit .ihc-user-form-row-heading {
    color: var(--lawasia-primary);
    font-size: 1.1rem; /* 17-18px */
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 2.5rem;
    margin-bottom: 20px;
    padding-bottom: 0;
    border: none;
    border-top-width: medium;
    border-top-style: none;
    border-top-color: currentcolor;
    border-top-width: medium;
    border-top-style: none;
    border-top-color: currentcolor;
    border-top: 1px solid var(--lawasia-gray-300);
    padding-top: 20px;
}

.dood-manage-account-wrapper .general_section .ihc-user-form-row-heading {
  border-top: none;
  padding-top: 0;
}

.ihc-form-create-edit .iump-form-line-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem; /* Espace entre les colonnes */
    align-items: start;
}
.ihc-form-create-edit .iump-form-line-double .iump-form-line-fr,
.ihc-form-create-edit .iump-form-line-double .iump-form-line-fl {
    padding: 0; /* Annule le padding par défaut du plugin */
    width: 100%;
}

/* Style des labels */
.ihc-form-create-edit label,
.ihc-form-create-edit .ihc-form-label {
    color: var(--lawasia-gray-900);
    font-size: 0.9rem; /* 14px */
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Style des champs de saisie */
.ihc-form-create-edit input[type="text"],
.ihc-form-create-edit input[type="email"],
.ihc-form-create-edit input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--lawasia-gray-300);
    border-radius: 4px;
    background-color: #fcfcfc;
    transition: all 0.2s ease-in-out;
}

.dood-manage-account-wrapper .ihc-form-create-edit input[type="text"],
.dood-manage-account-wrapper .ihc-form-create-edit input[type="email"],
.dood-manage-account-wrapper .ihc-form-create-edit input[type="password"] {
    background-color: transparent;
}

.dood-manage-account-wrapper .newsletter-container-check {
    display: flex;
    align-items: center;
    align-content: center;
    margin-top: 10px;
    gap: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}
.dood-manage-account-wrapper .newsletter-container-check .newsletter-check {
    top: 0 !important;
}

.ihc-form-create-edit input:focus {
    outline: none;
    border-color: var(--lawasia-primary);
    box-shadow: 0 0 0 3px rgba(33, 97, 163, 0.15);
}

/* Style pour les sections de type checkbox (Newsletter) */
.ihc-form-create-edit .ihc-form-checkbox-group .ihc-form-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.ihc-form-create-edit .ihc-form-checkbox-group label {
    font-weight: 400; /* Texte normal pour les options */
    margin: 0;
}

/* Style des boutons */
.ihc-form-create-edit .ihc-submit-form .button {
    background: var(--lawasia-primary) !important;
    color: var(--lawasia-white) !important;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ihc-form-create-edit .ihc-submit-form .button:hover {
    background: var(--lawasia-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--lawasia-shadow);
}
/* Aligner le bouton "Save Changes" à droite */
.ihc-form-create-edit .ihc-submit-form {
    text-align: right;
    margin-top: 2rem;
}

.dood-manage-account-wrapper .ihc-subscr-list .ihc-subscr-col.ihc-col-name   {
    font-weight: 700;
    color: var(--lawasia-primary);
    font-size: 20px;
    font-style: Bold;
}

.dood-manage-account-wrapper .ihc-subscr-row .ihc-subscr-col.ihc-col-name .ihc-level-name {
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 24px; 
    color: var(--lawasia-primary);
}

/* ============================================
   MANAGE ACCOUNT FORM - NEW STRUCTURE
   ============================================ */
.lawasia-form-section {
    margin-bottom: 2rem;
}
.ihc-user-form-row-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--lawasia-primary);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--lawasia-gray-300);
}
.lawasia-form-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; 
}
.dood-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
}
.dood-form-row > .iump-form-line-register:only-child {
    grid-column: 1 / -1;
}
.ihc-form-create-edit .iump-form-line-register {
    margin-bottom: 0;
}
.ihc-form-create-edit .iump-labels-register {
    font-weight: 600;
    color: #333;
}
.lawasia-btn-password {
    width: auto;
    align-self: flex-start;
}

.lawasia-newsletter-grid {
    margin-bottom: 20px;
}
.lawasia-form-section .newsletter-checkbox label {
    margin: 0 !important;
    padding: 0 !important;
}
.lawasia-newsletter-grid .dood-form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.lawasia-newsletter-grid .dood-form-row .iump-labels-register {
    margin: 0 !important;
    padding: 0 !important;
}
.lawasia-newsletter-grid .iump-form-line-register.newsletter-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.lawasia-newsletter-grid .iump-form-line-register.newsletter-checkbox .iump-labels-register {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: var(--lawasia-gray-900);
    cursor: pointer;
    margin: 0;
    padding: 0;
    width: auto;
    text-align: left;
}
.lawasia-newsletter-grid .iump-form-line-register.newsletter-checkbox .newsletter-check,
.dood-manage-account-wrapper .newsletter-checkbox.newsletter .newsletter-check {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid var(--lawasia-primary);
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    margin: 0;
    padding: 0;
    position: relative;
    width: 20px !important;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
}
.lawasia-newsletter-grid .iump-form-line-register.newsletter-checkbox .newsletter-check:checked {
    background-color: var(--lawasia-primary);
    border-color: var(--lawasia-primary);
}
.lawasia-newsletter-grid .iump-form-line-register.newsletter-checkbox .newsletter-check:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: 2px solid #ffffff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}
.dood-manage-account-wrapper .lawasia-newsletter-grid .iump-form-line-register.newsletter-checkbox .newsletter-check:checked::after {
    left: 6px;
    top: 4px;
}
.lawasia-newsletter-grid .iump-form-line-register.newsletter-checkbox .newsletter-check:focus-visible {
    outline: 2px solid var(--lawasia-primary);
    outline-offset: 2px;
}
.ihc-register-6 .iump-form-line-register.newsletter-checkbox .iump-labels-register,
.dood-manage-account-wrapper .iump-form-line-register.newsletter-checkbox .iump-labels-register {
    margin-left: 0 !important;
    width: auto !important;
    text-align: left !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    font-style: normal !important;
}
.iump-submit-form {
    display: flex;
    justify-content: flex-end;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--lawasia-gray-300);
}
.dood-manage-account-wrapper .iump-submit-form {
    padding-right: 0;
    border-top: none;
}
.lawasia-form-section.newsletter_section .newsletter-checkbox.newsletter {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.lawasia-form-section.newsletter_section .newsletter-checkbox.newsletter .iump-labels-register {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dood-manage-account-wrapper .newsletter-container-check .newsletter-check {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px !important;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    border: 1.5px solid var(--lawasia-primary);
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 0;
}
.dood-manage-account-wrapper .newsletter-container-check .newsletter-check:checked {
    background-color: var(--lawasia-primary);
    border-color: var(--lawasia-primary);
}
.dood-manage-account-wrapper .newsletter-container-check .newsletter-check:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 4px;
    width: 5px;
    height: 9px;
    border: 2px solid #ffffff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.newsletter-container-check input[type="checkbox"] {
    display: inline-flex !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .lawasia-register-wrapper {
        flex-direction: column-reverse;
        gap: 0;
    }
    .td-main-content-wrap:has(.dood_registration_subscription_template_container) {
        padding-top: 75px !important;
    }
    .lawasia-register-benefits, 
    .lawasia-register-checkout {
        min-height: auto;
    }
    .lawasia-register-right {
        width: 100%;
        order: -1;
        min-height: auto;
        max-height: none;
    }
    .lawasia-register-left {
        width: 100%;
        min-height: auto;
        max-height: none;
    }
    #dood_call_to_action .lawasia-register-wrapper .lawasia-register-left .lawasia-register-card {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        max-height: none;
    }
    #dood_call_to_action .lawasia-register-wrapper .lawasia-register-right .lawasia-register-benefits,
    #dood_call_to_action .lawasia-register-wrapper .lawasia-register-right  .lawasia-register-checkout{
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    #createuser .lawasia-register-footer {
        flex-direction: column;
        gap: 25px;
    }
    
    .lawasia-welcome {
        flex-direction: column;
    }
    
    .lawasia-welcome h2 {
        /* margin-top: 4rem; */
        margin-top: 0;
    }
    .dood-manage-account-wrapper .ihc-subscr-row-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .dood-card-actions .lawasia-btn {
        padding: 0.5rem 1rem;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .lawasia-login-wrapper {
        flex-direction: column-reverse;
    }
    
    .lawasia-login-form,
    .lawasia-login-promo {
        flex: 1 1 100%;
        width: 100%;
    }
    
    /* Promo en premier sur mobile */
    .lawasia-login-promo {
        order: -1;
        min-height: auto;
        padding: 2rem;
    }
    
    .lawasia-login-form {
        padding: 2rem;
    }
    
    .lawasia-form-footer {
        flex-direction: column;
        align-items: flex-start;
    }
        .lawasia-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .lawasia-left,
    .lawasia-right {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .lawasia-right {
        order: -1;
    }
    
    .lawasia-card,
    .lawasia-promo,
    .lawasia-benefits {
        padding: 1.5rem;
    }
    
    .lawasia-buttons {
        flex-direction: column;
    }
    
    .lawasia-btn {
        width: 100%;
    }
    #ihc_account_page_wrapp #ihc_account_page_tab_content .lawasia-account .lawasia-section .dood-card-content .dood-card-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .dood-form-row {
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }
    .ihc-form-create-edit .iump-form-line-double {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .dood-manage-account-wrapper .iump-user-page-box {
        padding: 2rem 1.5rem;
    }
    .td-main-content-wrap:has(#dood_call_to_action) {
        padding-top: 250px;
        min-height: 700px;
    }
    #dood_call_to_action .lawasia-login-wrapper .lawasia-login-form {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    #dood_call_to_action .lawasia-login-wrapper .lawasia-login-promo {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    .lawasia-login-promo-text-link {
        font-size: 16px;
    }
    #dood_call_to_action .lawasia-login-wrapper .lawasia-btn-promo {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .lawasia-login-title,
    .lawasia-login-promo h2 {
        font-size: 1.375rem;
    }
    
    .lawasia-login-promo p {
        font-size: 1rem;
    }
    
    .lawasia-btn-submit,
    .lawasia-btn-promo {
        padding: 0.875rem 1.5rem;
    }
        .lawasia-card-title,
    .lawasia-promo h2,
    .lawasia-benefits h2 {
        font-size: 1.375rem;
    }
    
    .lawasia-promo p {
        font-size: 1rem;
    }
}