

:root {
  --sidebar-width: 320px;
  --sidebar-width-collapsed: 80px;
  --sidebar-bg: var(--bg-dark, #0E1114);
  --sidebar-text: var(--text-on-dark-muted, rgba(255, 255, 255, 0.72));
  --sidebar-text-hover: var(--text-on-dark, #fff);
  --sidebar-active-bg: rgba(255, 255, 255, 0.12);
  --sidebar-active-color: var(--text-on-dark, #fff);
  --sidebar-label-color: rgba(255, 255, 255, 0.5);
  --header-height: 72px;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--sidebar-bg);
  z-index: 1102;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  transition: width 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.sidebar::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 80vw;
  max-width: 400px;
  height: 100%;
  background: radial-gradient(ellipse 60% 50% at 0% 50%, var(--gradient-hover-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.sidebar-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-bottom: 1.5rem;
}
.sidebar-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}
.sidebar-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.sidebar-toggle {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.sidebar-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
@media (min-width: 992px) {
  .sidebar-toggle {
    display: flex;
  }
}
@media (max-width: 991px) {
  .sidebar-toggle {
    display: none !important;
  }
}
.sidebar-toggle .fa-chevron-right {
  display: none;
}
.sidebar.sidebar-collapsed .sidebar-toggle .fa-chevron-right {
  display: inline-block;
}
.sidebar.sidebar-collapsed .sidebar-toggle .fa-chevron-left {
  display: none;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 1.5rem 1.25rem 1.25rem;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding 0.25s ease;
}
.sidebar-logo {
  display: block;
  max-width: 160px;
  flex: 1;
  min-width: 0;
  transition: opacity 0.2s ease;
}
.sidebar-logo img {
  width: 30%;
  height: auto;
  display: block;
  transition: max-width 0.25s ease, max-height 0.25s ease;
}
.sidebar-label {
  display: block;
  padding: 1rem 1.25rem 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sidebar-label-color);
  white-space: nowrap;
  overflow: hidden;
  transition: opacity 0.2s ease, padding 0.25s ease;
}
.sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1rem 1rem;
  flex: 1;
}
.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.9rem 1.1rem;
  margin-bottom: 3px;
  border-radius: 10px;
  color: var(--sidebar-text);
  font-size: 1.45rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.sidebar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--sidebar-text-hover);
  transform: translateX(4px);
}
.sidebar.sidebar-collapsed .sidebar-nav .nav-link:hover {
  transform: scale(1.05);
}
.sidebar-nav .nav-link.active {
  background: var(--sidebar-active-bg);
  color: var(--sidebar-active-color);
  font-weight: 600;
}
.sidebar-nav .nav-link.active:hover {
  transform: none;
  background: var(--sidebar-active-bg);
  color: var(--sidebar-active-color);
}
.sidebar-nav .nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 14px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.35rem;
  color: inherit;
  transition: background 0.2s ease, margin 0.25s ease;
}
.sidebar-nav .nav-link:hover .nav-icon {
  background: rgba(255, 255, 255, 0.15);
}
.sidebar-nav .nav-link.active .nav-icon {
  background: rgba(0, 0, 0, 0.08);
  color: var(--sidebar-active-color);
}
.sidebar-nav .nav-text {
  flex: 1;
  min-width: 0;
  white-space: normal;
  overflow: visible;
  line-height: 1.35;
  transition: opacity 0.2s ease, width 0.25s ease;
}

.sidebar.sidebar-collapsed {
  width: var(--sidebar-width-collapsed);
}
.sidebar.sidebar-collapsed .sidebar-header {
  flex-direction: column;
  padding: 1.25rem 0.5rem;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.sidebar.sidebar-collapsed .sidebar-logo {
  max-width: 100%;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px;
  box-sizing: border-box;
}
.sidebar.sidebar-collapsed .sidebar-logo img {
  width: 100%;
  height: 100%;
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
  object-position: center;
}
.sidebar.sidebar-collapsed .sidebar-label,
.sidebar.sidebar-collapsed .nav-text,
.sidebar.sidebar-collapsed .logout-btn .nav-text,
.sidebar.sidebar-collapsed .sidebar-btn .nav-text {
  opacity: 0;
  width: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  white-space: nowrap;
}
.sidebar.sidebar-collapsed .sidebar-nav {
  padding: 0.5rem 0.5rem 1rem;
}
.sidebar.sidebar-collapsed .sidebar-nav .nav-link {
  justify-content: center;
  padding: 0.85rem;
}
.sidebar.sidebar-collapsed .sidebar-nav .nav-icon {
  margin-right: 0;
}
.sidebar.sidebar-collapsed .sidebar-footer .logout-btn,
.sidebar.sidebar-collapsed .sidebar-footer .sidebar-btn {
  justify-content: center;
  padding: 0.85rem;
}
body.sidebar-collapsed .qwe {
  padding-left: var(--sidebar-width-collapsed) !important;
}
body.sidebar-collapsed #dashb-main {
  margin-left: var(--sidebar-width-collapsed);
}

.sidebar-nav .submenu-arrow {
  transition: transform 0.3s ease;
  font-size: 0.7rem;
  margin-left: auto;
}
.sidebar-nav .submenu-arrow.rotated {
  transform: rotate(180deg);
}
.sidebar-nav .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.sidebar-nav .submenu.show {
  max-height: 400px;
}
.sidebar-nav .submenu .nav-link {
  padding-left: 3.2rem;
}
.sidebar-nav .submenu .nav-icon {
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
}
.sidebar-footer {
  padding: 1rem 1rem 0;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0.95rem 1.1rem;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.35);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.logout-btn:hover {
  background: #dc3545;
  color: #fff;
  border-color: #dc3545;
}
.logout-btn i {
  font-size: 1.25rem;
}
.sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 8px;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.sidebar-btn:last-child {
  margin-bottom: 0;
}
.sidebar-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.sidebar-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.sidebar-btn-primary {
  background: var(--gradient);
  color: var(--text-on-dark);
  border: none;
}
.sidebar-btn-primary:hover {
  color: var(--text-on-dark);
  transform: var(--hover-lift-sm);
  box-shadow: 0 8px 24px var(--gradient-hover-glow);
}
#dashb-main {
  margin-left: var(--sidebar-width);
}

.sidebar-secondary .card-sidebar {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 1rem;
}
.sidebar-secondary .card-sidebar .card-header {
  padding: 1rem 1.25rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 12px 12px 0 0;
}
.sidebar-secondary .card-sidebar .card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-secondary .card-sidebar .card-title i {
  font-size: 1.2rem;
  color: var(--color-primary, #000);
  opacity: 0.9;
}
.sidebar-secondary .card-sidebar .list-group-item {
  padding: 0.85rem 1.25rem;
  font-size: 1.35rem;
  border-color: #f3f4f6;
  transition: background 0.2s ease;
}
.sidebar-secondary .card-sidebar .list-group-item:hover {
  background: #f9fafb;
}
.sidebar-secondary .card-sidebar .list-group-item.active {
  background: rgba(0, 0, 0, 0.06);
  color: var(--color-primary, #000);
  font-weight: 600;
}
.sidebar-secondary .sidebar-menu-item-icon-wrapper {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 1.1rem;
}
.sidebar-secondary .list-group-item.active .sidebar-menu-item-icon-wrapper {
  background: var(--color-primary, #000);
  color: #fff;
}

.qwe {
  padding-left: var(--sidebar-width) !important;
}
#dashb-header.dashb-header,
.dashb-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  min-height: var(--header-height);
}
.dashb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.5rem;
  max-width: 100%;
}
.dashb-header-left {
  flex: 1;
  min-width: 0;
}
.dashb-page-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}
.dashb-page-title .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  background: none !important;
  padding: 0;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  list-style: none;
}
.dashb-page-title .breadcrumb-item {
  font-size: inherit;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
}
.dashb-page-title .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.4rem;
  color: #d1d5db;
  font-weight: 400;
}
.dashb-page-title .breadcrumb-item a {
  color: #374151;
  transition: color 0.2s ease;
}
.dashb-page-title .breadcrumb-item a:hover {
  color: var(--color-primary, #000);
}
.dashb-page-title .breadcrumb-item.active {
  color: #1a1a1a;
  font-weight: 700;
}
.dashb-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dashb-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #4b5563;
  font-size: 1.25rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.dashb-header-icon:hover {
  background: #f3f4f6;
  color: var(--color-primary, #000);
}
.dashb-user-dropdown {
  position: relative;
}
.dashb-user-trigger {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.5rem 0.35rem 0.35rem;
  background: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.dashb-user-trigger:hover {
  background: #f3f4f6;
}
.dashb-user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid #e5e7eb;
  flex-shrink: 0;
}
.dashb-user-email {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.3rem;
  font-weight: 500;
  color: #374151;
}
.dashb-user-chevron {
  font-size: 0.7rem;
  color: #9ca3af;
  transition: transform 0.2s ease;
}
.dashb-user-dropdown.show .dashb-user-chevron {
  transform: rotate(180deg);
}
.dashb-dropdown-menu {
  min-width: 220px;
  padding: 0.5rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-top: 6px !important;
}
.dashb-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 1rem;
  font-size: 1.35rem;
  border-radius: 8px;
  color: #374151;
  transition: background 0.2s ease, color 0.2s ease;
}
.dashb-dropdown-menu .dropdown-item i {
  width: 20px;
  text-align: center;
  font-size: 1.2rem;
  color: #9ca3af;
}
.dashb-dropdown-menu .dropdown-item:hover {
  background: #f3f4f6;
  color: #1a1a1a;
}
.dashb-dropdown-menu .dropdown-item:hover i {
  color: var(--color-primary, #000);
}
.dashb-dropdown-menu .dropdown-divider {
  margin: 0.4rem 0;
  border-color: #e5e7eb;
}
.dashb-dropdown-logout {
  color: #dc3545 !important;
}
.dashb-dropdown-logout:hover {
  background: rgba(220, 53, 69, 0.08) !important;
  color: #b02a37 !important;
}
.dashb-dropdown-logout i {
  color: inherit !important;
}
.dashb-btn-ghost {
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  font-size: 1.35rem;
  font-weight: 600;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}
.dashb-btn-ghost:hover {
  background: #e5e7eb;
  color: #1a1a1a;
}
.dashb-btn-primary {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm, 10px);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-on-dark);
  background: var(--gradient);
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.dashb-btn-primary:hover {
  color: var(--text-on-dark);
  transform: var(--hover-lift-sm);
  box-shadow: 0 12px 32px var(--gradient-hover-glow);
}
.dashb-btn-primary:active {
  transform: translateY(0);
}

.breadcrumb-item:not(.active):hover a {
  color: #000;
  transition: var(--transition-base);
}
#dashb-header .input-search .icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: var(--color-text);
}
#dashb-header .input-search input {
  border-radius: var(--radius-16);
  padding-left: 3.5rem;
  width: 300px;
  max-width: 100%;
}
#dashb-header .user-pic,
#dashb-header :is(.cart-icon, .bell-icon) {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
#dashb-header .user-name {
  white-space: nowrap;
}

.rejen-black-slider {
  position: relative;
}
.rejen-black-slider__inner {
  background: #000000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  position: relative;
}
.rejen-black-slider__carousel {
  position: relative;
  min-height: 220px;
}
.rejen-black-slider__carousel .carousel-inner {
  overflow: hidden;
  border-radius: 14px;
}
.rejen-black-slider__carousel .carousel-item {
  min-height: 220px;
}
@media (min-width: 768px) {
  .rejen-black-slider__carousel .carousel-item {
    min-height: 240px;
  }
}
.rejen-black-slider__slide {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 3.5rem 2.25rem 2rem;
  min-height: 220px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .rejen-black-slider__slide {
    padding: 2.5rem 4.5rem 2.5rem 3rem;
    gap: 2rem;
    min-height: 240px;
  }
}
.rejen-black-slider__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.rejen-black-slider__icon svg {
  width: 48px;
  height: 48px;
}
@media (min-width: 768px) {
  .rejen-black-slider__icon {
    width: 64px;
    height: 64px;
  }
  .rejen-black-slider__icon svg {
    width: 52px;
    height: 52px;
  }
}
.rejen-black-slider__content {
  flex: 1;
  min-width: 0;
}
.rejen-black-slider__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.5rem 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .rejen-black-slider__title {
    font-size: 2.5rem;
    margin-bottom: 0.6rem;
  }
}
.rejen-black-slider__text {
  font-size: 0.95rem;
  color: #FFFFFF;
  opacity: 0.9;
  line-height: 1.5;
  margin: 0 0 1.25rem 0;
  font-weight: 400;
}
@media (min-width: 768px) {
  .rejen-black-slider__text {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }
}
.rejen-black-slider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.rejen-black-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.rejen-black-slider__btn--primary {
  background: var(--gradient);
  color: var(--text-on-dark);
  border: none;
}
.rejen-black-slider__btn--primary:hover {
  color: var(--text-on-dark);
  transform: var(--hover-lift-sm);
  box-shadow: 0 12px 32px var(--gradient-hover-glow);
}
.rejen-black-slider__btn--secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.rejen-black-slider__btn--secondary:hover {
  background: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.rejen-black-slider__indicators {
  bottom: 1rem;
  margin-bottom: 0;
  padding-bottom: 20px;
}
.rejen-black-slider__indicators [data-bs-target],
.rejen-black-slider__indicators [data-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFFFFF;
  opacity: 0.4;
  border: none;
  margin-inline: 4px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.rejen-black-slider__indicators .active {
  opacity: 1;
  transform: scale(1.15);
}

#services-counter {
  padding-top: 15px;
}
#services-counter .service-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: #fff;
  border-radius: var(--radius-16);
  padding: 2rem;
  box-shadow: var(--drop-shadow);
  transition: var(--transition-base);
  min-height: 10rem;
}
#services-counter .service-item:hover {
  transform: translateY(-5px);
  background-color: var(--color-light-gray);
}
#services-counter .service-icon {
  font-size: 2rem;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  background-color: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#services-counter .service-item:hover .service-icon {
  background-color: #ffffff;
}
#services-counter .service-info span {
  display: block;
}
#services-counter .counter {
  font-size: 2.4rem;
  font-weight: 800;
}
#services-counter .service-name {
  font-size: 1.6rem;
  color: #030229;
  white-space: nowrap;
}

#active-products .product-list {
  box-shadow: var(--drop-shadow);
  border-radius: var(--radius-16);
}
#active-products .product-item:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}
#active-products .product-status {
  background-color: #00017;
  border-radius: 8px;
  color: #000;
  font-size: 1.4rem;
}
#active-products .product-btn {
  background-color: #0000001a;
  font-size: 1.4rem;
  border-radius: 8px;
}
#active-products .register-wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-radius: var(--radius-16);
  box-shadow: var(--drop-shadow);
}
#active-products .register-wrapper .dashb-btn {
  display: inline-block;
  height: 5rem;
  width: 18rem;
  font-size: 1.4rem;
  border-radius: 8px;
}
#active-products .register-wrapper .btn-light {
  background-color: #0000001a;
}

#card-dashb .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#card-dashb .list-items {
  border-radius: var(--radius-16);
  box-shadow: var(--drop-shadow);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#card-dashb .list-item {
  transition: var(--transition-base);
}
#card-dashb .list-item:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}
#card-dashb .list-item:hover {
  background-color: #f5f5f5;
}

#progress-container {
  padding-left: 6rem;
}
.progress-step {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.progress-step-number {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.progress-step-text {
  font-size: 1.3rem;
  transition: color 0.3s ease;
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.progress-step.active .progress-step-number {
  background-color: #000;
  color: #fff;
}
.progress-step.active .progress-step-text {
  font-weight: 600;
  color: #000;
}
.progress-step:not(.active) .progress-step-number {
  background-color: #e5e7eb;
  color: #6b7280;
}
.progress-step:not(.active) .progress-step-text {
  color: #6b7280;
}
.progress-line-container {
  position: absolute;
  width: 85%;
  height: 2px;
  background-color: #e5e7eb;
  top: 15px;
  left: 13%;
  z-index: 0;
}
.progress-line {
  height: 100%;
  width: 0%;
  background-color: var(--color-primary);
  transition: width 0.4s ease-in-out;
}

.table-responsive {
  overflow-x: auto;
}
#sortableTable {
  min-width: 900px;
  width: 100%;
  box-shadow: var(--drop-shadow);
}
#sortableTable .table-header th {
  color: var(--color-text);
  font-size: 1.4rem;
}
#sortableTable .sort-icons {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 5px;
  margin-top: -1.2rem;
  vertical-align: middle;
}
#sortableTable .sort-icons i {
  height: 5px;
  line-height: 1;
  font-size: 1.5rem;
}
#sortableTable .table-body td {
  vertical-align: middle;
  padding: 1.5rem 1.25rem;
  background-color: transparent;
}
.table-body tr:nth-child(odd) {
  background-color: #f5f5f5;
}
#sortableTable .status-badge {
  padding: 8px 1.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  border-radius: 8px;
}
#sortableTable :is(.status-unpaid, .status-paid) {
  display: inline-flex;
  gap: 8px;
  width: 9rem;
  color: var(--color-text);
}
#sortableTable :is(.status-unpaid, .status-paid) .icon {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#sortableTable .status-unpaid .icon {
  background-color: #fd3d3d3b;
  color: #fd3d3de5;
}
#sortableTable .status-paid .icon {
  background-color: #0003b;
  color: #000;
}
#sortableTable .status-active {
  color: #000;
  background-color: #00017;
}
#sortableTable .status-inactive {
  color: rgba(160, 29, 29, 0.723);
  background-color: rgba(183, 0, 0, 0.101);
}
#sortableTable .action-dots {
  font-size: 1.5rem;
  color: #6c757d;
}
#sortableTable .dropdown-item {
  font-size: 1.4rem;
}

.carousel-indicators {
  bottom: 7px;
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 5px;
}
.carousel-indicators .active {
  background-color: white;
}
.carousel-item {
  min-height: 27rem;
  padding: 2rem;
}

.order-sum-wrap {
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-16);
  overflow: hidden;
}
.order-sum-wrap h4 {
  background-color: var(--color-light-gray);
}
.order-sum-wrap li {
  color: var(--color-text);
}
.order-sum-wrap li:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}
.order-sum-wrap li strong {
  color: var(--color-primary);
}

#cart-configure .premium-wrap,
#cart-configure .addon-content {
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-16);
}

.checkout-card,
.billing-card,
.payment-card {
  border-radius: var(--radius-18);
  box-shadow: var(--drop-shadow);
}
.checkout-card .product-item {
  padding: 1.2rem 2rem;
}
.checkout-card .product-item:not(:last-child),
.payment-card ul li:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}
.checkout-card .product-item h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.checkout-card .product-item p {
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: 0;
}
.checkout-card .product-item select {
  padding: 8px 12px;
  border-radius: 11px;
  font-size: 1.4rem;
}
.checkout-card .product-item .action-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--color-text);
  transition: color 0.2s;
}
.checkout-card .product-item .action-btn:hover {
  color: #000;
}

.billing-section form {
  border-bottom: 1px solid #eaeaea;
}
.payment-card .icon {
  font-size: 3rem;
}

#pricing-home .pricing-toggle {
  margin-bottom: 3rem;
}
#pricing-home .toggle-buttons {
  background-color: white;
  border-radius: var(--radius-28);
  padding: 0 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: inline-flex;
}
#pricing-home .toggle-btn {
  padding: 12px 24px;
  border: none;
  background: transparent;
  border-radius: var(--radius-28);
  font-size: 1.4rem;
  color: var(--color-text);
}
#pricing-home .toggle-btn.active {
  background: var(--gradient);
  color: var(--text-on-dark);
}
#pricing-home .pricing-card {
  border-radius: var(--radius-24);
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s linear;
  display: flex;
  flex-direction: column;
}
#pricing-home .pricing-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2.5px 2.5px at 25% 65%,
      rgba(255, 255, 255, 0.7),
      transparent
    ),
    radial-gradient(3px 3px at 80% 45%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(2px 2px at 50% 15%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(
      2.5px 2.5px at 90% 75%,
      rgba(255, 255, 255, 0.5),
      transparent
    );
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
#pricing-home .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
#pricing-home .pricing-card.featured {
  background: var(--color-primary);
}
#pricing-home .best-choice {
  position: absolute;
  background: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 2px 5px rgba(0, 0, 0, 0.1);
}
#pricing-home .plan-name {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
#pricing-home .price-container {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2rem;
}
#pricing-home .plan-price {
  font-size: 4rem;
  font-weight: 700;
}
#pricing-home .plan-period {
  font-size: 1.4rem;
  color: var(--color-text);
}
#pricing-home .pricing-card.featured :is(.plan-period, .plan-description, li) {
  color: #ffffff;
}
#pricing-home .plan-description {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 3rem;
  line-height: 1.4;
}
#pricing-home .plan-features {
  margin-bottom: 3rem;
  flex: 1;
}
#pricing-home .plan-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--color-text);
}
#pricing-home .feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}
#pricing-home .feature-icon.check {
  background: var(--color-primary);
  color: white;
}
#pricing-home .feature-icon.cross {
  background: transparent;
  border: 1px solid #dc354540;
  color: var(--color-text);
}
#pricing-home .pricing-card.featured .feature-icon.check {
  background: white;
  color: var(--color-primary);
}
#pricing-home .explore-btn {
  width: 100%;
  padding: 15px 24px;
  background: transparent;
  border: 2px solid #e9ecef;
  border-radius: var(--radius-24);
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#pricing-home .explore-btn:hover {
  background: var(--gradient);
  color: var(--text-on-dark);
  border-color: transparent;
}
#pricing-home .pricing-card.featured .explore-btn {
  background: white;
  border-color: white;
}
#pricing-home .pricing-card.featured .explore-btn:hover {
  background: var(--gradient);
  border-color: transparent;
  color: var(--text-on-dark);
}

#dedicated-features .card-item {
  border-radius: var(--radius-24);
  overflow: hidden;
  box-shadow: var(--drop-shadow);
  transition: 0.3s linear;
}
#dedicated-features .card-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
#dedicated-features .card-desc {
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: 2rem;
}

#academy-home .card-item {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--drop-shadow);
  transition: 0.3s linear;
}
#academy-home figure {
  height: 20rem;
  width: 100%;
}
#academy-home figure img {
  transition: 0.3s linear;
}
#academy-home .card-item:hover img {
  transform: scale(1.05);
}
#academy-home .card-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
#academy-home .card-date {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 700;
}
#academy-home .card-desc {
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: 2rem;
}
#academy-home .dashb-btn {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.domain-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-18);
  box-shadow: var(--shadow-sm);
  border: 2px solid #f1f3f4;
  transition: var(--transition-base);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.domain-card:hover {
  border-color: var(--color-primary);
}
.domain-card .domain-info {
  margin-bottom: 2rem;
}
.domain-card .domain-name {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.domain-card .domain-price {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0;
}
.domain-card .ellipse {
  position: absolute;
  border-radius: 50%;
  background-color: #0000000f;
}
.domain-card .ellipse-1 {
  top: -5rem;
  right: -2rem;
  width: 10rem;
  height: 10rem;
}
.domain-card .ellipse-2 {
  top: 3.4rem;
  right: -3rem;
  width: 5rem;
  height: 5rem;
}

.accordion-item {
  border-radius: 22px !important;
  overflow: hidden;
  box-shadow: 0 0 31px #184f7817;
  border: none;
}
.accordion-header button {
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.accordion-icon {
  transition: transform 0.3s ease;
  background-color: #e6e6e66b;
  padding: 1rem;
  border-radius: 50%;
  font-size: 1.3rem;
}
.accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
}
.accordion-button::after {
  display: none;
}

#choice-home .card-item {
  border-radius: var(--radius-24);
  box-shadow: var(--drop-shadow);
  gap: 2rem;
  overflow: hidden;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
#choice-home .card-item:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}
#choice-home .card-icon {
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.card-item:hover .card-icon {
  transform: scale(1.1) rotate(10deg);
}
#choice-home .card-icon span {
  background-color: #f3f3f3;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 600;
}
#choice-home .card-title {
  font-size: 1.8rem;
}
#choice-home .card-desc {
  font-size: 1.2rem;
  padding-right: 2rem;
  color: var(--color-text);
  margin-bottom: 0;
}
#choice-home .card-item:hover {
  background-color: var(--color-primary);
}
#choice-home .card-item:hover .card-title {
  color: #fff;
}
#choice-home .card-item:hover .card-desc {
  color: var(--color-text-dark);
}
#choice-home .card-item:hover button {
  background-color: #fff;
  color: var(--color-primary);
}

#blog-section .blog-image {
  height: 40rem;
}
#blog-section .blog-tag:hover {
  background: var(--color-secondary) !important;
  color: white !important;
}
#blog-section .social-icons li a {
  background-color: var(--color-light-gray);
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
}

.pagination .page-item .page-link {
  color: black;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin: 0 0.25rem;
  padding: 6px 1.3rem;
  font-size: 1.4rem;
}
.pagination .page-item.active .page-link,
.pagination .page-item:hover .page-link {
  background-color: black;
  color: white;
  border-color: black;
}

.contact-form-container {
  background: white;
  padding: 4rem 3rem;
  border-radius: var(--radius-24);
  box-shadow: var(--shadow-special);
  border: 1px solid #f1f3f4;
}
.contact-form-container .form-heading {
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-bottom: 3rem;
}
.contact-form-container .form-input,
.contact-form-container .form-textarea {
  padding: 1.5rem 2rem !important;
  font-size: 1.5rem;
  font-weight: 500;
}
.contact-form-container .form-input::placeholder,
.contact-form-container .form-textarea::placeholder {
  color: var(--color-text);
  font-weight: 400;
}
.contact-form-container .form-textarea {
  resize: vertical;
  min-height: 120px;
  background-color: var(--color-light-gray);
}

@media (max-width: 991px) {
  #dashb-main {
    margin-left: 0;
  }
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.show {
    transform: translateX(0);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  .sidebar-close {
    display: flex !important;
  }
  .dashb-header .dashb-user-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 1rem;
  }
  .dashb-header-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  #dashb-header .input-search input {
    width: 20rem;
  }
}
@media (max-width: 767px) {
  #progress-container {
    padding-left: 3rem;
  }
  .progress-step-text {
    white-space: wrap;
  }
  #dashb-header :is(.cart-icon, .bell-icon) i {
    font-size: 1.3rem !important;
  }
  .carousel-item {
    min-height: 27rem;
    padding: 0.5rem 0;
  }
  #pricing-home .plan-features li,
  #pricing-home .plan-description {
    font-size: 1.5rem;
  }
  #blog-section .blog-image {
    height: 200px;
  }
  .contact-form-container {
    padding: 3rem 2rem;
  }
  .contact-form-container .form-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .contact-form-container .form-input,
  .contact-form-container .form-textarea {
    padding: 1.2rem 1.5rem;
    font-size: 1.4rem;
  }
  .contact-form-container .submit-btn {
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
    width: 100%;
  }
}

.mobile-menu-toggle {
  position: fixed;
  top: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--color-primary, #000);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 1101;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}
.mobile-menu-toggle:hover {
  background: #333;
  transform: scale(1.02);
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1100;
  backdrop-filter: blur(2px);
}
.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}
body.sidebar-open {
  overflow: hidden;
}
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .qwe,
  body.sidebar-collapsed .qwe {
    padding-left: 0 !important;
  }
  body.sidebar-collapsed #dashb-main {
    margin-left: 0;
  }
}
.custom-control-label::before, .custom-file-label, .custom-select {
  transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.card {
  background-color: #fff;
  border-radius: var(--radius-16);
  box-shadow: var(--drop-shadow);
  transition: var(--transition-base);
  margin-top: 20px;
  margin-bottom: 20px;
}

.main-content,
.main-container,
#main-body .container {
  max-width: 100%;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.master-breadcrumb {
	background: #f2f2f2!important;
}
.breadcrumb {
		background: #f2f2f2!important;
}
a {
	text-decoration: none!important;
}
.breadcrumb {
  background: #fff !important;
}
#active-products .product-item:not(:last-child) {
	border-bottom: 0px!important;
}
body, html {
	  font-family: "Nunito", sans-serif!important;
}
.register-wrapper .form-control {
outline: none;
  border: 1px solid transparent;
  background-color: var(--color-light-gray);
  padding: 1.3rem 1.7rem;
  border-radius: var(--radius-16);
  width: 100%;
  transition: 0.3s linear;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 20px;
}
.register-wrapper .btn{
	height: 5rem;
	width: 18rem;
	font-size: 1.4rem;
	border-radius: 8px;
	line-height: 3;
}

.table-container {
  font-family: "Cairo", sans-serif;
  background-color: #fff;
  border-radius: var(--radius-16, 16px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  margin-top: 2rem;
  overflow: hidden;
}

.table-container table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  font-size: 1.45rem;
  color: #222;
}

.table-container thead tr {
  background-color: #f8f8f8;
}
.table-container thead th {
  color: #555;
  font-weight: 700;
  padding: 1.4rem 2rem;
  border: none;
  text-transform: none;
  font-size: 1.45rem;
}

.table-container tbody tr {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}
.table-container tbody tr:hover {
  transform: scale(1.005);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
}
.table-container tbody td {
  padding: 1.5rem 2rem;
  border: none;
  vertical-align: middle;
  font-size: 1.45rem;
}

.table-container tbody td strong {
  font-weight: 700;
  color: #0a0a0a;
}
.table-container tbody td a {
  color: var(--color-primary, #5b33ff);
  text-decoration: none;
  transition: 0.2s;
  font-size: 1.4rem;
}
.table-container tbody td a:hover {
  color: #000;
  text-decoration: underline;
}

.table-container tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.status {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
}
.status-active {
  background-color: #03b42417;
  color: #03b424;
}
.status-inactive,
.status-suspended {
  background-color: #ff000017;
  color: #b3001b;
}
.status-pending {
  background-color: #ffb8001a;
  color: #d38b00;
}

.dataTables_wrapper .dataTables_paginate {
  margin-top: 2.5rem;
  text-align: right;
}

.dataTables_info {
  font-size: 1.35rem;
  color: #555;
  margin-top: 2rem;
}

#tableLoading {
  padding: 3rem 0;
  color: #666;
  font-size: 1.4rem;
}
#tableLoading i {
  color: var(--color-primary, #5b33ff);
  margin-right: 6px;
}

@media (max-width: 768px) {
  .table-container {
    box-shadow: none;
    border-radius: 0;
    padding: 1rem;
  }
  .table-container table {
    font-size: 1.3rem;
  }
  .table-container tbody td {
    padding: 1rem 1.2rem;
  }
  .dataTables_wrapper .dataTables_paginate {
    text-align: center;
  }
}

.action-icon-btns a {
  display: block;
  margin: 0 0 12px 0;
  padding: 1.2rem 0;
  text-align: center;
  text-decoration: none;
  font-family: "Cairo", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #333;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.action-icon-btns a:hover {
  background-color: var(--color-primary, #5b33ff);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(91, 51, 255, 0.25);
}

.action-icon-btns a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.action-icon-btns a:hover::after {
  opacity: 1;
}

.action-icon-btns a i {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
  opacity: 0.8;
  transition: all 0.25s ease;
}
.action-icon-btns a:hover i {
  opacity: 1;
  transform: scale(1.15);
}

.action-icon-btns a.active {
  background: var(--gradient);
  color: var(--text-on-dark);
  box-shadow: 0 8px 24px var(--gradient-hover-glow);
}

@media (max-width: 768px) {
  .action-icon-btns a {
    font-size: 1.3rem;
    padding: 1rem 0;
  }
  .action-icon-btns a i {
    font-size: 1.7rem;
  }
}

.card-accent-teal,
.card-accent-pomegranate,
.card-accent-sun-flower,
.card-accent-asbestos,
.card-accent-green,
.card-accent-midnight-blue {
border-color: #000;
}
.home-domain-search {
	background: #000!important;
	color: #fff!important;
}
.home-domain-search a {
	color: #fff!important;
}
.home-domain-search h2 {
	color: #fff!important;
}
.breadcrumb {
  padding-bottom: 0px !important;
}

.home-domain-search {
  color: #fff;
  padding: 3rem 2rem;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.35),
    inset 0 0 25px rgba(91, 51, 255, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.home-domain-search::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.7;
  pointer-events: none;
}

.home-domain-search h2,
.home-domain-search p {
  color: #fff;
  margin-bottom: 1.5rem;
}
.home-domain-search input[type="text"],
.home-domain-search input[type="search"] {
  width: 100%;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  border: none;
  outline: none;
  font-size: 1.5rem;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}
.home-domain-search input[type="text"]:focus {
  box-shadow: 0 0 0 2px rgba(91, 51, 255, 0.4);
}

.home-domain-search .btn {
  height: 4.5rem;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.home-domain-search .btn-light {
  color: #000;
}
.home-domain-search .btn-dark {
  background: var(--gradient) !important;
  border: none !important;
  color: var(--text-on-dark);
  box-shadow: 0 6px 18px var(--gradient-hover-glow);
}
.home-domain-search .btn-dark:hover {
  color: var(--text-on-dark);
  box-shadow: 0 12px 32px var(--gradient-hover-glow);
  transform: var(--hover-lift-sm);
}

.home-domain-search:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.45),
    inset 0 0 25px rgba(91, 51, 255, 0.2);
}

@media (max-width: 768px) {
  .home-domain-search {
    padding: 2rem 1.5rem;
  }
  .home-domain-search h2 {
    font-size: 1.6rem;
  }
}
.margin-bottom {
	margin-bottom: 50px;
}

.modal .btn img,
.copy-to-clipboard img,
.btn.copy-to-clipboard img {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  min-width: 15px;
  vertical-align: middle;
  margin-right: 4px;
  display: inline-block;
}
.modal .btn.btn-sm .fas,
.modal .btn.btn-sm .fa,
#modalGeneratePassword .btn i {
  font-size: 1.2rem;
}
#modalGeneratePassword .modal-body .row .btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

#inputCaptchaImage,
.captchaimage img,
#default-captcha-domainchecker .captchaimage img {
  max-width: 180px !important;
  width: auto !important;
  height: auto !important;
  display: block;
}
.captchaimage {
  display: flex;
  align-items: center;
  justify-content: center;
}

#order-standard_cart .view-cart-items-header {
  margin: 0 !important;
  padding: 8px 15px !important;
  background-color: #000000 !important;
  color: #ffffff !important;
  font-size: .9em !important;
  border-radius: 4px 4px 0 0 !important;
}

#order-standard_cart .empty-cart .btn {
  margin: 0 !important;
  padding: 4px 10px !important;
  background: var(--gradient) !important;
  border: 0 !important;
  color: var(--text-on-dark) !important;
  border-radius: 0 0 4px 4px !important;
}

#order-standard_cart .view-cart-items {
  margin: 0 0 20px 0 !important;
  border-bottom: 2px solid #000000 !important;
}

#order-standard_cart .order-summary {
  margin: 0 0 20px 0 !important;
  margin-top: 0px !important;
  padding: 0 !important;
  background-color: #000000 !important;
  border-bottom: 3px solid #000000 !important;
  border-radius: 4px !important;
}

#order-standard_cart .sub-heading span,
#order-standard_cart .sub-heading-borderless span {
  display: inline-block !important;
  position: relative !important;
  padding: 0 17px !important;
  top: -11px !important;
  font-size: 16px !important;
  color: #000000 !important;
}

.action-icon-btns a:hover {
  background: var(--gradient) !important;
  color: var(--text-on-dark) !important;
  transform: var(--hover-lift-sm);
  box-shadow: 0 12px 32px var(--gradient-hover-glow) !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

/* Theme: primary buttons (WHMCS/Bootstrap) – match HTML gradient */
.btn-primary,
.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  background: var(--gradient) !important;
  border: none !important;
  color: var(--text-on-dark) !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-primary:hover:not(:disabled):not(.disabled) {
  transform: var(--hover-lift-sm);
  box-shadow: 0 12px 32px var(--gradient-hover-glow);
}
.btn-primary:active:not(:disabled):not(.disabled) {
  transform: translateY(0);
}
.btn-primary.disabled,
.btn-primary:disabled {
  opacity: 0.7;
  transform: none;
}