.elementor-13 .elementor-element.elementor-element-6af29db5{--display:flex;}.elementor-13 .elementor-element.elementor-element-1dbeb4c{--spacer-size:50px;}/* Start custom CSS *//* ===============================
   🔹 MY ACCOUNT DASHBOARD STYLES
   =============================== */
body.woocommerce-account .woocommerce {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Sidebar Navigation */
body.woocommerce-account .woocommerce-MyAccount-navigation {
  flex: 0 0 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 2.5rem 1.5rem;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin-bottom: 0.2rem;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  line-height: normal; 
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}

/* Hover = Red */
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: #e90000;
  color: #fff;
}

/* Active = Blue */
body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  background: #004aad;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 6px rgba(0,74,173,0.3);
}

/* Account Main Content */
body.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 2rem;
  line-height: 1.6;
}

body.woocommerce-account .woocommerce-MyAccount-content p {
  margin-bottom: 1rem;
  color: #555;
}

body.woocommerce-account .woocommerce-MyAccount-content a {
  color: #e90000;
  text-decoration: none;
  font-weight: 500;
}

body.woocommerce-account .woocommerce-MyAccount-content a:hover {
  text-decoration: underline;
}

/* Responsive My Account */
@media (max-width: 768px) {
  body.woocommerce-account .woocommerce {
    flex-direction: column;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation {
    flex: 1;
    display: flex;
    overflow-x: auto;
    padding: 0.5rem;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex;
    gap: 0.5rem;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation a {
    white-space: nowrap;
    padding: 0.6rem 1rem;
  }
}


/* ===============================
   🔹 LOGIN & REGISTER PAGE STYLES
   =============================== */
body.woocommerce-account #customer_login {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

body.woocommerce-account #customer_login .u-column1,
body.woocommerce-account #customer_login .u-column2 {
  flex: 1 1 380px;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

body.woocommerce-account #customer_login .u-column1:hover,
body.woocommerce-account #customer_login .u-column2:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Headings */
body.woocommerce-account #customer_login h2 {
  font-size: 1.6rem;
  color: #004aad;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-left: 4px solid #e90000;
  padding-left: 10px;
}

/* Input Fields */
body.woocommerce-account #customer_login input.input-text,
body.woocommerce-account #customer_login textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  font-size: 0.95rem;
  color: #333;
  transition: all 0.2s ease;
}

body.woocommerce-account #customer_login input:focus {
  border-color: #004aad;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,74,173,0.15);
}

/* Labels */
body.woocommerce-account #customer_login label {
  font-weight: 600;
  color: #444;
  margin-bottom: 0.3rem;
  display: inline-block;
}

/* Buttons */
body.woocommerce-account #customer_login button.button {
  display: inline-block;
  background: #004aad;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
}

body.woocommerce-account #customer_login button.button:hover {
  background: #e90000;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(233, 0, 0, 0.25);
}

/* Remember Me Checkbox */
body.woocommerce-account #customer_login .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #555;
}

/* Links */
body.woocommerce-account #customer_login a {
  color: #e90000;
  text-decoration: none;
  transition: color 0.2s ease;
}

body.woocommerce-account #customer_login a:hover {
  color: #004aad;
  text-decoration: underline;
}

/* Privacy Text */
body.woocommerce-account #customer_login .woocommerce-privacy-policy-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-top: 0.5rem;
}

body.woocommerce-account #customer_login .woocommerce-privacy-policy-text a {
  color: #e90000;
  font-weight: 500;
}

/* Responsive Login/Register */
@media (max-width: 768px) {
  body.woocommerce-account #customer_login {
    flex-direction: column;
    align-items: stretch;
  }

  body.woocommerce-account #customer_login .u-column1,
  body.woocommerce-account #customer_login .u-column2 {
    width: 100%;
    padding: 1.5rem;
  }
}/* End custom CSS */