﻿.products-intro h2 {
    font-weight: 800;
    letter-spacing: .2px
}

.product-card {
    position: relative;
    background: linear-gradient(180deg,#0f1730,#121e3a);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,.20);
}

    .product-card::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: 20px;
        padding: 1px;
        background: conic-gradient(from 180deg, rgba(18,180,255,.0), rgba(245,179,1,.35), rgba(18,180,255,.0));
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: .0;
        transition: opacity .25s;
    }

    .product-card:hover {
        transform: translateY(-6px) rotateX(1deg);
        border-color: #5e78b8;
        box-shadow: 0 14px 36px rgba(0,0,0,.35)
    }

        .product-card:hover::before {
            opacity: .8
        }

.product-img {
    aspect-ratio: 1 / 1;
    background: #0a1328 url('DeepMate.png') center/cover no-repeat;
    border-radius: 14px
}

.product-body {
    padding: 16px
}

.product-title {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: .35rem
}

.product-link {
    color: var(--accent2);
    font-weight: 700;
    text-decoration: none
}

    .product-link:hover {
        text-decoration: underline
    }

.product-price {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: .2px;
    margin: .35rem 0 .75rem
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    border-radius: 999px;
    padding: .6rem 1rem;
    font-weight: 800;
    background: linear-gradient(135deg,#1e90ff,#06c6d4);
    color: #031022;
    border: none;
    box-shadow: 0 6px 18px rgba(6,198,212,.25);
    transition: transform .2s ease, filter .2s ease;
}

    .btn-buy:hover {
        filter: brightness(1.05);
        transform: translateY(-2px)
    }

    .btn-buy:active {
        transform: translateY(0) scale(.98)
    }

.badge-chip {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
    color: #cfe3ff;
    padding: .25rem .5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .75rem;
    backdrop-filter: blur(6px);
}

/* pagination */
.dm-pagination .page-link {
    background: #0d1832;
    border-color: var(--border);
    color: #cfe3ff;
    font-weight: 700;
}

    .dm-pagination .page-link:hover {
        background: #132246;
        color: #fff
    }

.dm-pagination .active .page-link {
    background: linear-gradient(135deg,#1e90ff,#06c6d4);
    border-color: transparent;
    color: #061321
}
