.contentgecko-products-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 1023px) {
    .contentgecko-products-grid {
        gap: 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .contentgecko-products-grid {
        gap: 14px;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.contentgecko-product-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 4px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    cursor: pointer;
}

@media (max-width: 1023px) {
    .contentgecko-product-card {
        padding: 16px;
    }
}

.contentgecko-product-card:focus,
.contentgecko-product-card:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #22c55e;
}

.contentgecko-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.contentgecko-product-card__image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    margin: 0 0 24px;
    border-radius: 2px;
    background: #f8fafc;
    overflow: hidden;
}

.contentgecko-product-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contentgecko-product-card__title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 24px;
    color: #0f172a;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.contentgecko-product-card__price {
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin-top: 0;
}

.contentgecko-product-card__price-prefix {
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
}

.contentgecko-product-card__price-current {
    font-size: 20px;
    font-weight: 500;
    color: #0f172a;
}

.contentgecko-product-card__price-old {
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
}

.contentgecko-product-card__body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

