/* =========================================
   MY ACCOUNT
========================================= */

.wrapper {
  padding: 56px 0 90px;
  background: #f8f1e8;
}

.wrapper > .container {
  max-width: 1320px;
}

.cb-page {
  padding: 0;
}

.cb-page__container {
  max-width: 1240px !important;
  margin: 0 auto;
}

.cb-page__header {
  margin: 0 0 34px;
  text-align: center;
}

.cb-page__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #2f241f;
}

.cb-page__content {
  margin-top: 0;
}

.cb-page__content > .woocommerce {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

/* NAV */

.woocommerce-MyAccount-navigation {
  position: sticky;
  top: 120px;
  min-width: 0;
}

.woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 14px;
  list-style: none;
  background: #fffaf5;
  border: 1px solid rgba(110, 77, 57, 0.12);
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(69, 42, 24, 0.08);
}

.woocommerce-MyAccount-navigation li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-MyAccount-navigation li::before,
.woocommerce-MyAccount-navigation li::marker {
  content: none;
  display: none;
}

.woocommerce-MyAccount-navigation li + li {
  margin-top: 8px;
}

.woocommerce-MyAccount-navigation a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px 14px 22px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: #59443a;
  background: transparent;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.woocommerce-MyAccount-navigation a::before {
  content: "";
  width: 4px;
  height: 26px;
  margin-right: 14px;
  border-radius: 999px;
  background: #ead8ca;
  flex: 0 0 4px;
  opacity: 0.7;
  transition: background-color 0.22s ease, height 0.22s ease, opacity 0.22s ease;
}

.woocommerce-MyAccount-navigation a:hover {
  background: #f6ece3;
  color: #2f241f;
  transform: translateX(4px);
}

.woocommerce-MyAccount-navigation a:hover::before {
  background: #cf9b82;
  opacity: 1;
}

.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a[aria-current="page"] {
  background: linear-gradient(135deg, #df7b57 0%, #d7643e 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(215, 100, 62, 0.24);
}

.woocommerce-MyAccount-navigation .is-active a::before,
.woocommerce-MyAccount-navigation a[aria-current="page"]::before {
  background: rgba(255, 255, 255, 0.95);
  height: 32px;
  opacity: 1;
}

.woocommerce-MyAccount-navigation .is-active a:hover,
.woocommerce-MyAccount-navigation a[aria-current="page"]:hover {
  color: #fff;
  transform: none;
}

.woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(110, 77, 57, 0.12);
}

.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #b14d34;
}

.woocommerce-MyAccount-navigation-link--customer-logout a::before {
  background: #efc5b9;
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: #fff0eb;
  color: #8d3823;
}

/* CONTENT */

.woocommerce-MyAccount-content {
  background: #fffaf5;
  border: 1px solid rgba(110, 77, 57, 0.12);
  border-radius: 32px;
  padding: 36px 38px;
  box-shadow: 0 18px 45px rgba(69, 42, 24, 0.08);
  min-width: 0;
}

.woocommerce-MyAccount-content p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.8;
  color: #4c4039;
}

.woocommerce-MyAccount-content strong {
  color: #2f241f;
  font-weight: 800;
}

.woocommerce-MyAccount-content a {
  color: #d7643e;
  text-decoration: none;
  font-weight: 600;
}

.woocommerce-MyAccount-content a:hover {
  color: #b84f2d;
}

@media (max-width: 900px) {
  .cb-page__content > .woocommerce {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .woocommerce-MyAccount-navigation {
    position: static;
    top: auto;
  }

  .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
    border-radius: 24px;
  }

  .woocommerce-MyAccount-navigation li,
  .woocommerce-MyAccount-navigation li + li {
    margin: 0 !important;
  }

  .woocommerce-MyAccount-navigation-link--customer-logout {
    margin-top: 0 !important;
    padding-top: 0;
    border-top: 0;
  }

  .woocommerce-MyAccount-navigation a {
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 14px;
  }

  .woocommerce-MyAccount-navigation a::before {
    display: none;
  }

  .woocommerce-MyAccount-content {
    padding: 24px 20px;
    border-radius: 24px;
  }
}