:root {
  --dark-color: #343a40;
  --primary-color: #0d6efd;
  --secondary-color: #d4af7a;
  --danger-color: #dc3545;
  --background-light: #f8f9fa;
  --background-dark: #343a40;
  --sidebar-width: 260px;
  --light-color: #ecf0f1;
  --success-color: #27ae60;
  --text-dark: #34495e;
  --text-muted: #7f8c8d;
  --border-color: #ddd;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.header-container {
  width: 100%;
  background-color: var(--dark-color);
  box-shadow: 0 4px 10px var(--shadow);
  color: var(--light-color);
}

/* Top Contact Info */
.header-top-contact {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  padding: 10px 40px;
  background-color: var(--secondary-color);
  font-size: 0.9rem;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-color);
}

.header-contact-item i {
  color: var(--dark-color);
}

/* Main Header Section */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

/* Logo Section */
.header-logo {
  font-size: 5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--background-light);
  position: relative;
}


.header-logo-text {
  color: var(--danger-color);
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 1px;
  position: relative;
}

.header-logo-text span {
  color: var(--background-light);
}

.header-logo-text::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: var(--danger-color);
  border-radius: 50%;
  top: -8px;
  left: -15px;
  animation: pulse 2s infinite;
}

/* Navigation Links */
.header-nav {
  display: flex;
  gap: 10px;
}

.header-link {
  position: relative;
  text-decoration: none;
  color: var(--light-color);
  font-size: 1rem;
  padding: 6px 2px;
  transition: var(--transition);
}

.header-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: var(--secondary-color);
  transition: width 0.3s ease-in-out;
}

.header-link:hover {
  color: var(--secondary-color);
}

.header-link:hover::after {
  width: 100%;
}


body {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  background: var(--background-light);
}

.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 40px 0;
  box-shadow: 0 -2px 5px var(--shadow);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
}

.footer-column {
  width: 30%;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: var(--light-color);
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
}

/* registration page ui  */

input,
button {
  border: none;
  outline: none;
  background: none;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}

.trdm-tip {
  font-size: 20px;
  margin: 40px auto 50px;
  text-align: center;
}

.trdm-cont {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 900px;
  height: 550px;
  margin: 0 auto 100px;
  background: var(--background-light);
  box-shadow: -10px -10px 15px rgba(255, 255, 255, 0.3), 10px 10px 15px rgba(70, 70, 70, 0.15), inset -10px -10px 15px rgba(255, 255, 255, 0.3), inset 10px 10px 15px rgba(70, 70, 70, 0.15);
}

.trdm-form {
  position: relative;
  width: 640px;
  height: 100%;
  transition: transform 1.2s ease-in-out;
  padding: 50px 30px 0;
}

.trdm-error-message {
  background-color: var(--light-color);
  color: var(--danger-color);
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  border: 1px solid var(--danger-color);
}

.trdm-success-message {
  background-color: var(--light-color);
  color: var(--success-color);
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--light-color);
  border-radius: 5px;
  font-size: 14px;
}

.error-msg {
  color: var(--danger-color);
  font-size: 0.85rem;
  margin-top: 4px;
}

.trdm-mobile-toggle {
  display: none;
  text-align: center;
  padding: 20px;
  background: var(--background-light);
  border-bottom: 1px solid var(--background-light);
}

.trdm-mobile-toggle button {
  background: var(--primary-color);
  color: var(--background-light);
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.trdm-sub-cont {
  overflow: hidden;
  position: absolute;
  left: 640px;
  top: 0;
  width: 900px;
  height: 100%;
  padding-left: 260px;
  background: var(--background-light);
  transition: transform 1.2s ease-in-out;
}

.trdm-cont.trdm-s--signup .trdm-sub-cont {
  transform: translate3d(-640px, 0, 0);
}

button {
  display: block;
  margin: 0 auto;
  width: 260px;
  height: 36px;
  border-radius: 30px;
  color: var(--light-color);
  font-size: 15px;
  cursor: pointer;
}

.trdm-img {
  overflow: hidden;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 260px;
  height: 100%;
  padding-top: 360px;
}

.trdm-img:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 900px;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: .8;
  background-size: cover;
  transition: transform 1.2s ease-in-out;
}

.trdm-img:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-color);
}

.trdm-cont.trdm-s--signup .trdm-img:before {
  transform: translate3d(640px, 0, 0);
}

.trdm-img__text {
  z-index: 2;
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  color: var(--background-light);
  transition: transform 1.2s ease-in-out;
}

.trdm-img__text h2 {
  margin-bottom: 10px;
  font-weight: normal;
}

.trdm-img__text p {
  font-size: 14px;
  line-height: 1.5;
}

.trdm-cont.trdm-s--signup .trdm-img__text.trdm-m--up {
  transform: translateX(520px);
}

.trdm-img__text.trdm-m--in {
  transform: translateX(-520px);
}

.trdm-cont.trdm-s--signup .trdm-img__text.trdm-m--in {
  transform: translateX(0);
}

.trdm-img__btn {
  overflow: hidden;
  z-index: 2;
  position: relative;
  width: 100px;
  height: 36px;
  margin: 0 auto;
  background: transparent;
  color: var(--light-color);
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
}

.trdm-img__btn:after {
  content: '';
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--background-light);
  border-radius: 30px;
}

.trdm-img__btn span {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: transform 1.2s;
}

.trdm-img__btn span.trdm-m--in {
  transform: translateY(-72px);
}

.trdm-cont.trdm-s--signup .trdm-img__btn span.trdm-m--in {
  transform: translateY(0);
}

.trdm-cont.trdm-s--signup .trdm-img__btn span.trdm-m--up {
  transform: translateY(72px);
}

h2 {
  width: 100%;
  font-size: 26px;
  text-align: center;
}

label {
  display: block;
  width: 260px;
  margin: 10px auto 0;
  text-align: center;
}

label span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
}

input {
  display: block;
  width: 100%;
  font-size: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  text-align: center;

}

.trdm-forgot-pass {
  margin-top: 15px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.trdm-submit {
  margin-top: 40px;
  margin-bottom: 20px;
  background: var(--danger-color);
  text-transform: uppercase;
}

.trdm-fb-btn {
  border: 2px solid var(--light-color);
  color: var(--dark-color);
}

.trdm-fb-btn span {
  font-weight: bold;
  color: var(--dark-color);
}

.trdm-sign-in {
  transition-timing-function: ease-out;
}

.trdm-cont.trdm-s--signup .trdm-sign-in {
  transition-timing-function: ease-in-out;
  transition-duration: 1.2s;
  transform: translate3d(640px, 0, 0);
}

.trdm-sign-up {
  transform: translate3d(-900px, 0, 0);
}

.trdm-cont.trdm-s--signup .trdm-sign-up {
  transform: translate3d(0, 0, 0);
}

.trdm-sign-in,
.trdm-sign-up {
  display: none;
}

.trdm-cont:not(.trdm-s--signup) .trdm-sign-in {
  display: block;
}

.trdm-cont.trdm-s--signup .trdm-sign-up {
  display: block;
}

/* Mobile toggle button styling */
.trdm-mobile-toggle {
  display: none;
  text-align: center;
  margin-top: 15px;
}

.trdm-mobile-toggle button {
  background-color: var(--primary-color, #0d6efd);
  color: var(--light-color);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}


/*trademen panel*/


.trdm-panel-sidebar-v2 {
  width: var(--sidebar-width);
  background: linear-gradient(180deg, #212529, #343a40);
  color: var(--light-color);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}

.trdm-panel-sidebar-v2.active {
  left: -260px;
}

.trdm-panel-user-info-v2 {
  text-align: center;
  padding: 2rem 1rem 1rem;
  border-bottom: 1px solid var(--text-muted);
}

.trdm-panel-user-info-v2 i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.trdm-panel-user-info-v2 h2 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.trdm-panel-user-info-v2 p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trdm-panel-nav-v2 a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--light-color);
  text-decoration: none;
  transition: background 0.3s ease;
  gap: 10px;
}

.trdm-panel-nav-v2 a:hover {
  background-color: var(--dark-color);
}

.trdm-panel-logout-v2 {
  background-color: var(--danger-color);
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--background-light);
  font-weight: bold;
  border-top: 1px solid var(--text-muted);
}

/* Main Panel */
.trdm-panel-main-v2 {
  margin-left: var(--sidebar-width);
  padding: 2rem;
  transition: margin-left 0.3s ease;
}

.trdm-panel-header-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.trdm-panel-header-v2 input[type="text"] {
  padding: 0.5rem 1rem;
  border: 1px solid var(--text-muted);
  border-radius: 4px;
  width: 250px;
}

.trdm-panel-toggle-v2 {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--background-dark);
  display: none;
}

/* Cards */
.trdm-panel-cards-v2 {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.trdm-panel-card-v2 {
  background-color: var(--background-light);
  color: var(--background-dark);
  border-left: 5px solid;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  text-decoration: none;
}

.trdm-panel-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.trdm-panel-card-v2 h3 {
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

/* Modal Enhancements */
.modal-dialog {
  max-width: 900px;
  margin: 2rem auto;
}

.modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background: var(--light-color);
}

.modal-header {
  background: var(--dark-color);
  color: var(--light-color);
  border-bottom: none;
  padding: 2rem 2.5rem 1.5rem;
  position: relative;
}

.modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.modal-title {
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.modal-title::before {
  content: '\f1ad';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.5rem;
  opacity: 0.9;
}

.modal-body {
  padding: 2.5rem;
  background: var(--light-color);
}

.image-preview-section {
  background: var(--light-color);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.preview-img {
  max-height: 120px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.preview-img:hover {
  transform: scale(1.05);
}

.image-caption-wrapper {
  margin-top: 1rem;
}

/* Modal Footer */
.modal-footer {
  background: var(--dark-color);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 2.5rem;
  gap: 1rem;
}


/* Overlay */
.trdm-panel-overlay-v2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.trdm-panel-overlay-v2.active {
  display: block;
}


/* ADD BUSINESS PAGE  */

.container {
  max-width: 750px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-grid.single {
  grid-template-columns: 1fr;
}

.form-grid.triple {
  grid-template-columns: repeat(3, 1fr);
}

/* Form Groups */
.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.form-group i {
  color: var(--secondary-color);
  margin-right: 8px;
  width: 18px;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--background-light);
  font-family: inherit;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(212, 175, 122, 0.15);
  outline: none;
  transform: translateY(-1px);
}

.form-control:hover:not(:focus) {
  border-color: rgba(212, 175, 122, 0.5);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

/* Professional Sections */
.compact-section {
  background: linear-gradient(145deg, rgba(248, 250, 252, 0.8), rgba(244, 246, 248, 0.9));
  padding: 28px;
  border-radius: 16px;
  margin-bottom: 28px;
  border: 1px solid rgba(212, 175, 122, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.compact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), rgba(212, 175, 122, 0.5));
}

.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(212, 175, 122, 0.2);
}

.section-title i {
  margin-right: 10px;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Enhanced Weekly Schedule */
.schedule-container {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.schedule-day {
  background: white;
  border: 2px solid rgba(212, 175, 122, 0.1);
  border-radius: 12px;
  padding: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.schedule-day:hover {
  border-color: rgba(212, 175, 122, 0.3);
  box-shadow: 0 4px 12px rgba(212, 175, 122, 0.1);
  transform: translateY(-1px);
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.day-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.day-name::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
  margin-right: 10px;
}

.closed-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.closed-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--secondary-color);
}

.time-inputs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.time-input-group {
  display: flex;
  flex-direction: column;
}

.time-input-group label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
}

.time-input-group input[type="time"] {
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
  background: rgba(248, 250, 252, 0.8);
}

.time-separator {
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
}

.schedule-day.closed .time-inputs {
  opacity: 0.4;
  pointer-events: none;
}

/* File Upload Enhancement */
.file-input {
  position: relative;
  cursor: pointer;
}

.file-input input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-display {
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  background: linear-gradient(145deg, rgba(248, 250, 252, 0.5), rgba(244, 246, 248, 0.8));
  position: relative;
  overflow: hidden;
}

.file-display::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 122, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.file-display:hover {
  border-color: var(--secondary-color);
  background: rgba(212, 175, 122, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(212, 175, 122, 0.15);
}

.file-display:hover::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.file-display i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 12px;
  display: block;
}

.file-display p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.file-display strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Submit Button Enhancement */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--background-dark) 0%, rgba(58, 65, 111, 0.9) 100%);
  color: var(--background-light);
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(212, 175, 122, 0.4);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Alert Enhancements */
.alert {
  padding: 18px 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 4px solid;
  position: relative;
  overflow: hidden;
}

.alert::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  pointer-events: none;
}

.alert-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
  color: var(--success-color);
  border-left-color: var(--success-color);
}

.alert-danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
  color: var(--danger-color);
  border-left-color: var(--danger-color);
}

.alert ul {
  margin: 12px 0 0 0;
  padding-left: 24px;
}

.alert li {
  margin-bottom: 4px;
}

.dashboard-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--success-color), rgba(34, 197, 94, 0.8));
  color: var(--light-color);
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.dashboard-btn:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), var(--success-color));
  color: var(--light-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.3);
}

/* Visit Charge Field Enhancement */
.visit-charge-group {
  background: rgba(212, 175, 122, 0.05);
  padding: 20px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 122, 0.2);
  margin-top: 20px;
}

.visit-charge-group label {
  color: var(--secondary-color);
  font-weight: 700;
}

/* edit part at dashboard */
.business-listing-container {
  padding: 2rem 0;
}

.business-card {
  background: var(--background-light);
  border-radius: 16px;
  box-shadow: 0 8px 25px var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Business Image Section */
.business-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.business-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.business-card:hover .business-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}

.business-category {
  background: var(--secondary-color);
  color: var(--light-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Image Placeholder */
.business-image-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--background-light) 0%, var(--light-color) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.placeholder-icon {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.business-category-alt {
  background: var(--secondary-color);
  color: var(--light-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* Business Content */
.business-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.business-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.business-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
  flex: 1;
  margin-right: 1rem;
}

.business-status {
  flex-shrink: 0;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.active {
  background: var(--success-color);
  color: var(--light-color);
  border: 1px solid var(--success-color);
}

.business-caption {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--background-light);
  border-radius: 8px;
  border-left: 3px solid var(--secondary-color);
}

/* Business Details */
.business-details {
  margin-bottom: 1.5rem;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(248, 249, 250, 0.7);
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.detail-row:hover {
  background: var(--background-light);
}

.detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--background-light);
  border-radius: 8px;
  margin-right: 1rem;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.detail-value {
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.4;
}

.license-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.license-link:hover {
  color: var(--secondary-color);
}

.license-link i {
  margin-left: 0.5rem;
  font-size: 0.75rem;
}

/* Business Description */
.business-description {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(212, 175, 122, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(13, 110, 253, 0.1);
}

.description-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.description-text {
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

.weekly-schedule-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
}

.weekly-schedule-list li {
  padding: 0.5rem;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  font-size: 0.9rem;
}

/* Action Buttons */
.business-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.btn-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: none;
}

.btn-edit {
  background: var(--background-dark);
  color: var(--light-color);
}

.btn-edit:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.btn-delete {
  background: var(--danger-color);
  color: var(--light-color);
}

.btn-delete:hover {
  background: var(--danger-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.delete-form {
  flex: 1;
  display: flex;
}

.delete-form .btn-action {
  width: 100%;
}

/* Text Utilities */
.text-muted {
  color: var(--text-muted) !important;
}

/* add blog and view or dlt page  */
.adbp-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
}

.adbp-header {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.adbp-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

.adbp-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}



.adbp-alert {
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px var(--shadow);
  animation: slideInDown 0.5s ease;
}

.adbp-alert-success {
  background: rgba(39, 174, 96, 0.1);
  border-color: var(--success-color);
  color: var(--success-color);
}

.adbp-alert-warning {
  background: rgba(212, 175, 122, 0.1);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

/* Compact Form Styling */
.adbp-form-container {
  background: var(--light-color);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px var(--shadow);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease;
}

.adbp-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.adbp-form-group {
  position: relative;
}

.adbp-form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: var(--light-color);
}

.adbp-form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
  transform: translateY(-1px);
}

.adbp-textarea {
  grid-column: 1 / -1;
  min-height: 80px;
  resize: vertical;
}

.adbp-btn {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.adbp-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.adbp-btn:hover::before {
  width: 300px;
  height: 300px;
}

.adbp-btn-primary {
  background: var(--primary-color);
  color: var(--light-color);
}

.adbp-btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

.adbp-btn-success {
  background: var(--success-color);
  color: var(--light-color);
}

.adbp-btn-warning {
  background: var(--secondary-color);
  color: var(--light-color);
}

.adbp-btn-danger {
  background: var(--danger-color);
  color: var(--light-color);
}

.adbp-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.adbp-btn-center {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}


/* Compact Blog Cards */
.adbp-blogs-section {
  margin-top: 2rem;
}

.adbp-section-title {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.adbp-blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.2rem;
}

.adbp-blog-card {
  background: var(--light-color);
  ;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fadeInUp 0.6s ease;
  animation-fill-mode: both;
}

.adbp-blog-card:nth-child(1) {
  animation-delay: 0.1s;
}

.adbp-blog-card:nth-child(2) {
  animation-delay: 0.2s;
}

.adbp-blog-card:nth-child(3) {
  animation-delay: 0.3s;
}

.adbp-blog-card:nth-child(4) {
  animation-delay: 0.4s;
}

.adbp-blog-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.adbp-blog-header {
  background: var(--dark-color);
  color: var(--light-color);
  ;
  padding: 1rem 1.2rem;
  position: relative;
}

.adbp-blog-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.adbp-blog-date {
  font-size: 0.8rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
}

.adbp-blog-body {
  padding: 1rem 1.2rem;
}

.adbp-image-container {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: var(--background-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.adbp-image-container:hover {
  transform: scale(1.02);
}

.adbp-blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.adbp-image-container:hover .adbp-blog-image {
  transform: scale(1.1);
}

.adbp-no-image {
  color: var(--text-muted);
  font-size: 2.5rem;
  opacity: 0.3;
}

.adbp-blog-description {
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.adbp-tags-container {
  margin-bottom: 1rem;
}

.adbp-tag {
  display: inline-block;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary-color);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  margin: 0.1rem;
  transition: all 0.3s ease;
}

.adbp-tag:hover {
  background: var(--primary-color);
  color: var(--light-color);
  ;
  transform: scale(1.05);
}

.adbp-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.75rem;
}

.adbp-blog-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.adbp-collapse {
  display: none;
}

.adbp-collapse.show {
  display: block;
  animation: slideDown 0.4s ease;
}

.adbp-edit-form {
  background: var(--background-light);
  padding: 1.2rem;
  margin: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.adbp-edit-form h5 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Image Modal */
.adbp-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.adbp-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s ease;
}

.adbp-modal-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.adbp-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--light-color);
  ;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.adbp-modal-close:hover {
  color: var(--light-color);
  ;
  transform: scale(1.1);
}

.adbp-no-blogs {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-muted);
  background: var(--light-color);
  border-radius: 12px;
  box-shadow: 0 8px 24px var(--shadow);
  animation: fadeInUp 0.6s ease;
}

.adbp-no-blogs i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.3;
  animation: bounce 2s infinite;
}

/* view admin = business = blog */
.blog-image-thumb {
  max-height: 80px;
  max-width: 120px;
  object-fit: cover;
  border-radius: 5px;
}

.form-inline-edit input,
.form-inline-edit textarea {
  margin-bottom: 5px;
}

/* normal user home page ui */
.search-home-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 2px;
  background: var(--dark-color);
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.search-home-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
}

.search-home-form-group {
  display: flex;
  align-items: center;
  background: #f7f9fc;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 12px;
  min-width: 180px;
  flex: 1;
  transition: box-shadow 0.2s ease;
}

.search-home-form-group:focus-within {
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.2);
}

.search-home-form-grow {
  flex-grow: 2;
}

.search-home-icon {
  font-size: 16px;
  color: #666;
  margin-right: 8px;
}

.search-home-select,
.search-home-input {
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  width: 100%;
  padding: 4px 0;
  color: #333;
  appearance: none;
}

.search-home-select option {
  padding: 10px;
  font-size: 14px;
}

.search-home-btn {
  background: var(--danger-color);
  color: #fff;
  border: none;
  padding: 10px 8px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  cursor: pointer;
  height: 42px;
  transition: background 0.2s ease-in-out;
}

.search-home-btn:hover {
  background: #084dca;
}

/* normal user registration page ui */
.normal-reg-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.normal-reg-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.normal-reg-header {
  background: var(--background-dark);
  color: white;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.normal-reg-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.05) 10px,
      rgba(255, 255, 255, 0.05) 20px);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }

  100% {
    transform: translateX(100%) translateY(100%);
  }
}

.normal-reg-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.normal-reg-slogan {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.normal-reg-form {
  padding: 40px 30px;
}

.normal-reg-alert {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-weight: 500;
  text-align: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

.normal-reg-form-group {
  margin-bottom: 25px;
  position: relative;
}

.normal-reg-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.normal-reg-input,
.normal-reg-textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
  font-family: inherit;
}

.normal-reg-input:focus,
.normal-reg-textarea:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.normal-reg-input:focus+.normal-reg-label,
.normal-reg-textarea:focus+.normal-reg-label {
  color: #667eea;
}

.normal-reg-textarea {
  resize: vertical;
  min-height: 100px;
}

.normal-reg-submit-btn {
  width: 100%;
  background: var(--dark-color);
  color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.normal-reg-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.normal-reg-submit-btn:hover::before {
  left: 100%;
}

.normal-reg-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.normal-reg-submit-btn:active {
  transform: translateY(-1px);
}

.normal-reg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.normal-reg-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.normal-reg-floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.normal-reg-floating-circle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.normal-reg-floating-circle:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.normal-reg-floating-circle:nth-child(3) {
  width: 40px;
  height: 40px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(120deg);
  }

  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

.normal-reg-input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0.3;
  }
}

/* normal user dashboard ui */
.normal-u-dash-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
}

.normal-u-dash-success-alert {
  background: linear-gradient(135deg, var(--success-color), #2ecc71);
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
  border-left: 5px solid #27ae60;
  animation: slideInTop 0.6s ease-out;
}

.normal-u-dash-header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out;
}

.normal-u-dash-welcome-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--background-dark);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.normal-u-dash-subtitle {
  color: var(--background-dark);
  font-size: 1.1rem;
  font-weight: 300;
}

.normal-u-dash-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.normal-u-dash-profile-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeInLeft 0.8s ease-out;
}

.normal-u-dash-profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.normal-u-dash-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--background-light);
}

.normal-u-dash-profile-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--background-dark), #4c84ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.normal-u-dash-profile-icon i {
  font-size: 24px;
  color: white;
}

.normal-u-dash-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
}

.normal-u-dash-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.normal-u-dash-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.normal-u-dash-info-label {
  font-weight: 600;
  color: var(--text-muted);
  min-width: 80px;
  font-size: 0.9rem;
}

.normal-u-dash-info-value {
  color: var(--text-dark);
  font-weight: 500;
  margin-left: 10px;
}

.normal-u-dash-quick-actions {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInRight 0.8s ease-out;
}

.normal-u-dash-actions-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--background-light);
}

.normal-u-dash-actions-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--background-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.normal-u-dash-actions-icon i {
  font-size: 24px;
  color: white;
}

.normal-u-dash-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.normal-u-dash-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.normal-u-dash-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.normal-u-dash-btn:hover::before {
  left: 100%;
}

.normal-u-dash-btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #4c84ff);
  color: white;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.normal-u-dash-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
}

.normal-u-dash-btn-secondary {
  background: linear-gradient(135deg, #17a2b8, #20c997);
  color: white;
  box-shadow: 0 8px 25px rgba(23, 162, 184, 0.3);
}

.normal-u-dash-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(23, 162, 184, 0.4);
}

.normal-u-dash-btn i {
  margin-right: 10px;
  font-size: 1.1rem;
}

.normal-u-dash-stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.normal-u-dash-stat-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.normal-u-dash-stat-card:hover {
  transform: translateY(-3px);
}

.normal-u-dash-stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.normal-u-dash-stat-icon i {
  color: white;
  font-size: 20px;
}

.normal-u-dash-stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.normal-u-dash-stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* cart page ui */
.cart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.cart-header {
  background: var(--background-dark);
  color: white;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

.cart-header h2 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cart-dashboard-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 122, 0.3);
  margin-bottom: 2rem;
}

.cart-dashboard-btn:hover {
  background: #c19b6a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 122, 0.4);
}

.cart-alert {
  border: none;
  border-radius: 12px;
  padding: 1.5rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cart-alert-info {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1565c0;
  text-align: center;
  font-size: 1.1rem;
}

.cart-alert-warning {
  background: linear-gradient(135deg, #fff3e0 0%, #ffcc02 100%);
  color: #f57c00;
  text-align: center;
  font-size: 1.1rem;
}

.cart-alert-warning a {
  color: #e65100;
  font-weight: 600;
  text-decoration: none;
}

.cart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.cart-item-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.cart-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cart-item-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cart-item-card:hover .cart-item-image {
  transform: scale(1.05);
}

.cart-item-body {
  padding: 1.5rem;
}

.cart-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.cart-item-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cart-item-title a:hover {
  color: var(--primary-color);
}

.cart-item-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--success-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-actions {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.cart-order-btn {
  background: linear-gradient(135deg, var(--success-color) 0%, #229954 100%);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.cart-order-btn:hover {
  background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.cart-remove-form {
  margin: 0;
}

.cart-remove-btn {
  background: linear-gradient(135deg, var(--danger-color) 0%, #c82333 100%);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.cart-remove-btn:hover {
  background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.cart-multi-order-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem auto 0;
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

.cart-multi-order-btn:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.cart-stats {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cart-stat-item {
  text-align: center;
}

.cart-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.cart-stat-label {
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.cart-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cart-empty-icon {
  font-size: 4rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.my-order-page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--background-light);
  min-height: 100vh;
  padding: 2rem 0;
}

.my-order-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.my-order-header {
  background: var(--dark-color);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.my-order-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.my-order-subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
}

.my-order-empty-state {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.my-order-empty-icon {
  font-size: 4rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.my-order-empty-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.my-order-empty-text {
  color: #666;
  font-size: 1.1rem;
}

.my-order-table-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.my-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.my-order-table-header {
  background: var(--background-dark);
  color: white;
}

.my-order-table th {
  padding: 1.2rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.my-order-table th:first-child {
  border-radius: 15px 0 0 0;
}

.my-order-table th:last-child {
  border-radius: 0 15px 0 0;
}

.my-order-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  color: #333;
  vertical-align: middle;
}

.my-order-table tbody tr {
  transition: all 0.3s ease;
  background: white;
}

.my-order-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.my-order-product-name {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.my-order-quantity {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  min-width: 40px;
  text-align: center;
}

.my-order-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2d3748;
}

.my-order-status {
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: capitalize;
  display: inline-block;
  min-width: 80px;
  text-align: center;
}

.my-order-status.pending {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
}

.my-order-status.processing {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
}

.my-order-status.shipped {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.my-order-status.delivered {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.my-order-status.cancelled {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.my-order-date {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.my-order-table tbody tr {
  animation: fadeInUp 0.6s ease forwards;
}

.my-order-table tbody tr:nth-child(1) {
  animation-delay: 0.1s;
}

.my-order-table tbody tr:nth-child(2) {
  animation-delay: 0.2s;
}

.my-order-table tbody tr:nth-child(3) {
  animation-delay: 0.3s;
}

.my-order-table tbody tr:nth-child(4) {
  animation-delay: 0.4s;
}

.my-order-table tbody tr:nth-child(5) {
  animation-delay: 0.5s;
}

/* add product ui in tradesmen */
.ad-pro-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.ad-pro-page-title {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1976d2 100%);
  color: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
  text-align: center;
}

.ad-pro-page-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-pro-page-title i {
  margin-right: 12px;
  font-size: 1.8rem;
}

.ad-pro-alerts {
  margin-bottom: 30px;
}

.ad-pro-alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ad-pro-alert i {
  margin-right: 12px;
  font-size: 1.2rem;
}

.ad-pro-alert-success {
  background: linear-gradient(135deg, var(--success-color), #2ecc71);
  color: white;
}

.ad-pro-alert-danger {
  background: linear-gradient(135deg, var(--danger-color), #e74c3c);
  color: white;
}

.ad-pro-alert ul {
  list-style: none;
  margin: 0;
}

.ad-pro-alert li {
  margin-bottom: 5px;
}

.ad-pro-form-container {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(13, 110, 253, 0.1);
  margin-bottom: 30px;
}

.ad-pro-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.ad-pro-form-group {
  margin-bottom: 20px;
}

.ad-pro-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.ad-pro-form-label i {
  margin-right: 8px;
  color: var(--primary-color);
  width: 16px;
}

.ad-pro-form-control {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
  font-family: inherit;
}

.ad-pro-form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
  transform: translateY(-2px);
}

.ad-pro-form-control:hover {
  border-color: var(--primary-color);
}

.ad-pro-textarea {
  resize: vertical;
  min-height: 80px;
}

.ad-pro-file-input {
  position: relative;
  display: inline-block;
  width: 100%;
}

.ad-pro-file-input input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.ad-pro-file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 2px dashed var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--background-light);
}

.ad-pro-file-label:hover {
  border-color: var(--primary-color);
  background: rgba(13, 110, 253, 0.05);
}

.ad-pro-file-label i {
  margin-right: 10px;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.ad-pro-image-preview {
  margin-top: 15px;
  text-align: center;
}

.ad-pro-image-preview img {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.ad-pro-image-preview img:hover {
  transform: scale(1.05);
}

.ad-pro-submit-btn {
  background: linear-gradient(135deg, var(--primary-color), #1976d2);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  margin: 20px auto 0;
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

.ad-pro-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
}

.ad-pro-submit-btn i {
  margin-right: 10px;
}

.ad-pro-products-section {
    margin: 2rem 0;
}

.ad-pro-section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.ad-pro-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.ad-pro-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.ad-pro-card:hover {
    transform: translateY(-5px);
}

.ad-pro-card-img {
    width: 100%;
    height: 200px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.ad-pro-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-pro-card-body {
    padding: 1rem;
}

.ad-pro-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 1rem;
}

.product-info-item {
    font-size: 0.9rem;
}

.product-info-label {
    font-weight: bold;
    color: #666;
    display: block;
}

.product-info-value {
    color: #333;
}

.price-badge {
    font-size: 1.1rem;
    font-weight: bold;
    color: #28a745;
    margin: 10px 0;
}

.stock-info {
    margin-bottom: 10px;
}

.stock-label {
    font-weight: bold;
    margin-right: 5px;
}

.stock-status {
    font-weight: bold;
}

.stock-in {
    color: #28a745;
}

.stock-low {
    color: #ffc107;
}

.stock-out {
    color: #dc3545;
}

.food-item-badge {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f0f8e0;
    color: #4CAF50;
    border-radius: 5px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.keywords-container {
    margin-top: 10px;
}

.keywords-label {
    font-weight: bold;
}

.keywords-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
}

.keyword-tag {
    background-color: #eee;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.brand-color-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.ad-pro-additional-images-preview {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.ad-pro-additional-images-preview img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.ad-pro-action-btns {
    display: flex;
    justify-content: start;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.ad-pro-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.ad-pro-btn i {
    font-size: 0.85rem;
}

.ad-pro-btn-edit {
    background-color: #007bff;
    color: white;
}

.ad-pro-btn-edit:hover {
    background-color: #0056b3;
}

.ad-pro-btn-delete {
    background-color: #dc3545;
    color: white;
}

.ad-pro-btn-delete:hover {
    background-color: #a71d2a;
}


/* sell product page ui  */
.sell-product-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.sell-product-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sell-product-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  position: relative;
}

.sell-product-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.sell-product-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.sell-filter-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sell-filter-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sell-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.sell-filter-group {
  position: relative;
}

.sell-filter-label {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.sell-filter-label i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  width: 16px;
}

.sell-filter-input,
.sell-filter-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
  color: var(--text-dark);
}

.sell-filter-input:focus,
.sell-filter-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
  transform: translateY(-1px);
}

.sell-filter-input::placeholder {
  color: var(--text-muted);
}

.sell-filter-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sell-btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.95rem;
  min-width: 140px;
  justify-content: center;
}

.sell-btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #0b5ed7);
  color: white;
}

.sell-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
  color: white;
  text-decoration: none;
}

.sell-btn-secondary {
  background: white;
  color: var(--text-dark);
  border: 2px solid #e9ecef;
}

.sell-btn-secondary:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
  color: var(--text-dark);
  text-decoration: none;
}

.sell-alert {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
}

.sell-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.sell-product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sell-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sell-product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sell-product-card:hover .sell-product-image {
  transform: scale(1.05);
}

.sell-product-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sell-product-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.sell-product-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex: 1;
}

.sell-product-details {
  list-style: none;
  margin-bottom: 1.5rem;
}

.sell-product-details li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.sell-product-details i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  width: 16px;
  font-size: 0.85rem;
}

.sell-product-details strong {
  color: var(--text-dark);
  margin-right: 0.5rem;
}

.sell-product-footer {
  border-top: 1px solid #f0f0f0;
  padding-top: 1rem;
  margin-top: auto;
}

.sell-product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--success-color);
  margin-bottom: 0.5rem;
}

.sell-product-stock {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.sell-add-to-cart {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--success-color), #219a52);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.sell-add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
  color: white;
  text-decoration: none;
}

.sell-no-products {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  grid-column: 1 / -1;
}

.sell-no-products i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* normal user login page ui */
.login-normal-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  height: 600px;

}

.login-normal-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--dark-color);
  border-radius: 20px 20px 0 0;
}

.login-normal-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-normal-title {
  color: #333;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.login-normal-subtitle {
  color: #666;
  font-size: 14px;
  font-weight: 400;
}

.login-normal-alert {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-normal-form-group {
  margin-bottom: 20px;
  position: relative;
}

.login-normal-label {
  display: block;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  padding-left: 4px;
}

.login-normal-input-wrapper {
  position: relative;
}

.login-normal-input {
  width: 100%;
  padding: 14px 16px 14px 45px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
  color: #333;
}

.login-normal-input:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-1px);
}

.login-normal-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  transition: color 0.3s ease;
}

.login-normal-input:focus+.login-normal-input-icon {
  color: #667eea;
}

.login-normal-btn {
  width: 100%;
  padding: 14px;
  background: var(--dark-color);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.login-normal-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.login-normal-btn:hover::before {
  left: 100%;
}

.login-normal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.login-normal-btn:active {
  transform: translateY(0);
}

.login-normal-register-link {
  text-align: center;
  color: #666;
  font-size: 14px;
}

.login-normal-register-link a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-normal-register-link a:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* 
product display in single page  */

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.product-detail-card {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.5);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
}

.product-detail-card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Enhanced Image Section */
.product-detail-images {
  flex: 1;
  min-width: 350px;
  position: relative;
}

.image-container {
  position: relative;
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.product-detail-images .main-image {
  width: 100%;
  max-width: 450px;
  height: 400px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: zoom-in;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-detail-images .main-image:hover {
  transform: scale(1.05);
}

.image-gallery {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.image-gallery .gallery-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.image-gallery .gallery-thumb:hover,
.image-gallery .gallery-thumb.active {
  border-color: #3b82f6;
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Enhanced Product Info Section */
.product-detail-info {
  flex: 1.2;
  min-width: 350px;
}

.product-detail-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  line-height: 1.3;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
}

.product-detail-info .price {
  font-size: 2rem;
  color: #dc2626;
  font-weight: 800;
  margin: 0;
}

.price-badge {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.stock-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  padding: 12px 16px;
  background: #f0fdf4;
  border-radius: 10px;
  border-left: 4px solid #22c55e;
}

.stock-info i {
  color: #22c55e;
}

.meta {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid #e2e8f0;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 8px 0;
}

.meta-item:last-child {
  margin-bottom: 0;
}

.meta-item i {
  width: 20px;
  color: #6366f1;
}

.meta-item strong {
  color: #374151;
  min-width: 80px;
}

.meta p {
  margin: 0;
}

.tags {
  margin-bottom: 30px;
}

.tags p {
  margin-bottom: 10px;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tags .tag {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  color: #3730a3;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  margin: 4px 8px 4px 0;
  transition: all 0.3s ease;
  border: 1px solid #c7d2fe;
}

.tags .tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

/* Enhanced Product Details Section */
.product-details-section {
  margin-top: 50px;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.product-details-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-details-section h3 i {
  color: #6366f1;
}

.product-details-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 30px;
}

.specs-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.specs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #6366f1;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.specs-list li:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.specs-list li strong {
  color: #374151;
  min-width: 120px;
}

.color-circle {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  vertical-align: middle;
  margin: 0 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-food {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #065f46;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid #bbf7d0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }

  .product-detail-card {
    gap: 30px;
    padding: 25px;
  }

  .product-detail-images,
  .product-detail-info {
    min-width: unset;
  }

  .product-detail-info h2 {
    font-size: 1.8rem;
  }

  .specs-list {
    grid-template-columns: 1fr;
  }

  .meta-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .price-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Additional hover effects and animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-detail-card {
  animation: fadeInUp 0.6s ease-out;
}

.product-details-section {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Loading states */
.image-loading {
  position: relative;
}

.image-loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Additional utility classes */
.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-hover {
  transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ad-pro-container {
    padding: 15px;
  }

  .ad-pro-page-title h2 {
    font-size: 1.4rem;
  }

  .ad-pro-form-container {
    padding: 20px;
  }

  .ad-pro-form-grid {
    grid-template-columns: 1fr;
  }

  .ad-pro-products-section {
    padding: 20px;
  }

  .ad-pro-table th,
  .ad-pro-table td {
    padding: 8px 6px;
    font-size: 0.85rem;
  }

  .ad-pro-action-btns {
    flex-direction: column;
  }

  .ad-pro-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .search-home-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .search-home-form-group,
  .search-home-btn {
    width: 100%;
  }
}


.nuhp-home-main-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.nuhp-home-business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.nuhp-home-business-card {
  background: var(--light-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.nuhp-home-business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.nuhp-home-business-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color);
}

.nuhp-home-image-section {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--background-light);
}

.nuhp-home-business-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nuhp-home-business-card:hover .nuhp-home-business-image {
  transform: scale(1.05);
}

.nuhp-home-image-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: var(--light-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nuhp-home-placeholder-section {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--background-light) 0%, var(--light-color) 100%);
  color: var(--text-muted);
}

.nuhp-home-placeholder-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.nuhp-home-placeholder-category {
  background: var(--secondary-color);
  color: var(--light-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.nuhp-home-card-content {
  padding: 25px;
}

.nuhp-home-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.nuhp-home-business-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  flex: 1;
  margin-right: 15px;
}


.nuhp-home-business-caption {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.5;
}

.nuhp-home-details-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.nuhp-home-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.nuhp-home-detail-item:hover {
  background: var(--background-light);
}
.nuhp-home-business-image {
    cursor: zoom-in;
    object-fit: contain;
}

.nuhp-home-detail-icon {
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.nuhp-home-detail-content {
  flex: 1;
  min-width: 0;
}

.nuhp-home-detail-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.nuhp-home-detail-value {
  display: block;
  color: var(--text-dark);
  font-weight: 500;
  word-wrap: break-word;
}

.nuhp-home-phone-clickable {
  cursor: pointer;
  transition: color 0.2s ease;
}

.nuhp-home-phone-clickable:hover {
  color: var(--primary-color);
}

.nuhp-home-description-section {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.nuhp-home-description-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.nuhp-home-description-text {
  color: var(--text-muted);
  line-height: 1.6;
}

.nuhp-home-nearby-section {
  margin-top: 50px;
}

.nuhp-home-nearby-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.nuhp-home-nearby-content {
  color: var(--text-muted);
  text-align: center;
  font-size: 1.1rem;
}

.nuhp-home-copy-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--success-color);
  color: var(--light-color);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1000;
  font-weight: 600;
}

.nuhp-home-copy-notification.show {
  transform: translateX(0);
}

.nuhp-home-pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.nuhp-home-pagination-wrapper .pagination {
  display: flex;
  list-style: none;
  gap: 8px;
  padding: 0;
}

.nuhp-home-pagination-wrapper .page-item {
  display: inline;
}

.nuhp-home-pagination-wrapper .page-link {
  display: block;
  padding: 8px 12px;
  background-color: var(--light-color);
  ;
  color: var(--danger-color);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--light-color);
  ;
}

.nuhp-home-pagination-wrapper .page-item.active .page-link {
  background-color: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color)
}

.nuhp-home-pagination-wrapper .page-link:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color);
}

.nuhp-home-search-form {
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.nuhp-category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 40px;
    justify-content: center;
}


.nuhp-category-chip {
    padding: 10px 18px;
    background-color: var(--background-light);
    color: var(--text-dark);
    border-radius: 30px;
    border: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nuhp-category-chip:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.nuhp-category-chip.active {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}


/* normal user view blogs page */
.blog-container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.blog-header {
  font-size: 28px;
  font-weight: 600;
  color: #343a40;
}

.btn-back {
  background-color: #f1f1f1;
  color: #333;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  transition: background-color 0.3s ease;
}

.btn-back:hover {
  background-color: #e0e0e0;
  color: #000;
}

.blog-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.card-text {
  font-size: 15px;
  color: #555;
}

.view-more-link {
  display: inline-block;
  color: #007bff;
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
  transition: color 0.2s ease;
}

.view-more-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.tag-badge {
  background-color: #f0f0f0;
  color: #333;
  padding: 5px 10px;
  margin: 4px 4px 0 0;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
}

/* contact us page */

.contact-us-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-us-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.contact-us-col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.contact-us-col-lg-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding: 0 15px;
}

.contact-us-hero-section {

  color: var(--dark-color);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-us-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.contact-us-hero-content {
  position: relative;
  z-index: 2;
}

.contact-us-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-us-hero-description {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-us-services-section {
  padding: 80px 0;
  background: var(--light-color);
}

.contact-us-service-card {
  background: var(--light-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  margin-bottom: 30px;
}

.contact-us-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-us-service-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 10px;
  background: var(--background-light);
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary-color);
}

.contact-us-service-item:hover {
  background: var(--dark-color);
  color: var(--light-color);
  transform: translateX(10px);
}

.contact-us-service-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--secondary-color);
  width: 30px;
  text-align: center;
}

.contact-us-service-item:hover i {
  color: var(--light-color);
}

.contact-us-contact-card {
  background: var(--light-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px var(--shadow);
  border: 1px solid var(--border-color);
}

.contact-us-contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--background-light);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-us-contact-info-item:hover {
  background: var(--dark-color);
  color: var(--light-color);
  transform: translateX(5px);
}

.contact-us-contact-info-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-right: 15px;
  margin-top: 5px;
  width: 30px;
}

.contact-us-contact-info-item:hover i {
  color: var(--light-color);
}

.contact-us-form-control {
  width: 100%;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--background-light);
  font-family: inherit;
}

.contact-us-form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  background: var(--light-color);
}

.contact-us-form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: block;
}

.contact-us-form-group {
  margin-bottom: 1.5rem;
}

.contact-us-btn-primary {
  background: var(--secondary-color);
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
  color: var(--light-color);
  cursor: pointer;
  width: 100%;
}

.contact-us-btn-primary:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.contact-us-btn-outline-light {
  border: 2px solid var(--light-color);
  color: var(--light-color);
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: transparent;
  text-decoration: none;
  display: inline-block;
}

.contact-us-btn-outline-light:hover {
  background: var(--light-color);
  color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.contact-us-cta-section {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 60px 0;
  text-align: center;
}

.contact-us-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-dark);
  position: relative;
  text-align: center;
}

.contact-us-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.contact-us-alert-success {
  background: var(--success-color);
  border: none;
  color: var(--light-color);
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.contact-us-floating-animation {
  animation: contact-us-float 6s ease-in-out infinite;
}

@keyframes contact-us-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.contact-us-text-center {
  text-align: center;
}

.contact-us-text-muted {
  color: var(--text-muted);
}

.contact-us-mb-4 {
  margin-bottom: 1.5rem;
}

.contact-us-me-2 {
  margin-right: 0.5rem;
}

.contact-us-me-3 {
  margin-right: 1rem;
}

.contact-us-justify-content-center {
  justify-content: center;
}

.contact-us-btn-lg {
  padding: 18px 50px;
  font-size: 1.2rem;
}

/* chatboat ui  */

.chat-boat-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chat-boat-toggle {
  width: 60px;
  height: 60px;
  background: var(--dark-color);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(232, 13, 13, 3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.chat-boat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 3);
}

.chat-boat-toggle:active {
  transform: scale(0.95);
}

.chat-boat-icon {
  width: 24px;
  height: 24px;
  fill: var(--light-color);
  transition: transform 0.3s ease;
}

.chat-boat-toggle.active .chat-boat-icon {
  transform: rotate(180deg);
}

.chat-boat-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: var(--danger-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--light-color);
  font-weight: bold;
  animation: chat-boat-pulse 2s infinite;
}

@keyframes chat-boat-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.chat-boat-window {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 350px;
  height: 450px;
  background: var(--light-color);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(20px) scale(0.8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  border: 1px solid var(--light-color);
}

.chat-boat-window.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.chat-boat-header {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 20px;
  position: relative;
}

.chat-boat-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-boat-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.chat-boat-header-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.chat-boat-header-info p {
  margin: 2px 0 0 0;
  font-size: 12px;
  opacity: 0.8;
}

.chat-boat-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--light-color);
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.chat-boat-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.chat-boat-messages {
  height: 300px;
  overflow-y: auto;
  padding: 20px;
  background: var(--light-color);
}

.chat-boat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-boat-messages::-webkit-scrollbar-track {
  background: var(--light-color);
  border-radius: 4px;
}

.chat-boat-messages::-webkit-scrollbar-thumb {
  background: var(--light-color);
  border-radius: 4px;
}

.chat-boat-message {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.chat-boat-message.user {
  flex-direction: row-reverse;
}

.chat-boat-message-content {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
}

.chat-boat-message.bot .chat-boat-message-content {
  background: var(--light-color);
  color: var(--text-dark);
  border-bottom-left-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chat-boat-message.user .chat-boat-message-content {
  background: var(--dark-color);
  color: var(--light-color);
  border-bottom-right-radius: 6px;
}

.chat-boat-message-time {
  font-size: 11px;
  color: var(--light-color);
  margin-top: 4px;
}

.chat-boat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: var(--light-color);
  border-radius: 18px;
  border-bottom-left-radius: 6px;
  max-width: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chat-boat-typing-dot {
  width: 6px;
  height: 6px;
  background: var(--light-color);
  border-radius: 50%;
  animation: chat-boat-typing-animation 1.4s infinite;
}

.chat-boat-typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-boat-typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes chat-boat-typing-animation {

  0%,
  60%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-10px);
  }
}

.chat-boat-input-container {
  padding: 20px;
  background: var(--light-color);
  border-top: 1px solid var(--background-light);
}

.chat-boat-input-wrapper {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.chat-boat-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--light-color);
  border-radius: 20px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  resize: none;
  max-height: 80px;
  min-height: 44px;
  font-family: inherit;
}

.chat-boat-input:focus {
  border-color: var(--dark-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.chat-boat-send {
  width: 44px;
  height: 44px;
  background: var(--dark-color);
  border: none;
  border-radius: 50%;
  color: var(--light-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.chat-boat-send:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.chat-boat-send:disabled {
  background: var(--background-light);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.chat-boat-quick-replies {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.chat-boat-quick-reply {
  padding: 8px 12px;
  background: var(--light-color);
  border: 1px solid var(--background-light);
  border-radius: 16px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.chat-boat-quick-reply:hover {
  background: var(--dark-color);
  color: var(--light-color);
  border-color: var(--secondary-color);
  transform: translateY(-1px);
}

/* tradesmen order confirmation panel */
.tradesmen-order-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.tradesmen-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: var(--background-dark);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.tradesmen-order-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--background-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.tradesmen-order-info-btn {
  background: var(--info-color);
  color: white;
  border: none;
  border-radius: 50%; 
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: var(--shadow);
}

.tradesmen-order-info-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.tradesmen-order-empty {
  background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
  border: 2px solid var(--info-color);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  color: var(--info-color);
  font-size: 18px;
  font-weight: 500;
}

.tradesmen-order-empty i {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.tradesmen-order-table-wrapper {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.tradesmen-order-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1200px;
}

.tradesmen-order-table thead {
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  color: white;
}

.tradesmen-order-table th {
  padding: 18px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: none;
}

.tradesmen-order-table td {
  padding: 18px 15px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
}

.tradesmen-order-table tbody tr {
  transition: all 0.3s ease;
}

.tradesmen-order-table tbody tr:hover {
  background-color: #f8f9ff;
  transform: translateY(-1px);
}

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

.tradesmen-order-table tbody tr:nth-child(even):hover {
  background-color: #f0f0ff;
}

.tradesmen-order-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.tradesmen-order-badge-warning {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  color: #856404;
  border: 1px solid #ffeaa7;
}

.tradesmen-order-badge-primary {
  background: linear-gradient(135deg, #cce5ff, #b3d9ff);
  color: #004085;
  border: 1px solid #b3d9ff;
}

.tradesmen-order-badge-danger {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.tradesmen-order-badge-info {
  background: linear-gradient(135deg, #d1ecf1, #bee5eb);
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.tradesmen-order-badge-secondary {
  background: linear-gradient(135deg, #e2e3e5, #d6d8db);
  color: #383d41;
  border: 1px solid #d6d8db;
}

.tradesmen-order-badge-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  color: #155724;
  border: 1px solid #c3e6cb;
}

.tradesmen-order-customer {
  font-weight: 600;
  color: var(--text-dark);
}

.tradesmen-order-mobile {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.tradesmen-order-price {
  font-weight: 700;
  font-size: 16px;
  color: var(--success-color);
}

.tradesmen-order-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.tradesmen-order-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tradesmen-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tradesmen-order-btn-success {
  background: linear-gradient(135deg, var(--success-color), #229954);
  color: white;
}

.tradesmen-order-btn-danger {
  background: linear-gradient(135deg, var(--danger-color), #c82333);
  color: white;
}

.tradesmen-order-btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  color: white;
}

.tradesmen-order-form {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 10px;
  border: 2px solid #e9ecef;
  animation: slideDown 0.3s ease;
}

.tradesmen-order-loading {
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
}

.tradesmen-order-loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tradesmen-order-input {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.tradesmen-order-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.tradesmen-order-textarea {
  resize: vertical;
  min-height: 80px;
}

.tradesmen-order-select {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 13px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tradesmen-order-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.tradesmen-order-date {
  font-size: 14px;
  color: var(--text-muted);
}

.tradesmen-order-address {
  max-width: 200px;
  word-wrap: break-word;
  line-height: 1.4;
}

.tradesmen-order-quantity {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-color);
  text-align: center;
}

.tradesmen-order-product {
  font-weight: 600;
  color: var(--text-dark);
}




/* Animations */
@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.3;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }

  to {
    opacity: 1;
    max-height: 500px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* responsive */
@media (max-width: 1024px) {
  .header-top-contact {
    padding: 10px 20px;
    gap: 20px;
    font-size: 0.8rem;
  }

  .header-main {
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
  }

  .header-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }



  .footer-columns {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .footer-column {
    width: 80%;
    text-align: center;
  }

  /* normal user home page ui */
  .nuhp-home-main-container {
    padding: 15px;
  }

  .nuhp-home-business-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nuhp-home-card-content {
    padding: 20px;
  }

  .nuhp-home-business-name {
    font-size: 1.2rem;
  }

  .nuhp-home-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nuhp-home-nearby-title {
    font-size: 1.5rem;
  }

  .nuhp-home-copy-notification {
    right: 15px;
    left: 15px;
    transform: translateY(-100px);
  }

  .nuhp-home-copy-notification.show {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .trdm-cont {
    width: 95%;
    height: auto;
    margin: 20px auto;
    box-shadow: none;
    border-radius: 10px;
    overflow: visible;
  }

  .trdm-form,
  .trdm-sub-cont {
    position: relative;
    width: 100%;
    height: auto;
    padding: 30px 20px;
    transform: none !important;
    transition: none;
  }

  .trdm-img {
    display: none;
  }

  .trdm-img__text {
    display: none;
  }

  .trdm-img__btn {
    display: none;
  }

  .trdm-tip {
    font-size: 18px;
    margin: 20px auto 30px;
  }

  label,
  input,
  button {
    width: 100%;
  }

  .trdm-submit {
    width: 100%;
  }

  .trdm-mobile-toggle {
    display: block;
  }

  .trdm-img {
    display: none !important;
  }

  .trdm-sub-cont {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
    transform: none !important;
    transition: none;
  }

  .trdm-sign-in,
  .trdm-sign-up {
    display: none;
  }

  .trdm-sign-in,
  .trdm-sign-up {
    display: none;
  }

  .trdm-cont:not(.trdm-s--signup) .trdm-sign-in {
    display: block;
  }

  .trdm-cont.trdm-s--signup .trdm-sign-up {
    display: block;
  }

  .trdm-cont.trdm-s--signup .trdm-sign-in {
    display: none;
  }

  .trdm-cont:not(.trdm-s--signup) .trdm-sign-up {
    display: none;
  }

  .trdm-img {
    display: none !important;
  }

  .trdm-img__text {
    display: none !important;
  }

  .trdm-img__btn {
    display: none !important;
  }

  /* Logo text fix */
  .header-logo-text {
    font-size: 1.2rem;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    max-width: 100%;
  }

  .header-logo-text span {
    display: inline;
  }

  /* toggler responsive */
  .trdm-panel-toggle-v2 {
    display: block;
    margin-left: 250px;
  }

  .trdm-panel-card-v2 {
    display: none;
  }

  .trdm-panel-sidebar-v2 {
    left: -260px;
  }

  .trdm-panel-sidebar-v2.active {
    left: 0;
  }

  .trdm-panel-main-v2 {
    margin-left: 0;
  }

  /* business list  */
  .business-listing-container {
    padding: 1rem 0;
  }

  .business-content {
    padding: 1rem;
  }

  .business-actions {
    flex-direction: column;
  }

  .btn-action {
    flex: none;
  }

  .delete-form {
    flex: none;
  }

  .business-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .business-name {
    margin-right: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-body {
    padding: 20px;
  }

  .form-header {
    padding: 20px;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  /* add blogs page */
  .adbp-container {
    padding: 0.8rem;
  }

  .adbp-header {
    padding: 1.2rem;
  }

  .adbp-header h2 {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 8px;
  }

  .adbp-form-grid {
    grid-template-columns: 1fr;
  }

  .adbp-blogs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .adbp-blog-actions {
    flex-direction: column;
  }

  .adbp-btn {
    width: 100%;
    justify-content: center;
  }

  .adbp-modal-close {
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
  }




  /* contact us page ui */
  .contact-us-col-lg-6,
  .contact-us-col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-us-hero-title {
    font-size: 2.5rem;
  }

  .contact-us-hero-description {
    font-size: 1.1rem;
  }

  .contact-us-service-card,
  .contact-us-contact-card {
    padding: 1.5rem;
  }

  .contact-us-section-title {
    font-size: 2rem;
  }

  .contact-us-container {
    padding: 0 15px;
  }

  /* add product page ui  */
  .ad-pro-container {
    padding: 15px;
  }

  .ad-pro-page-title h2 {
    font-size: 1.4rem;
  }

  .ad-pro-form-container {
    padding: 20px;
  }

  .ad-pro-form-grid {
    grid-template-columns: 1fr;
  }

  .ad-pro-products-section {
    padding: 20px;
  }

  .ad-pro-table th,
  .ad-pro-table td {
    padding: 8px 6px;
    font-size: 0.85rem;
  }

  .ad-pro-action-btns {
    flex-direction: column;
  }

  .ad-pro-btn {
    width: 100%;
    justify-content: center;
  }

  .sell-product-container {
    padding: 1rem;
  }

  /* sell product ui  */

  .sell-filter-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sell-filter-buttons {
    flex-direction: column;
  }

  .sell-products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sell-product-title {
    font-size: 2rem;
  }

  .normal-reg-form-row {
    grid-template-columns: 1fr;
  }

  .normal-reg-title {
    font-size: 1.5rem;
  }

  .normal-reg-slogan {
    font-size: 1rem;
  }

  .normal-reg-form {
    padding: 30px 20px;
  }

  /* normal user dashboard */
  .normal-u-dash-container {
    padding: 15px;
  }

  .normal-u-dash-main-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .normal-u-dash-welcome-title {
    font-size: 2rem;
  }

  .normal-u-dash-profile-card,
  .normal-u-dash-quick-actions {
    padding: 20px;
  }

  .normal-u-dash-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .cart-container {
    padding: 1rem;
  }

  .cart-header h2 {
    font-size: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .cart-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cart-item-actions {
    flex-direction: column;
  }

  .cart-stats {
    flex-direction: column;
    text-align: center;
  }

  /* my order page ui */
  .my-order-page {
    padding: 1rem 0;
  }

  .my-order-title {
    font-size: 2rem;
  }

  .my-order-table-container {
    padding: 1rem;
    border-radius: 15px;
    overflow-x: auto;
  }

  .my-order-table {
    min-width: 600px;
  }

  .my-order-table th,
  .my-order-table td {
    padding: 0.8rem 0.5rem;
    font-size: 0.85rem;
  }

  .my-order-header {
    padding: 1.5rem;
    border-radius: 15px;
  }

  /* tradesmen order confirm page */
  .tradesmen-order-container {
    padding: 10px;
  }

  .tradesmen-order-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .tradesmen-order-title {
    font-size: 24px;
  }

  .tradesmen-order-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {

  /* headar and index tradesmen page */
  .header-top-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 15px;
  }

  .header-main {
    align-items: flex-start;
    padding: 10px 15px;
  }

  .header-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-column {
    width: 100%;
    padding: 0 10px;
  }

  .trdm-cont {
    padding: 0 10px;
  }

  .trdm-form,
  .trdm-sub-cont {
    padding: 20px 10px;
  }

  h2 {
    font-size: 20px;
  }

  label span {
    font-size: 11px;
  }

  input {
    font-size: 14px;
  }

  /* add blogs page  */
  .adbp-header h2 {
    font-size: 1.3rem;
  }

  .adbp-form-container {
    padding: 1rem;
  }

  .adbp-blog-body {
    padding: 0.8rem;
  }

  .adbp-edit-form {
    padding: 1rem;
    margin: 0.5rem;
  }

  /* normal user home page */
  .nuhp-home-business-grid {
    grid-template-columns: 1fr;
  }

  .nuhp-home-image-section,
  .nuhp-home-placeholder-section {
    height: 160px;
  }

  .nuhp-home-card-content {
    padding: 15px;
  }

  .nuhp-home-business-name {
    font-size: 1.1rem;
  }

  .nuhp-home-detail-item {
    padding: 8px;
  }

  /* add product page ui */
  .ad-pro-page-title {
    padding: 15px;
  }

  .ad-pro-page-title h2 {
    font-size: 1.2rem;
  }

  .ad-pro-form-container {
    padding: 15px;
  }

  .ad-pro-table-container {
    font-size: 0.8rem;
  }

  /* sell product ui */
  .sell-filter-section {
    padding: 1.5rem;
  }

  .sell-product-content {
    padding: 1rem;
  }

  /* normal user login page ui  */
  .login-normal-container {
    padding: 30px 25px;
    margin: 10px;
  }

  .login-normal-title {
    font-size: 24px;
  }
}

/* Loading Animation */
.login-normal-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.login-normal-btn.loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}