:root {
  --dark-purple: #000000;
  /* Pure Black */
  --primary-purple: #25153F;
  /* Deep Plum */
  --mid-purple: #ffffff;
  /* Mid Purple */
  --accent-gold: #C9A84C;
  /* Royal Gold */
  --text-main: #F5E9C8;
  /* Cream Glow */
  --text-muted: rgba(245, 233, 200, 0.85); /* Increased from 0.6 for better contrast */
  --gold-gradient: linear-gradient(135deg, #C9A84C, #A68A3D);
  --premium-gradient: linear-gradient(135deg, #ffffff, #25153F);
  --glass: rgba(245, 233, 200, 0.03);
  --glass-border: rgba(245, 233, 200, 0.1);
  --white: #F5E9C8;
  --radius: 24px;
  --radius-sm: 12px;
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

html, body {
  font-family: 'Inter', sans-serif;
  background-color: #000000;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

html.no-scroll, body.no-scroll {
  overflow: hidden;
  height: 100vh;
  position: relative;
}


.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.responsive-grid {
  display: grid;
  gap: 20px;
}

@media (max-width: 768px) {
  .responsive-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Page Header Offset for Internal Pages */
.page-header-offset {
  padding-top: 160px; /* Increased from 130px */
}

/* --- Header --- */
.premium-header {
  height: 90px;
  display: flex;
  align-items: center;
  position: fixed; /* Make sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--white);
  transition: 0.3s;
}

.logo span {
  color: var(--accent-purple);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* --- Header Search --- */
.header-search-wrap {
  flex: 1;
  max-width: 500px;
  margin: 0 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-search-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 2px 5px 2px 20px;
  transition: all 0.3s ease;
}

.header-search-box:focus-within {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

.header-search-box input {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 10px 0;
  width: 100%;
  font-size: 14px;
  outline: none;
}

.header-search-box button {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-filter-btn {
  color: var(--accent-gold);
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.header-filter-btn:hover {
  transform: rotate(90deg);
}

.login-btn {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s;
}

.login-btn:hover {
  opacity: 0.8;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.desktop-nav .nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  position: relative;
}

.desktop-nav .nav-link:hover {
  color: var(--accent-gold);
}

.desktop-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s;
}

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

.post-ad-btn {
  background: var(--gold-gradient);
  color: var(--dark-purple);
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-ad-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(250, 204, 21, 0.3);
}

.listing-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding-top: 120px;
  padding-bottom: 80px;
}

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

.listing-header h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
}

.listing-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.view-toggle {
  display: none; /* Hide on desktop */
}

@media (max-width: 992px) {
  .view-toggle {
    display: flex;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .listing-header h2 {
    font-size: 18px;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 25px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 500;
}
.breadcrumbs a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}
.breadcrumbs a:hover {
  color: var(--accent-gold);
}
.breadcrumbs span {
  opacity: 0.5;
  font-size: 10px;
}
.breadcrumbs .current {
  color: var(--accent-gold);
  font-weight: 700;
}

@media (max-width: 640px) {
  .view-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
  }
  .view-btn.active {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
  }
}

/* Mobile Grid Mode Refinements */
@media (max-width: 768px) {
  .listing-items-wrapper.grid-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 5px;
  }
  
  .listing-items-wrapper.grid-view .product-card {
    grid-template-columns: 1fr;
    height: auto;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
  }
  
  .listing-items-wrapper.grid-view .product-image {
    height: 180px;
  }
  
  .listing-items-wrapper.grid-view .product-info {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .listing-items-wrapper.grid-view .product-title {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 8px;
    height: 34px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .listing-items-wrapper.grid-view .info-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  
  .listing-items-wrapper.grid-view .product-price {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .listing-items-wrapper.grid-view .seller-pill {
    padding: 3px 8px;
    gap: 5px;
    width: 100%;
    justify-content: flex-start;
  }

  .listing-items-wrapper.grid-view .seller-name {
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .listing-items-wrapper.grid-view .seller-pill i {
    font-size: 10px;
  }
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  margin-bottom: 24px;
  height: 240px;
}

.product-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  background: rgba(255, 255, 255, 0.06);
}

.product-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #111;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.featured-badge-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  pointer-events: none;
  border-radius: var(--radius);
  overflow: hidden;
}

.featured-badge-svg .mobile-featured {
  display: none;
}

.featured-badge-svg .desktop-featured {
  display: block;
}

.featured-badge-svg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  opacity: 1;
}

.featured-card {
  border: 2px solid var(--accent-gold) !important;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.25) !important;
  position: relative;
}

/* Specific adjustment for List View (Wide cards) */
.listing-items-wrapper:not(.grid-view) .featured-card .featured-badge-svg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

/* Specific adjustment for Grid View & Mobile */
@media (max-width: 768px) {
  .featured-badge-svg .mobile-featured {
    display: block;
  }
  .featured-badge-svg .desktop-featured {
    display: none;
  }
  .featured-badge-svg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
  }
}

.featured-badge {
  display: none; /* Hide old text badge */
}

/* Special Badges System */
.special-badges-container {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 10;
}

.special-badge-svg {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  animation: badgePulse 2.5s infinite ease-in-out;
  cursor: pointer;
  height: 26px;
}

.special-badge-svg img {
  height: 100%;
  width: auto;
  display: block;
}

/* Shine Effect */
.badge-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shineSweep 4s infinite;
}

@keyframes shineSweep {
  0% { left: -100%; }
  20% { left: 150%; }
  100% { left: 150%; }
}

@keyframes badgePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Special Badges System Mobile Optimization */
@media (max-width: 768px) {
  .special-badges-container {
    top: 8px;
    left: 8px;
    gap: 4px;
  }
  
  .special-badge-svg {
    height: 20px;
  }
}

.city-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.product-info {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
}

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

.category-path {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.post-time {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.product-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: var(--accent-gold);
}

.product-desc {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.6;
  max-height: 60px;
  overflow: hidden;
  flex-grow: 1;
}

.info-bottom {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent-gold);
}

.action-buttons {
  display: flex;
  gap: 10px;
}

/* Seller Profile Label */
.seller-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.seller-pill i {
  font-size: 14px;
  color: var(--accent-gold);
  opacity: 0.8;
}

.product-card:hover .seller-pill {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
}

.seller-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.product-card:hover .seller-name {
  color: var(--accent-gold);
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: white;
  transform: translateY(-3px);
}

.btn-call:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000;
  transform: translateY(-3px);
}

/* Sidebar Styles */
.sidebar-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.sidebar-title {
  background: #000000;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--glass-border);
}

.sidebar-list {
  list-style: none;
}

.sidebar-list a {
  display: block;
  padding: 12px 24px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.2s;
}

.sidebar-list a:hover {
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.02);
  padding-left: 30px;
}

/* Mobile Navigation & Header */
.mobile-nav-toggle {
  display: none;
  font-size: 20px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-search-container {
  display: none;
}

/* Mobile Menu Overlay - Premium Side Drawer */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: #000000 !important;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 120px 50px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(100%);
  overscroll-behavior: contain;
}



.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--accent-gold);
  font-size: 24px;
  cursor: pointer;
}

.menu-links {
  list-style: none;
  padding: 0;
  text-align: left;
}

.menu-links li {
  margin: 25px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}


.mobile-menu-overlay.active .menu-links li {
  opacity: 1;
  transform: translateY(0);
}

.menu-links a {
  color: var(--accent-gold);
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
  display: block;
  transition: opacity 0.2s;
}

.menu-links a:hover {
  opacity: 0.8;
}

/* Staggered animation for menu items */
.mobile-menu-overlay.active .menu-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .menu-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .menu-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .menu-links li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu-overlay.active .menu-links li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu-overlay.active .menu-links li:nth-child(6) { transition-delay: 0.6s; }

.menu-post-ad {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  background: var(--gold-gradient);
  color: #000 !important;
  padding: 18px 30px;
  border-radius: 12px;
  font-size: 16px !important;
  font-weight: 900;
  text-transform: uppercase;
  width: 100%;
  max-width: 240px;
  letter-spacing: 1px;
}



@media (max-width: 992px) {
  .premium-header {
    height: auto;
    position: fixed;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .header-inner {
    padding: 0 20px;
  }

  .mobile-nav-toggle {
    display: block;
    order: 2;
  }

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

  .header-actions {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-hero-search {
    display: flex;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 6px;
    margin: 0 auto;
    max-width: 320px;
    align-items: center;
  }

  .mobile-hero-search input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 15px;
    flex: 1;
    font-size: 14px;
    outline: none;
  }

  .mobile-hero-search button {
    background: var(--gold-gradient);
    border: none;
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
  }

  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }

  .hero-content .subtext {
    font-size: 16px;
    margin-bottom: 25px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
  }

  .hero-image-wrap {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.7;
    border-radius: 0;
  }

  .hero-image-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    mask-image: none;
  }

  .hero-image-wrap::after {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    z-index: 2;
  }

  .search-container {
    display: none; /* Hide desktop search on mobile */
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .hero {
    padding-top: 100px;
  }
}
@media (max-width: 992px) {
  .product-card {
    grid-template-columns: 1fr;
    height: auto;
  }
  .product-image {
    height: 280px;
  }
  .product-info {
    padding: 24px;
  }
  .product-desc {
    max-width: 100%;
  }
  .action-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    flex-direction: column;
  }
}

/* --- Hero Section --- */
.hero {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  padding-top: 180px; /* Increased from 120px to force it down */
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-content h1 {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -2px;
  background: linear-gradient(to right, var(--text-main), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content .subtext {
  font-size: 24px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.hero-content .subtext span {
  color: var(--accent-gold);
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

/* Search Bar */
.search-container {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 8px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
}

.mobile-hero-search {
  display: none;
}

.search-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid var(--glass-border);
}

.search-input-group:last-of-type {
  border-right: none;
}

.search-input-group i {
  color: var(--accent-purple);
  margin-right: 12px;
}

.search-container input {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 16px 0;
  width: 100%;
  font-size: 15px;
  outline: none;
}

.search-container input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-btn {
  background: var(--premium-gradient);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.2);
}

.search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(236, 72, 153, 0.4);
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: flex-end;
}

.hero-image-wrap img {
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  mask-image: linear-gradient(to left, black 70%, transparent 100%);
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(201, 168, 76, 0.15), transparent);
  pointer-events: none;
}

/* --- Featured Locations --- */
.section-padding {
  padding: 120px 0;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 64px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.location-card {
  position: relative;
  height: 220px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  border: 1px solid var(--glass-border);
}

.location-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.location-card:hover img {
  transform: scale(1.1);
}

.location-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.location-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.see-more {
  display: block;
  text-align: center;
  margin-top: 48px;
  color: var(--accent-purple);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

/* --- Top Searches --- */
.searches-bg {
  background: #000000;
  padding: 100px 0;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.tag-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.tag-btn:hover {
  background: var(--accent-purple);
  color: var(--white);
  border-color: var(--accent-purple);
  transform: translateY(-2px);
}

/* --- Footer --- */
.main-footer {
  background: #000000;
  padding: 100px 0 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}

.footer-brand .logo {
  font-size: 28px;
  display: block;
  margin-bottom: 20px;
}

.footer-brand .desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 320px;
}

.trust-badges {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.trust-badge {
  background: rgba(201, 168, 76, 0.05);
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 10px;
  color: var(--accent-gold);
  border: 1px solid rgba(201, 168, 76, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payment-icons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.payment-icons i {
  font-size: 24px;
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-purple);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 13px;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
    padding-bottom: 100px;
  }

  .hero-image-wrap {
    order: 1;
    height: 50vh;
    justify-content: center;
  }

  .hero-image-wrap img {
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  }

  .search-container {
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .premium-header {
    height: auto;
    min-height: 70px;
    background: #000000;
    padding: 10px 0;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
  }

  .header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
  }

  .logo {
    font-size: 20px; /* Smaller logo for mobile */
  }

  .mobile-nav-toggle {
    display: block;
    font-size: 20px;
  }

  .desktop-nav, .header-actions, .header-left {
    display: none !important;
  }

  .header-search-wrap {
    width: 100%;
    margin-top: 10px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 10px;
    box-shadow: inset 0 10px 20px rgba(0,0,0,0.2);
  }

  .header-search-box {
    flex: 1;
  }

  .header-search-box input {
    font-size: 13px;
  }

  .listing-container {
    grid-template-columns: 1fr;
    padding-top: 180px; /* Increased to account for fixed header + search bar */
  }

  .product-card {
    grid-template-columns: 1fr;
    height: auto;
    margin-bottom: 30px;
  }

  .product-image {
    height: 300px; /* Tall vertical image on mobile */
  }

  .product-info {
    padding: 20px;
  }

  .product-title {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .search-container {
    flex-direction: column;
    border-radius: 24px;
    padding: 16px;
  }

  .product-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .product-image {
    height: 250px;
  }

  .product-info {
    padding: 15px 20px;
  }

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

  .product-price {
    font-size: 18px;
  }

  .featured-badge {
    padding: 3px 8px;
    font-size: 9px;
  }

  .city-badge {
    padding: 3px 8px;
    font-size: 9px;
  }

  .search-input-group {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    width: 100%;
  }

  .search-btn {
    width: 100%;
    border-radius: 12px;
  }

  .hero-content h1 {
    font-size: 42px;
  }
}
/* --- Mobile Search & Filter Row --- */
.mobile-search-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 10px;
  margin-top: 100px;
}

.mobile-search-box {
  flex: 1;
  display: flex;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 5px;
  align-items: center;
}

.mobile-search-box input {
  background: transparent;
  border: none;
  padding: 10px 20px;
  color: var(--white);
  flex: 1;
  font-size: 14px;
  outline: none;
}

.mobile-search-btn {
  background: var(--gold-gradient);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.filter-circle-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
/* --- Mobile Search & Filter Row --- */
.mobile-search-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 10px;
  margin-top: 100px;
}

.mobile-search-box {
  flex: 1;
  display: flex;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 5px;
  align-items: center;
}

.mobile-search-box input {
  background: transparent;
  border: none;
  padding: 10px 20px;
  color: var(--white);
  flex: 1;
  font-size: 14px;
  outline: none;
}

.mobile-search-btn {
  background: var(--gold-gradient);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.filter-circle-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  cursor: pointer;
}

/* --- Auth Pages (Split Layout) --- */
.auth-page-hero {
  padding-top: 100px;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  background: var(--dark-purple);
  position: relative;
  overflow: hidden;
}

.auth-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.auth-info-side h1 {
  font-size: 64px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.auth-info-side h1 span {
  color: var(--accent-gold);
}

.auth-info-side p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
  .auth-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  .auth-info-side {
    text-align: center;
  }
  .auth-info-side h1 {
    font-size: 40px;
  }
  .auth-info-side p {
    margin: 0 auto;
  }
  .auth-card {
    margin: 0 auto;
  }
}

.auth-card .logo {
  display: block;
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 900;
}

.auth-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 30px;
}

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

.auth-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"] {
  width: 100%;
  height: 52px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0 20px;
  color: var(--white);
  font-size: 15px;
  transition: 0.3s;
}

.auth-form input:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

.password-wrap {
  position: relative;
}

.password-wrap i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  cursor: pointer;
  transition: 0.3s;
}

.password-wrap i:hover {
  color: var(--accent-gold);
}

.auth-btn {
  width: 100%;
  height: 52px;
  background: var(--gold-gradient);
  border: none;
  border-radius: 12px;
  color: #000;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(201, 168, 76, 0.3);
}

.auth-footer-links {
  margin-top: 25px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.auth-footer-links a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 700;
}

.alert {
  padding: 15px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 25px;
  font-weight: 600;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

@media (max-width: 480px) {
  .auth-card {
    padding: 30px 20px;
  }
}

/* --- Top Ticker --- */
.top-ticker {
  background: #ff4d00;
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
  z-index: 1001;
}

.top-ticker span {
  margin: 0 20px;
}

/* --- Enhanced Header --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-trigger {
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
}

.user-profile-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.user-profile-link i {
  font-size: 18px;
  color: var(--accent-gold);
}

/* --- Detail Enhancements --- */
.social-proof {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

.action-btns-group {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.action-icon-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.action-icon-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

/* --- Mobile Bottom Nav --- */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: none;
  justify-content: space-around;
  align-items: center;
  padding: 12px 10px 25px; /* Added bottom padding for safe area */
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.8);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #666;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.3s;
  flex: 1;
}

.nav-item i {
  font-size: 20px;
}

.nav-item.active {
  color: var(--accent-gold);
}

.nav-post-btn {
  background: linear-gradient(135deg, #ff4d00, #ff8c00);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 14px; /* Squircle style like in image */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -35px;
  box-shadow: 0 8px 25px rgba(255, 77, 0, 0.4);
  font-size: 24px;
  border: 3px solid #000;
  transition: 0.3s;
}

.nav-post-btn:active {
  transform: scale(0.9);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
}

/* --- Product Detail Page --- */
.product-detail-container {
  padding-top: 120px;
  padding-bottom: 80px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

.gallery-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 10px;
  margin-bottom: 30px;
}

.main-image-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 500px;
  border-radius: calc(var(--radius) - 10px);
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}

.thumb-strip {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  overflow-x: auto;
  padding: 5px;
}

.thumb-box {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
}

.thumb-box.active {
  border-color: var(--accent-gold);
}

.detail-main-info {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 30px;
}

.detail-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 15px;
  line-height: 1.2;
}

.detail-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-gold);
  margin-bottom: 25px;
}

.detail-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--glass-border);
}

.detail-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.detail-meta-item i {
  color: var(--accent-gold);
}

.description-box {
  color: var(--text-main);
  line-height: 1.8;
  font-size: 16px;
  white-space: pre-line;
}

.sidebar-sticky {
  position: sticky;
  top: 120px;
}

.contact-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 25px;
  text-align: center;
}

.seller-mini-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  margin-bottom: 25px;
}

.seller-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.seller-info h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.seller-info p {
  font-size: 12px;
  color: var(--text-muted);
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  border-radius: 100px;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  border: none;
}

.btn-whatsapp-detail {
  background: #25D366;
  color: white;
}

.btn-call-detail {
  background: var(--gold-gradient);
  color: #000;
}

.safety-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--glass-border);
  padding: 20px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
}

.safety-card h5 {
  color: var(--accent-gold);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.safety-card ul {
  list-style: none;
  padding: 0;
}

.safety-card li {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}

@media (max-width: 992px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-container {
    padding-top: 100px;
  }
  .detail-title {
    font-size: 28px;
  }
  .sidebar-sticky {
    position: static;
  }
}

/* --- Dashboard --- */
.dashboard-page {
  padding-top: 100px;
  min-height: 100vh;
  background: var(--dark-purple);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 40px 0;
}

.dashboard-sidebar {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 30px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.dash-user-profile {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 30px;
}

.dash-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 3px solid var(--accent-gold);
  padding: 3px;
  background: #000;
  overflow: hidden;
}

.dash-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.dash-user-profile h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
}

.dash-user-profile p {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dash-menu {
  list-style: none;
  padding: 0;
}

.dash-menu li {
  margin-bottom: 10px;
}

.dash-menu li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  border-radius: 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.dash-menu li a i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.dash-menu li a:hover,
.dash-menu li a.active {
  background: rgba(201, 168, 76, 0.1);
  color: var(--accent-gold);
}

.dash-content {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
}

.dash-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.dash-section-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}

.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.dash-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 25px;
  transition: 0.3s;
}

.dash-stat-card:hover {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
}

.dash-stat-card i {
  font-size: 24px;
  color: var(--accent-gold);
  margin-bottom: 15px;
  display: block;
}

.dash-stat-card .value {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.dash-stat-card .label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 1px;
}

.dash-table-wrap {
  overflow-x: auto;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
}

.dash-table th {
  text-align: left;
  padding: 15px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--glass-border);
}

.dash-table td {
  padding: 20px;
  border-bottom: 1px solid var(--glass-border);
  font-size: 14px;
}

.dash-ad-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dash-ad-item img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.dash-ad-title {
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.dash-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-active { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.status-pending { background: rgba(234, 179, 8, 0.1); color: #eab308; }
.status-expired { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.dash-actions {
  display: flex;
  gap: 10px;
}

.dash-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  text-decoration: none;
  transition: 0.3s;
}

.dash-action-btn:hover {
  background: var(--accent-gold);
  color: #000;
}

@media (max-width: 992px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0;
  }
  .dashboard-sidebar {
    position: static;
    padding: 20px;
  }
  .dash-content {
    padding: 25px 20px;
  }
  .dash-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .dash-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dash-stat-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
  }
  .dash-stat-card i {
    margin-bottom: 0;
    font-size: 20px;
  }
  .dash-stat-card .value {
    font-size: 24px;
  }
  .dash-section-header h2 {
    font-size: 18px;
  }
  .dash-user-profile {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .dash-avatar {
    width: 60px;
    height: 60px;
    margin: 0;
  }
  .dash-avatar div {
    font-size: 20px !important;
  }
  .dash-user-profile h3 {
    font-size: 16px;
    margin-bottom: 2px;
  }
}

@media (max-width: 576px) {
  .dash-table th:nth-child(2), 
  .dash-table td:nth-child(2),
  .dash-table th:nth-child(4),
  .dash-table td:nth-child(4) {
    display: none; /* Hide Category and Date on small mobile to save space */
  }
  .dash-ad-item img {
    width: 45px;
    height: 45px;
  }
  .dash-ad-title {
    font-size: 13px;
  }
}

/* --- Multi-Step Form --- */
.step-container {
  display: none;
  animation: fadeIn 0.4s ease;
}

.step-container.active {
  display: block;
}

.form-progress {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  transition: 0.3s;
}

.progress-step.active .step-number {
  background: var(--gold-gradient);
  color: #000;
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.progress-step.completed .step-number {
  background: #22c55e;
  color: #fff;
  border-color: #22c55e;
}

.step-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.progress-step.active .step-label {
  color: var(--accent-gold);
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
}

.ugc-badge {
  font-size: 10px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--accent-gold);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 10px;
  font-weight: 800;
}

.image-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.preview-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  position: relative;
}

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

.preview-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
}

/* --- Refined Post Ad Form --- */
.post-form-card .form-group label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.post-form-card input,
.post-form-card select,
.post-form-card textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: 0.3s;
}

.post-form-card input:focus,
.post-form-card select:focus,
.post-form-card textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
}

.post-form-card select option {
  background: #1a1a1a;
  color: var(--white);
}

.post-form-card input::placeholder,
.post-form-card textarea::placeholder {
  color: rgba(245, 233, 200, 0.3);
}

.post-ad-btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* --- Breadcrumbs Style --- */
.breadcrumbs {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}
.breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.breadcrumbs a:hover {
    color: var(--accent-gold);
    opacity: 1;
}
.breadcrumbs span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    display: flex;
    align-items: center;
    user-select: none;
}
.breadcrumbs .current {
    color: var(--accent-gold);
    opacity: 1;
    font-weight: 600;
    text-transform: capitalize;
}
