.product-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    padding: 24px;
    transition: all 0.25s ease;
    border: 4px solid #ffd40d;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    height: 100%;
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-card:hover {
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.product-card--clickable {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-card--clickable:hover {
    text-decoration: none;
}

.product-card--clickable:focus-visible {
    outline: 3px solid #111;
    outline-offset: 6px;
    border-radius: 28px;
}

.product-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    overflow: hidden;
    background: #e8eaee;
}

.product-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card__content {
    display: flex;
    flex-direction: column;
}

.product-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
}

.product-card__description {
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-card__footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 2px solid #fff3b0;
}

.product-card__price {
    font-size: 1.2rem;
    color: #111;
}

.product-card .button {
    padding: 10px 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-card__meta {
    margin: 0 0 1rem;
    padding: 0;
}

.product-card__meta li {
    margin-bottom: 0.35rem;
    color: #6c757d;
}

@media (min-width: 768px) {
    .product-card-slider-item {
        padding: 12px;
    }
}

.product-row {
    border: 4px solid #ffd40d;
    border-radius: 28px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-row .card-body {
    padding: 24px;
}

.product-row__image {
    height: 100%;
    border-right: 4px solid #ffd40d;
}

.product-row__image img {
    border-radius: 24px 0 0 24px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.product-row .product-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.product-description {
    font-size: 0.95rem;
    color: #6c757d;
}

.product-row ul {
    padding-left: 1rem;
    margin-bottom: 1.25rem;
}

.product-row ul li {
    position: relative;
    margin-bottom: 0.35rem;
}

.product-row ul li::marker {
    color: #ffd40d;
    font-size: 1.1rem;
}

.product-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
}

.product-badge--weight {
    background-color: #ffe17a;
    color: #1f1f1f;
}

.product-badge--price {
    background-color: #111;
    color: #fff;
}

.product-row .button {
    border-radius: 12px;
}

.product-row--clickable {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-row--clickable:hover {
    text-decoration: none;
}

.product-row--clickable:focus-visible {
    outline: 3px solid #111;
    outline-offset: 8px;
    border-radius: 20px;
}

@media (max-width: 767.98px) {
    .product-row__image {
        border-right: none;
    }
    .product-row__image img {
        border-radius: 24px 24px 0 0;
        min-height: 220px;
    }
}
