* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  direction: rtl;
}

.top-bar {
  background-color: #1a1a1a;
  color: white;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.email {
  color: #ff9900;
}

.support {
  color: #ccc;
}

.action-links {
  display: flex;
  gap: 20px;
}

.action-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.action-links a:hover {
  color: #ff9900;
}

.header-main {
  background-color: white;
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  direction: ltr;
}
.logo span {
  color: #ff9900;
}

.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 5px 0;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ff9900;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-radius: 4px;
  padding: 10px 0;
  right: 0;
}

.dropdown-content a {
  display: block;
  padding: 8px 15px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.search-account {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-box {
  position: relative;
}

.search-box input {
  padding: 8px 40px 8px 15px;
  border: 1px solid #ddd;
  border-radius: 2px;
  width: 200px;
  font-size: 14px;
  text-align: right;
}

.search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

.account-btn {
  background-color: #ff9900;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.account-btn:hover {
  background-color: #e68a00;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.mobile-nav {
  display: none;
  background-color: white;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 10px;
}

.mobile-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: block;
  padding: 8px 0;
}

.mobile-nav .dropdown-content {
  position: static;
  box-shadow: none;
  padding-right: 15px;
  display: none;
}

.mobile-nav .dropdown.active .dropdown-content {
  display: block;
}

/* Hero Section Styles */
.hero-section {
  color: white;
  padding: 80px 20px;
  text-align: center;
  min-height: 500px; /* or 100vh */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: #ff9900;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.feature {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 25px;
  width: 250px;
  backdrop-filter: blur(5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ff9900;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-desc {
  font-size: 0.9rem;
  color: #ddd;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: #ff9900;
  color: white;
}

.btn-primary:hover {
  background-color: #e68a00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Live Auctions Section */
.auctions-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-divider {
  width: 100px;
  height: 3px;
  background: #ff9900;
  margin: 20px auto 30px;
  border: none;
}

.more-auctions-text {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 40px;
  font-weight: 500;
}

/* Infinite Carousel Styles */
.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.auction-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  min-width: 0;
}

.auction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.auction-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #ff9900, #ff6600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.auction-content {
  padding: 20px;
}

.auction-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
  text-align: center;
}

.auction-timer {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 8px;
}

.timer-item {
  text-align: center;
  flex: 1;
}

.timer-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff9900;
}

.timer-label {
  font-size: 0.8rem;
  color: #666;
  margin-top: 5px;
}

.auction-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bid-btn {
  background-color: #ff9900;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.bid-btn:hover {
  background-color: #e68a00;
}

.view-btn {
  background: transparent;
  color: #ff9900;
  border: 1px solid #ff9900;
  padding: 7px 14px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.view-btn:hover {
  background-color: #ff9900;
  color: white;
}

.tabs-container {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tab {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.tab.active {
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: #1a202c;
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
}

.auction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.auction-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.auction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-header {
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.upcoming-badge {
  display: inline-block;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: #1a202c;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.card-body {
  padding: 20px;
}

.item-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #feb47b;
}

.bid-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bid-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff7e5f;
}

.lot-number {
  color: #a0aec0;
  font-size: 0.9rem;
}

.notify-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: #1a202c;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4);
}

.process-flow {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}

.process-step {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-card.up {
  align-self: flex-start;
  margin-right: 10%;
}

.step-card.down {
  align-self: flex-end;
  margin-left: 10%;
}

.step-number {
  font-size: 1.2rem;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.step-title {
  font-size: 1.5rem;
  color: #feb47b;
  margin-bottom: 15px;
  font-weight: 600;
}

.step-content {
  color: #a0aec0;
  line-height: 1.6;
}

.step-content ul {
  list-style-type: none;
  padding-right: 0;
}

.step-content li {
  margin-bottom: 8px;
  position: relative;
  padding-right: 20px;
}

.step-content li::before {
  content: "•";
  color: #3498db;
  font-weight: bold;
  position: absolute;
  right: 0;
}

.arrow {
  position: absolute;
  z-index: 1;
  color: #3498db;
  font-size: 2rem;
  font-weight: bold;
}

.arrow.left {
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.arrow.right {
  left: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

.arrow.down {
  bottom: -40px;
  right: 50%;
  transform: translateX(50%) rotate(90deg);
}

.arrow.up {
  top: -40px;
  right: 50%;
  transform: translateX(50%) rotate(-90deg);
}

.language-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .step-card {
    width: 280px;
  }
  .step-card.up,
  .step-card.down {
    align-self: center;
    margin-right: 0;
    margin-left: 0;
  }

  .arrow {
    display: none;
  }

  .process-step {
    flex-direction: column;
    gap: 20px;
  }

  .tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }
}
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 15px;
}

.carousel-btn {
  background-color: #1a1a1a;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 18px;
}

.carousel-btn:hover {
  background-color: #333;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #ff9900;
}

.load-more {
  text-align: center;
  margin-top: 50px;
}

.load-more-btn {
  background-color: #1a1a1a;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.load-more-btn:hover {
  background-color: #333;
}

/* How It Works Section - Inline Layout */
.how-it-works {
  padding: 80px 20px;
  background-color: white;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  margin-top: 50px;
}

.step-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid #eee;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #ff9900;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ff9900;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
  line-height: 1.4;
}

.step-features {
  list-style: none;
  text-align: right;
  margin-top: auto;
}

.step-features li {
  padding: 8px 0;
  color: #666;
  font-size: 0.9rem;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-right: 15px;
}

.step-features li:last-child {
  border-bottom: none;
}

.step-features li:before {
  content: "•";
  color: #ff9900;
  font-weight: bold;
  position: absolute;
  right: 0;
}

/* Connector lines between steps */
.step-connector {
  position: relative;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-connector:before {
  content: "→";
  font-size: 1.5rem;
  color: #ff9900;
  font-weight: bold;
}

@media (max-width: 992px) {
  .nav-menu {
    gap: 15px;
  }

  .search-box input {
    width: 150px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .auction-card {
    flex: 0 0 calc(50% - 20px);
  }

  .step-card {
    padding: 25px 15px;
    min-height: 300px;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .step-features li {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 5px;
  }

  .header-container {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    margin-right: auto; /* For RTL layouts */
    margin-left: 15px; /* Add some spacing from the edge */
  }

  .search-account {
    width: 100%;
    justify-content: space-between;
    margin-top: 15px;
  }

  .search-box {
    flex-grow: 1;
    margin-left: 15px;
  }

  .search-box input {
    width: 100%;
  }

  .hero-section {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .feature {
    width: 100%;
    max-width: 300px;
  }

  .auctions-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .auction-card {
    flex: 0 0 calc(100% - 20px);
  }

  .how-it-works {
    padding: 60px 20px;
  }

  /* Stack steps vertically on mobile */
  .steps-container {
    flex-direction: column;
    gap: 30px;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    min-height: auto;
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 24px;
  }

  .action-links {
    flex-direction: column;
    gap: 5px;
  }

  .search-account {
    flex-direction: column;
    gap: 10px;
  }

  .search-box {
    width: 100%;
    margin-left: 0;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .step-card {
    padding: 20px;
    width: 100%;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-features li {
    font-size: 0.8rem;
  }
}
/* Latest Auctions Section */
.auctions-section_ {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.section-header_ {
  text-align: center;
  margin-bottom: 50px;
}

.section-title_ {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle_ {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.auctions-grid_ {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.auction-card_ {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auction-card_:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.auction-image_ {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #ff9900, #ff6600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.auction-content_ {
  padding: 20px;
}

.auction-title_ {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.auction-timer_ {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 8px;
}

.timer-item_ {
  text-align: center;
}

.timer-value_ {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff9900;
}

.timer-label_ {
  font-size: 0.8rem;
  color: #666;
  margin-top: 5px;
}

.auction-actions_ {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bid-btn_ {
  background-color: #ff9900;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.bid-btn_:hover {
  background-color: #e68a00;
}

.view-btn_ {
  background: transparent;
  color: #ff9900;
  border: 1px solid #ff9900;
  padding: 7px 14px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.view-btn_:hover {
  background-color: #ff9900;
  color: white;
}

.load-more_ {
  text-align: center;
  margin-top: 50px;
}

.load-more-btn_ {
  background-color: #1a1a1a;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.load-more-btn_:hover {
  background-color: #333;
}

@media (max-width: 992px) {
  .section-title_ {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .auctions-section_ {
    padding: 60px 20px;
  }

  .section-title_ {
    font-size: 2rem;
  }

  .auctions-grid_ {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .cta-buttons_ {
    flex-direction: column;
    align-items: center;
  }

  .btn_ {
    width: 100%;
    max-width: 250px;
  }

  .section-title_ {
    font-size: 1.8rem;
  }

  .auctions-grid_ {
    grid-template-columns: 1fr;
  }
}
.tab header {
  text-align: center;
  margin-bottom: 40px;
}
.tab h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: #a0aec0;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}
/* Upcoming Auctions Section */
.upcoming-auctions {
  padding: 80px 20px;
  background: linear-gradient(135deg, #434040 0%, #252222 100%);
  color: white;
}

.upcoming-auctions .container {
  max-width: 1200px;
  margin: 0 auto;
}

.upcoming-auctions header {
  text-align: center;
  margin-bottom: 40px;
}

.upcoming-auctions h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.upcoming-auctions .subtitle {
  color: #a0aec0;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.upcoming-auctions .tabs-container {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.upcoming-auctions .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.upcoming-auctions .tab {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.upcoming-auctions .tab:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.upcoming-auctions .tab.active {
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: #1a202c;
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
}

.upcoming-auctions .auction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.upcoming-auction-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.upcoming-auction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.upcoming-auction-card .card-header {
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.upcoming-auction-card .upcoming-badge {
  display: inline-block;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: #1a202c;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.upcoming-auction-card .card-body {
  padding: 20px;
}

.upcoming-auction-card .item-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #feb47b;
}

.upcoming-auction-card .bid-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.upcoming-auction-card .bid-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff7e5f;
}

.upcoming-auction-card .lot-number {
  color: #a0aec0;
  font-size: 0.9rem;
}

.upcoming-auction-card .notify-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: #1a202c;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upcoming-auction-card .notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4);
}

@media (max-width: 768px) {
  .upcoming-auctions .tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }
}

.stats-section-body {
  background-color: #f5f5f5;
  color: #333;
  direction: rtl;
}

/* Stats Section Styles */
.stats-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #434040 0%, #252222 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stats-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.stats-text {
  flex: 1;
}

.stats-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

.stats-title span {
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.stats-subtitle {
  font-size: 1.4rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 500px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 15px;
  font-weight: 600;
}

.stat-description {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
}

.stats-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.stats-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 126, 95, 0.1),
    rgba(254, 180, 123, 0.1)
  );
  z-index: -1;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #feb47b;
}

.card-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-stat:last-child {
  border-bottom: none;
}

.card-label {
  font-size: 1.1rem;
  color: #e0e0e0;
}

.card-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff7e5f;
}

.stats-cta {
  margin-top: 40px;
  text-align: center;
}

.cta-button {
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: #1a1a1a;
  border: none;
  padding: 16px 40px;
  border-radius: 2px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 126, 95, 0.6);
}

/* Background Elements */
.stats-bg-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 126, 95, 0.1);
  filter: blur(40px);
  z-index: 1;
}

.bg-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.bg-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: 10%;
}

.bg-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: -75px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .stats-content {
    flex-direction: column;
    gap: 40px;
  }

  .stats-title {
    font-size: 2.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 80px 20px;
  }

  .stats-title {
    font-size: 2.4rem;
  }

  .stats-subtitle {
    font-size: 1.2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stats-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .stats-title {
    font-size: 2rem;
  }

  .stats-subtitle {
    font-size: 1.1rem;
  }

  .stat-item {
    padding: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: #ff9900;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background: #ff9900;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s, padding-right 0.3s;
  display: block;
}

.footer-links a:hover {
  color: #ff9900;
  padding-right: 8px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #fff;
  text-decoration: none;
}

.social-icon:hover {
  background: #ff9900;
  transform: translateY(-3px);
}

.newsletter {
  margin-top: 20px;
}

.newsletter p {
  color: #ccc;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  margin-bottom: 15px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input::placeholder {
  color: #aaa;
}

.newsletter-button {
  background: #ff9900;
  color: #1a1a1a;
  border: none;
  padding: 0 20px;
  border-radius: 4px 4px 0 0;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-button:hover {
  background: #e68a00;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: #aaa;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #ff9900;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-input,
  .newsletter-button {
    border-radius: 4px;
    width: 100%;
    padding: 1rem 0;
  }
}
.login-link {
  color: #ff9900 !important;
  font-weight: 600;
}

/* Registration Page */
/* Main Content */
.main-content {
  display: flex;
  margin: 40px 0;
}

.register-form {
  flex: 1;
  background-color: #fff;
  padding: 30px;
  margin-left: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h1 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.form-header p {
  color: #7f8c8d;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #3498db;
  outline: none;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 16px;
  padding-right: 15px;
}

.radio-group,
.checkbox-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-option input {
  margin: 0;
}

/* Terms and Conditions Checkbox Styling */
.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0 0;
  cursor: pointer;
  accent-color: #3498db;
}

.checkbox-option label {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #2c3e50;
  cursor: pointer;
}

.checkbox-option a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s;
}

.checkbox-option a:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* Custom checkbox styling for better appearance */
.checkbox-option input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 3px;
  background-color: white;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-option input[type="checkbox"]:checked {
  background-color: #3498db;
  border-color: #3498db;
}

.checkbox-option input[type="checkbox"]:checked::before {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 14px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkbox-option input[type="checkbox"]:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Responsive adjustments for checkbox */
@media (max-width: 768px) {
  .checkbox-option {
    align-items: flex-start;
  }

  .checkbox-option label {
    font-size: 13px;
  }

  .checkbox-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }
}

.date-input {
  position: relative;
}

.date-input i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8c8d;
}

.date-input .form-control {
  padding-left: 45px;
}

.register .btn {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #ff9900;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.register .btn:hover {
  background-color: #e68a00;
}
.form-footer {
  text-align: center;
  margin-top: 20px;
  color: #7f8c8d;
}

.form-footer a {
  color: #3498db;
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Sidebar */
.sidebar {
  width: 300px;
  margin-right: 30px;
  margin-left: 1rem;
}

.sidebar-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.sidebar-section h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.sidebar-section ul {
  list-style: none;
}

.sidebar-section ul li {
  margin-bottom: 10px;
}

.sidebar-section ul li a {
  text-decoration: none;
  color: #7f8c8d;
  transition: color 0.3s;
}

.sidebar-section ul li a:hover {
  color: #3498db;
}

/* File Upload Styles */
.file-upload {
  position: relative;
  margin-bottom: 20px;
}

.file-upload-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}

.file-upload-area {
  border: 2px dashed #ddd;
  border-radius: 4px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #fafafa;
}

.file-upload-area:hover {
  border-color: #3498db;
  background-color: #f0f8ff;
}

.file-upload-area.highlight {
  border-color: #3498db;
  background-color: #e8f4fd;
}

.file-upload-icon {
  font-size: 40px;
  color: #7f8c8d;
  margin-bottom: 10px;
}

.file-upload-text {
  color: #7f8c8d;
  margin-bottom: 5px;
}

.file-upload-hint {
  font-size: 12px;
  color: #95a5a6;
}

.file-upload-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-preview {
  margin-top: 15px;
  display: none;
}

.file-upload-preview img {
  max-width: 100px;
  max-height: 100px;
  border-radius: 4px;
  margin-right: 10px;
}

.file-upload-info {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.file-upload-name {
  font-size: 14px;
  color: #2c3e50;
}

.file-upload-remove {
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 5px 10px;
  margin-right: 10px;
  cursor: pointer;
  font-size: 12px;
}

.file-upload-remove:hover {
  background: #c0392b;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .main-content {
    flex-direction: column;
    gap: 30px;
  }

  .sidebar {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    display: flex;
    gap: 20px;
    overflow-x: auto;
  }

  .sidebar-section {
    flex: 1;
    min-width: 250px;
  }

  .register-form {
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  .main-content {
    margin: 30px 0;
  }

  .register-form {
    padding: 25px;
  }

  .sidebar {
    flex-direction: column;
    gap: 15px;
    display: none;
  }

  .sidebar-section {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .main-content {
    margin: 20px 0;
  }

  .register-form {
    padding: 20px;
    margin: 0;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .radio-group,
  .checkbox-group {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .file-upload-area {
    padding: 20px 15px;
  }

  .file-upload-icon {
    font-size: 32px;
  }

  .file-upload-text {
    font-size: 14px;
  }

  .file-upload-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .file-upload-remove {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .register-form {
    padding: 15px;
  }

  .form-header h1 {
    font-size: 24px;
  }

  .form-header p {
    font-size: 14px;
  }

  .form-control {
    padding: 10px 12px;
    font-size: 14px;
  }

  .btn {
    padding: 10px;
    font-size: 14px;
  }

  .file-upload-area {
    padding: 15px 10px;
  }

  .file-upload-icon {
    font-size: 28px;
  }

  .file-upload-text {
    font-size: 13px;
  }

  .file-upload-hint {
    font-size: 11px;
  }

  .file-upload-preview img {
    max-width: 80px;
    max-height: 80px;
  }
}
@media (max-width: 450px) {
  .account-btn {
    width: 100%;
  }
}
/* Extra small devices */
@media (max-width: 400px) {
  .register-form {
    padding: 12px;
  }

  .form-header {
    margin-bottom: 20px;
  }

  .form-header h1 {
    font-size: 22px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .file-upload-area {
    padding: 12px 8px;
  }

  .file-upload-icon {
    font-size: 24px;
  }
}

/* Simple Auction Network Section */
/* Auction Network Section Styles */
.auction-network {
  background: linear-gradient(135deg, #ff9900 0%, #e67e22 100%);
  color: white;
  padding: 60px 0;
  margin: 40px 0;
}

.auction-network-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.auction-network-text {
  flex: 1;
}

.auction-network-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  margin-right: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  opacity: 0.9;
  margin-right: 1rem;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb .separator {
  margin: 0 5px;
}

.auction-network-image {
  flex: 1;
  text-align: center;
}

.auction-network-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .auction-network {
    padding: 40px 0;
  }

  .auction-network-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .auction-network-text h1 {
    font-size: 2rem;
  }

  .breadcrumb {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .auction-network-text h1 {
    font-size: 1.8rem;
  }

  .breadcrumb {
    font-size: 0.9rem;
    flex-wrap: wrap;
  }
}

.listing .header-features {
  display: flex;
  gap: 30px;
}

.listing .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.listing .feature i {
  color: var(--secondary);
}

/* Main Content */
.listing .main-content {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

/* Sidebar Styles */
.listing .sidebar {
  flex: 0 0 280px;
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sections-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 8px;
}

.listing .filter-group {
  margin-bottom: 20px;
}

.listing .filter-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.listing .filter-group input,
.listing .filter-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
}

.listing .price-inputs {
  display: flex;
  gap: 10px;
}

.listing .price-inputs input {
  flex: 1;
}

/* Items Section */
.listing .items-section {
  flex: 1;
  margin-left: 2rem;
}

.listing .items-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.listing .items-header h1 {
  color: var(--primary);
  font-size: 24px;
}

.listing .sort-options select {
  padding: 8px 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background-color: white;
  font-size: 14px;
}

.listing .divider {
  height: 1px;
  background-color: var(--border);
  margin: 20px 0;
}

/* Items Grid - 3 per row */
.listing .items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.listing .item-card {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.listing .item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.listing .item-image {
  height: 180px;
  background: linear-gradient(135deg, #434040 0%, #252222 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.listing .item-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.listing .car-icon {
  font-size: 60px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
}

.listing .favorite {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e53e3e;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: all 0.3s ease;
}

.listing .favorite:hover {
  transform: scale(1.1);
}

.listing .favorite.active {
  color: #e53e3e;
}

.listing .item-details {
  padding: 20px;
}

.listing .item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.listing .item-meta {
  margin-bottom: 15px;
}

.listing .item-category,
.listing .item-location {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.listing .item-status {
  display: inline-block;
  padding: 5px 12px;
  background-color: #fed7d7;
  color: #c53030;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.listing .item-status.active {
  background-color: #c6f6d5;
  color: #276749;
}

.listing .item-seller {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.listing .seller-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.listing .seller-info {
  flex: 1;
}

.listing .seller-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
}

.listing .seller-ratings {
  font-size: 12px;
  color: #718096;
}

.listing .item-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  text-align: center;
}

.listing .bid-button {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #ff9900, #feb47b);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.listing .bid-button:hover {
  background: linear-gradient(to right, #ff9900, #feb47b);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .listing .items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .listing .items-grid {
    grid-template-columns: 1fr;
  }
  .listing .items-section {
    flex: 1;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .listing .items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .listing .main-content {
    flex-direction: column;
  }

  .listing .sidebar {
    flex: 1;
  }

  .listing .header-content {
    flex-direction: column;
    gap: 15px;
  }

  .listing .header-features {
    flex-wrap: wrap;
    justify-content: center;
  }

  .listing .items-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --primary: #1a365d;
  --secondary: #d4af37;
  --accent: #2d3748;
  --light: #f7fafc;
  --dark: #1a202c;
  --text: #2d3748;
  --border: #e2e8f0;
  --success: #38a169;
  --danger: #e53e3e;
}

/* Registration css Start */

.reg-form-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 30px;
  transition: transform 0.3s ease;
}

.reg-form-card:hover {
  transform: translateY(-5px);
}

.reg-form-header {
  text-align: center;
  margin-bottom: 30px;
}

.reg-form-header h1 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 28px;
}

.reg-form-header p {
  color: #7f8c8d;
  font-size: 16px;
}

.reg-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.reg-form-group {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.reg-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
}

.reg-form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
}

.reg-form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none;
}

.reg-date-input,
.reg-address-input {
  position: relative;
}

.reg-date-input i,
.reg-address-input i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8c8d;
}

.reg-date-input .reg-form-control,
.reg-address-input textarea {
  padding-right: 45px;
}

.reg-address-input textarea.reg-form-control {
  resize: vertical;
  min-height: 100px;
}

.reg-radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.reg-radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reg-radio-option input[type="radio"] {
  margin: 0;
}

.reg-checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.reg-checkbox-option input[type="checkbox"] {
  margin: 0;
}

.reg-file-upload {
  margin-top: 8px;
}

.reg-file-upload-label {
  margin-bottom: 10px;
}

.reg-file-upload-area {
  border: 2px dashed #bdc3c7;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.reg-file-upload-area:hover {
  border-color: #3498db;
  background-color: #f8f9fa;
}

.reg-file-upload-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.reg-file-upload-icon {
  font-size: 40px;
  color: #bdc3c7;
  margin-bottom: 10px;
}

.reg-file-upload-text {
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c3e50;
}

.reg-file-upload-hint {
  color: #7f8c8d;
  font-size: 14px;
}

.reg-file-upload-preview {
  display: none;
  margin-top: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  position: relative;
}

.reg-file-upload-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.reg-file-upload-remove {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.reg-file-upload-name {
  font-weight: 600;
  color: #2c3e50;
}

#regImagePreview {
  max-width: 100%;
  max-height: 200px;
  border-radius: 4px;
}

.reg-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #ff9900 0%, #e67e22 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
}

.reg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reg-btn:active {
  transform: translateY(0);
}

.reg-form-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.reg-form-footer p {
  color: #7f8c8d;
}

.reg-form-link {
  color: #3498db;
  text-decoration: none;
}

.reg-form-link:hover {
  text-decoration: underline;
}

.reg-message {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  display: none;
}

.reg-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.reg-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.reg-loading {
  display: none;
  text-align: center;
  margin: 20px 0;
}

.reg-spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: reg-spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes reg-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .reg-form-row {
    flex-direction: column;
    gap: 0;
  }

  .reg-form-group {
    min-width: 100%;
  }
}
.reg-message {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  display: none;
  font-weight: 600;
  border: 1px solid;
}

.reg-message.success {
  background-color: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

.reg-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

.reg-message.warning {
  background-color: #fff3cd;
  color: #856404;
  border-color: #ffeaa7;
}
/* Registration css Ends*/
