/* General structural card layout */
.skd-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 16px;
    height: 100%;
}

.skd-product-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: #e23e3e;
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
    z-index: 10;
}

.skd-product-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f7f7f7;
}

.skd-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.skd-product-info {
    display: flex;
    flex-direction: column;
    padding-top: 16px;
    flex-grow: 1;
}

.skd-product-info h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.skd-product-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.skd-product-original-price {
    font-size: 14px;
    font-weight: 500;
    color: #9e9e9e;
    text-decoration: line-through;
}

.skd-product-price {
    font-size: 16px;
    font-weight: 700;
}

.skd-product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.skd-product-button {
    display: inline-block;
    text-align: center;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.skd-product-button:hover {
    opacity: 0.88;
}

.skd-product-button.skd-loading {
    opacity: 0.6;
    pointer-events: none;
}

.skd-more-info-button {
    display: inline-block;
    text-align: center;
    padding: 9px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #2b2a26;
    color: #2b2a26;
    background: transparent;
    transition: opacity 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.skd-more-info-button:hover {
    opacity: 0.75;
}

/* Hover lift + image zoom */
.skd-product-card {
    transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s cubic-bezier(.16,1,.3,1);
}
.skd-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px -18px rgba(43,42,38,.28);
}
.skd-product-media img {
    transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.skd-product-card:hover .skd-product-media img {
    transform: scale(1.045);
}
