/*profile css */

.profile-page {
  background: #fafafa;
  min-height: 100vh;
  padding: 60px 0;
}

.profile-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
}

.profile-sidebar {
  background: transparent;
  border-right: 1px solid #d8d6d4;
  padding: 10px 28px 10px 0;
}

.profile-icon {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d8d6d4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.profile-icon i {
  font-size: 70px;
  color: #65081f;
}

.profile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-menu li {
  margin-bottom: 18px;
}

.profile-menu a {
  text-decoration: none;
  color: #222;
  font-size: 17px;
  font-weight: 500;
  display: inline-block;
  padding: 8px 0;
  transition: all 0.25s ease;
  position: relative;
}

.profile-menu a:hover {
  color: #65081f;
  transform: translateX(3px);
}

.profile-menu a.active {
  color: #65081f;
  font-weight: 700;
}

.profile-menu a.active::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 34px;
  background: #65081f;
  border-radius: 3px;
}

.logout-link {
  margin-top: 36px;
  display: inline-block;
  text-decoration: none;
  color: #222;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.logout-link:hover {
  color: #65081f;
  transform: translateX(3px);
}

.profile-content h1 {
  font-size: 28px;
  line-height: 1.05;
  font-weight: 700;
  color: #111;
  margin-bottom: 26px;
}

.profile-card {
  background: #fff;
  border: 1px solid #d8d6d4;
  padding: 40px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.profile-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #111;
  border-bottom: 1px solid #e3e1de;
  padding-bottom: 16px;
}

.profile-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 22px 26px;
  max-width: 1000px;
}

.profile-field {
  position: relative;
}

.profile-field.full {
  grid-column: span 2;
}

.profile-field label {
  display: block;
  font-size: 13px;
  color: #6f6b67;
  margin-bottom: 8px;
  font-weight: 600;
}

.profile-field input {
  width: 100%;
  height: 66px;
  border: 1px solid #d8d6d4;
  background: #fcfcfc;
  padding: 0 18px;
  font-size: 18px;
  color: #4a4a4a;
  outline: none;
  font-family: "Playfair Display", serif;
  transition: all 0.25s ease;
}

.profile-field input:hover {
  border-color: #c5c1bc;
}

.profile-field input[readonly] {
  cursor: default;
}

.profile-actions {
  margin-top: 34px;
}

.edit-btn {
  display: inline-block;
  background: #fff;
  border: 1px solid #222;
  border-left: 3px solid #65081f;
  padding: 12px 30px;
  font-size: 16px;
  text-decoration: none;
  color: #222;
  transition: all 0.25s ease;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.edit-btn:hover {
  background: #65081f;
  color: #fff;
  border-color: #65081f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .profile-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .profile-sidebar {
    border-right: none;
    border-bottom: 1px solid #d8d6d4;
    padding: 0 0 24px 0;
  }

  .profile-content h1 {
    font-size: 42px;
  }

  .profile-form-grid {
    grid-template-columns: 1fr;
  }

  .profile-field.full {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .profile-page {
    padding: 36px 0;
  }

  .profile-content h1 {
    font-size: 34px;
  }

  .profile-card {
    padding: 22px;
  }

  .profile-icon {
    width: 88px;
    height: 88px;
  }

  .profile-icon i {
    font-size: 40px;
  }

  .profile-field input {
    height: 58px;
    font-size: 16px;
  }
}
/* ORDER HISTORY */

.order-history-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.order-history-card {
  border: 1px solid #e3e1de;
  background: #fcfcfc;
  padding: 24px;
  transition: all 0.25s ease;
}

.order-history-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: #d3cdc8;
}

.order-history-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid #ece9e5;
}

.order-meta-group h3 {
  margin: 0;
  font-size: 24px;
  color: #111;
}

.order-meta-group p {
  margin: 0;
  font-size: 17px;
  color: #555;
}

.order-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #7a746d;
  margin-bottom: 8px;
  font-weight: 600;
}

.order-total {
  color: #65081f !important;
  font-weight: 700;
}

.order-status-wrap {
  text-align: left;
}

.order-status {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
}

.status-processing {
  background: #fbf3e6;
  color: #9a6700;
  border-color: #ead2a3;
}

.status-delivered {
  background: #edf7f0;
  color: #23623d;
  border-color: #bdddc7;
}

.status-completed {
  background: #f4eef8;
  color: #65081f;
  border-color: #d8c7e2;
}

.order-history-body {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.order-items-block {
  flex: 1;
  min-width: 240px;
}

.order-items-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.order-items-list {
  margin: 0;
  padding-left: 18px;
  color: #555;
}

.order-items-list li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.order-history-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.order-empty-state {
  text-align: center;
  padding: 40px 20px 20px;
}

.order-empty-icon {
  width: 90px;
  height: 90px;
  border: 1px solid #d8d6d4;
  border-radius: 50%;
  background: #fff;
  color: #65081f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.order-empty-icon i {
  font-size: 36px;
}

.order-empty-state h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.order-empty-state p {
  max-width: 520px;
  margin: 0 auto 20px;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .order-history-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .order-history-card {
    padding: 18px;
  }

  .order-history-top {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 16px;
  }

  .order-meta-group h3 {
    font-size: 21px;
  }

  .order-meta-group p {
    font-size: 16px;
  }

  .order-history-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-history-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
/* ADDRESS BOOK */

/* ADDRESS BOOK */

.address-book-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.address-book-title {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.address-book-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 22px;
}

.address-card {
  border: 1px solid #e3e1de;
  background: #fcfcfc;
  padding: 24px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.address-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: #d3cdc8;
}

.address-card-top {
  margin-bottom: 18px;
}

.address-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.address-tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: #f4eef8;
  color: #65081f;
  border: 1px solid #d8c7e2;
  text-transform: uppercase;
}

.address-tag-light {
  background: #f6f6f6;
  color: #555;
  border-color: #dddddd;
}

.address-tag-default {
  background: #edf7f0;
  color: #23623d;
  border-color: #bdddc7;
}

.address-card-body h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #111;
}

.address-card-body p {
  margin: 0 0 8px;
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}

.address-card-actions {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #ece9e5;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.address-action-btn {
  display: inline-block;
  align-self: flex-start;
  background: #fff;
  border: 1px solid #222;
  border-left: 3px solid #65081f;
  padding: 10px 22px;
  font-size: 14px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: all 0.25s ease;
}

.address-action-btn:hover {
  background: #65081f;
  color: #fff;
  border-color: #65081f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.address-default-note {
  color: #23623d;
  font-size: 14px;
  font-weight: 600;
}

.address-secondary-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.address-link-btn {
  color: #222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.address-link-btn:hover {
  color: #65081f;
  transform: translateX(2px);
}

.address-link-danger {
  color: #7a1f2e;
}

/* ADD ADDRESS PAGE */

.address-page-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.address-back-link {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.address-back-link:hover {
  color: #65081f;
  transform: translateX(-2px);
}

.address-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 22px 26px;
  max-width: 1000px;
}

.address-select {
  width: 100%;
  height: 66px;
  border: 1px solid #d8d6d4;
  background: #fcfcfc;
  padding: 0 18px;
  font-size: 18px;
  color: #4a4a4a;
  outline: none;
  font-family: "Playfair Display", serif;
  transition: all 0.25s ease;
}

.address-select:hover {
  border-color: #c5c1bc;
}

.address-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  color: #222;
  font-weight: 600;
  margin-top: 6px;
}

.address-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #65081f;
}

.address-form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.address-submit-btn {
  cursor: pointer;
}

.address-cancel-btn {
  display: inline-block;
  padding: 12px 8px;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.address-cancel-btn:hover {
  color: #65081f;
}

@media (max-width: 1200px) {
  .address-book-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .address-form-grid {
    grid-template-columns: 1fr;
  }

  .address-book-head,
  .address-page-top {
    align-items: flex-start;
  }

  .address-card {
    padding: 18px;
  }

  .address-card-body h3 {
    font-size: 22px;
  }

  .address-card-body p {
    font-size: 15px;
  }

  .address-select {
    height: 58px;
    font-size: 16px;
  }
}

.account-hidden {
  display: none !important;
}

.profile-actions-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.account-cancel-btn {
  display: inline-block;
  background: transparent;
  border: none;
  padding: 12px 8px;
  font-size: 16px;
  text-decoration: none;
  color: #222;
  transition: all 0.25s ease;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-family: "Playfair Display", serif;
  cursor: pointer;
}

.account-cancel-btn:hover {
  color: #65081f;
}

.profile-field input.is-editing {
  background: #ffffff;
  border-color: #c9c5c0;
  box-shadow: 0 0 0 3px rgba(101, 8, 31, 0.05);
}

.profile-field input.invalid {
  border-color: #c0392b;
  box-shadow: none;
}

/* seller related profile dashboard */

/* SELLER DASHBOARD */

.seller-page {
  background: #fafafa;
  min-height: 100vh;
  padding: 60px 0;
}

.seller-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
}

.seller-sidebar {
  background: transparent;
  border-right: 1px solid #d8d6d4;
  padding: 10px 28px 10px 0;
}

.seller-sidebar-icon {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d8d6d4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.seller-sidebar-icon i {
  font-size: 48px;
  color: #65081f;
}

.seller-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seller-menu li {
  margin-bottom: 18px;
}

.seller-menu a {
  text-decoration: none;
  color: #222;
  font-size: 17px;
  font-weight: 500;
  display: inline-block;
  padding: 8px 0;
  transition: all 0.25s ease;
  position: relative;
}

.seller-menu a:hover {
  color: #65081f;
  transform: translateX(3px);
}

.seller-menu a.active {
  color: #65081f;
  font-weight: 700;
}

.seller-menu a.active::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 34px;
  background: #65081f;
  border-radius: 3px;
}

.seller-content {
  min-width: 0;
}

.seller-page-head {
  margin-bottom: 30px;
}

.seller-eyebrow {
  margin: 0 0 8px;
  color: #65081f;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
}

.seller-page-head h1 {
  font-size: 48px;
  line-height: 1.05;
  margin: 0 0 14px;
  color: #111;
}

.seller-page-subtitle {
  max-width: 860px;
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.7;
}

.seller-activation-banner {
  background: #fff;
  border: 1px solid #ddd7d2;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.seller-activation-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #faf4f5;
  border: 1px solid #ead8dd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #65081f;
}

.seller-activation-icon i {
  font-size: 24px;
}

.seller-activation-content h3 {
  margin: 0 0 6px;
  font-size: 24px;
  color: #111;
}

.seller-activation-content p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.seller-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.seller-stat-card {
  background: #fff;
  border: 1px solid #ddd7d2;
  padding: 26px 24px;
  min-height: 170px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.seller-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.seller-stat-label {
  font-size: 14px;
  color: #7a746d;
  font-weight: 600;
  margin-bottom: 18px;
}

.seller-stat-value {
  font-size: 42px;
  line-height: 1;
  color: #111;
  margin-bottom: 18px;
  font-weight: 700;
}

.seller-stat-note {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.seller-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, 0.95fr);
  gap: 22px;
}

.seller-panel {
  background: #fff;
  border: 1px solid #ddd7d2;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.seller-panel-large {
  min-width: 0;
}

.seller-panel-head {
  padding: 26px 24px 18px;
  border-bottom: 1px solid #ece9e5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.seller-panel-head-stack {
  justify-content: flex-start;
}

.seller-panel-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
  color: #111;
}

.seller-panel-head p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.seller-panel-badge {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  background: #f6f1f2;
  color: #65081f;
  border: 1px solid #ead8dd;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.seller-funnel-list {
  padding: 8px 24px 10px;
}

.seller-funnel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #ece9e5;
}

.seller-funnel-item:last-child {
  border-bottom: none;
}

.seller-funnel-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.seller-funnel-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.seller-dot-draft {
  background: #65081f;
}

.seller-dot-review {
  background: #d99000;
}

.seller-dot-approved {
  background: #26844a;
}

.seller-dot-revision {
  background: #b8b8b8;
}

.seller-funnel-left h4 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #111;
}

.seller-funnel-left p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.seller-funnel-count {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f8f6f4;
  border: 1px solid #e5dfd9;
  color: #5e5751;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.seller-quick-actions {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.seller-quick-card {
  display: block;
  text-decoration: none;
  border: 1px solid #e7e2dc;
  background: #fcfcfc;
  padding: 18px 18px;
  transition: all 0.25s ease;
}

.seller-quick-card:hover {
  transform: translateY(-2px);
  border-color: #cfc6bf;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.seller-quick-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.seller-quick-text {
  display: block;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .seller-stats-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .seller-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .seller-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .seller-sidebar {
    border-right: none;
    border-bottom: 1px solid #d8d6d4;
    padding: 0 0 24px 0;
  }

  .seller-page-head h1 {
    font-size: 40px;
  }

  .seller-activation-banner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .seller-stats-grid {
    grid-template-columns: 1fr;
  }

  .seller-panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .seller-funnel-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .seller-funnel-count {
    align-self: flex-start;
  }
}

@media (max-width: 576px) {
  .seller-page {
    padding: 36px 0;
  }

  .seller-page-head h1 {
    font-size: 34px;
  }

  .seller-sidebar-icon {
    width: 88px;
    height: 88px;
  }

  .seller-sidebar-icon i {
    font-size: 38px;
  }

  .seller-activation-banner,
  .seller-stat-card,
  .seller-panel-head,
  .seller-quick-actions,
  .seller-funnel-list {
    padding-left: 18px;
    padding-right: 18px;
  }

  .seller-stat-value {
    font-size: 34px;
  }

  .seller-funnel-left h4 {
    font-size: 18px;
  }
}

/* SELLER PROFILE & COMPLIANCE */

.seller-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(300px, 0.9fr);
  gap: 22px;
}

.seller-panel-body {
  padding: 28px 24px 30px;
}

.seller-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 22px 26px;
}

.seller-field {
  position: relative;
}

.seller-field.full {
  grid-column: span 2;
}

.seller-field label {
  display: block;
  font-size: 13px;
  color: #6f6b67;
  margin-bottom: 8px;
  font-weight: 600;
}

.seller-field input[type="text"],
.seller-field input[type="email"],
.seller-field input[type="number"],
.seller-field textarea,
.seller-field input[type="file"] {
  width: 100%;
  border: 1px solid #d8d6d4;
  background: #fcfcfc;
  padding: 16px 18px;
  font-size: 17px;
  color: #4a4a4a;
  outline: none;
  font-family: "Playfair Display", serif;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.seller-field input[type="text"],
.seller-field input[type="email"],
.seller-field input[type="number"] {
  height: 66px;
}

.seller-field input[type="number"]::-webkit-outer-spin-button,
.seller-field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.seller-field input[type="number"] {
  -moz-appearance: textfield;
}

.seller-field textarea {
  resize: vertical;
  min-height: 120px;
}

.seller-field input[type="text"]:hover,
.seller-field input[type="email"]:hover,
.seller-field input[type="number"]:hover,
.seller-field textarea:hover,
.seller-field input[type="file"]:hover {
  border-color: #c5c1bc;
}

.seller-field input[readonly],
.seller-field textarea[readonly] {
  cursor: default;
}

.seller-field input[type="file"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background: #f5f3f1;
}

.seller-field textarea.is-editing,
.seller-field input[type="text"].is-editing,
.seller-field input[type="email"].is-editing,
.seller-field input[type="number"].is-editing {
  background: #ffffff;
  border-color: #c9c5c0;
  box-shadow: 0 0 0 3px rgba(101, 8, 31, 0.05);
}

.seller-field textarea.invalid,
.seller-field input.invalid,
.seller-field input[type="file"].invalid {
  border-color: #c0392b;
  box-shadow: none;
}

.seller-field .error {
  display: block;
  color: #c0392b;
  font-size: 13px;
  margin-top: 8px;
  min-height: 18px;
}

.seller-subsection {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #ece9e5;
}

.seller-subsection-tight {
  padding-top: 22px;
}

.seller-subsection-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.seller-subsection-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
}

.seller-document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 20px 24px;
}

.seller-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  color: #222;
  line-height: 1.7;
}

.seller-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #65081f;
  flex-shrink: 0;
}

.seller-checkbox-error {
  display: block;
  color: #c0392b;
  font-size: 13px;
  margin-top: 8px;
  min-height: 18px;
}

.seller-admin-note {
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid #e5dfd9;
  background: #faf8f6;
  color: #5e5751;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
}

.seller-admin-note i {
  color: #65081f;
  font-size: 18px;
  margin-top: 2px;
}

.seller-alert-warning {
  background: #f3a20b;
  border: 1px solid #dc930d;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
  color: #2a1800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.seller-alert-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.seller-alert-icon i {
  font-size: 18px;
  color: #2a1800;
}

.seller-alert-content h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #2a1800;
}

.seller-alert-content p {
  margin: 0;
  line-height: 1.65;
  color: #2a1800;
}

.seller-side-info-panel {
  align-self: start;
}

.seller-side-info-body {
  padding: 24px;
}

.seller-check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ece9e5;
}

.seller-check-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.seller-check-dot {
  width: 12px;
  height: 12px;
  background: #65081f;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.seller-check-item h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #111;
}

.seller-check-item p {
  margin: 0;
  color: #666;
  line-height: 1.65;
}

@media (max-width: 1200px) {
  .seller-profile-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .seller-form-grid,
  .seller-document-grid {
    grid-template-columns: 1fr;
  }

  .seller-field.full {
    grid-column: span 1;
  }

  .seller-alert-warning {
    padding: 16px 16px;
  }

  .seller-panel-body,
  .seller-side-info-body {
    padding: 18px;
  }
}
.seller-existing-doc {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid #e7e2dc;
  background: #faf8f6;
}

.seller-existing-doc-empty {
  background: #fcfcfc;
  color: #7a746d;
}

.seller-existing-doc-label {
  display: inline-block;
  font-size: 14px;
  color: #7a746d;
}

.seller-existing-doc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.seller-existing-doc-link {
  color: #65081f;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.5;
  word-break: break-word;
}

.seller-existing-doc-link:hover {
  text-decoration: underline;
}

.seller-existing-doc-sub {
  margin-top: 6px;
  font-size: 13px;
  color: #7a746d;
}

.seller-existing-doc-note {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e7e2dc;
  font-size: 14px;
  color: #5e5751;
  line-height: 1.6;
}

.seller-doc-status {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  white-space: nowrap;
}

.seller-doc-status-pending {
  background: #fbf3e6;
  color: #9a6700;
  border-color: #ead2a3;
}

.seller-doc-status-approved {
  background: #edf7f0;
  color: #23623d;
  border-color: #bdddc7;
}

.seller-doc-status-needs_revision {
  background: #fdf1f1;
  color: #9f2d2d;
  border-color: #e7b8b8;
}

.seller-doc-status-rejected {
  background: #f8ebee;
  color: #7a1f2e;
  border-color: #dfb8c2;
}

.seller-lock-note {
  display: inline-block;
  font-size: 15px;
  color: #6b655f;
  line-height: 1.6;
}

.seller-status-banner {
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid transparent;
  line-height: 1.7;
}

.seller-status-banner strong {
  display: inline-block;
  margin-right: 6px;
}

.seller-status-banner-pending {
  background: #f4f7fb;
  border-color: #cdd9ea;
  color: #31547a;
}

.seller-status-banner-approved {
  background: #edf7f0;
  border-color: #bdddc7;
  color: #23623d;
}

.seller-status-banner-revision {
  background: #fbf3e6;
  border-color: #ead2a3;
  color: #9a6700;
}

.seller-status-banner-rejected {
  background: #f8ebee;
  border-color: #dfb8c2;
  color: #7a1f2e;
}

/* PRODUCT CATALOG */

/* PRODUCT CATALOG MANAGEMENT */

.seller-page-head-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.seller-page-head-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.seller-create-btn {
  white-space: nowrap;
}

.seller-stats-grid-catalog {
  margin-bottom: 24px;
}

.seller-catalog-toolbar {
  padding: 24px;
  border-top: 1px solid #ece9e5;
  border-bottom: 1px solid #ece9e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.seller-catalog-search {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.seller-catalog-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #7a746d;
  font-size: 14px;
}

.seller-catalog-search input {
  width: 100%;
  height: 54px;
  border: 1px solid #d8d6d4;
  background: #fcfcfc;
  padding: 0 18px 0 42px;
  font-size: 15px;
  color: #4a4a4a;
  outline: none;
  font-family: "Playfair Display", serif;
}

.seller-catalog-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.seller-catalog-select {
  min-width: 170px;
  height: 54px;
  border: 1px solid #d8d6d4;
  background: #fcfcfc;
  padding: 0 16px;
  font-size: 15px;
  color: #4a4a4a;
  outline: none;
  font-family: "Playfair Display", serif;
}

.seller-management-list {
  width: 100%;
}

.seller-management-head {
  display: grid;
  grid-template-columns: 2fr 1.3fr 0.9fr 0.8fr 1fr;
  gap: 18px;
  padding: 18px 24px;
  background: #faf8f6;
  border-bottom: 1px solid #ece9e5;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #7a746d;
  font-weight: 700;
}

.seller-management-row {
  display: grid;
  grid-template-columns: 2fr 1.3fr 0.9fr 0.8fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #ece9e5;
  transition: all 0.25s ease;
}

.seller-management-row:hover {
  background: #fcfcfc;
}

.seller-management-product {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.seller-management-image-wrap {
  width: 82px;
  height: 82px;
  border: 1px solid #e3e1de;
  background: #f4f1ee;
  flex-shrink: 0;
  overflow: hidden;
}

.seller-management-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.seller-management-product-info {
  min-width: 0;
}

.seller-management-product-name {
  font-size: 20px;
  line-height: 1.25;
  color: #111;
  font-weight: 700;
  margin-bottom: 6px;
}

.seller-management-product-sub {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.seller-management-details,
.seller-management-pricing,
.seller-management-status,
.seller-management-actions {
  min-width: 0;
}

.seller-management-detail-line {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 3px;
}

.seller-management-updated {
  color: #7a746d;
}

.seller-management-price {
  font-size: 24px;
  color: #65081f;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.seller-management-stock {
  color: #555;
  font-size: 14px;
}

.seller-management-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.seller-product-link {
  color: #222;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.seller-product-link:hover {
  color: #65081f;
  transform: translateX(2px);
}

.status-draft {
  background: #f6f6f6;
  color: #555;
  border-color: #dddddd;
}

.status-revision {
  background: #f8ebee;
  color: #7a1f2e;
  border-color: #dfb8c2;
}

@media (max-width: 1200px) {
  .seller-management-head {
    display: none;
  }

  .seller-management-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px;
  }

  .seller-management-product {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .seller-catalog-toolbar {
    padding: 18px;
  }

  .seller-catalog-filters {
    width: 100%;
  }

  .seller-catalog-select {
    width: 100%;
  }

  .seller-management-image-wrap {
    width: 72px;
    height: 72px;
  }

  .seller-management-product-name {
    font-size: 18px;
  }

  .seller-management-price {
    font-size: 22px;
  }
}

/* CREATE PRODUCT DRAFT */

.seller-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-size: 14px;
  color: #7a746d;
}

.seller-breadcrumbs a {
  color: #7a746d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.seller-breadcrumbs a:hover {
  color: #65081f;
}

.seller-draft-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f5f3f1;
  border: 1px solid #e2ddd8;
  color: #6b655f;
  font-size: 14px;
  font-weight: 700;
}

.seller-draft-alert {
  background: #f8f1f2;
  border: 1px solid #e3d2d7;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.seller-draft-alert-icon {
  color: #65081f;
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}

.seller-draft-alert-content h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #111;
}

.seller-draft-alert-content p {
  margin: 0;
  color: #5f5a55;
  line-height: 1.65;
}

.seller-draft-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.seller-draft-main {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.seller-draft-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.seller-draft-section .seller-panel-body {
  padding: 26px 24px 28px;
}

.required {
  color: #8b1e34;
}

.seller-help-text {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #7a746d;
  line-height: 1.6;
}

.seller-type-toggle {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.seller-type-option {
  position: relative;
}

.seller-type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.seller-type-option span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #d7d2cd;
  background: #fff;
  color: #4a4540;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.seller-type-option input:checked + span {
  background: #65081f;
  border-color: #65081f;
  color: #fff;
}

.seller-price-input {
  position: relative;
}

.seller-price-prefix {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #4f4a45;
  font-weight: 700;
  font-size: 16px;
}

.seller-price-input input {
  padding-left: 42px !important;
}

.seller-upload-card {
  border: 1px dashed #d8d6d4;
  background: #fcfcfc;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.seller-upload-card-single {
  justify-content: flex-start;
}

.seller-upload-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f5f3f1;
  border: 1px solid #e4dfda;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #65081f;
  font-size: 22px;
  flex-shrink: 0;
}

.seller-upload-content h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #111;
}

.seller-upload-content p {
  margin: 0;
  color: #6e6862;
  line-height: 1.6;
  font-size: 14px;
}

.seller-upload-action input[type="file"] {
  width: auto;
  min-width: 220px;
  border: 1px solid #d8d6d4;
  background: #fff;
  padding: 10px 12px;
  font-size: 14px;
  color: #4a4a4a;
  font-family: "Playfair Display", serif;
}

.seller-draft-footer-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.seller-primary-btn,
.seller-secondary-btn {
  border: 1px solid transparent;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: "Playfair Display", serif;
}

.seller-primary-btn {
  background: #65081f;
  border-color: #65081f;
  color: #fff;
}

.seller-primary-btn:hover {
  background: #4f0618;
  border-color: #4f0618;
  transform: translateY(-2px);
}

.seller-secondary-btn {
  background: #fff;
  border-color: #d8d6d4;
  color: #222;
}

.seller-secondary-btn:hover {
  border-color: #65081f;
  color: #65081f;
  transform: translateY(-2px);
}

.seller-check-item-compact {
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.seller-check-item-compact p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.seller-draft-mini-stat {
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ece9e5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seller-draft-mini-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.seller-draft-mini-label {
  font-size: 13px;
  color: #7a746d;
  font-weight: 600;
}

.seller-draft-mini-stat strong {
  color: #111;
  font-size: 18px;
  line-height: 1.5;
}

.seller-guidance-item {
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ece9e5;
}

.seller-guidance-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.seller-guidance-item h4 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #111;
}

.seller-guidance-item p {
  margin: 0;
  color: #666;
  line-height: 1.65;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .seller-draft-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .seller-draft-section .seller-panel-body {
    padding: 18px;
  }

  .seller-upload-card {
    align-items: flex-start;
    padding: 18px;
  }

  .seller-draft-footer-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .seller-breadcrumbs {
    font-size: 13px;
  }

  .seller-draft-status-pill {
    width: 100%;
    justify-content: center;
  }

  .seller-primary-btn,
  .seller-secondary-btn {
    width: 100%;
  }

  .seller-upload-action input[type="file"] {
    min-width: 100%;
    width: 100%;
  }
}

.seller-management-icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #d8d6d4;
  background: #fff;
  color: #222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 18px;
}

.seller-management-icon-btn:hover {
  color: #fff;
  background: #65081f;
  border-color: #65081f;
  transform: translateY(-2px);
}


.seller-current-product-image {
  margin-bottom: 22px;
}

.seller-current-product-image-label {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.seller-current-product-image {
  margin-bottom: 22px;
}

.seller-current-product-image-label {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.seller-current-product-image-frame {
  width: 100%;
  max-width: 380px;
  height: 380px;
  border: 1px solid #d8d6d4;
  background: linear-gradient(to bottom, #f8f6f4, #f1eeea);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.seller-current-product-image-preview {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}