  .top_sales_section {
      max-width: 1200px;
      padding: 0 20px;
      position: relative;
      margin-bottom: 8px;
  }

  .top_sales_header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #1e3a8a;
      padding: 12px 16px;
      margin-bottom: 0;
  }

  .top_sales_header h2 {
      color: #ffffff;
      font-size: 20px;
      font-weight: 700;
      margin: 0;
  }

  .top_sales_header a {
      color: #fbbf24;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .top_sales_header a:hover {
      color: #ffffff;
      text-decoration: underline;
  }

  .top_sales_grid_wrapper {
      background: white;
      padding: 5px;
      border-radius: 0 0 6px 6px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      position: relative;
  }

  .scroll_indicator_mobile {
      display: none;
      position: absolute;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
      background: rgba(30, 58, 138, 0.9);
      color: white;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      z-index: 5;
      align-items: center;
      gap: 4px;
      box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
  }

  .scroll_indicator_mobile i {
      font-size: 14px;
  }

  .top_sales_grid {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: calc(50% - 4px);
      gap: 8px;
      list-style: none;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 0;
      margin: 0;
      align-items: stretch;
  }

  .top_sales_grid::-webkit-scrollbar {
      display: none;
  }

  .top_sales_grid li {
      height: 100%;
      display: flex;
  }

  .top_sales_card_link {
      text-decoration: none;
      color: inherit;
      display: flex;
      width: 100%;
      height: 100%;
  }

  .top_sales_card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      width: 100%;
      min-height: 260px;
  }

  .top_sales_card:hover {
      box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
  }

  .top_sales_image_container {
      width: 100%;
      height: 140px;
      position: relative;
      background: #ffffff;
      overflow: hidden;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid #e5e7eb;
  }

  .top_sales_image {
      width: 100%;
      height: 100%;
      object-fit: contain;
  }

  .top_sales_info {
      padding: 10px;
      display: flex;
      flex-direction: column;
      gap: 2px;
      flex: 1;
      min-height: 0;
  }

  .top_sales_name {
      font-size: 13px;
      color: #1e3a8a;
      font-weight: 600;
      line-height: 1.4;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-shrink: 0;
  }

  .top_sales_pricing {
      margin-top: 2px;
      padding-top: 0;
  }

  .top_sales_price {
      font-size: 15px;
      font-weight: 700;
      color: #22c55e;
  }

  .top_sales_original_price {
      font-size: 12px;
      color: #999;
      text-decoration: line-through;
      margin-left: 6px;
  }

  .no_top_sales {
      text-align: center;
      padding: 60px 20px;
      color: #1e3a8a;
      font-size: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      grid-column: 1 / -1;
  }

  .no_top_sales i {
      font-size: 48px;
      color: #1e3a8a;
  }

  .top_sales_nav_btn {
      display: none;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: #1e3a8a;
      border: none;
      border-radius: 50%;
      color: white;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: opacity 0.3s ease;
      opacity: 0;
  }

  .top_sales_nav_btn:hover {
      background: #2563eb;
  }

  .top_sales_nav_btn i {
      font-size: 20px;
  }

  .top_sales_nav_btn.prev {
      left: 10px;
  }

  .top_sales_nav_btn.next {
      right: 10px;
  }

  .top_sales_grid_wrapper:hover .top_sales_nav_btn:not(.hidden) {
      opacity: 1;
  }

  .top_sales_nav_btn.hidden {
      visibility: hidden;
  }

  @media (max-width: 480px) {
      .top_sales_grid {
          grid-auto-columns: calc(50% - 4px);
          gap: 8px;
      }

      .top_sales_card {
          min-height: 140px;
      }

      .top_sales_image_container {
          height: 140px;
      }

      .top_sales_name {
          font-size: 12px;
      }

      .top_sales_price {
          font-size: 14px;
      }

      .top_sales_original_price {
          font-size: 11px;
      }

      .top_sales_info {
          padding: 8px;
          gap: 2px;
      }

      .top_sales_pricing {
          margin-top: 2px;
          padding-top: 0;
      }
  }

  @media (min-width: 481px) and (max-width: 767px) {
      .top_sales_grid {
          grid-auto-columns: calc(33.33% - 6px);
          gap: 10px;
      }

      .top_sales_card {
          min-height: 160px;
      }

      .top_sales_image_container {
          height: 160px;
      }
  }

  @media (max-width: 600px) {
      .top_sales_section {
          padding: 0;
      }

      .scroll_indicator_mobile {
          display: flex;
      }
  }

  @media (min-width: 768px) {
      .top_sales_grid {
          gap: 12px;
          grid-auto-columns: calc(16.666% - 10px);
      }

      .top_sales_card {
          min-height: 180px;
      }

      .top_sales_image_container {
          height: 180px;
      }

      .top_sales_name {
          font-size: 12px;
      }

      .top_sales_info {
          padding: 10px;
          gap: 2px;
      }

      .top_sales_price {
          font-size: 15px;
      }

      .top_sales_original_price {
          font-size: 11px;
      }

      .top_sales_pricing {
          margin-top: 2px;
          padding-top: 0;
      }

      .top_sales_nav_btn {
          display: flex;
      }
  }