/* =====================
       CSS VARIABLES
    ===================== */
:root {
  --bg-primary: #0f172a;
  --bg-sidebar: #2d323e;
  --bg-main: #292734;
  --bg-card: #3e3c48;
  --bg-topbar: rgba(126, 203, 211, 0.1);
  --bg-input: rgba(255, 255, 255, 0.1);
  --accent: #547984;
  --accent-dark: #14b8a6;
  --text-primary: #f1f5f9;
  --text-muted: #94a3b8;
  --text-teal: #7ecbd3;
  --border-color: #334155;
  --sidebar-hover: #547984;
}

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

html,
body {
  height: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

/* =====================
       LAYOUT WRAPPER
    ===================== */
.dashboard-wrapper {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* =====================
       SIDEBAR
    ===================== */
.sidebar {
  width: 280px;
  background-color: var(--bg-sidebar);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 20px 15px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  position: relative;
}

.sidebar.collapsed {
  width: 85px;
  min-width: 85px !important;
  padding: 20px 10px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  min-height: 60px;
}

.sidebar-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-teal);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sidebar.collapsed .sidebar-toggle {
  right: 50%;
  transform: translate(50%, -50%);
}

.sidebar-toggle:hover {
  background: var(--accent);
  color: #fff;
}

.sidebar-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}

.sidebar.collapsed .sidebar-logo {
  opacity: 0;
  visibility: hidden;
  width: 0;
}

.sidebar-logo img {
  height: 60px;
  width: auto;
  max-width: 100%;
}

/* Nav Links */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: var(--text-muted);
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.sidebar.collapsed .sidebar-nav .nav-link {
  justify-content: center;
  padding: 12px 0;
  gap: 0;
}

.sidebar-nav .nav-link span {
  transition: opacity 0.3s ease;
}

.sidebar.collapsed .sidebar-nav .nav-link span {
  display: none;
}

.sidebar-nav .nav-link i {
  font-size: 20px;
  flex-shrink: 0;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
  background-color: var(--sidebar-hover);
  color: #fff;
}

.sidebar-divider {
  height: 1px;
  background-color: rgba(226, 232, 240, 0.1);
  margin: 20px 0;
}

.sidebar-logout {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: var(--text-muted);
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  white-space: nowrap;
}

.sidebar.collapsed .sidebar-logout {
  justify-content: center;
  padding: 12px 0;
  gap: 0;
}

.sidebar.collapsed .sidebar-logout span {
  display: none;
}

.sidebar-logout:hover {
  background-color: #ef4444;
  color: #fff;
}

/* =====================
       MAIN CONTENT
    ===================== */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--bg-main);
}

/* =====================
       TOP BAR
    ===================== */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 14px 16px;
  padding: 10px 18px;
  background-color: var(--bg-topbar);
  border: 1px solid transparent;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Search */
.search-wrapper {
  position: relative;
  width: 340px;
}

.search-icon-left {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-teal);
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
}

.search-input {
  width: 100%;
  padding: 13px 38px 13px 38px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  color: var(--text-teal);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.search-input::placeholder {
  color: var(--text-teal);
}

.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(20, 184, 166, 0.3);
}

.search-filter-icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-teal);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.25s ease;
  z-index: 2;
}

.search-filter-icon:hover {
  color: var(--accent);
}

/* Top bar right */
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-circle-btn {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.icon-circle-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  border: 2px solid #fff;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

/* =====================
       SCROLLABLE CONTENT
    ===================== */
.content-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 28px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.content-scroll::-webkit-scrollbar {
  display: none;
}

/* Horizontal Scroll Utilities */
.horizontal-scroll-container {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  padding-bottom: 10px;
  cursor: grab;
}

.horizontal-scroll-container::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.horizontal-scroll-container:active {
  cursor: grabbing;
}

.horizontal-scroll-content {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 5px;
}

/* =====================
       SECTION HEADER
    ===================== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.see-all-link {
  color: #7ECBD3;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.25s ease;
}

.see-all-link:hover {
  color: var(--accent);
}

/* =====================
       CARDS
    ===================== */
.restaurant-card,
.event-card {
  background-color: var(--bg-card);
  border-radius: 30px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
  border: none;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.restaurant-card:hover,
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.restaurant-card,
.event-card {
  width: 100%;
}

/* ─── Card Image Container ─── */
.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.18);
  font-size: 40px;
  flex-shrink: 0;
}

/* Actual <img> inside card: cover + no overflow */
.card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 30px;
}

/* The placeholder icon sits behind the image */
.card-img-wrap .placeholder-icon {
  position: relative;
  z-index: 0;
}

/* Badges / overlays must be above image */
.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  border-radius: 10px;
}

.card-external-link {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background-color: rgba(132, 225, 239, 0.1);
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  color: #7ecbd3;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.card-external-link:hover {
  background-color: #7ecbd3;
  color: #fff;
}

.event-date-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: linear-gradient(135deg, #439dfe, #7ecbd3);
  color: #fff;
  padding: 8px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.event-date-day {
  display: block;
  font-size: 26px;
  font-weight: 700;
}

.event-date-month {
  display: block;
  font-size: 13px;
}

/* Card body */
.card-body-returant {
  padding: 15px 0 0;
}

.card-body-custom {
  display: flex;
  justify-content: space-between;
  padding: 15px 0 0;
  align-items: center;
}

.restaurant-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
  gap: 8px;
}

.event-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  gap: 8px;
}

.restaurant-rating {
  border: 1px solid transparent;
  padding: 3px;
  background-color: #555362;
  color: #fff;
  font-size: 13px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.restaurant-rating .star {
  color: #e29107;
}

.restaurant-location,
.event-location {
  font-size: 12px;
  color: #d1d6dd;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}

.restaurant-location i {
  color: #7ecbd3;
}

.restaurant-cuisine {
  font-size: 12px;
  color: #d1d6dd;
  margin-bottom: 5px;
}

.event-price {
  color: #7ecbd3;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
  align-self: flex-end;
  margin-bottom: 5px;
}

/* =====================
       SECTION SPACING
    ===================== */
.restaurants-section {
  margin-bottom: 40px;
}

.events-section {
  margin-bottom: 40px;
}

/* =====================
       RESPONSIVE TWEAKS
    ===================== */
@media (max-width: 992px) {
  .sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    bottom: 0;
    width: 280px;
    z-index: 2000;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .sidebar.mobile-show {
    left: 0;
  }

  .sidebar-toggle {
    display: none;
  }

  .dashboard-wrapper {
    flex-direction: column;
  }

  .main-content {
    width: 100%;
  }

  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
  }

  .sidebar-overlay.active {
    display: block;
  }

  .mobile-toggle {
    display: flex !important;
  }
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-teal);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .top-bar {
    padding: 12px;
    margin: 10px;
    flex-wrap: nowrap;
  }

  .search-wrapper {
    width: auto;
    flex: 1;
    order: 0;
  }

  .mobile-toggle {
    order: 0;
  }

  .top-bar-right {
    gap: 10px;
    order: 0;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .card-img-wrap {
    height: 150px;
  }

  .section-title {
    font-size: 16px;
  }
}

/* ====================================== SIGN IN PAGE ======================================== */
.auth-wrapper {
  min-height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0d0d2a 100%);
  background-image: url("../Images/signin-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

.auth-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 26, 0.6);
  z-index: 1;
}

.auth-modal {
  background: #2b2a2d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 20px;
  width: 100%;
  color: #fefefe4d;
  max-width: 500px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(79, 70, 229, 0.1);
  position: relative;
  z-index: 2;
}

.auth-logo-container {
  text-align: center;
  margin-bottom: 0;
}

.auth-logo-container img {
  height: 100px;
  width: auto;
}

.success-logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.success-logo-container img {
  height: 160px;
  width: auto;
}

.modal-title {
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.modal-subtitle {
  text-align: center;
  color: #ffffffcc;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
}

@keyframes pulse {

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

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

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

.form-label-custom {
  color: #fefefe;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.form-control-custom {
  background: #2b2a2d;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 10px 16px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-control-custom:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(129, 140, 248, 0.5);
  box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.15);
  outline: none;
  color: #ffffff;
}

.password-wrapper {
  position: relative;
}

.password-wrapper .form-control-custom {
  padding-right: 50px;
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: rgba(255, 255, 255, 0.8);
}

.password-toggle svg {
  width: 20px;
  height: 20px;
}

.forgot-link {
  text-align: right;
  margin-top: 8px;
  margin-bottom: 24px;
}

.forgot-link a {
  color: #7ecbd3;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: underline;
}

.forgot-link a:hover {
  color: #c084fc;
  text-decoration: underline;
}

.btn-login {
  width: 100%;
  background: linear-gradient(to right, #4a6a7a, #5f7d8c);
  border: 1px solid #7ecbd3;
  border-radius: 12px;
  padding: 12px 24px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-login::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 ease;
}

.btn-login:hover {
  transform: translateY(-2px);
}

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

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

.btn-goback {
  width: 100%;
  color: #7ecbd3;
  font-size: 24px;
  background-color: transparent;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-goback i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.btn-goback:hover {
  transform: translateX(-5px);
}

.divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.divider-line {
  flex: 1;
  height: 0.2px;
  background-color: #494949;
}

.divider-text {
  color: #fcffff;
  font-size: 14px;
  font-weight: 500;
  padding: 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.register-footer {
  text-align: center;
  color: #fefefe;
  font-size: 14px;
}

.register-footer-skip {
  text-align: center;
  color: #fefefe;
  font-size: 14px;
  margin-top: 20px;
}

.register-footer a {
  color: #7ecbd3;
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
  transition: color 0.2s ease;
  text-decoration: underline;
}

.register-footer a:hover {
  color: #c084fc;
  text-decoration: underline;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

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

/* //OTP and Upload Image Section  */
.otp-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.otp-box {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  border-radius: 8px;
  border: 2px solid #7ecbd3;
  background: #403f42;
  color: white;
}

.otp-box:focus {
  outline: none;
  border-color: #7ecbd3;
}

.upload-container {
  display: flex;
  justify-content: center;
  margin: 24px auto;
}

.upload-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 2px dashed #7dd3fc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #4a4a4a;
  overflow: hidden;
}

.upload-circle img {
  width: 40px;
  opacity: 0.7;
}

.upload-circle img.preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* //////////////////////////////////////////// RESTURANT DETAILS //////////////////////////////////////////////////// */

.restaurant-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.resturant-header h4 {
  font-size: 24px;
}

.restaurant-header .btn-login {
  max-width: 250px;
}

.restaurant-header span {
  margin-left: 5px;
}

.show-photos {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  border: none;
  transition: background 0.25s ease;
}

.show-photos:hover {
  background: #7ecbd3;
}

.rating-badge {
  background: #3b3d4f;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 14px;
  margin-left: 50px;
}

.resturant-icon-box {
  width: 34px;
  height: 34px;
  background-color: var(--text-teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.resturant-icon-box i {
  font-size: 16px;
}

.restaurants-section strong {
  margin-bottom: 10px;
  font-size: 16px;
}

.resturant-desc {
  color: #b7b8c5;
  font-size: 14px;
}

.resturant-info-text {
  color: #b7b8c5;
  font-size: 14px;
}

/*///////////////////////////////////////////// RESTURANT REVIEW SECTION //////////////////////////////////////////// */

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

.review-box {
  background: #3e3c48;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.review-box:hover {
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.15);
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.2);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 16px;
}

.review-profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #7ecbd3;
}

.reviewer-info {
  flex: 1;
  min-width: 0;
}

.reviewer-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.reviewer-role {
  margin: 0;
}

.reviewer-role .review-icon {
  font-size: 11px;
  color: #e59800;
}

.reviewer-role .review-icon-white {
  font-size: 11px;
  color: #ffffff;
}

.review-rating-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #555362;
  padding: 3px 6px;
  border-radius: 8px;
  flex-shrink: 0;
}

.review-star-icon {
  font-size: 12px;
  color: #e59800;
}

.review-rating-value {
  font-size: 12px;
  font-weight: 600;
  color: #fefefecc;
}

.review-content {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .review-box {
    padding: 20px;
  }

  .review-header {
    flex-direction: column;
  }

  .review-rating-badge {
    align-self: flex-start;
  }

  .review-content {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .review-box {
    padding: 16px;
  }

  .review-profile-pic {
    width: 45px;
    height: 45px;
  }

  .reviewer-name {
    font-size: 0.95rem;
  }
}

/* ====================================== ADD BUSINESS DETAILS PAGE ======================================== */
.business-details-modal {
  /* No specific styles needed other than defaults in .auth-modal, but we can override padding if needed */
  padding: 40px 30px;
  max-width: 550px;
}

.add-business-title {
  margin-bottom: 30px;
  font-size: 24px;
}

.textarea-custom {
  height: 120px !important;
  resize: none;
}

.business-type-container {
  display: flex;
  gap: 15px;
  margin-top: 5px;
  margin-bottom: 30px;
}

.business-type-card {
  flex: 1;
  height: 130px;
  background: #3e3c48;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  color: #ffffff;
}

.business-type-card:hover {
  border-color: rgba(126, 203, 211, 0.5);
  background: rgba(62, 60, 72, 0.8);
}

.business-type-card.selected {
  border: 1px solid #7ecbd3;
  background: #323744;
}

.business-type-card .check-icon {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #7ecbd3;
  font-size: 16px;
  background: #2b2a2d;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
}

.business-type-card.selected .check-icon {
  display: flex;
}

.business-type-card .icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.business-type-card.selected .icon-wrapper svg {
  stroke: #7ecbd3;
}

.business-type-card:not(.selected) .icon-wrapper svg {
  stroke: rgba(255, 255, 255, 0.7);
}

.business-type-card span {
  font-weight: 500;
  font-size: 14px;
}

/* ====================================== ADD SERVICES PAGE ======================================== */
.services-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.service-card {
  background: #3e3c48;
  border: 2px solid var(--theme-color, #7ecbd3);
  border-radius: 20px;
  padding: 20px 10px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--theme-color, #7ecbd3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card.selected::before {
  opacity: 0.15;
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-card .check-icon {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #c7ebef;
  background: var(--theme-color, #7ecbd3);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.service-card.selected .check-icon {
  display: flex;
}

.service-card .icon-wrapper {
  margin-bottom: 8px;
  color: var(--theme-color, #7ecbd3);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  margin-bottom: 12px;
}

.service-card .icon-wrapper svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.service-card p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.3;
  padding: 0 10px;
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ====================================== ADD HOURS PAGE ======================================== */
.days-container {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  justify-content: space-between;
}

.day-btn {
  flex: 1;
  height: 60px;
  background: #3e3c48;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.day-btn:hover {
  background: #545260;
}

.day-btn.selected {
  background: #7ecbd3;
  color: #2b2a2d;
  font-weight: 600;
}

.time-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.time-group {
  flex: 1;
}

.time-input-wrapper {
  position: relative;
}

.time-input-wrapper .form-control-custom {
  padding-right: 40px;
  background: #3e3c48;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
}

.time-input-wrapper .form-control-custom:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #7ecbd3;
}

.time-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #b7b8c5;
  pointer-events: none;
}

.upload-images-container {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.upload-box {
  width: 145px;
  height: 95px;
  border-radius: 12px;
  background: #3e3c48;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.upload-box:hover {
  border-color: rgba(126, 203, 211, 0.5);
  background: rgba(62, 60, 72, 0.8);
}

.upload-box.image-box {
  border: none;
  padding: 0;
}

.upload-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.upload-box.add-more {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}

.upload-box.icon-box {
  border: 1px solid #7ecbd3;
  color: #7ecbd3;
}

.upload-box.icon-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ====================================== SETUP PAYOUT PAGE ======================================== */
.payout-modal {
  padding: 50px 40px;
  text-align: center;
  max-width: 500px;
}

.payout-icon-wrapper {
  margin-bottom: 25px;
  color: #7ecbd3;
  display: flex;
  justify-content: center;
}

.payout-icon-wrapper svg {
  width: 54px;
  height: 54px;
  fill: currentColor;
}

.payout-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.payout-subtitle {
  font-size: 14px;
  color: #fefefecc;
  margin-bottom: 35px;
  line-height: 1.5;
  font-weight: 400;
}

.btn-payout {
  width: 100%;
  background: #5f7d8c;
  border: 2px solid #7ecbd3;
  border-radius: 20px;
  padding: 14px 24px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.btn-payout:hover {
  background: #4a6a7a;
  transform: translateY(-2px);
}

.btn-skip {
  background: none;
  border: none;
  color: #fefefe;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-skip:hover {
  color: #7ecbd3;
}

/* ===================== LOGOUT MODAL ===================== */
.logout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.logout-modal-overlay.active {
  display: flex !important;
}

.logout-modal-content {
  background: #2b2a2d;
  width: 100%;
  max-width: 440px;
  border-radius: 40px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logout-modal-overlay.active .logout-modal-content {
  transform: scale(1);
}

.logout-modal-icon {
  width: 100px;
  height: 100px;
  background: rgba(126, 203, 211, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.logout-modal-icon img {
  width: 44px;
  height: 44px;
}

.logout-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.logout-question {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.logout-subtext {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 30px;
  padding: 0 10px;
}

.logout-btn-group {
  display: flex;
  gap: 15px;
}

.btn-logout-base {
  flex: 1;
  height: 56px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-logout-cancel {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-logout-cancel:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-logout-confirm {
  background: #547984;
  border: 2px solid #7ecbd3;
  color: #fff;
}

.btn-logout-confirm:hover {
  background: #466772;
  transform: translateY(-2px);
}

/* ===================== FILTER SIDEBAR ===================== */
.filter-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1050;
}

.filter-sidebar-overlay.active {
  display: block;
}

.filter-sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100vh;
  background: #2B2936;
  z-index: 1060;
  padding: 30px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.filter-sidebar.active {
  right: 0;
}

.filter-sidebar-header {
  margin-bottom: 30px;
  text-align: center;
}

.pull-bar {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.filter-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: left;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group-label {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.sidebar-search-wrapper {
  position: relative;
  background: #363541;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  height: 48px;
}

.sidebar-search-wrapper i {
  color: #FEFEFE88;
  font-size: 14px;
}

.sidebar-search-input {
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  padding-left: 10px;
  width: 100%;
  outline: none;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-tag {
  padding: 8px 18px;
  background: rgba(126, 203, 211, 0.15);
  border-radius: 50px;
  font-size: 13px;
  color: #7ECBD3;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tag:hover {
  background: rgba(126, 203, 211, 0.25);
}

.filter-tag.active {
  background: #7ECBD3;
  color: #ffffff;
  font-weight: 600;
}

.filter-ratings {
  display: flex;
  gap: 12px;
  font-size: 26px;
  color: #ffffff;
}

.filter-ratings i.active {
  color: #7ECBD3;
}

.proximity-slider-wrapper {
  position: relative;
  padding-top: 45px;
}

.proximity-value {
  position: absolute;
  top: 0;
  left: 50%;
  background: #7ECBD3;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  transform: translateX(-50%);
  pointer-events: none;
  white-space: nowrap;
  transition: left 0.1s ease-out;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.proximity-value::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #7ECBD3;
}

.proximity-slider-container {
  position: relative;
  height: 12px;
  background: #e0e0e0;
  border-radius: 50px;
  display: flex;
  align-items: center;
}

.proximity-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #7ECBD3;
  border-radius: 50px 0 0 50px;
  width: 50%;
  z-index: 1;
}

.proximity-slider {
  width: 100%;
  appearance: none;
  background: transparent;
  outline: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  z-index: 3;
  margin: 0;
}

.proximity-slider::-webkit-slider-thumb {
  appearance: none;
  width: 26px;
  height: 26px;
  background: #7ECBD3;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.filter-actions {
  margin-top: auto;
  display: flex;
  gap: 15px;
}

.btn-reset {
  flex: 1;
  height: 52px;
  background: rgba(126, 203, 211, 0.15);
  color: #7ECBD3;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.2s;
}

.btn-apply {
  flex: 1;
  height: 52px;
  background: #7ECBD3;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.2s;
}

.btn-reset:hover,
.btn-apply:hover {
  opacity: 0.9;
}