:root {
  --green-dark: #0B3D2E;
  --green-mid: #1A5C42;
  --green-light: #E8F5EE;
  --gold: #C9A84C;
  --gold-hover: #B8922A;
  --gold-light: #F5EDD3;
  --cream: #F8F5EF;
  --text-dark: #1A1A1A;
  --text-mid: #4B5563;
  --text-light: #9CA3AF;
  --border: #E5E0D5;
  --success: #16A34A;
  --danger: #DC2626;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-family: "Londrina Solid", cursive;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.tb-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 260px;
  background: var(--green-dark);
  z-index: 1040;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transition: left 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.tb-sidebar::-webkit-scrollbar {
  width: 0;
}

.sidebar-logo {
  padding: 24px 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.sidebar-logo img {
  height: 46px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.sidebar-user {
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.sidebar-user__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.sidebar-user__name {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-user__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 3px;
}

.sidebar-nav {
  padding: 14px 12px;
  flex: 1;
}

.sidebar-nav-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  padding: 0 4px;
  margin-bottom: 8px;
}

.sidebar-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  text-align: center;
}
.sidebar-footer__brand {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Inter", sans-serif;
}
.sidebar-footer__copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  font-family: "Inter", sans-serif;
  margin-top: 2px;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1039;
}
.sidebar-overlay.open {
  display: block;
}

.sidebar-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 10px 0;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.18s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  position: relative;
  line-height: 1.4;
  text-decoration: none;
}
.sidebar-nav-item:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}
.sidebar-nav-item:hover .si-icon {
  color: rgba(255, 255, 255, 0.9);
}
.sidebar-nav-item.nav-active {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
}
.sidebar-nav-item.nav-active .si-icon {
  color: var(--green-dark);
}

.si-icon {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: color 0.18s;
}

.si-badge {
  min-width: 18px;
  height: 18px;
  background: var(--danger);
  color: #fff;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  margin-left: auto;
}
.si-badge.gold {
  background: var(--gold);
  color: var(--green-dark);
}

.tb-main {
  margin-left: 260px;
  min-height: 100vh;
  background: var(--cream);
}

.tb-topbar {
  background: var(--green-dark);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 2px solid var(--gold);
}

.tb-page-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.tb-page-header__title {
  font-size: 26px;
  color: var(--green-dark);
  margin: 0 0 2px;
}
.tb-page-header__subtitle {
  font-size: 13px;
  color: var(--text-mid);
  margin: 0;
  font-family: "Inter", sans-serif;
}

.tb-content {
  padding: 28px 32px 48px;
}

.tb-notif-area {
  position: relative;
}

.tb-notif-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 8px;
  display: flex;
  align-items: center;
}
.tb-notif-btn .notif-dot {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 9px;
  height: 9px;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid #fff;
}

.notif-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: -8px;
  width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(11, 61, 46, 0.16);
  border: 1px solid var(--border);
  z-index: 2000;
  overflow: hidden;
}
.notif-dropdown__header {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notif-dropdown__title {
  font-family: "Londrina Solid", cursive;
  font-size: 18px;
  color: var(--green-dark);
}
.notif-dropdown__mark-read {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  font-family: "Inter", sans-serif;
}
.notif-dropdown__footer {
  padding: 10px 16px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.notif-dropdown__footer button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-mid);
  font-family: "Inter", sans-serif;
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
}
.notif-item:hover {
  background: var(--cream);
}
.notif-item:last-child {
  border-bottom: none;
}
.notif-item--unread {
  background: var(--green-light);
}
.notif-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notif-item__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.notif-item__body {
  font-size: 12px;
  color: var(--text-mid);
  font-family: "Inter", sans-serif;
}

.tb-profile-area {
  position: relative;
}

.tb-profile-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px 4px 4px;
  border-radius: 40px;
  transition: background 0.2s;
}
.tb-profile-btn:hover {
  background: rgba(0, 0, 0, 0.04);
}
.tb-profile-btn__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  -o-object-fit: cover;
     object-fit: cover;
}
.tb-profile-btn__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(11, 61, 46, 0.16);
  border: 1px solid var(--border);
  z-index: 2000;
  overflow: hidden;
}
.profile-dropdown__header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.profile-dropdown__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}
.profile-dropdown__email {
  font-size: 12px;
  color: var(--text-mid);
  font-family: "Inter", sans-serif;
}
.profile-dropdown__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 10px;
  margin-top: 6px;
}

.pdrop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  text-decoration: none;
}
.pdrop-item:hover {
  background: var(--cream);
  color: var(--text-dark);
}
.pdrop-item--danger {
  color: var(--danger);
}
.pdrop-item--danger:hover {
  background: #FEE2E2;
}

.welcome-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.welcome-banner__title {
  font-size: 28px;
  color: #fff;
  margin-bottom: 4px;
}
.welcome-banner__subtitle {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(11, 61, 46, 0.07);
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-card__number {
  font-family: "Londrina Solid", cursive;
  font-size: 36px;
  color: var(--green-dark);
  line-height: 1;
}
.stat-card__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(11, 61, 46, 0.07);
  overflow: hidden;
}

.dash-card-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.dash-card-header__title {
  font-size: 20px;
  color: var(--green-dark);
  margin: 0;
}

.dash-card-footer {
  padding: 14px 22px;
  text-align: center;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
}
.dash-table th {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 16px;
  font-family: "Inter", sans-serif;
}
.dash-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-size: 13.5px;
  font-family: "Inter", sans-serif;
}
.dash-table tr:last-child td {
  border-bottom: none;
}
.dash-table tbody tr:hover td {
  background: rgba(248, 245, 239, 0.6);
}
.dash-table .badge-verify {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e2ddcf;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  background: #ffffff !important;
  transition: transform 0.2s;
}
.dash-table .badge-verify:hover {
  transform: scale(1.15);
}
.dash-table .badge-verify .tb-icon {
  font-size: 14px;
  margin: 0;
  display: block;
}
.dash-table .badge-verify .badge-label {
  display: none;
}
.dash-table .badge-verify.badge-ofa {
  color: #0b3d2e !important;
  background: rgba(11, 61, 46, 0.06) !important;
  border-color: rgba(11, 61, 46, 0.15) !important;
}
.dash-table .badge-verify.badge-genetics {
  color: #1b3a6b !important;
  background: rgba(27, 58, 107, 0.06) !important;
  border-color: rgba(27, 58, 107, 0.15) !important;
}
.dash-table .badge-verify.badge-registration {
  color: #df9e28 !important;
  background: rgba(223, 158, 40, 0.08) !important;
  border-color: rgba(223, 158, 40, 0.2) !important;
}
.dash-table .badge-verify.badge-champion {
  color: #c9a84c !important;
  background: rgba(201, 168, 76, 0.08) !important;
  border-color: rgba(201, 168, 76, 0.2) !important;
}

.listing-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(11, 61, 46, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 61, 46, 0.14);
}
.listing-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.listing-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.listing-card__status-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.listing-card__status-overlay span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  font-family: "Inter", sans-serif;
}
.listing-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 10;
  background: none;
  padding: 0;
}
.listing-card__badges .badge-verify {
  background: #ffffff !important;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e2ddcf;
  box-shadow: 0 4px 10px rgba(11, 61, 46, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.listing-card__badges .badge-verify:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 14px rgba(11, 61, 46, 0.22);
}
.listing-card__badges .badge-verify .tb-icon {
  margin: 0;
  font-size: 16px;
  display: block;
}
.listing-card__badges .badge-verify .badge-label {
  display: none;
}
.listing-card__badges .badge-verify.badge-ofa {
  color: #0b3d2e !important;
}
.listing-card__badges .badge-verify.badge-genetics {
  color: #1b3a6b !important;
}
.listing-card__badges .badge-verify.badge-registration {
  color: #df9e28 !important;
}
.listing-card__badges .badge-verify.badge-champion {
  color: #c9a84c !important;
}
.listing-card__body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.listing-card__name {
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 2px;
}
.listing-card__breed {
  font-size: 13px;
  color: var(--text-mid);
  font-family: "Inter", sans-serif;
}
.listing-card__meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-mid);
  font-family: "Inter", sans-serif;
}
.listing-card__actions {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: flex;
  gap: 8px;
}

.conv-list {
  width: 320px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.conv-search {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.conv-search i {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 13px;
}
.conv-search input {
  padding-left: 32px;
  border-color: var(--border);
  border-radius: 10px;
}

.conv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  border-left: 3px solid transparent;
}
.conv-item:hover {
  background: var(--cream);
}
.conv-item--active {
  background: var(--green-light);
  border-left-color: var(--gold);
}
.conv-item--unread .conv-name {
  font-weight: 700;
  color: var(--text-dark);
}
.conv-item--unread .conv-preview {
  color: var(--text-dark);
}

.conv-name {
  font-size: 14px;
  color: var(--text-dark);
}

.conv-preview {
  font-size: 12px;
  color: var(--text-mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.chat-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
}
.chat-header__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}
.chat-header__subject {
  font-size: 12px;
  color: var(--text-mid);
  font-family: "Inter", sans-serif;
}

.chat-scam-warning {
  background: var(--gold-light);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chat-input-bar {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.chat-input-bar textarea {
  resize: none;
  border-radius: 12px;
  font-size: 14px;
  border-color: var(--border);
}

.msg-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.msg-group--sent {
  align-items: flex-end;
}
.msg-group--received {
  align-items: flex-start;
}

.msg-bubble {
  max-width: 72%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.58;
  font-family: "Inter", sans-serif;
  margin-bottom: 4px;
}
.msg-bubble--received {
  background: #fff;
  color: var(--text-dark);
  border-radius: 4px 16px 16px 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}
.msg-bubble--sent {
  background: var(--green-light);
  color: var(--text-dark);
  border-radius: 16px 4px 16px 16px;
}

.msg-time {
  font-size: 11px;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  margin-bottom: 12px;
}

.tab-bar {
  display: flex;
  gap: 4px;
  padding: 5px;
  background: var(--cream);
  border-radius: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 9px 14px;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}
.tab-btn:hover:not(.tab-active):not(.active) {
  background: #fff;
}
.tab-btn.tab-active, .tab-btn.active {
  background: var(--green-dark);
  color: #fff;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
}

.form-control,
.form-select {
  border-color: var(--border);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 10px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.form-label--normal {
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 600;
}

.form-switch .form-check-input:checked {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.input-group-text {
  background: var(--green-light);
  border-color: var(--border);
  color: var(--green-dark);
}

.btn-gold {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  font-weight: 600;
  border: none !important;
}
.btn-gold:hover {
  background: var(--gold-hover) !important;
}

.btn-outline-gold {
  border: 2px solid var(--gold) !important;
  color: var(--gold) !important;
  background: transparent !important;
  font-weight: 600;
}
.btn-outline-gold:hover {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
}

.badge-verify {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  border: 1.5px solid var(--gold);
  white-space: nowrap;
  line-height: 1.5;
}
.badge-verify.badge-ofa {
  background: #1A5C42;
  color: #fff;
}
.badge-verify.badge-genetics {
  background: #1B3A6B;
  color: #fff;
}
.badge-verify.badge-registration {
  background: #5C2A1A;
  color: #fff;
}
.badge-verify.badge-champion {
  background: #5C4A1A;
  color: #fff;
}

.badge-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  border-left: 3px solid var(--border);
}
.badge-status-card--earned {
  background: var(--green-light);
  border-left-color: var(--success);
}
.badge-status-card--pending {
  background: var(--cream);
}
.badge-status-card__info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge-status-card__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
}
.badge-status-card__label--pending {
  color: var(--text-mid);
}

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: "Inter", sans-serif;
}
.upload-zone:hover {
  border-color: var(--gold);
  background: var(--gold-light);
}
.upload-zone--compact {
  padding: 18px 24px;
}
.upload-zone--large {
  padding: 40px 24px;
}
.upload-zone[data-dz] {
  padding: 0;
  cursor: default;
  overflow: hidden;
}
.upload-zone[data-dz]:hover {
  border-color: var(--border);
  background: none;
}
.upload-zone[data-dz].dz--dragover {
  border-color: var(--gold);
  background: var(--gold-light);
}
.upload-zone[data-dz].dz--has-files {
  border-style: solid;
  border-color: var(--gold);
}

.dz-face {
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: padding 0.2s;
}
.upload-zone--compact .dz-face {
  padding: 18px 24px;
}
.upload-zone--large .dz-face {
  padding: 40px 24px 32px;
}
.dz--has-files .dz-face {
  padding: 14px 24px 10px;
}
.upload-zone--large.dz--has-files .dz-face {
  padding: 20px 24px 14px;
}

.dz-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 14px;
}
.dz-preview:empty {
  display: none;
}

.dz-item {
  position: relative;
  flex-shrink: 0;
}
.dz-item__img {
  width: 80px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--gold);
  display: block;
}
.dz-item__doc {
  width: 80px;
  height: 64px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
}
.dz-item__name {
  font-size: 10px;
  color: var(--text-mid);
  text-align: center;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 80px;
  font-family: "Inter", sans-serif;
}
.dz-item__rm {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 22px;
  height: 22px;
  background: var(--danger);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
  line-height: 1;
}

.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.upload-preview-item {
  position: relative;
}
.upload-preview-item img {
  width: 88px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--gold);
  display: block;
}
.upload-preview-item .rm-btn {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 22px;
  height: 22px;
  background: var(--danger);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding-bottom: 28px;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item.done::before {
  background: var(--gold);
}
.timeline-item--last {
  padding-bottom: 0;
}

.tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pw-field {
  position: relative;
}
.pw-field input {
  padding-right: 44px !important;
}

.pw-toggle-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.pw-toggle-btn:hover {
  color: var(--text-mid);
}

.plan-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 20px;
  padding: 28px;
  border: 2px solid var(--gold);
  margin-bottom: 20px;
}
.plan-card__price {
  font-family: "Londrina Solid", cursive;
  font-size: 32px;
  color: var(--gold);
}
.plan-card__price-period {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.55);
}
.plan-card__billing-info {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Inter", sans-serif;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.perk-item:last-child {
  border-bottom: none;
}

.billing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-family: "Inter", sans-serif;
}
.billing-row:last-child {
  border-bottom: none;
}
.billing-row__date {
  font-weight: 600;
  color: var(--text-dark);
}
.billing-row__plan {
  color: var(--text-mid);
}
.billing-row__amount {
  font-weight: 700;
  color: var(--green-dark);
}

.delete-modal-header {
  background: var(--green-dark);
  padding: 32px 28px 24px;
  text-align: center;
}
.delete-modal-header__icon-wrap {
  width: 76px;
  height: 76px;
  background: rgba(220, 38, 38, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid rgba(220, 38, 38, 0.28);
}

.ts-wrapper {
  font-family: "Inter", sans-serif;
}
.ts-wrapper .ts-control {
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  box-shadow: none !important;
  min-height: auto !important;
  background: #fff !important;
  cursor: pointer;
}
.ts-wrapper.focus .ts-control {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
}
.ts-wrapper .ts-control input {
  font-size: 14px !important;
  line-height: 1.5 !important;
}
.ts-wrapper .items .item {
  font-size: 14px;
  color: var(--text-dark);
}

.ts-dropdown {
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 28px rgba(11, 61, 46, 0.14) !important;
  overflow: hidden;
  margin-top: 4px !important;
}
.ts-dropdown .option {
  padding: 9px 14px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  color: var(--text-dark);
}
.ts-dropdown .option:hover, .ts-dropdown .option.active {
  background: var(--green-light) !important;
  color: var(--green-dark) !important;
}
.ts-dropdown .option.selected {
  background: var(--gold-light) !important;
  color: var(--green-dark) !important;
}

.dataTables_wrapper {
  font-family: "Inter", sans-serif;
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
  padding: 16px 22px 12px;
  color: var(--text-mid);
  font-size: 13px;
}
.dataTables_wrapper .dataTables_filter label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.dataTables_wrapper .dataTables_filter input {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  min-width: 220px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.dataTables_wrapper .dataTables_filter input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.dataTables_wrapper .dataTables_length label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.dataTables_wrapper .dataTables_length select {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  outline: none;
}
.dataTables_wrapper .dataTables_length select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.dataTables_wrapper table.dataTable thead th,
.dataTables_wrapper table.dataTable thead td {
  padding: 13px 18px;
  border-bottom: none;
}
.dataTables_wrapper table.dataTable tbody td {
  padding: 14px 18px;
  vertical-align: middle;
  font-size: 13.5px;
}
.dataTables_wrapper .dataTables_info {
  padding: 14px 22px 16px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}
.dataTables_wrapper .dataTables_paginate {
  padding: 10px 22px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  flex-wrap: wrap;
}
.dataTables_wrapper .dataTables_paginate .pagination {
  margin: 0;
  display: flex;
  gap: 5px;
  align-items: center;
}
.dataTables_wrapper .dataTables_paginate .page-item,
.dataTables_wrapper .dataTables_paginate .paginate_button {
  display: inline-flex;
}
.dataTables_wrapper .dataTables_paginate .page-item .page-link, .dataTables_wrapper .dataTables_paginate .page-item,
.dataTables_wrapper .dataTables_paginate .paginate_button .page-link,
.dataTables_wrapper .dataTables_paginate .paginate_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border) !important;
  background: #fff !important;
  color: var(--text-mid) !important;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  line-height: 1 !important;
  box-sizing: border-box;
  text-decoration: none;
}
.dataTables_wrapper .dataTables_paginate .page-item .page-link:hover, .dataTables_wrapper .dataTables_paginate .page-item:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button .page-link:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: var(--green-light) !important;
  border-color: var(--green-light) !important;
  color: var(--green-dark) !important;
}
.dataTables_wrapper .dataTables_paginate .page-item .page-link:focus, .dataTables_wrapper .dataTables_paginate .page-item:focus,
.dataTables_wrapper .dataTables_paginate .paginate_button .page-link:focus,
.dataTables_wrapper .dataTables_paginate .paginate_button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
}
.dataTables_wrapper .dataTables_paginate .page-item.active .page-link, .dataTables_wrapper .dataTables_paginate .page-item.active, .dataTables_wrapper .dataTables_paginate .page-item.active:hover, .dataTables_wrapper .dataTables_paginate .page-item.current .page-link, .dataTables_wrapper .dataTables_paginate .page-item.current, .dataTables_wrapper .dataTables_paginate .page-item.current:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.active .page-link,
.dataTables_wrapper .dataTables_paginate .paginate_button.active,
.dataTables_wrapper .dataTables_paginate .paginate_button.active:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.current .page-link,
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--green-dark) !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3) !important;
}
.dataTables_wrapper .dataTables_paginate .page-item.disabled .page-link, .dataTables_wrapper .dataTables_paginate .page-item.disabled, .dataTables_wrapper .dataTables_paginate .page-item.disabled:hover .page-link, .dataTables_wrapper .dataTables_paginate .page-item.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled .page-link,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover .page-link,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  background: var(--cream) !important;
  border-color: var(--border) !important;
  color: var(--text-light) !important;
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none !important;
}
.dataTables_wrapper .dataTables_paginate .page-item.previous .page-link, .dataTables_wrapper .dataTables_paginate .page-item.previous, .dataTables_wrapper .dataTables_paginate .page-item.next .page-link, .dataTables_wrapper .dataTables_paginate .page-item.next,
.dataTables_wrapper .dataTables_paginate .paginate_button.previous .page-link,
.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper .dataTables_paginate .paginate_button.next .page-link,
.dataTables_wrapper .dataTables_paginate .paginate_button.next {
  font-weight: 600 !important;
  padding: 0 16px !important;
  letter-spacing: 0.01em;
}

@media (min-width: 992px) {
  .tb-sidebar {
    left: 0 !important;
  }
  .tb-main {
    margin-left: 260px;
  }
  .tb-topbar {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .tb-sidebar {
    left: -260px;
  }
  .tb-sidebar.open {
    left: 0;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.28);
  }
  .tb-main {
    margin-left: 0;
  }
  .tb-content {
    padding: 20px 16px 48px;
  }
  .conv-list {
    width: 100%;
  }
}
.status-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}
.status-badge--active {
  background: #DCFCE7;
  color: #16A34A;
}
.status-badge--draft {
  background: #F3F4F6;
  color: #6B7280;
}
.status-badge--pending {
  background: #FEF3C7;
  color: #D97706;
}
.status-badge--rejected {
  background: #FEE2E2;
  color: #DC2626;
}

.dog-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dog-cell__avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.dog-cell__name {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 14px;
}
.dog-cell__breed {
  font-size: 12px;
  color: var(--text-mid);
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  transition: opacity 0.15s;
}
.btn-action:hover {
  opacity: 0.82;
}
.btn-action--edit {
  background: var(--green-light);
  color: var(--green-dark);
}
.btn-action--delete {
  background: #FEE2E2;
  color: var(--danger);
}
.btn-action--view {
  background: var(--gold-light);
  color: var(--green-dark);
}

.icon-sm {
  font-size: 14px;
}

.icon-md {
  font-size: 17px;
}

.icon-lg {
  font-size: 20px;
}

.icon-xl {
  font-size: 24px;
}

.icon-xxl {
  font-size: 28px;
}

.icon-hero {
  font-size: 44px;
}

.text-gold {
  color: var(--gold);
}

.text-green-dark {
  color: var(--green-dark);
}

.text-text-mid {
  color: var(--text-mid);
}

.stat-icon--green {
  background: var(--green-light);
}

.stat-icon--gold {
  background: var(--gold-light);
}

.stat-icon--indigo {
  background: #EEF2FF;
}

.link-gold {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.link-gold:hover {
  color: var(--gold-hover);
}

.section-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(11, 61, 46, 0.07);
  margin-bottom: 20px;
}
.section-card__title {
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.sidebar-nav-item--create {
  color: var(--gold);
}
.sidebar-nav-item--create .si-icon {
  color: var(--gold);
}
.sidebar-nav-item--create:hover {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
}

.conv-avatar {
  display: flex;
  align-items: center;
}

.avatar-online {
  position: relative;
  flex-shrink: 0;
}
.avatar-online .online-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid #fff;
}

.conv-item--last {
  border-bottom: none;
}

.conv-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.topbar-logo {
  height: 38px;
  width: auto;
}

.topbar-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.topbar-bell {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 4px;
}
.topbar-bell .unread-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
  border: 1.5px solid var(--green-dark);
}

.sub-teaser-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.sub-teaser-card__plan-name {
  font-size: 20px;
  color: #fff;
  margin: 0;
}
.sub-teaser-card__billing-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
}
.sub-teaser-card__amount {
  font-family: "Londrina Solid", cursive;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 16px;
}

.delete-modal-body {
  padding: 24px 28px;
}
.delete-modal-body__actions {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}
.delete-modal-body__note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  margin: 14px 0 0;
}

.reg-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.reg-option input[type=radio] {
  accent-color: var(--gold);
}

.breeding-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--text-mid);
}
.breeding-service-card--active {
  border-color: var(--gold);
  background: var(--gold-light);
  color: var(--green-dark);
}
.breeding-service-card input[type=checkbox] {
  display: none;
}

.health-block {
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
}
.health-block--ofa {
  background: var(--green-light);
}
.health-block--genetics {
  background: var(--gold-light);
}
.health-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.health-block__title {
  font-size: 18px;
  color: var(--green-dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-photo-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
}
.profile-photo-wrap img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-photo-wrap__edit {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.approval-badge {
  background: var(--green-light);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  border-left: 4px solid var(--success);
}
.approval-badge__title {
  font-family: "Londrina Solid", cursive;
  font-size: 22px;
  color: var(--green-dark);
}
.approval-badge__subtitle {
  font-size: 13px;
  color: var(--text-mid);
  font-family: "Inter", sans-serif;
}

.badge-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  border-left: 3px solid var(--border);
  margin-bottom: 10px;
}
.badge-status-card:last-child {
  margin-bottom: 0;
}
.badge-status-card--earned {
  background: var(--green-light);
  border-left-color: var(--success);
}
.badge-status-card--pending {
  background: var(--cream);
}
.badge-status-card__info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge-status-card__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
}
.badge-status-card__label--pending {
  color: var(--text-mid);
}

.billing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-family: "Inter", sans-serif;
}
.billing-row:last-child {
  border-bottom: none;
}
.billing-row__date {
  font-weight: 600;
  color: var(--text-dark);
}
.billing-row__plan {
  color: var(--text-mid);
}
.billing-row__amount {
  font-weight: 700;
  color: var(--green-dark);
}
.billing-row__paid-badge {
  background: #DCFCE7;
  color: #16A34A;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.perk-item:last-child {
  border-bottom: none;
}

.plan-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 20px;
  padding: 28px;
  border: 2px solid var(--gold);
  margin-bottom: 20px;
}
.plan-card__heading {
  font-size: 26px;
  color: #fff;
  margin: 0;
}
.plan-card__status {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Inter", sans-serif;
}
.plan-card__price {
  font-family: "Londrina Solid", cursive;
  font-size: 32px;
  color: var(--gold);
}
.plan-card__price-unit {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.55);
}
.plan-card__billing-bar {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Inter", sans-serif;
}/*# sourceMappingURL=dashboard.css.map */