.elementor-101 .elementor-element.elementor-element-1eb2580f{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );line-height:var( --e-global-typography-text-line-height );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 );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}/* Start custom CSS *//************************************************************/
/* 1) GLOBAL MY ACCOUNT PAGE LAYOUT                         */
/************************************************************/
.woocommerce {
  font-family: 'Montserrat', sans-serif;
  color: #171616;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Word breaking for all text elements */
.woocommerce p,
.woocommerce a,
.woocommerce strong,
.woocommerce span,
.woocommerce li {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/************************************************************/
/* 2) NAVIGATION SIDEBAR                                    */
/************************************************************/
.woocommerce-MyAccount-navigation {
  flex: 0 0 250px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation-link {
  border-bottom: 1px solid #f2f2f2;
}

.woocommerce-MyAccount-navigation-link:last-child {
  border-bottom: none;
}

.woocommerce-MyAccount-navigation-link a {
  display: block;
  padding: 1rem 1.5rem;
  color: #171616;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  /* Fix for <br> tags in navigation */
  line-height: 1.5;
  white-space: nowrap;
}

/* Remove the <br> tags visually */
.woocommerce-MyAccount-navigation-link a br {
  display: none;
}

.woocommerce-MyAccount-navigation-link a:hover {
  background-color: #f9f9f9;
  color: #DB9AC1;
}

.woocommerce-MyAccount-navigation-link.is-active a {
  background-color: #DB9AC1;
  color: #FFFFFF;
  font-weight: 700;
}

/* Logout link special styling */
.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #777;
  font-weight: 700;
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  color: #DB9AC1;
}

/************************************************************/
/* 3) ACCOUNT CONTENT AREA                                  */
/************************************************************/
.woocommerce-MyAccount-content {
  flex: 1;
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  min-width: 300px;
}

.woocommerce-MyAccount-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.woocommerce-MyAccount-content a {
  color: #DB9AC1;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.woocommerce-MyAccount-content a:hover {
  color: #b86f9f;
  text-decoration: underline;
}

.woocommerce-MyAccount-content strong {
  font-weight: 700;
}

/* Welcome message */
.woocommerce-MyAccount-content p:first-child {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f2f2f2;
}

/************************************************************/
/* 4) NOTICES AND ALERTS                                    */
/************************************************************/
.woocommerce-notices-wrapper {
  width: 100%;
  margin-bottom: 1.5rem;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 1rem;
}

.woocommerce-message {
  background-color: #f0f9eb;
  color: #67c23a;
  border-left: 4px solid #67c23a;
}

.woocommerce-info {
  background-color: #f4f4f5;
  color: #909399;
  border-left: 4px solid #909399;
}

.woocommerce-error {
  background-color: #fef0f0;
  color: #f56c6c;
  border-left: 4px solid #f56c6c;
}

/************************************************************/
/* 5) BUTTONS AND FORMS IN ACCOUNT                          */
/************************************************************/
.woocommerce-MyAccount-content .button {
  display: inline-block;
  background-color: #DB9AC1;
  color: #FFFFFF;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.woocommerce-MyAccount-content .button:hover {
  background-color: #b86f9f;
  text-decoration: none;
}

/* Form styling */
.woocommerce-MyAccount-content form .form-row {
  margin-bottom: 1rem;
}

.woocommerce-MyAccount-content form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.woocommerce-MyAccount-content form input[type="text"],
.woocommerce-MyAccount-content form input[type="email"],
.woocommerce-MyAccount-content form input[type="tel"],
.woocommerce-MyAccount-content form input[type="password"],
.woocommerce-MyAccount-content form select,
.woocommerce-MyAccount-content form textarea {
  width: 100%;
  padding: 0.5rem;
  font-size: 14px;
  border: 1px solid #DB9AC1;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
}

.woocommerce-MyAccount-content form input:focus,
.woocommerce-MyAccount-content form select:focus,
.woocommerce-MyAccount-content form textarea:focus {
  border-color: #b86f9f;
  outline: none;
}

/************************************************************/
/* 6) RESPONSIVE LAYOUTS                                    */
/************************************************************/
@media (max-width: 768px) {
  .woocommerce {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .woocommerce-MyAccount-navigation {
    flex: 0 0 100%;
  }
  
  .woocommerce-MyAccount-content {
    padding: 1.5rem;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .woocommerce-MyAccount-content {
    padding: 1rem;
  }
  
  .woocommerce-MyAccount-navigation-link a {
    padding: 0.75rem 1rem;
    font-size: 13px;
  }
}/* End custom CSS */