/* ==========================================================================
   NORA ACCOUNT — Brand-Styled WooCommerce My Account Page CSS
   Applies to: My Account Page (/my-account/*, /my-account/orders/, etc.)
   Brand tokens: Cairo font | #C8758A pink | #C9A96E gold | #1E1216 dark
   ========================================================================== */

/* ---------- Overall Page Styling ---------------------- */
body.woocommerce-account,
body.woocommerce-myaccount {
  font-family: "Cairo", sans-serif;
}

.entry-hero page-hero-section entry-hero-layout-standard{
display:none !important;
}




.tmcore-wp-widget-product-rating-filter tmcore-wp-widget-filter
{
display: none !important;
}
body.woocommerce-account.showing-popup-drawer-from-center,
body.woocommerce-myaccount.showing-popup-drawer-from-center {
  overflow: auto !important;
  padding-right: 0 !important;
}

body.woocommerce-account #welcome-popup,
body.woocommerce-myaccount #welcome-popup,
body.woocommerce-account .drawer-overlay,
body.woocommerce-myaccount .drawer-overlay {
  display: none !important;
}

#base-breadcrumbs,
.base-breadcrumbs,
nav.base-breadcrumbs,
.entry-hero #base-breadcrumbs,
.entry-hero .base-breadcrumbs {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* ==========================================================================
   HERO / HEADER SECTION
   ========================================================================== */

.entry-hero.page-hero-section {
display: none;
}

.entry-hero.page-hero-section .entry-title {
  color: #1E1216;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: "Cairo", sans-serif;
}

/* Breadcrumbs - HIDDEN BY RULES ABOVE */

/* ==========================================================================
   MAIN LAYOUT - NAVIGATION + CONTENT
   ========================================================================== */

body.woocommerce-account #primary .content-container.site-container,
body.woocommerce-myaccount #primary .content-container.site-container {
  padding-inline: clamp(16px, 4vw, 36px);
  padding-top: 24px;
  padding-bottom: 40px;
}

body.woocommerce-account .woocommerce,
body.woocommerce-myaccount .woocommerce {
  margin-top: 30px;
  margin-bottom: 30px;
  direction: rtl;
  width: min(100%, 1200px);
  margin-inline: auto;
}

body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation),
body.woocommerce-myaccount .woocommerce:has(.woocommerce-MyAccount-navigation) {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
  padding-top: 12px;
}

body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) > .account-navigation-wrap,
body.woocommerce-myaccount .woocommerce:has(.woocommerce-MyAccount-navigation) > .account-navigation-wrap {
  width: 100% !important;
  min-width: 260px;
  max-width: 300px;
}

body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) > .woocommerce-MyAccount-content,
body.woocommerce-myaccount .woocommerce:has(.woocommerce-MyAccount-navigation) > .woocommerce-MyAccount-content {
  width: 100% !important;
  min-width: 0;
  max-width: none;
}

body.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)),
body.woocommerce-myaccount .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) {
  display: block;
  max-width: 1180px;
  margin-inline: auto;
}

.account-navigation-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 120px;
  width: 100%;
  float: none !important;
  grid-column: 1;
  align-self: start;
}

body.rtl.woocommerce-account .account-navigation-wrap ul li a,
body.rtl.woocommerce-myaccount .account-navigation-wrap ul li a,
body.rtl.woocommerce-account .woocommerce-MyAccount-navigation ul li a,
body.rtl.woocommerce-myaccount .woocommerce-MyAccount-navigation ul li a {
  padding: 0.75em 1em 0.75em 1em !important;
}

.woocommerce-MyAccount-content {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  float: none !important;
  grid-column: 2;
  justify-self: stretch;
  align-self: start;
  box-sizing: border-box;
}

/* ==========================================================================
   ACCOUNT AVATAR & CUSTOMER INFO
   ========================================================================== */

.base-account-avatar {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(200, 117, 138, 0.08);
  border: 1px solid #F0D9DE;
  text-align: center;
  direction: rtl;
  width: 100%;
  box-sizing: border-box;
}

.base-customer-image {
  margin-bottom: 16px;
}

.base-customer-image a {
  display: inline-block;
  position: relative;
}

.base-customer-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #C8758A;
  object-fit: cover;
  transition: all 0.3s ease;
}

.base-customer-image a:hover img {
  border-color: #B5667A;
  box-shadow: 0 0 0 4px rgba(200, 117, 138, 0.1);
}

.base-customer-image .bt-link-to-gravatar {
  text-decoration: none;
}

.base-customer-image .bt-link-to-gravatar::after {
  content: "✎";
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: #C8758A;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.base-customer-image a:hover::after {
  opacity: 1;
}

.base-customer-name {
  color: #1E1216;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  font-family: "Cairo", sans-serif;
  line-height: 1.4;
}

/* ==========================================================================
   ACCOUNT NAVIGATION MENU
   ========================================================================== */

.woocommerce-MyAccount-navigation {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(200, 117, 138, 0.08);
  border: 1px solid #F0D9DE;
  width: 100%;
  float: none !important;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.woocommerce-MyAccount-navigation li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #F0D9DE;
}

.woocommerce-MyAccount-navigation li:last-child {
  border-bottom: none;
}

.woocommerce-MyAccount-navigation-link {
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 14px 16px;
  color: #1E1216;
  text-decoration: none;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  direction: rtl;
  text-align: right;
}

.woocommerce-MyAccount-navigation a:hover {
  background: #FFF8F9;
  color: #C8758A;
  padding-right: 20px;
}

.woocommerce-MyAccount-navigation-link.is-active a {
  background: linear-gradient(135deg, #C8758A 0%, #B5667A 100%);
  color: #fff !important;
  border-left: 4px solid #B5667A;
}

.woocommerce-MyAccount-navigation-link.is-active a:hover {
  background: linear-gradient(135deg, #B5667A 0%, #A05570 100%);
  color: #fff !important;
  padding-right: 16px;
}

body.rtl.woocommerce-account .account-navigation-wrap li.is-active a,
body.rtl.woocommerce-account .account-navigation-wrap li.is-active a:hover,
body.rtl.woocommerce-myaccount .account-navigation-wrap li.is-active a,
body.rtl.woocommerce-myaccount .account-navigation-wrap li.is-active a:hover,
body.rtl.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
body.rtl.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:hover,
body.rtl.woocommerce-myaccount .woocommerce-MyAccount-navigation li.is-active a,
body.rtl.woocommerce-myaccount .woocommerce-MyAccount-navigation li.is-active a:hover,
body.rtl.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a,
body.rtl.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a:hover,
body.rtl.woocommerce-myaccount .woocommerce-MyAccount-navigation-link.is-active a,
body.rtl.woocommerce-myaccount .woocommerce-MyAccount-navigation-link.is-active a:hover {
  color: #fff !important;
}

/* ==========================================================================
   CONTENT AREA STYLING
   ========================================================================== */

.woocommerce-MyAccount-content {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(200, 117, 138, 0.08);
  border: 1px solid #F0D9DE;
  direction: rtl;
  text-align: right;
}

.woocommerce-MyAccount-content p {
  color: #1E1216;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-family: "Cairo", sans-serif;
}

.woocommerce-MyAccount-content strong {
  color: #C8758A;
  font-weight: 700;
}

.woocommerce-MyAccount-content a {
  color: #C8758A;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.woocommerce-MyAccount-content a:hover {
  color: #B5667A;
  text-decoration: underline;
}

/* ==========================================================================
   ACCOUNT NOTICES
   ========================================================================== */

.woocommerce-notices-wrapper {
  margin-bottom: 20px;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-family: "Cairo", sans-serif;
  direction: rtl;
  text-align: right;
}

.woocommerce-message {
  background: #E8F5E9;
  border-left: 4px solid #4CAF50;
  color: #1B5E20;
}

.woocommerce-error {
  background: #FFEBEE;
  border-left: 4px solid #F44336;
  color: #B71C1C;
}

.woocommerce-info {
  background: #E3F2FD;
  border-left: 4px solid #2196F3;
  color: #0D47A1;
}

/* ==========================================================================
   ACCOUNT CONTENT TABLES (Orders, Downloads, Addresses)
   ========================================================================== */

.woocommerce-MyAccount-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  direction: rtl;
}

.woocommerce-MyAccount-content table thead {
  background: #FFF8F9;
  border-bottom: 2px solid #C8758A;
}

.woocommerce-MyAccount-content table th {
  padding: 14px 16px;
  color: #1E1216;
  font-weight: 700;
  text-align: right;
  font-size: 14px;
  font-family: "Cairo", sans-serif;
}

.woocommerce-MyAccount-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid #F0D9DE;
  color: #1E1216;
  font-size: 14px;
  font-family: "Cairo", sans-serif;
}

.woocommerce-MyAccount-content table tbody tr:hover {
  background: #FFF8F9;
}

.woocommerce-MyAccount-content table a {
  color: #C8758A;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.woocommerce-MyAccount-content table a:hover {
  color: #B5667A;
  text-decoration: underline;
}

/* ==========================================================================
   ACCOUNT FORMS
   ========================================================================== */

.woocommerce-MyAccount-content form {
  margin-bottom: 30px;
}

.woocommerce-MyAccount-content form h3 {
  color: #1E1216;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #C8758A;
  font-family: "Cairo", sans-serif;
}

.woocommerce-MyAccount-content .form-row {
  margin-bottom: 16px;
}

.woocommerce-MyAccount-content .form-row label {
  display: block;
  color: #1E1216;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  font-family: "Cairo", sans-serif;
}

.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content textarea,
.woocommerce-MyAccount-content select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #F0D9DE;
  border-radius: 6px;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  color: #1E1216;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.woocommerce-MyAccount-content input[type="text"]:focus,
.woocommerce-MyAccount-content input[type="email"]:focus,
.woocommerce-MyAccount-content input[type="password"]:focus,
.woocommerce-MyAccount-content textarea:focus,
.woocommerce-MyAccount-content select:focus {
  outline: none;
  border-color: #C8758A;
  box-shadow: 0 0 0 2px rgba(200, 117, 138, 0.1);
}

.woocommerce-MyAccount-content textarea {
  min-height: 100px;
  resize: vertical;
}

/* Form Row Classes */
.woocommerce-MyAccount-content .form-row-wide {
  grid-column: 1 / -1;
}

.woocommerce-MyAccount-content .form-row-first {
  grid-column: 1;
}

.woocommerce-MyAccount-content .form-row-last {
  grid-column: 2;
}

/* ==========================================================================
   ACCOUNT BUTTONS
   ========================================================================== */

.woocommerce-MyAccount-content button,
.woocommerce-MyAccount-content .button,
.woocommerce-Button {
  background: linear-gradient(135deg, #C8758A 0%, #B5667A 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.woocommerce-MyAccount-content button:hover,
.woocommerce-MyAccount-content .button:hover,
.woocommerce-Button:hover {
  background: linear-gradient(135deg, #B5667A 0%, #A05570 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 117, 138, 0.3);
}

.woocommerce-MyAccount-content button:active,
.woocommerce-MyAccount-content .button:active,
.woocommerce-Button:active {
  transform: translateY(0);
}

/* Alt Button (Secondary) */
.woocommerce-MyAccount-content .button.alt,
.woocommerce-MyAccount-content button.alt {
  background: white;
  color: #C8758A;
  border: 2px solid #C8758A;
}

.woocommerce-MyAccount-content .button.alt:hover,
.woocommerce-MyAccount-content button.alt:hover {
  background: #FFF8F9;
  border-color: #B5667A;
  color: #B5667A;
}

/* ==========================================================================
   ACCOUNT LISTINGS
   ========================================================================== */

.woocommerce-MyAccount-content .woocommerce-orders,
.woocommerce-MyAccount-content .woocommerce-downloads {
  margin-bottom: 30px;
}

.woocommerce-MyAccount-content .woocommerce-orders-table,
.woocommerce-MyAccount-content .woocommerce-downloads-table {
  width: 100%;
  border-collapse: collapse;
}

.order-number a,
.download-name a {
  color: #C8758A;
  text-decoration: none;
  font-weight: 600;
}

.order-number a:hover,
.download-name a:hover {
  color: #B5667A;
  text-decoration: underline;
}

.order-status,
.download-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  font-family: "Cairo", sans-serif;
}

.order-status.wc-completed,
.download-status.wc-completed {
  background: #E8F5E9;
  color: #1B5E20;
}

.order-status.wc-pending,
.download-status.wc-pending {
  background: #FFF3E0;
  color: #E65100;
}

.order-status.wc-processing,
.download-status.wc-processing {
  background: #E3F2FD;
  color: #0D47A1;
}

.order-status.wc-cancelled,
.download-status.wc-cancelled {
  background: #FFEBEE;
  color: #B71C1C;
}

/* ==========================================================================
   ADDRESS EDITING
   ========================================================================== */

.woocommerce-address {
  padding: 20px;
  background: #FFF8F9;
  border-radius: 8px;
  border: 1px solid #F0D9DE;
  margin-bottom: 20px;
  direction: rtl;
  text-align: right;
}

.woocommerce-address h3 {
  color: #1E1216;
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  font-family: "Cairo", sans-serif;
}

.woocommerce-address p {
  color: #64748B;
  font-size: 14px;
  margin: 8px 0;
  line-height: 1.6;
}

.woocommerce-address .edit {
  display: inline-block;
  margin-top: 8px;
}

.woocommerce-address .edit a {
  color: #C8758A;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.woocommerce-address .edit a:hover {
  color: #B5667A;
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
  body.woocommerce-account #primary .content-container.site-container,
  body.woocommerce-myaccount #primary .content-container.site-container {
    padding-inline: 16px;
    padding-top: 20px;
    padding-bottom: 28px;
  }

  body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation),
  body.woocommerce-myaccount .woocommerce:has(.woocommerce-MyAccount-navigation) {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) > .account-navigation-wrap,
  body.woocommerce-myaccount .woocommerce:has(.woocommerce-MyAccount-navigation) > .account-navigation-wrap {
    min-width: 0;
    max-width: none;
  }

  .account-navigation-wrap {
    flex-direction: row;
    gap: 12px;
    position: static;
  }

  .base-account-avatar {
    flex: 1;
    min-width: 200px;
  }

  .woocommerce-MyAccount-navigation {
    flex: 1;
  }

  .woocommerce-MyAccount-navigation ul {
    flex-direction: row;
    overflow-x: auto;
  }

  .woocommerce-MyAccount-navigation li {
    white-space: nowrap;
    border-bottom: none;
    border-right: 1px solid #F0D9DE;
  }

  .woocommerce-MyAccount-navigation li:last-child {
    border-right: none;
  }

  .woocommerce-MyAccount-navigation a {
    padding: 12px 10px;
    font-size: 12px;
  }

  .woocommerce-MyAccount-content {
    padding: 20px;
    grid-column: 1;
  }

  .entry-hero.page-hero-section .entry-title {
    font-size: 24px;
  }

  .woocommerce-MyAccount-content table {
    font-size: 13px;
  }

  .woocommerce-MyAccount-content table th,
  .woocommerce-MyAccount-content table td {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .entry-hero.page-hero-section {
    padding-block: 20px 16px;
  }

  .entry-hero.page-hero-section .entry-title {
    font-size: 20px;
  }

  .account-navigation-wrap {
    flex-direction: column;
    gap: 16px;
    position: static;
  }

  .base-account-avatar {
    padding: 16px;
  }

  .base-customer-image img {
    width: 70px;
    height: 70px;
  }

  .base-customer-name {
    font-size: 16px;
  }

  .woocommerce-MyAccount-navigation {
    width: 100%;
  }

  .woocommerce-MyAccount-navigation ul {
    flex-direction: column;
  }

  .woocommerce-MyAccount-navigation li {
    border-right: none;
    border-bottom: 1px solid #F0D9DE;
  }

  .woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
  }

  .woocommerce-MyAccount-navigation a {
    padding: 12px 14px;
    font-size: 13px;
  }

  .woocommerce-MyAccount-content {
    padding: 16px;
    grid-column: 1;
  }

  .woocommerce-MyAccount-content p {
    font-size: 14px;
  }

  .woocommerce-MyAccount-content table {
    font-size: 12px;
    overflow-x: auto;
    display: block;
  }

  .woocommerce-MyAccount-content table th,
  .woocommerce-MyAccount-content table td {
    padding: 8px 10px;
  }

  .woocommerce-MyAccount-content button,
  .woocommerce-MyAccount-content .button {
    width: 100%;
    padding: 12px 16px;
  }

  .woocommerce-address {
    padding: 16px;
  }
}

/* ==========================================================================
   ACCESSIBILITY & ANIMATIONS
   ========================================================================== */

/* Focus states for keyboard navigation */
.woocommerce-MyAccount-navigation a:focus,
.woocommerce-MyAccount-content a:focus,
.woocommerce-MyAccount-content button:focus,
.woocommerce-MyAccount-content .button:focus {
  outline: 2px solid #C8758A;
  outline-offset: 2px;
}

.woocommerce-MyAccount-content input:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus {
  outline: 2px solid #C8758A;
  outline-offset: 2px;
}

/* Smooth transitions */
.woocommerce-MyAccount-navigation a,
.woocommerce-MyAccount-content a,
.woocommerce-MyAccount-content button,
.base-customer-image a img {
  transition-property: background-color, border-color, color, box-shadow, transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

/* ==========================================================================
   ACCOUNT FIXES
   ========================================================================== */

body.woocommerce-account .content-container.site-container {
  max-width: 1240px;
}

body.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) {
  display: block;
  max-width: 1160px;
  margin: 32px auto 48px;
}

body.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) .u-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  direction: ltr;
}

body.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) .u-column1,
body.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) .u-column2,
body.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) form.login,
body.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) form.register {
  width: 100%;
  margin: 0;
  direction: rtl;
}

body.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) form.login,
body.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) form.register {
  background: #fff;
  border: 1px solid #f0d9de;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(200, 117, 138, 0.08);
}

body.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) h2 {
  font-family: "Cairo", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1e1216;
  margin-bottom: 20px;
  text-align: right;
}

body.woocommerce-account .woocommerce form .form-row label,
body.woocommerce-account .woocommerce form p label {
  display: block;
  color: #1e1216;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

body.woocommerce-account .woocommerce form input[type="text"],
body.woocommerce-account .woocommerce form input[type="email"],
body.woocommerce-account .woocommerce form input[type="password"],
body.woocommerce-account .woocommerce form input[type="tel"],
body.woocommerce-account .woocommerce form select,
body.woocommerce-account .woocommerce form textarea {
  width: 100%;
  border: 1px solid #f0d9de;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  text-align: right;
  direction: rtl;
}

body.woocommerce-account .woocommerce form button.button,
body.woocommerce-account .woocommerce form .button {
  border-radius: 999px !important;
  background: #c8758a !important;
  color: #fff !important;
  border: none !important;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  padding: 12px 22px !important;
  box-shadow: 0 10px 24px rgba(200, 117, 138, 0.2);
}

@media (max-width: 900px) {
  body.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) .u-columns {
    grid-template-columns: 1fr;
    direction: rtl;
  }
}
