.skd-product-card-wrap {
    width: 100%;
    min-width: 0;
}

.skd-product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    color: var(--skd-espresso, #3a2b24);
    background: #fff;
    border: 1px solid rgba(58, 43, 36, 0.1);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(58, 43, 36, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.skd-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(58, 43, 36, 0.14);
}

.skd-product-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, #f1d69b, #8f213d 55%, #3a2b24);
}

.skd-product-card__image,
.skd-product-card__placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 320ms ease;
}

.skd-product-card:hover .skd-product-card__image {
    transform: scale(1.035);
}

.skd-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 11px;
    color: #fff;
    background: var(--skd-berry, #97233f);
    border-radius: 999px;
    font-size: 0.68rem;
    line-height: 1;
    font-weight: 750;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.skd-product-card__favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: var(--skd-espresso, #3a2b24);
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(58,43,36,.12);
    border-radius: 50%;
    cursor: pointer;
}

.skd-product-card__favorite svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.skd-product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 16px;
}

.skd-product-card__category {
    margin-bottom: 7px;
    color: #7d7650;
    font-size: 0.7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.skd-product-card__title {
    margin: 0;
    color: var(--skd-espresso, #3a2b24);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1rem, 1.4vw, 1.17rem);
    font-weight: 500;
    line-height: 1.25;
}

.skd-product-card__subtitle {
    margin: 7px 0 0;
    color: #6f655e;
    font-size: .82rem;
    line-height: 1.45;
}

.skd-product-card__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: .78rem;
}

.skd-product-card__stars {
    display: inline-flex;
    gap: 1px;
    color: #d7c9ad;
}

.skd-product-card__stars .is-filled {
    color: var(--skd-gold, #d2a12d);
}

.skd-product-card__reviews {
    color: #6f655e;
}

.skd-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
}

.skd-product-card__price {
    color: var(--skd-berry, #97233f);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    white-space: nowrap;
}

.skd-product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 19px;
    color: #fff;
    background: var(--skd-berry, #97233f);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 180ms ease, transform 180ms ease;
}

.skd-product-card__cta:hover {
    color: #fff;
    background: var(--skd-berry-dark, #77182f);
    transform: translateY(-1px);
}

.skd-product-card-editor .skd-product-card-wrap {
    max-width: 390px;
}

.skd-product-card-editor__image-control img {
    width: 100%;
    max-height: 170px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .skd-product-card__body { padding: 16px; }
    .skd-product-card__footer { align-items: stretch; flex-direction: column; }
    .skd-product-card__cta { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .skd-product-card,
    .skd-product-card__image,
    .skd-product-card__cta {
        transition: none;
    }
    .skd-product-card:hover,
    .skd-product-card:hover .skd-product-card__image,
    .skd-product-card__cta:hover {
        transform: none;
    }
}
