/* ---- dashboard (authenticated) ---- */

.acc-dashboard {
  width: 100%;
  padding: 48px 40px 80px;
}

.acc-welcome {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
  background: #f5f3f0;
  border: 1px solid var(--line);
  margin-bottom: 36px;
  animation: accFadeUp 0.5s ease both;
}

.acc-welcome-avatar {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 500;
  font-family: var(--font-sans);
}

.acc-welcome-text {
  flex: 1;
}

.acc-welcome-text h1 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 2px;
  color: var(--text-primary);
}

.acc-welcome-text p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
}

.acc-logout-btn {
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px 22px;
  border: 1px solid var(--line);
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.acc-logout-btn:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: #ecebe6;
}

/* ---- stats row ---- */

.acc-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}

.acc-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  background: #f5f3f0;
  border: 1px solid var(--line);
  animation: accFadeUp 0.5s ease both;
}

.acc-stat-card:nth-child(1) { animation-delay: .05s; }
.acc-stat-card:nth-child(2) { animation-delay: .1s; }
.acc-stat-card:nth-child(3) { animation-delay: .15s; }
.acc-stat-card:nth-child(4) { animation-delay: .2s; }

.acc-stat-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
}

.acc-stat-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 1px;
}

.acc-stat-label {
  font-size: .7rem;
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

/* ---- section header ---- */

.acc-section-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.acc-section-header h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0;
}

.acc-section-header span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ---- order list ---- */

.acc-order-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 44px;
}

.acc-order-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 22px 28px;
  background: #f5f3f0;
  border: 1px solid var(--line);
  transition: border-color .25s ease, background .25s ease;
  animation: accFadeUp 0.45s ease both;
}

.acc-order-card:hover {
  border-color: var(--ink);
  background: #ecebe6;
}

.acc-order-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.acc-order-id-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.acc-order-num {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.acc-order-date {
  font-size: .75rem;
  color: var(--text-muted);
}

.acc-order-total {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-primary);
}

.acc-order-items {
  font-size: .8rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.5;
}

.acc-order-item {
  display: inline;
}

.acc-order-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.acc-status-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.acc-status-pending    { background: #f5f0e8; color: #8a7a5a; }
.acc-status-processing { background: #e8f0f5; color: #4a7a8a; }
.acc-status-shipped    { background: #e8f5ee; color: #3a7a5a; }
.acc-status-delivered  { background: #eef5e8; color: #4a7a3a; }
.acc-status-cancelled  { background: #f5e8e8; color: #8a4a4a; }

.acc-order-awb {
  font-size: .7rem;
  color: var(--text-muted);
}

.acc-refund-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
}

.acc-refund-pending  { background: #f5f0e8; color: #8a7a5a; }
.acc-refund-approved { background: #eef5e8; color: #4a7a3a; }
.acc-refund-rejected { background: #f5e8e8; color: #8a4a4a; }

.acc-order-view {
  margin-left: auto;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .25s ease;
}

.acc-order-card:hover .acc-order-view {
  color: var(--ink);
}

/* ---- empty state ---- */

.acc-empty {
  text-align: center;
  padding: 64px 24px;
  background: #f5f3f0;
  border: 1px solid var(--line);
  margin-bottom: 44px;
  animation: accFadeUp 0.5s ease both;
}

.acc-empty-icon {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.acc-empty h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.acc-empty p {
  font-size: .82rem;
  color: var(--text-secondary);
  max-width: 360px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.acc-cta-btn {
  display: inline-block;
  padding: 13px 34px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: opacity .25s ease;
}

.acc-cta-btn:hover {
  opacity: .8;
}

/* ---- quick links ---- */

.acc-quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  animation: accFadeUp 0.5s ease both;
  animation-delay: .2s;
}

.acc-quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: #f5f3f0;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color .25s ease, background .25s ease;
}

.acc-quick-link:hover {
  border-color: var(--ink);
  background: #ecebe6;
}

.acc-ql-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color .25s ease;
}

.acc-quick-link:hover .acc-ql-icon {
  color: var(--ink);
}

/* ---- auth (unauthenticated) ---- */

.acc-auth-page {
  display: flex;
  min-height: 600px;
  max-width: 1000px;
  margin: 40px auto;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: all .4s ease;
}

/* brand / left panel — dark by default (Login) */
.acc-auth-brand {
  flex: 1 1 45%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  transition: all .4s ease;
}

.acc-auth-brand-content {
  max-width: 300px;
}

.acc-auth-brand-content h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0 0 8px;
  color: #fff;
}

.acc-auth-tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin: 0 0 40px;
  line-height: 1.5;
}

.acc-auth-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.acc-auth-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.acc-ab-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

.acc-auth-benefit strong {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}

.acc-auth-benefit p {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  line-height: 1.5;
}

/* form / right panel — light by default (Login) */
.acc-auth-panel {
  flex: 1 1 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  transition: all .4s ease;
  background: #fff;
}

.acc-auth-inner {
  width: 100%;
  max-width: 380px;
}

.acc-auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--line);
  margin-bottom: 32px;
}

.acc-auth-tab {
  flex: 1;
  padding: 12px 0;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: color .25s ease;
  position: relative;
}

.acc-auth-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.acc-auth-tab:hover {
  color: var(--ink);
}

.acc-auth-tab.active {
  color: var(--ink);
}

.acc-auth-tab.active::after {
  transform: scaleX(1);
}

/* ---- auth form wraps (visibility approach for reliable animation) ---- */

.acc-otp-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.acc-otp-sub {
  font-size: .82rem;
  color: var(--text-secondary);
  margin: 0 0 28px;
  line-height: 1.5;
}

.acc-otp-sub strong {
  color: var(--text-primary);
  font-weight: 600;
}

.acc-auth-form-wrap {
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px);
  position: absolute;
  width: 100%;
  transition: none;
}

.acc-auth-form-wrap.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  position: static;
  animation: accFadeIn .35s ease both;
}

/* ---- auth form fields ---- */

.acc-field {
  margin-bottom: 20px;
}

.acc-field label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.acc-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: border-color .25s ease;
}

.acc-input-wrap:focus-within {
  border-bottom-color: var(--ink);
}

.acc-input-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  margin-right: 10px;
  transition: color .25s ease;
}

.acc-input-wrap:focus-within .acc-input-icon {
  color: var(--ink);
}

.acc-input-wrap input {
  flex: 1;
  padding: 10px 0;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: .88rem;
  color: var(--text-primary);
  outline: none;
}

.acc-input-wrap input::placeholder {
  color: #bbb;
}

.acc-submit-btn {
  width: 100%;
  padding: 14px 0;
  background: var(--ink);
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .25s ease;
  margin-top: 8px;
}

.acc-submit-btn:hover {
  opacity: .8;
}

.acc-forgot-link {
  text-align: center;
  margin-top: 18px;
  font-size: .78rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  transition: color .25s ease;
}

.acc-forgot-link:hover {
  color: var(--ink);
}

.acc-forgot-title {
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 24px;
}

/* ---- auth switch animation ---- */
/* When switching to Signup: brand becomes light, panel becomes dark */

.acc-auth-switch .acc-auth-brand {
  background: #f5f3f0;
  color: var(--text-primary);
}

.acc-auth-switch .acc-auth-brand-content h1 {
  color: var(--ink);
}

.acc-auth-switch .acc-auth-tagline {
  color: var(--text-muted);
}

.acc-auth-switch .acc-ab-icon {
  color: var(--text-muted);
}

.acc-auth-switch .acc-auth-benefit strong {
  color: var(--text-primary);
}

.acc-auth-switch .acc-auth-benefit p {
  color: var(--text-secondary);
}

.acc-auth-switch .acc-auth-panel {
  background: #000;
}

/* signup form fields inside dark panel */
.acc-auth-switch .acc-auth-panel .acc-field label {
  color: rgba(255,255,255,.7);
}

.acc-auth-switch .acc-auth-panel .acc-input-wrap {
  border-bottom-color: rgba(255,255,255,.3);
}

.acc-auth-switch .acc-auth-panel .acc-input-wrap:focus-within {
  border-bottom-color: rgba(255,255,255,.9);
}

.acc-auth-switch .acc-auth-panel .acc-input-icon {
  color: rgba(255,255,255,.55);
}

.acc-auth-switch .acc-auth-panel .acc-input-wrap:focus-within .acc-input-icon {
  color: #fff;
}

.acc-auth-switch .acc-auth-panel .acc-input-wrap input {
  color: #fff;
}

.acc-auth-switch .acc-auth-panel .acc-input-wrap input::placeholder {
  color: rgba(255,255,255,.45);
}

.acc-auth-switch .acc-auth-panel .acc-auth-tabs {
  border-bottom-color: rgba(255,255,255,.15);
}

.acc-auth-switch .acc-auth-panel .acc-auth-tab {
  color: rgba(255,255,255,.4);
}

.acc-auth-switch .acc-auth-panel .acc-auth-tab:hover {
  color: rgba(255,255,255,.8);
}

.acc-auth-switch .acc-auth-panel .acc-auth-tab.active {
  color: #fff;
}

.acc-auth-switch .acc-auth-panel .acc-auth-tab::after {
  background: #fff;
}

.acc-auth-switch .acc-auth-panel .acc-submit-btn {
  background: #fff;
  color: var(--ink);
}

.acc-auth-switch .acc-auth-panel .acc-submit-btn:hover {
  opacity: .85;
}

.acc-auth-switch .acc-auth-panel .acc-forgot-link {
  color: rgba(255,255,255,.45);
}

.acc-auth-switch .acc-auth-panel .acc-forgot-link:hover {
  color: #fff;
}

.acc-auth-switch .acc-auth-panel .acc-forgot-title {
  color: #fff;
}

/* ---- account responsive ---- */

@media (max-width: 860px) {
  .acc-dashboard {
    padding: 32px 24px 64px;
  }

  .acc-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .acc-quick-links {
    grid-template-columns: 1fr;
  }

  .acc-auth-page {
    flex-direction: column;
    margin: 24px 16px;
  }

  .acc-auth-brand {
    padding: 36px 32px;
  }

  .acc-auth-panel {
    padding: 36px 32px;
  }

  .acc-auth-switch .acc-auth-brand {
    order: 2;
  }

  .acc-auth-switch .acc-auth-panel {
    order: 1;
  }
}

@media (max-width: 480px) {
  .acc-welcome {
    flex-wrap: wrap;
  }

  .acc-stats-row {
    grid-template-columns: 1fr;
  }

  .acc-order-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .acc-order-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .acc-order-view {
    margin-left: 0;
  }

  .acc-auth-page {
    margin: 16px 0;
    border-left: none;
    border-right: none;
  }
}

/* ---------- ORDER DETAIL PAGE ---------- */

.od-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 32px 64px;
  box-sizing: border-box;
}

.od-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #605e59;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color .2s ease;
}

.od-back:hover {
  color: #111111;
}

.od-top {
  background: #f5f3f0;
  padding: 32px 0;
}

.od-top .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.od-top-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.od-top-title {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #111111;
  margin: 0;
  letter-spacing: -0.01em;
}

.od-top-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.od-top-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #605e59;
}

.od-top-date svg {
  flex-shrink: 0;
}

.od-top-status {
  font-size: 10px;
}

@media (max-width: 860px) {
  .od-top { padding: 24px 0; }
  .od-top-title { font-size: 24px; }
}

@media (max-width: 480px) {
  .od-top { padding: 20px 0; }
  .od-top-title { font-size: 20px; }
  .od-top-info { flex-direction: column; align-items: flex-start; }
}

.od-messages {
  margin-bottom: 24px;
}

.od-toast {
  padding: 12px 20px;
  font-size: 13px;
  margin-bottom: 8px;
  background: #faf3ee;
  border: 1px solid #e3d9d0;
}

.od-toast-success {
  color: #2a6b3c;
  border-color: #2a6b3c;
}

.od-toast-error {
  color: #b54a4a;
  border-color: #b54a4a;
}

.od-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.od-main {
  min-width: 0;
}

.od-section {
  margin-bottom: 40px;
}

.od-section-title {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e3d9d0;
}

.od-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.od-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.od-item-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.od-item-img {
  width: 56px;
  height: 72px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: #f0eeeb;
}

.od-item-img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8cec5;
}

.od-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  margin: 0 0 4px;
}

.od-item-variant {
  font-size: 11px;
  color: #605e59;
  margin: 0;
  letter-spacing: 0.02em;
}

.od-item-qty {
  font-size: 13px;
  color: #9a9a9a;
  white-space: nowrap;
}

.od-item-price {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  white-space: nowrap;
  min-width: 64px;
  text-align: right;
}

.od-address {
  font-size: 14px;
  color: #111111;
  margin: 0 0 4px;
  line-height: 1.6;
}

.od-tracking {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.od-tracking-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.od-tracking-label {
  font-size: 12px;
  color: #605e59;
  letter-spacing: 0.03em;
}

.od-tracking-value {
  font-size: 13px;
  color: #111111;
  font-weight: 500;
}

.od-track-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  margin-top: 8px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #151515;
  color: #fff;
  text-decoration: none;
  transition: background .2s ease;
}

.od-track-btn:hover {
  background: #000;
}

.od-no-tracking {
  font-size: 13px;
  color: #9a9a9a;
  margin: 0;
}

.od-sidebar {
  min-width: 0;
}

.od-summary {
  background: #faf3ee;
  padding: 28px;
  margin-bottom: 20px;
}

.od-summary .od-section-title {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 16px;
}

.od-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.od-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #605e59;
}

.od-summary-row span:last-child {
  color: #111111;
}

.od-summary-discount span:last-child {
  color: #2a6b3c;
}

.od-summary-total {
  font-weight: 600;
  padding-top: 14px;
  margin-top: 8px;
  border-top: 1px solid #e3d9d0;
}

.od-summary-total span {
  color: #111111;
}

.od-status-card {
  background: #fff;
  border: 1px solid #e3d9d0;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.od-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.od-status-label {
  font-size: 12px;
  color: #605e59;
  letter-spacing: 0.04em;
}

.od-status-value {
  font-size: 13px;
  color: #111111;
  font-weight: 500;
}

.od-status-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid currentColor;
}

/* ---------- RETURN / REFUND SECTION ---------- */

.od-return-section {
  margin-bottom: 20px;
}

.od-return-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  background: transparent;
  border: 1px solid #d8cec5;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.od-return-btn:hover {
  border-color: #111111;
  background: #faf3ee;
}

.od-return-form {
  background: #faf3ee;
  padding: 24px;
  border: 1px solid #e3d9d0;
}

.od-form-field {
  margin-bottom: 16px;
}

.od-form-field label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #605e59;
  margin-bottom: 10px;
}

.od-form-field select,
.od-form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d8cec5;
  background: transparent;
  padding: 10px 0 12px;
  font-size: 14px;
  font-family: inherit;
  color: #1a1a1a;
  outline: none;
  transition: border-color .25s ease;
}

.od-form-field select:focus,
.od-form-field textarea:focus {
  border-bottom-color: #111111;
}

.od-form-field textarea {
  resize: vertical;
  min-height: 60px;
}

.od-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.od-submit-return {
  flex: 1;
  height: 44px;
  background: #151515;
  color: #fff;
  border: none;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease;
}

.od-submit-return:hover {
  background: #000;
}

.od-cancel-return {
  height: 44px;
  padding: 0 20px;
  background: transparent;
  border: 1px solid #d8cec5;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
  cursor: pointer;
  transition: border-color .2s ease;
}

.od-cancel-return:hover {
  border-color: #111111;
}

.od-cancel-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  margin-top: 8px;
  background: transparent;
  border: 1px solid #b54a4a;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b54a4a;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.od-cancel-btn:hover {
  background: #b54a4a;
  color: #fff;
}

.od-cancel-btn svg {
  flex-shrink: 0;
}

/* ---------- CANCEL MODAL ---------- */

.od-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.od-modal-open {
  display: flex;
}

.od-modal {
  background: #fff;
  max-width: 420px;
  width: 100%;
  padding: 40px 36px 32px;
  text-align: center;
  box-sizing: border-box;
}

.od-modal-icon {
  margin-bottom: 16px;
}

.od-modal-title {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #111111;
  margin: 0 0 8px;
}

.od-modal-text {
  font-size: 14px;
  color: #605e59;
  margin: 0 0 28px;
  line-height: 1.6;
}

.od-modal-actions {
  display: flex;
  gap: 10px;
}

.od-modal-btn {
  flex: 1;
  height: 46px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.od-modal-btn-secondary {
  background: transparent;
  border: 1px solid #d8cec5;
  color: #111111;
}

.od-modal-btn-secondary:hover {
  border-color: #111111;
}

.od-modal-btn-danger {
  background: #b54a4a;
  border: none;
  color: #fff;
}

.od-modal-btn-danger:hover {
  background: #9a3d3d;
}

/* Refund status cards */

.od-refund-status {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border: 1px solid #e3d9d0;
  background: #fff;
  margin-bottom: 8px;
}

.od-refund-title {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  margin: 0 0 4px;
}

.od-refund-sub {
  font-size: 12px;
  color: #605e59;
  margin: 0 0 2px;
}

.od-refund-date {
  font-size: 11px;
  color: #9a9a9a;
  margin: 0;
}

.od-refund-notes {
  font-size: 12px;
  color: #605e59;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #e3d9d0;
}

.od-refund-pending {
  border-color: #b58a2a;
}

.od-refund-pending svg {
  color: #b58a2a;
  flex-shrink: 0;
}

.od-refund-approved {
  border-color: #2a6b3c;
}

.od-refund-approved svg {
  color: #2a6b3c;
  flex-shrink: 0;
}

.od-refund-done {
  border-color: #2a6b3c;
}

.od-refund-done svg {
  color: #2a6b3c;
  flex-shrink: 0;
}

.od-refund-rejected {
  border-color: #b54a4a;
}

.od-refund-rejected svg {
  color: #b54a4a;
  flex-shrink: 0;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 860px) {
  .od-grid {
    grid-template-columns: 1fr;
  }

  .od-container {
    padding: 0 24px 48px;
  }
}

@media (max-width: 480px) {
  .od-item {
    flex-wrap: wrap;
  }

  .od-summary {
    padding: 20px;
  }
}
