/* Card */
.dk-product-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dk-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
}

/* Image */
.dk-product-image {
    position: relative;
    background: #F6F5F0; /* claridad */
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dk-product-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

/* Stock badge */
.dk-stock {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.dk-in-stock {
    background: rgba(112, 41, 225, 0.1);
    color: #7029E1;
}

/* Body */
.dk-product-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dk-product-title {
    font-size: 17px;
    font-weight: 600;
    color: #0F172A; /* autoridad */
}

.dk-product-description {
    font-size: 13px;
    line-height: 1.5;
    color: #9DA2A6; /* soporte */
}

/* Footer */
.dk-product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dk-product-price {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
}

/* CTA */
.dk-product-btn {
    background: #7029E1; /* identidad */
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.dk-product-btn:hover {
    background: #5b21b6;
    transform: translateY(-1px);
    color: var(--my-white-color);
}