.merchants {
  margin-top: 60px;
}
.merchants .merchants_top {
  display: flex;
  justify-content: center;
}
.merchants .merchants_top h1 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  font-family: "Lexend", sans-serif;
  background: linear-gradient(90deg, rgba(33, 33, 33, 0.8) 0%, rgba(57, 57, 57, 0.8) 100%);
  padding: 25px 55px;
  border-radius: 80px;
  margin-bottom: 40px;
}
.merchants .merchant-tags-filter {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.merchants .merchant-tags-filter .badge {
  font-size: 18px;
  color: #fff;
  background: linear-gradient(90deg, rgba(33, 33, 33, 0.8) 0%, rgba(57, 57, 57, 0.8) 100%);
  padding: 8px 16px;
  border-radius: 80px;
}
.merchants .merchant-tags-filter .badge:hover {
  background: linear-gradient(90deg, #8000FE 0%, #DB0924 100%);
  cursor: pointer;
}
.merchants .merchant-tags-filter .badge.active {
  background: linear-gradient(90deg, #8000FE 0%, #DB0924 100%);
}
.merchants .merchants_container .merchants_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 28px;
  margin-top: 40px;
  position: relative;
  gap: 20px;
}
.merchants .merchants_container .merchants_list .merchant {
  background: #FFFFFF0A;
  padding: 20px;
  border-radius: 24px;
}
.merchants .merchants_container .merchants_list .merchant h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 0px;
}
.merchants .merchants_container .merchants_list .merchant img {
  border-radius: 28px;
}
.merchants .merchants_container .merchants_list .merchant .merchant_image {
  position: relative;
}
.merchants .merchants_container .merchants_list .merchant .merchant_image .merchant-tags-with-image {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 15px;
  top: 15px;
}
.merchants .merchants_container .merchants_list .merchant .merchant_image .merchant-tags-without-image {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 18px;
  font-weight: 400;
}
.merchant-dashboard-wrapper {
  display: flex;
  min-height: 100vh;
  color: #ffffff;
  margin: 0;
  padding: 0;
}
.merchant-dashboard-wrapper .merchant-sidebar {
  width: 280px;
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-sidebar-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-sidebar-header .merchant-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-sidebar-header .merchant-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-sidebar-header .merchant-avatar .merchant-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-sidebar-header .merchant-avatar .merchant-avatar-placeholder svg {
  width: 50px;
  height: 50px;
  color: #ffffff;
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-sidebar-header .merchant-info {
  text-align: center;
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-sidebar-header .merchant-info .merchant-name {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-sidebar-header .merchant-info .merchant-badge {
  display: inline-block;
  background: linear-gradient(90deg, #8000FE 0%, #DB0924 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 12px;
  font-weight: 800;
  float: right;
  margin-top: 5px;
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-nav ul li {
  display: flex;
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-nav ul li:before {
  content: '';
  width: 4px;
  background: #1D2023;
  display: block;
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-nav ul li a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
  color: #535558;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-nav ul li.logout a {
  padding-top: 100px;
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-nav ul li.active:before {
  background: linear-gradient(90deg, #8000FE 0%, #DB0924 100%);
}
.merchant-dashboard-wrapper .merchant-sidebar .merchant-nav ul li.active a {
  color: #fff;
}
.merchant-dashboard-wrapper .merchant-main-content {
  flex: 1;
  background: transparent;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner {
  padding: 40px;
  max-width: 1400px;
  border-radius: 24px;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #ffffff;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview {
  margin-bottom: 50px;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-left {
  display: flex;
  gap: 20px;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-left .stat-card {
  flex: 1;
  background-color: #2d2d2d;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-left .stat-card.stat-card-profit {
  background: linear-gradient(90deg, #8000FE 0%, #DB0924 100%);
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-left .stat-card.stat-card-charity {
  background: #FFFFFF0A;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-left .stat-card .stat-card-icon {
  margin-bottom: 20px;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-left .stat-card .stat-card-icon svg {
  width: 60px;
  height: 60px;
  color: #ffffff;
  stroke-width: 1.5;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-left .stat-card .stat-card-content {
  width: 100%;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-left .stat-card .stat-card-content .stat-card-label {
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-left .stat-card .stat-card-content .stat-card-value {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-left .stat-card .stat-card-content .stat-card-btn {
  background-color: #0000003D;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-right {
  background: #FFFFFF0A;
  border-radius: 24px;
  padding: 30px;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-right .summary-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #ffffff;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-right .summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-right .summary-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-right .summary-list li:last-child {
  border-bottom: none;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-right .summary-list li .summary-label {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-right .summary-list li .summary-value {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #8000FE 0%, #DB0924 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  min-width: 50px;
  justify-content: center;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-right .summary-list li .summary-value.summary-value-highlight {
  background: linear-gradient(90deg, #8000FE 0%, #DB0924 100%);
  padding: 8px 16px;
  min-width: auto;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .section-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #ffffff;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper {
  overflow-x: auto;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper .sales-table {
  width: 100%;
  border-collapse: collapse;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper .sales-table thead tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper .sales-table thead tr th {
  padding: 15px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper .sales-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper .sales-table tbody tr:hover {
  background-color: rgba(124, 58, 237, 0.05);
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper .sales-table tbody tr:last-child {
  border-bottom: none;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper .sales-table tbody tr td {
  padding: 15px 20px;
  font-size: 14px;
  color: #e5e7eb;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper .sales-table tbody tr td.product-cell .product-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper .sales-table tbody tr td.product-cell .product-info .product-image {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a1a1a;
  flex-shrink: 0;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper .sales-table tbody tr td.product-cell .product-info .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper .sales-table tbody tr td.product-cell .product-info .product-name {
  font-weight: 500;
  color: #ffffff;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper .sales-table tbody tr td.price-cell {
  font-weight: 600;
  color: #ffffff;
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .empty-state {
  background-color: #2d2d2d;
  border-radius: 16px;
  padding: 60px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .empty-state p {
  font-size: 16px;
  color: #9ca3af;
  margin: 0;
}
@media (max-width: 1200px) {
  .merchant-dashboard-wrapper .merchant-sidebar {
    width: 240px;
  }
  .merchant-dashboard-wrapper .merchant-main-content {
    margin-left: 240px;
  }
  .merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner {
    padding: 30px;
  }
  .merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .merchant-dashboard-wrapper .merchant-sidebar {
    position: fixed;
    left: -280px;
    transition: left 0.3s ease;
  }
  .merchant-dashboard-wrapper .merchant-sidebar.open {
    left: 0;
  }
  .merchant-dashboard-wrapper .merchant-main-content {
    margin-left: 0;
  }
  .merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner {
    padding: 20px;
  }
  .merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-title {
    font-size: 28px;
  }
  .merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-overview .dashboard-cards-row .dashboard-left {
    flex-direction: column;
  }
  .merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper .sales-table thead th,
  .merchant-dashboard-wrapper .merchant-main-content .merchant-content-inner .dashboard-sales .sales-table-wrapper .sales-table tbody td {
    padding: 10px;
    font-size: 12px;
  }
}
.merchant-dashboard-wrapper .products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.merchant-dashboard-wrapper .products-header .page-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}
.merchant-dashboard-wrapper .products-header .products-count-badge {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.merchant-dashboard-wrapper .products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.merchant-dashboard-wrapper .products-grid .product-card {
  background-color: #1D2023;
  border-radius: 16px;
  display: flex;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #7c3aed 0%, #5b21b6 100%);
  border-radius: 16px 0 0 16px;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-image {
  flex-shrink: 0;
  width: 160px;
  height: 100%;
  background-color: #5A00FF;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 5px 0;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-category {
  font-size: 13px;
  color: #9ca3af;
  margin: 0 0 15px 0;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-stats .product-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-stats .product-stat .product-stat-label {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-stats .product-stat .product-stat-value {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  min-width: 40px;
  justify-content: center;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-stats .product-stat .product-stat-value.product-stat-value-primary {
  background: linear-gradient(90deg, #8000FE 0%, #DB0924 100%);
  color: #ffffff;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-stats .product-stat .product-stat-value.product-stat-value-secondary {
  background-color: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-stats .product-stat .product-stat-value-text {
  font-size: 16px;
  color: #e5e7eb;
  font-weight: 700;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-stats .product-stat .product-stat-value-text.product-stat-stock.in-stock {
  color: #62DD60;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-stats .product-stat .product-stat-value-text.product-stat-stock.out-of-stock {
  color: #ef4444;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-stats .stock-status-row {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 3px solid #29292B;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-footer {
  margin-top: auto;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-footer .product-card-btn {
  display: inline-block;
  background-color: transparent;
  color: #10b981;
  border: 1px solid #10b981;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}
.merchant-dashboard-wrapper .products-grid .product-card .product-card-content .product-card-footer .product-card-btn:hover {
  background-color: #10b981;
  color: #ffffff;
  transform: translateY(-2px);
}
.merchant-dashboard-wrapper .products-empty-state {
  background-color: #2d2d2d;
  border-radius: 16px;
  padding: 80px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.merchant-dashboard-wrapper .products-empty-state .empty-state-icon {
  margin-bottom: 20px;
}
.merchant-dashboard-wrapper .products-empty-state .empty-state-icon svg {
  width: 80px;
  height: 80px;
  color: #4b5563;
  stroke-width: 1;
}
.merchant-dashboard-wrapper .products-empty-state h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
}
.merchant-dashboard-wrapper .products-empty-state p {
  font-size: 16px;
  color: #9ca3af;
  margin: 0;
}
@media (max-width: 1200px) {
  .merchant-dashboard-wrapper .products-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .merchant-dashboard-wrapper .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .merchant-dashboard-wrapper .products-header .page-title {
    font-size: 28px;
  }
  .merchant-dashboard-wrapper .products-grid .product-card {
    flex-direction: column;
  }
  .merchant-dashboard-wrapper .products-grid .product-card .product-card-image {
    width: 100%;
    height: 200px;
  }
}
.merchant-dashboard-wrapper .profile-form .profile-section {
  margin-bottom: 40px;
}
.merchant-dashboard-wrapper .profile-form .profile-section .section-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #535558;
  margin: 30px 0px 20px 0px;
}
.merchant-dashboard-wrapper .profile-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.merchant-dashboard-wrapper .profile-form #description {
  border-radius: 5px !important;
  border: 0px;
}
.merchant-dashboard-wrapper .profile-form .form-group {
  margin-bottom: 0;
}
.merchant-dashboard-wrapper .profile-form .form-group label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 500;
  text-align: left;
}
.merchant-dashboard-wrapper .profile-form .form-group .form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: #1D2023;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  border: 0px;
}
.merchant-dashboard-wrapper .profile-form .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
}
.merchant-dashboard-wrapper .profile-form .form-group .form-control::placeholder {
  color: #4b5563;
}
.merchant-dashboard-wrapper .profile-form .form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}
.merchant-dashboard-wrapper .profile-form .form-group .char-counter {
  text-align: right;
  font-size: 12px;
  color: #6b7280;
  margin-top: 5px;
}
.merchant-dashboard-wrapper .profile-form .color-input-wrapper-compact {
  display: flex;
  gap: 10px;
  align-items: center;
}
.merchant-dashboard-wrapper .profile-form .color-input-wrapper-compact .color-picker-compact {
  width: 50px;
  height: 40px;
  border: 0px;
  cursor: pointer;
  background: transparent;
  padding: 0;
}
.merchant-dashboard-wrapper .profile-form .color-input-wrapper-compact .color-text-input-compact {
  flex: 1;
  padding: 10px 12px;
  background-color: #1D2023;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  cursor: default;
}
.merchant-dashboard-wrapper .profile-form .upload-btn-compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px 10px 40px;
  background: linear-gradient(90deg, #8000FE 0%, #DB0924 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer;
  width: 100%;
  position: relative;
}
.merchant-dashboard-wrapper .profile-form .upload-btn-compact svg {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 15px;
  top: 7px;
}
.merchant-dashboard-wrapper .profile-form .streamer-settings-row {
  margin-bottom: 30px;
}
.merchant-dashboard-wrapper .profile-form .merchant-header-preview {
  margin-top: 30px;
}
.merchant-dashboard-wrapper .profile-form .merchant-header-preview .preview-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}
.merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header {
  background: #FFFFFF0A;
  display: flex;
  border-radius: 40px;
  padding: 40px;
  margin-top: 0px;
  gap: 25px;
  transition: background-color 0.3s ease;
}
.merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header .merchant_image img {
  border-radius: 40px;
  max-width: 240px;
  height: auto;
  width: auto;
}
.merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header .merchant_image .merchant-image-placeholder {
  width: 240px;
  height: 240px;
  border-radius: 40px;
  background: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header .merchant_image .merchant-image-placeholder svg {
  width: 80px;
  height: 80px;
  color: #4b5563;
}
.merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header .merchant_details {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
}
.merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header .merchant_details .merchant_header_top h1 {
  font-family: "Lexend", sans-serif;
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 25px;
  color: #ffffff;
  margin: 0;
}
.merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header .merchant_details .merchant_header_desc {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  line-height: 25px;
  font-size: 18px;
  color: #ffffff;
}
.merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header .merchant_details .merchant_header_desc p {
  margin: 0px;
}
.merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header .merchant_details .merchant_header_social_icons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-top: 25px;
}
.merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header .merchant_details .merchant_header_social_icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header .merchant_details .merchant_header_social_icons a img {
  width: 40px;
  height: 40px;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-left .form-group {
  margin-bottom: 25px;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-left .form-group label {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 8px;
  font-weight: 500;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-left .form-group textarea.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: #2d2d2d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  resize: vertical;
  transition: all 0.2s ease;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-left .form-group textarea.form-control:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-left .form-group .char-counter {
  text-align: right;
  font-size: 12px;
  color: #6b7280;
  margin-top: 5px;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings {
  display: flex;
  gap: 20px;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings .color-group {
  flex: 1;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings .color-group label {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 8px;
  font-weight: 500;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings .color-group .color-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings .color-group .color-input-wrapper .color-picker {
  width: 50px;
  height: 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings .color-group .color-input-wrapper .color-text-input {
  flex: 1;
  padding: 10px 12px;
  background-color: #2d2d2d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  text-align: center;
  cursor: default;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings .color-group .color-input-wrapper .color-edit-btn {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #9ca3af;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings .color-group .color-input-wrapper .color-edit-btn svg {
  width: 18px;
  height: 18px;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings .color-group .color-input-wrapper .color-edit-btn:hover {
  background-color: rgba(124, 58, 237, 0.1);
  border-color: #7c3aed;
  color: #7c3aed;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings .color-group .upload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings .color-group .upload-btn svg {
  width: 18px;
  height: 18px;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings .color-group .upload-btn.upload-btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: #ffffff;
  border: none;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings .color-group .upload-btn.upload-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(124, 58, 237, 0.4);
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings .color-group .upload-btn.upload-btn-secondary {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: #ffffff;
  border: none;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-right .color-settings .color-group .upload-btn.upload-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(124, 58, 237, 0.4);
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-preview {
  display: flex;
  align-items: center;
  justify-content: center;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-preview .preview-card {
  background-color: #2d2d2d;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 450px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: stretch;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-preview .preview-card .preview-image {
  width: 200px;
  height: 250px;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-preview .preview-card .preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-preview .preview-card .preview-image .preview-placeholder svg {
  width: 60px;
  height: 60px;
  color: #4b5563;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-preview .preview-card .preview-content {
  flex: 1;
  padding: 25px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-preview .preview-card .preview-content .preview-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-preview .preview-card .preview-content .preview-description {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 15px 0;
  flex: 1;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-preview .preview-card .preview-content .preview-social {
  display: flex;
  gap: 10px;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-preview .preview-card .preview-content .preview-social .social-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-preview .preview-card .preview-content .preview-social .social-icon svg {
  width: 20px;
  height: 20px;
}
.merchant-dashboard-wrapper .profile-form .form-actions {
  margin-top: 40px;
}
.merchant-dashboard-wrapper .profile-form .form-actions .btn-save {
  background: linear-gradient(90deg, #8000FE 0%, #DB0924 100%);
  color: #ffffff;
  border: none;
  padding: 8px 40px;
  border-radius: 80px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
}
.merchant-dashboard-wrapper .alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.merchant-dashboard-wrapper .alert.alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}
.merchant-dashboard-wrapper .alert.alert-success p {
  margin: 0;
}
.merchant-dashboard-wrapper .alert.alert-danger {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}
.merchant-dashboard-wrapper .alert.alert-danger p {
  margin: 0;
}
.merchant-dashboard-wrapper .personal-data-form .profile-section {
  margin-bottom: 40px;
}
.merchant-dashboard-wrapper .personal-data-form .profile-section .section-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #535558;
  margin: 30px 0px 20px 0px;
}
.merchant-dashboard-wrapper .personal-data-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.merchant-dashboard-wrapper .personal-data-form .form-group {
  margin-bottom: 0;
}
.merchant-dashboard-wrapper .personal-data-form .form-group label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 500;
  text-align: left;
}
.merchant-dashboard-wrapper .personal-data-form .form-group .form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: #1D2023;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.2s ease;
}
.merchant-dashboard-wrapper .personal-data-form .form-group .form-control:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}
.merchant-dashboard-wrapper .personal-data-form .form-group .form-control::placeholder {
  color: #4b5563;
}
.merchant-dashboard-wrapper .personal-data-form .form-actions {
  margin-top: 40px;
}
.merchant-dashboard-wrapper .personal-data-form .form-actions .btn-save {
  background: linear-gradient(90deg, #8000FE 0%, #DB0924 100%);
  color: #ffffff;
  border: none;
  padding: 8px 40px;
  border-radius: 80px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}
.merchant-dashboard-wrapper .personal-data-form .form-actions .btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(128, 0, 254, 0.4);
}
.merchant-dashboard-wrapper .page-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 30px 0;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings {
    grid-template-columns: 1fr;
  }
  .merchant-dashboard-wrapper .profile-form .profile-section .streamer-card-settings .streamer-card-preview .preview-card {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .merchant-dashboard-wrapper .profile-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header {
    flex-direction: column;
    padding: 20px;
  }
  .merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header .merchant_image img {
    max-width: 100%;
  }
  .merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header .merchant_image .merchant-image-placeholder {
    width: 100%;
    height: 200px;
  }
  .merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header .merchant_details .merchant_header_top h1 {
    font-size: 28px;
    padding-bottom: 15px;
  }
  .merchant-dashboard-wrapper .profile-form .merchant-header-preview .merchant_header .merchant_details .merchant_header_desc {
    font-size: 16px;
    line-height: 22px;
  }
  .merchant-dashboard-wrapper .profile-form .form-actions .btn-save {
    width: 100%;
  }
  .merchant-dashboard-wrapper .personal-data-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .merchant-dashboard-wrapper .personal-data-form .form-actions .btn-save {
    width: 100%;
  }
}
/*# sourceMappingURL=merchants.css.map */