/* ===== Account PAGE STYLES ===== */
.profile-header {
  background: linear-gradient(135deg, var(--softCream) 0%, #FFF0E9 100%);
}

.profile-avatar {
  width: clamp(4.375rem, 3.8235rem + 2.9412vw, 7.5rem);
  height: clamp(4.375rem, 3.8235rem + 2.9412vw, 7.5rem);
  background: var(--primaryBrown);
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(90, 71, 28, 0.15);
  flex-shrink: 0;
}

.profile-avatar svg {
  height: clamp(2.5rem, 2.2794rem + 1.1765vw, 3.75rem);
  width: clamp(2.5rem, 2.2794rem + 1.1765vw, 3.75rem);
}

.profile-section {
  background: #fff;
  border: 1px solid var(--borderColor);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quick-action {
  background: #fff;
  border: 1px solid var(--borderColor);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.quick-action:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(207, 0, 1, 0.12);
  border-color: var(--accentRed);
}

.quick-action-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #FFF0E9, #FFE0CC);
  border-radius: 12px;
  margin: 0 auto 12px;
  flex-shrink: 0;
}

.quick-action-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accentRed);
  fill: none;
  stroke-width: 2;
}

.profile-support-card {
  background: linear-gradient(135deg, var(--softCream) 0%,
      #FFF0E9 100%);
  border: none;
}

.desktop-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
}

.active-sidebar-link {
  color: var(--accentRed);
}

.edit-btn {
  background: var(--softCream);
  color: var(--primaryBrown);
  border-radius: 6px;
  padding: 4px 8px;
  transition: all 0.3s ease;
  border:1px solid transparent;
}

.edit-btn:hover {
  transform: translateY(-4px);
  border: 1px solid var(--primaryBrown);
}

.address-card {
  background: var(--lightBg);
  padding: 16px;
  border-radius: 12px;
  border-left: 3px solid var(--accentRed);
}

.table-header {
  border-bottom: 2px solid var(--borderColor);
}

.badge-delivered {
  background: #2e7d32;
}

.badge-transit {
  background: #f57c00;
}

.account-link {
  border-color: var(--borderColor);
}

.edit-btn {
    background: var(--softCream);
    color: var(--primaryBrown);
    transition: all 0.3s ease;
    cursor: pointer;
}

.edit-btn:hover {
    background: var(--primaryBrown);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 71, 28, 0.2);
}


/* My order page css */
.mo-wrap {
    background: #FFF8F5;
    padding: clamp(24px, 4vw, 36px) clamp(14px, 3vw, 24px);
  }

  .mo-inner {
    max-width: 980px;
    margin: 0 auto;
  }
  .mo-header {
    background: linear-gradient(135deg, #FFF0E8, #FFE0CC);
    border-radius: 20px;
    padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px);
    margin-bottom: 22px;
  }

  .mo-title {
    font-family: 'Playfair Display', serif;
  }

  .mo-count {
    border-radius: 50px;
    padding: 6px 16px;
  }

  .mo-count svg {
    width: 14px;
    height: 14px;
    stroke: var(--accentRed);
    fill: none;
    stroke-width: 2;
  }
  .mo-tabs {
    margin-bottom: 20px;
    padding-bottom: 2px;
  }

  .mo-tab {
    flex-shrink: 0;
    border: 1.5px solid var(--borderColor);
    border-radius: 50px;
    padding: 6px 18px;
    color: var(--textcolor);
    background: #fff;
    cursor: pointer;
    transition: all .2s;
  }

  .mo-tab:hover {
    border-color: var(--primaryBrown);
  }

  .mo-tab.active {
    background: var(--primaryBrown);
    color: #fff;
    border-color: var(--primaryBrown);
  }

  .mo-order-card {
    border: 1px solid var(--borderColor);
    border-radius: 18px;
    transition: box-shadow .3s;
  }

  .mo-order-card:hover {
    box-shadow: 0 12px 32px rgba(90, 71, 28, .08);
  }

  .mo-order-top {
    padding: 14px 18px;
    background: #FFF8F5;
    border-bottom: 1px solid var(--borderColor);
  }

  .mo-order-date {
    margin-top: 2px;
  }

  .mo-status {
    display: inline-flex;
    padding: 5px 14px;
    border-radius: 50px;
  }

  .mo-status.delivered {
    background: #E8F5E9;
    color: #2e7d32;
  }

  .mo-status.transit {
    background: #FFF4E5;
    color: #B36B00;
  }

  .mo-status.processing {
    background: #E3F2FD;
    color: #1565C0;
  }

  .mo-status.cancelled {
    background: #FCEBEB;
    color: #A32D2D;
  }

  .mo-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
  }

  .mo-order-body {
    padding: 16px 18px;
  }

  .mo-product-row {
    margin-bottom: 12px;
  }

  .mo-product-row:last-child {
    margin-bottom: 0;
  }

  .mo-product-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--borderColor);
  }

  .mo-product-info {
    flex: 1;
    min-width: 0;
  }

  .mo-product-name {
    margin-bottom: 3px;
  }
  .mo-product-price {
    flex-shrink: 0;
    text-align: right;
  }

  .mo-divider {
    border-top: 1px dashed var(--borderColor);
    margin: 14px 0;
  }
  .mo-btn-track {
    background: var(--primaryBrown);
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background .2s;
  }

  .mo-btn-track:hover {
    background: #3e3014;
  }

  .mo-btn-track svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
  }

  .mo-btn-outline {
    color: var(--primaryBrown);
    border: 1.5px solid var(--borderColor);
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
    transition: border-color .2s;
  }

  .mo-btn-outline:hover {
    border-color: var(--primaryBrown);
  }

  .mo-btn-reorder {
    background: var(--accentRed);
    border: none;
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background .2s;
  }

  .mo-btn-reorder:hover {
    background: #a80001;
  }

  .mo-btn-reorder svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
  }

  .mo-empty {
    padding: 56px 24px;
    border: 1px solid var(--borderColor);
    border-radius: 20px;
  }

  .mo-empty.show {
    display: flex !important;
  }

  .mo-empty svg {
    width: 90px;
    height: 90px;
    stroke: var(--softCream);
    fill: none;
    stroke-width: 1.2;
    margin-bottom: 18px;
  }

  .mo-empty h3 {
    font-family: 'Playfair Display', serif;
  }

  .mo-empty p {
    margin-bottom: 20px;
  }

  .mo-empty-btn {
    background: var(--accentRed);
    border-radius: 50px;
    padding: 11px 28px;
    cursor: pointer;
  }