:root {
  --primary-yellow: #FFD700;
  --yellow-light: #FFF8DC;
  --yellow-dark: #DAA520;
  --yellow-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --primary-yellow: #FFD700;
  --primary-yellow-dark: #FFC107;
  --primary-yellow-light: #FFF8DC;
  --accent-orange: #FF8C00;
  --dark-bg: #0A0A0A;
  --dark-card: #1A1A1A;
  --dark-border: #2A2A2A;
  --light-bg: #f8f9fa;
  --light-card: #fff;
  --light-border: #e9ecef;
  --text-primary: #2A2A2A;
  --text-secondary: #B0B0B0;
  --text-muted: #808080;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-primary: 0 20px 40px rgba(255, 215, 0, 0.15);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
  --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
  --gradient-secondary: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
  --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
  --gradient-light: linear-gradient(135deg, #fffbe6 0%, #fff 100%);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--gradient-light);
  min-height: 100vh;
  padding: 2rem 0;
  color: var(--text-primary);
}

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

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

.header-title {
  font-size: 3rem;
  font-weight: 700;
  background: var(--yellow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.header-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  font-weight: 400;
}

.search-container {
  position: relative;
  max-width: 500px;
  margin: 2rem auto;
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1.2rem;
}

.selection-counter {
  background: var(--yellow-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-medium);
  margin-bottom: 2rem;
  display: inline-block;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.interest-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  position: relative;
}

.interest-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.interest-card.selected {
  border-color: var(--primary-yellow);
  box-shadow: var(--shadow-heavy);
  transform: translateY(-2px);
}

.interest-card.selected::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-yellow);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-medium);
}

.interest-image {
  width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.interest-content {
  padding: 1.5rem;
}

.interest-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.5rem;
}

.interest-description {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
}

.continue-button {
  background: var(--yellow-gradient);
  border: none;
  color: white;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.continue-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.continue-button:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-light);
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: #6c757d;
}

.no-results i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #dee2e6;
}

@media (max-width: 768px) {
  .header-title {
    font-size: 2.5rem;
  }

  .interests-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }

  .continue-button {
    position: static;
    margin-top: 2rem;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .interests-grid {
    grid-template-columns: 1fr;
  }

  .header-title {
    font-size: 2rem;
  }
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--gradient-primary);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: float 20s infinite linear;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: -5s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 20%;
  animation-delay: -10s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 30%;
  animation-delay: -15s;
}

.shape-5 {
  width: 140px;
  height: 140px;
  top: 10%;
  left: 60%;
  animation-delay: -7s;
}

@keyframes float {

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

  25% {
    transform: translateY(-20px) rotate(90deg);
  }

  50% {
    transform: translateY(-40px) rotate(180deg);
  }

  75% {
    transform: translateY(-20px) rotate(270deg);
  }
}

/* Navigation */
.glass-nav {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-yellow);
}

.brand-logo i {
  font-size: 1.8rem;
}

.nav-actions {
  display: flex;
  align-items: center;
}

/* Buttons */
.btn-ghost {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: var(--glass-bg);
  border-color: var(--primary-yellow);
  color: var(--primary-yellow);
  transform: translateY(-2px);
}

.btn-primary-custom {
  background: var(--gradient-primary);
  border: none;
  color: var(--dark-bg);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  /* display: flex; */
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
  color: var(--dark-bg);
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid var(--primary-yellow);
  color: var(--primary-yellow);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-custom:hover {
  background: var(--primary-yellow);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  animation: fadeInUp 0.8s ease 1s both;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-yellow);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.5s both;
}

.dashboard-mockup {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 2;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--dark-border);
}

.mockup-dots {
  display: flex;
  gap: 0.5rem;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-muted);
}

.mockup-dots span:first-child {
  background: #FF5F57;
}

.mockup-dots span:nth-child(2) {
  background: #FFBD2E;
}

.mockup-dots span:last-child {
  background: #28CA42;
}

.mockup-title {
  font-weight: 600;
  color: var(--text-primary);
}

.mockup-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mockup-card:hover {
  transform: translateX(5px);
  border-color: var(--primary-yellow);
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 1.2rem;
}

.card-content h6 {
  margin: 0;
  font-weight: 600;
  color: var(--text-primary);
}

.card-content p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.card-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-yellow);
  margin-left: auto;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

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

.floating-card {
  position: absolute;
  background: var(--dark-card);
  border: 1px solid var(--primary-yellow);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-yellow);
  animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20px;
  left: -30px;
  animation-delay: -2s;
}

.card-3 {
  top: 50%;
  right: -40px;
  animation-delay: -4s;
}

@keyframes floatCard {

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

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* Sections */
.features-section {
  padding: 100px 0;
  background: rgba(26, 26, 26, 0.5);
}

.cta-section {
  padding: 100px 0;
  background: var(--gradient-dark);
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--primary-yellow);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Cards */
.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-yellow);
  box-shadow: var(--shadow-primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark-bg);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Section */
.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cta-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Modals */
.modern-modal {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
  border-bottom: 1px solid var(--dark-border);
  padding: 1.5rem;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.btn-close {
  filter: invert(1);
}

.modal-body {
  padding: 2rem 1.5rem;
}

.modal-footer {
  border-top: 1px solid var(--dark-border);
  padding: 1.5rem;
  text-align: center;
}

/* Forms */
.auth-form {
  width: 100%;
}

.form-floating {
  margin-bottom: 1rem;
}

.form-control {
  background: var(--glass-bg);
  border: 1px solid #dad9d9;
  border-radius: 12px;
  color: var(--text-primary);
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: var(--glass-bg);
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
  color: var(--text-primary);
}

.form-floating>label {
  color: var(--text-muted);
  padding: 1rem;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
  color: var(--primary-yellow);
}

.form-check-input {
  background-color: var(--glass-bg);
  border: 1px solid var(--dark-border);
}

.form-check-input:checked {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
}

.form-check-input:focus {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.form-check-label {
  color: var(--text-secondary);
}

.forgot-link,
.terms-link {
  color: var(--primary-yellow);
  text-decoration: none;
  transition: all 0.3s ease;
}

.forgot-link:hover,
.terms-link:hover {
  color: var(--primary-yellow-light);
  text-decoration: underline;
}

.switch-auth {
  color: var(--text-secondary);
  margin: 0;
}

.switch-auth a {
  color: var(--primary-yellow);
  text-decoration: none;
  font-weight: 500;
}

.switch-auth a:hover {
  text-decoration: underline;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .nav-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .features-section,
  .cta-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }
}

#category-container {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  padding: 32px 24px;
}

#category-header {
  /* display: none; */
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

#back-to-categories {
  /* background: #ffe066;
    border: none;
    font-size: 18px;
    color: #b8860b;
    cursor: pointer;
    padding: 8px 16px 8px 10px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(255, 224, 102, 0.15);
    transition: background 0.2s, box-shadow 0.2s;
    font-weight: 600;
    gap: 6px; */
  background: none;
  border: none;
  color: #2563eb;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}

#back-to-categories span {
  background: #fffbe6;
  color: #ffb700;
  font-size: 22px;
  margin-right: 8px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(255, 224, 102, 0.12);
}

#categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  display: flex;
  align-items: center;
  padding: 14px 12px;
  border-radius: 7px;
  margin-bottom: 10px;
  background: #f8fafc;
  cursor: pointer;
  transition: background 0.2s;
}

.category-item img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  margin-right: 16px;
  /* background: #e2e8f0; */
  object-fit: contain;
}

.category-item span {
  flex: 1;
  font-size: 17px;
  color: #222;
}

.category-item .arrow {
  font-size: 20px;
  color: #b0b0b0;
  text-align: right;
}

.category-item:hover {
  background: #e8f0fe;
}

#form-fields {
  /* display: none; */
  margin-top: 18px;
}

#category-search-bar {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  margin-bottom: 18px;
  font-size: 16px;
  outline: none;
  transition: border 0.2s;
}

#category-search-bar:focus {
  border-color: #3490dc;
}

/** Listings */
.listings-main {
  padding-top: 60px;
  min-height: 100vh;
  background: var(--light-bg);
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
}

.header-content {
  flex: 1;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.page-title i {
  color: var(--primary-yellow);
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 0;
}

.header-stats {
  display: flex;
  gap: 1rem;
}

.stat-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  min-width: 120px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-yellow);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-yellow);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.filters-section {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-light);
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: var(--glass-bg);
  border-radius: 12px;
  padding: 0.5rem;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}

.tab-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 215, 0, 0.08);
}

.tab-btn.active {
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
}

.filter-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.search-container {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.search-container i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.search-input {
  width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 1rem 1rem 1rem 3rem;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.15);
}

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

.status-filter {
  position: relative;
  min-width: 150px;
}

.status-select {
  width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 1rem;
  color: var(--text-primary);
  font-size: 1rem;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.status-select:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.15);
}

.status-filter i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.listings-container {
  margin-bottom: 3rem;
}

.listings-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.listing-item {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.listing-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary-yellow);
  box-shadow: var(--shadow-primary);
}

.listing-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-image i {
  font-size: 2rem;
  color: var(--text-muted);
}

.listing-content {
  flex: 1;
  min-width: 0;
}

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

.listing-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.listing-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-active {
  background: rgba(40, 167, 69, 0.12);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.18);
}

.status-draft {
  background: rgba(255, 193, 7, 0.12);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.18);
}

.listing-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.listing-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.listing-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-yellow);
}

.listing-actions {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--light-border);
  background: var(--glass-bg);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover {
  border-color: var(--primary-yellow);
  color: var(--primary-yellow);
  background: rgba(255, 215, 0, 0.08);
}

.action-btn.delete-btn:hover {
  border-color: #dc3545;
  color: #dc3545;
  background: rgba(220, 53, 69, 0.08);
}

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.category-badge i {
  font-size: 0.75rem;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 20px;
  box-shadow: var(--shadow-light);
}

.empty-icon {
  width: 80px;
  height: 80px;
  background: var(--glass-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.empty-icon i {
  font-size: 2.5rem;
  color: var(--text-muted);
}

.empty-state h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-stats {
    width: 100%;
    justify-content: space-between;
  }

  .stat-card {
    flex: 1;
    min-width: auto;
  }

  .category-tabs {
    flex-direction: column;
  }

  .filter-controls {
    flex-direction: column;
  }

  .search-container {
    max-width: none;
  }

  .listing-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .listing-header {
    width: 100%;
  }

  .listing-meta {
    flex-wrap: wrap;
  }

  .listing-actions {
    align-self: flex-end;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .listings-main {
    padding-top: 50px;
  }

  .page-title {
    font-size: 2rem;
  }

  .filters-section {
    padding: 1.5rem;
  }

  .listing-item {
    padding: 1rem;
  }

  .listing-image {
    width: 60px;
    height: 60px;
  }
}

.choose-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.25rem;
  border: none;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #fffbe6 0%, #f8fafc 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1.5px 6px rgba(255, 215, 0, 0.08);
  width: 180px;
  transition: transform 0.18s cubic-bezier(.4, 2, .6, 1), box-shadow 0.18s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.choose-type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 215, 0, 0.08) 0%, rgba(13, 110, 253, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.18s;
  z-index: 0;
}

.choose-type-card:hover,
.choose-type-card:focus {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(13, 110, 253, 0.10), 0 2px 8px rgba(255, 215, 0, 0.12);
}

.choose-type-card:hover::before,
.choose-type-card:focus::before {
  opacity: 1;
}

.choose-type-card .icon {
  color: #FFD700;
  background: linear-gradient(135deg, #fffbe6 60%, #ffe066 100%);
  border-radius: 50%;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.10);
  z-index: 1;
}

.choose-type-card .label {
  font-weight: 700;
  font-size: 1.15rem;
  color: #22223b;
  margin-bottom: 0.25rem;
  z-index: 1;
}

.choose-type-card .desc {
  color: #6c757d;
  font-size: 0.97rem;
  text-align: center;
  z-index: 1;
}

/* Modern Burger Icon */
.modern-burger {
  display: inline-block;
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
  z-index: 1051;
}

.modern-burger span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--primary-yellow, #FFD700);
  border-radius: 2px;
  margin: 6px 0;
  transition: 0.3s;
}

.modern-burger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.modern-burger.active span:nth-child(2) {
  opacity: 0;
}

.modern-burger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Modern Navbar Styles */
.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1.5px solid #f3e9b7;
  box-shadow: 0 2px 16px 0 rgba(255, 215, 0, 0.04);
  transition: background 0.3s;
}

@media (max-width: 991.98px) {
  #mainNavbar {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1rem;
    margin-top: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 1.5rem 1rem;
    position: absolute;
    top: 60px;
    left: 5%;
    right: 5%;
    z-index: 1050;
    transition: all 0.3s;
  }
}

.iti {
  width: 100% !important;
}

.iti__country-list {
  z-index: 3 !important;
}

.form-group label {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.iti--inline-dropdown .iti__dropdown-content {
  z-index: 3 !important;
}

.iti__search-input {
  height: 40px;
}