.elementor-27 .elementor-element.elementor-element-381ccf42{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:30px;--padding-bottom:90px;--padding-left:0px;--padding-right:0px;}.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 );}.elementor-27 .elementor-element.elementor-element-3db2b00c{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-381ccf42 *//* Reset WooCommerce wrapper */
.woocommerce-account .woocommerce {
  display: block !important;
}
/* Center login/register only */
body.woocommerce-account:not(.logged-in) .woocommerce {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

/* Login/Register card */
body.woocommerce-account:not(.logged-in) form.woocommerce-form {
  max-width: 420px;
  width: 100%;
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
/* Dashboard layout ONLY when logged in */
body.woocommerce-account.logged-in .woocommerce {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  body.woocommerce-account.logged-in .woocommerce {
    grid-template-columns: 1fr;
  }
}
/* Remove Login heading text */
.woocommerce-account h2,
.woocommerce-account .woocommerce-form-login h2,
.woocommerce-account .entry-title {
    display: none !important;
}
/* Extra safety for theme-specific login titles */
.woocommerce-account .login h2,
.woocommerce-account .woocommerce-login-title {
    display: none !important;
}
/* Add subtle spacing after removing title */
.woocommerce-form-login {
    margin-top: 20px !important;
}
/* Dashboard wrapper */
.woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile stack */
@media (max-width: 900px) {
    .woocommerce-account .woocommerce {
        grid-template-columns: 1fr;
    }
}
/* Sidebar menu */
.woocommerce-MyAccount-navigation {
    background: #ffffff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* Menu items */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation li {
    margin: 4px 0;
}

.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 14px 18px;
    border-radius: 10px;
    color: #333;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all .2s ease;
}

/* Hover */
.woocommerce-MyAccount-navigation a:hover {
    background: #f5f7fa;
}

/* Active item */
.woocommerce-MyAccount-navigation .is-active a {
    background: #000;
    color: #fff;
}
/* Content panel */
.woocommerce-MyAccount-content {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    font-family: 'Poppins', sans-serif;
}
/* Dashboard welcome text */
.woocommerce-MyAccount-content p:first-of-type {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Email emphasis */
.woocommerce-MyAccount-content strong {
    color: #000;
}
/* Buttons */
.woocommerce-MyAccount-content button,
.woocommerce-MyAccount-content .button {
    background: #000 !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 12px 22px !important;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    border: none;
}

.woocommerce-MyAccount-content button:hover,
.woocommerce-MyAccount-content .button:hover {
    background: #111 !important;
}
/* Inputs */
.woocommerce-MyAccount-content input,
.woocommerce-MyAccount-content select {
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    padding: 12px 14px;
    font-family: 'Poppins', sans-serif;
}
/* Active dashboard menu item text color */
.woocommerce-MyAccount-navigation ul li.is-active a {
    color: #000 !important;
    font-weight: 600 !important;
}
/* Hover effect */
.woocommerce-MyAccount-navigation ul li a:hover {
    color: #000 !important;
}
/* Active menu background */
.woocommerce-MyAccount-navigation ul li.is-active {
    background: #f5f5f5 !important;
    border-radius: 8px !important;
}

}
/* Remove global skew from forms */
form,
.woocommerce form {
    transform: none !important;
}
/* Add text before the second form container */
.u-column2.col-2::before {
    content: "Don't have an account? Create one";
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333; /* Adjust color as needed */
}
/* Force the container to stack forms vertically */
.u-columns.col2-set {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Make both columns (Login and Register) 100% width */
.u-column1.col-1, 
.u-column2.col-2 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px; /* Space between the two forms */
}
/* 1. Center the "Don't have an account" text */
.u-column2.col-2::before {
    content: "Don't have an account? Create one";
    display: block;
    text-align: center; /* Centers the text itself */
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    width: 100%;
}

/* 2. Center the Form 2 container and match width */
.u-column2.col-2 {
    float: none; /* Removes any leftover floats from the theme */
    margin: 0 auto; /* Centers the box on the page */
    padding: 20px; /* Optional: adds space inside the white box */
    width: 100%;
    max-width: 100%; 
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers items inside the form container */
}

/* 3. Ensure the inner form elements also stretch or center */
.u-column2.col-2 form {
    width: 100%;
    max-width: 600px; /* Optional: limits width so it's not TOO wide on desktop */
    margin: 0 auto;
}
/* --- UNIVERSAL STYLES (Applies to both Mobile & Laptop) --- */

/* Center the custom text above the second form */
.u-column2.col-2::before {
    content: "Don't have an account? Create one";
    display: block;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    width: 100%;
    color: #333;
}

/* --- MOBILE STYLES (Screens smaller than 768px) --- */
@media (max-width: 767px) {
    .u-columns.col2-set {
        display: flex;
        flex-direction: column;
        align-items: center; /* This centers both form boxes */
    }

    .u-column1.col-1, 
    .u-column2.col-2 {
        width: 100% !important;
        max-width: 90%; /* Keeps a small gap at the edges of the phone */
        float: none !important;
        margin: 0 auto 30px auto !important; /* Centers the boxes */
    }
}

/* --- LAPTOP/DESKTOP STYLES (Screens 768px and wider) --- */
@media (min-width: 768px) {
    .u-columns.col2-set {
        display: flex;
        flex-direction: row; /* Puts them side-by-side */
        justify-content: center;
        gap: 40px; /* Space between the two forms */
        align-items: flex-start;
    }

    .u-column1.col-1, 
    .u-column2.col-2 {
        flex: 1; /* Makes them equal width */
        max-width: 450px; /* Prevents them from getting too wide on huge screens */
        margin: 0 !important;
    }
    
    /* Center the text only within its column on desktop */
    .u-column2.col-2::before {
        text-align: center;
    }
}
/* Import Poppins Font from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Apply Poppins to the entire form area */
.u-columns.col2-set, 
.u-columns.col2-set input, 
.u-columns.col2-set label, 
.u-columns.col2-set button {
    font-family: 'Poppins', sans-serif !important;
}

/* 1. Center the "Don't have an account" text & set to 28px Poppins */
.u-column2.col-2::before {
    content: "Don't have an account? Create one";
    display: block;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 28px; /* Fixed size as requested */
    font-weight: 600;
    margin-bottom: 25px;
    width: 100%;
    color: #333;
}

/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* 1. Global Font and Size (16px) */
.u-columns.col2-set, 
.u-columns.col2-set label, 
.u-columns.col2-set input, 
.u-columns.col2-set button,
.u-columns.col2-set p,
.u-columns.col2-set a,
.u-columns.col2-set span {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
}

/* 2. Custom Header Text (28px) */
.u-column2.col-2::before {
    content: "Don't have an account? Create one";
    display: block;
    text-align: center;
    font-family: 'Poppins', sans-serif !important;
    font-size: 28px !important;
    font-weight: 600;
    margin-bottom: 25px;
    width: 100%;
    color: #333;
}

/* 3. Layout Fix for both Mobile & Desktop */
.u-columns.col2-set {
    display: flex !important;
    flex-wrap: wrap; /* Allows stacking on mobile */
    justify-content: center !important;
    width: 100% !important;
    float: none !important;
}

/* --- MOBILE LAYOUT --- */
@media (max-width/* End custom CSS */