a:hover {
  text-decoration: none !important;
}
/* === MAIN GRID === */
.trading {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
  }
  
  @media (max-width: 992px) {
    .trading {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .trading {
      grid-template-columns: 1fr;
      padding: 15px;
    }
  }
  
  /* === HEADER === */
  .trading .table {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(18, 18, 30, 0.85);
    border: 1px solid rgb(77, 121, 177);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 0, 102, 0.4);
    backdrop-filter: blur(8px);
    font-weight: 700;
    color: white;
  }
  
  /* === PRODUCT CARD === */
  .trading .product {
    background: rgba(15, 15, 25, 0.9);
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  .trading .product:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-color: #00f0ff;
  }
  
  /* === IMAGE === */
  .trading .product .view {
    text-align: center;
    margin-bottom: 18px;
    cursor: pointer;
  }
  
  .trading .product .view img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.5s ease;
  }
  
  .trading .product:hover .view img {
    filter: brightness(1.4) contrast(1.2) hue-rotate(10deg);
    transform: scale(1.1);
  }
  
  /* === TEXT — 1 QATORDA === */
  .trading .product .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .trading .product .name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
  }
  
  .trading .product .price {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(to right, rgb(77, 121, 177), blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
  }
  
  .trading .product .availability,
  .trading .product .market {
    font-size: 13px;
    color: #66aaff;
    margin-bottom: 10px;
  }
  
  /* === BUTTON === */
  .trading .product .add {
    margin-top: auto;
  }
  
  .trading .product button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, rgb(77, 121, 177), blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-family: inherit;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .trading .product button:hover {
    background: linear-gradient(45deg, rgb(77, 121, 177), blue);
    transform: scale(1.05);
  }
  
  /* === PAGINATION === */
  .trading .pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
    list-style: none;
    padding: 0;
  }
  
  /* .trading .pagination li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(100, 100, 150, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .trading .pagination li.active {
    background: rgb(77, 121, 177);
    box-shadow: 0 0 12px rgba(255, 0, 102, 0.8);
    transform: scale(1.4);
  } */
  
  /* === MODAL BACKGROUND === */
  body.fullscreen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
  }
  
  
  .trading .product.active {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-color: #00f0ff;
    position: relative;
    z-index: 10;
  }

  .progress {
    height: 35px !important;
  }