.single-top-10-list-section {
  background: linear-gradient(
    180deg,
    rgba(249, 249, 251, 0) 0%,
    rgba(240, 234, 229, 1) 100%
  );
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.single-top-10-list-section p {
  color: #3f3b37;
  margin-bottom: 20px;
}

.card-market-info {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 32px;
}

.market-info-left,
.market-info-middle,
.market-info-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-label {
  font-size: var(--fluid-14-16);
  color: var(--color-text-secondary);
  font-weight: 500;
  min-width: 80px;
}

.info-value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fluid-14-16);
  color: var(--color-text);
  font-weight: 500;
}

.globe-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.date-info {
  margin-bottom: 0;
}

.date-text {
  font-size: var(--fluid-14-16);
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.top-10-filter-container {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-end;
}

.top-10-filter-item {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-end;
}

.top-10-filter-item-label {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 6px;
}

.top-10-filter-dropdown {
  position: relative;
  display: inline-block;
}

.top-10-filter-dropdown-button {
  background: none;
  border: none;
  padding: 2px 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.top-10-filter-item-value {
  font-size: var(--fluid-16-20);
  color: #8b4513;
  font-weight: 600;
}

.dropdown-icon {
  width: 20px;
  height: 20px;
  color: #8b4513;
  transition: transform 0.2s ease;
}

.top-10-filter-dropdown-button.active .dropdown-icon {
  transform: rotate(180deg);
}

.top-10-filter-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 140px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  max-height: 350px;
  overflow-y: auto;
}

.top-10-filter-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-10-filter-dropdown-item {
  padding: 10px 16px;
  cursor: pointer;
  font-size: var(--font-size-base);
  color: var(--color-text);
  transition: background-color 0.2s ease;
}

.top-10-filter-dropdown-item:hover {
  background-color: #f9fafb;
}

.top-10-filter-dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}

.top-10-filter-dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}

/* Card Offer */
.card-offer-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 40px;
  border-radius: 32px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background-image: linear-gradient(
    217deg,
    rgba(242, 238, 235, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );

  margin: 60px 0;
  overflow: hidden;
  position: relative;
}

.card-offer {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.card-offer-img {
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  transform: translateX(10%) translateY(12%);
}

.card-offer-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-offer-header h2 {
  font-family: "SangBleuRegular", serif;
  font-weight: 400;
  color: #3f3b37;
}

.card-offer-header h2 span {
  color: #8b4513;
}

.card-offer-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-offer-body p {
  font-size: var(--font-size-base);
  color: var(--color-text);
}

/* Responsive design */
@media (max-width: 768px) {
  .single-top-10-list-section {
    padding: 16px 0;
    margin-bottom: 16px;
  }
  
  .card-market-info {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    margin-bottom: 20px;
  }

  .market-info-left,
  .market-info-middle {
    flex-direction: column;
    gap: 8px;
  }

  .market-info-right {
    align-items: flex-start;
  }
  
  .info-row {
    flex-wrap: wrap;
  }
  
  .info-label {
    min-width: auto;
    font-size: 14px;
  }
  
  .info-value {
    font-size: 14px;
  }

  .top-10-filter-container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .top-10-filter-item {
    align-items: stretch;
  }

  .top-10-filter-dropdown {
    width: 100%;
  }

  .top-10-filter-dropdown-button {
    justify-content: space-between;
    width: 100%;
  }

  .card-offer-container {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .card-offer {
    width: 100%;
  }

  .card-offer-img {
    width: 100%;
    position: relative;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    transform: translateX(0) translateY(0);
  }

  .top-10-filter-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .top-10-filter-item {
    width: 100%;
  }

  .top-10-filter-item-label {
    display: none;
  }

  .top-10-filter-dropdown-button {
    justify-content: center;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    padding: 8px 12px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #8b4513;
    font-weight: 600;
  }

  .top-10-filter-dropdown-menu {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-banner h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .hero-banner p {
    font-size: 14px;
  }
  
  .card-market-info {
    background-color: #fff;
    padding: 14px;
    gap: 12px;
  }

  .market-info-left,
  .market-info-middle {
    flex-direction: column;
    gap: 6px;
  }

  .info-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
  }
  
  .info-label,
  .info-value {
    font-size: 13px;
  }
  
  .date-text {
    font-size: 13px;
  }

  .market-info-right .btn {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  .hero-banner {
    padding: 30px 16px;
  }
  
  .hero-banner h1 {
    font-size: 24px;
  }
  
  .hero-banner p {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .single-top-10-list-section {
    padding: 12px 0;
  }
  
  .card-market-info {
    padding: 12px;
    border-radius: 8px;
  }
  
  .info-label,
  .info-value,
  .date-text {
    font-size: 12px;
  }
  
  .top-10-filter-dropdown-button {
    font-size: 13px;
    padding: 8px;
  }
  
  .top-10-filter-dropdown-menu {
    font-size: 13px;
  }
  
  /* Make buttons more touch-friendly */
  .btn {
    min-height: 44px;
    font-size: 14px;
  }
  
  /* Adjust filter dropdowns for mobile */
  .top-10-filter-container {
    position: sticky;
    top: 60px;
    background: white;
    padding: 10px 0;
    z-index: 10;
    margin-bottom: 16px;
  }
}