

    .product-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
        cursor: pointer;
        position: relative;
    }

    .product-card:hover {
        transform: translateY(-6px);
    }

    .product-image {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    .product-body {
        padding: 18px;
    }

    .product-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .product-category {
        background: #ecebff;
        color: #6c63ff;
        padding: 5px 12px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        
    }

    .wishlist-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #f3f4f7;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wishlist-btn:hover {
        background: #ececec;
    }

    .product-title {
        font-size: 21px;
        font-weight: 700;
        margin-top: 15px;
        color: #111;
    }

    .product-desc {
        color: #777;
        font-size: 14px;
        margin-top: 8px;
        line-height: 1.5;
    }

    .product-info {
        margin-top: 18px;
    }

    .info-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .info-label {
        color: #777;
    }

    .info-value {
        font-weight: 600;
        color: #111;
    }

    .owner-section {
        display: flex;
        align-items: center;
        margin-top: 20px;
    }

    .owner-img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        object-fit: cover;
    }

    .owner-details {
        margin-left: 12px;
    }

    .owner-name {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .owner-rating {
        color: #ffb400;
        font-size: 13px;
    }

    .card-buttons {
        display: flex;
        gap: 10px;
        margin-top: 20px;
    }

    .exchange-btn {
        flex: 1;
        background:#71227d !important;
        border: none;
        color: white;
        padding: 11px;
        border-radius: 12px;
        font-weight: 600;
    }

    .exchange-btn:hover {
         background:#8e5597;
    }

    .rent-btn {
        flex: 1;
        background: #f3f4f7;
        border: none;
        padding: 11px;
        border-radius: 12px;
        font-weight: 600;
    }

    .rent-btn:hover {
        background: #e8e8e8;
    }

    .trust-score-box {
        display: flex;
        align-items: center;
        margin-top: 6px;
    }

    .trust-circle {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: conic-gradient(
            #6c63ff 0% 92%,
            #e5e7eb 92% 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-right: 10px;
    }

    .trust-circle::before {
        content: "";
        position: absolute;
        width: 32px;
        height: 32px;
        background: white;
        border-radius: 50%;
    }

    .trust-percent {
        position: relative;
        font-size: 11px;
        font-weight: bold;
        color: #111;
    }

    .trust-text {
        display: flex;
        flex-direction: column;
    }

    .trust-title {
        font-size: 14px;
        font-weight: 600;
        color: #111;
    }

    .trust-subtitle {
        font-size: 12px;
        color: #777;
    }
    .product-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    transition:0.3s;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    border:1px solid #eee;

    position:relative;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 18px 40px rgba(0,0,0,0.15);

}

.product-image-box{

    position:relative;

}

.product-image{

    width:100%;

    height:260px;

    object-fit:cover;

}

.wishlist-btn{

    position:absolute;

    top:15px;

    right:15px;

    width:42px;

    height:42px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

}
  

