#nftList .card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

#nftList .nfts_list {
    height: 450px;
    overflow-y: scroll;
    padding: 10px;
}

#nftList .card {
    position: relative;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

#nftList .card:hover {
    transform: translateY(-3px);
}

#nftList .card.selected {
    border-color: #4f46e5;
}

#nftList .card img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    border-radius: 10px;
}

#nftList .card-body {
    padding: 10px 12px 14px;
}

#nftList .title {
    font-size: 15px;
    font-weight: bold;
    color: #111;
    margin: 6px 0;
    padding: 10px;
}

#nftList .sizes {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

#nftList .colors {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

#nftList .swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: inline-block;
}

#nftList .price {
    font-size: 16px;
    font-weight: bold;
    color: #111;
}

#nftList .discount {
    font-size: 13px;
    color: #9333ea;
}

#nftList .badge {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 6px;
    margin-bottom: 6px;
}

#nftList .checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: #4f46e5;
    background: #fff;
    opacity: 0;
    transition: .2s;
}

#nftList .card.selected .checkmark {
    opacity: 1;
    background: #4f46e5;
    color: #fff;
}

#nftList #selected-info {
    margin-top: 20px;
}

#productType .radio-group {
    display: flex;
    gap: 20px;
    padding-top: 20px;
}

#productType .radio-input {
    display: none;
}

#productType .radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    border-radius: 12px;
    border: 2px solid #d1d5db;
    background: #fff;
    color: #374151;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    position: relative;
    padding: 0 !important;
}

/* Hover effect */
#productType .radio-label:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.25);
}

/* Selected state */
#productType .radio-input:checked+.radio-label {
    background: linear-gradient(135deg, #6366f1, #a78bfa);
    border-color: #6366f1;
    color: #fff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

/* Custom check indicator */
#productType .radio-input:checked+.radio-label::after {
    content: "✓";
    position: absolute;
    top: -12px;
    right: -4px;
    font-size: 13px;
    font-weight: bold;
    color: #6366f1;
    background: #fff;
    border-radius: 50%;
    border-color: #6366f1;
    border: 2px solid #6366f1;
    padding: 2px 6px;
    height: 26px;
    width: 26px;
}