.st-products-grid--shortcode {
    display: grid;
    gap: 24px;
    padding: 24px 16px;
    background: transparent;
}

.st-products-grid--shortcode .st-product-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 24px 48px rgba(30, 41, 59, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: none;
    justify-self: stretch;
}

.st-products-grid--shortcode .st-product-card__title,
.st-products-grid--shortcode .st-product-card__title.st-product-card__title,
.st-products-grid--shortcode .st-product-card h3.st-product-card__title {
    font-size: 20px !important;
    line-height: 1.1;
    color: #0f1d32;
    margin: 0;
}

.st-products-grid--shortcode .st-product-card__description,
.st-products-grid--shortcode .st-product-card__description.st-product-card__description {
    font-size: 14px !important;
    line-height: 1.6;
    color: #526173;
}

.st-products-grid--shortcode .st-product-card__description-section {
    background: #f2f5f8;
    border-radius: 16px;
    padding: 16px;
}

.st-products-grid--shortcode .st-product-card__description p {
    margin: 0 0 12px;
}

.st-products-grid--shortcode .st-product-card__description p:last-child {
    margin-bottom: 0;
}

.st-products-grid--shortcode .st-product-card__pricing {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.st-products-grid--shortcode .st-product-price {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.st-products-grid--shortcode .st-product-price__regular,
.st-products-grid--shortcode .st-product-price__regular.st-product-price__regular {
    font-size: 14px !important;
    color: #64748b;
    text-decoration: line-through;
}

.st-products-grid--shortcode .st-product-price__sale,
.st-products-grid--shortcode .st-product-price__sale .amount,
.st-products-grid--shortcode .st-product-price__sale.st-product-price__sale {
    font-size: 20px !important;
    font-weight: 700;
    color: #0f1d32;
}

.st-products-grid--shortcode .st-product-price__savings,
.st-products-grid--shortcode .st-product-price__savings.st-product-price__savings {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-weight: 600;
    font-size: 14px !important;
    width: fit-content;
}

.st-products-grid--shortcode .st-product-card__button,
.st-products-grid--shortcode .st-product-card__button.st-product-card__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    align-self: flex-start;
    padding: 16px 24px;
    background: #1f4df5;
    color: #ffffff;
    border-radius: 16px;
    font-weight: 600;
    font-size: 14px !important;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(31, 77, 245, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.st-products-grid--shortcode .st-product-card__button:hover,
.st-products-grid--shortcode .st-product-card__button:focus {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(31, 77, 245, 0.3);
}

@media (min-width: 768px) {
    .st-products-grid--shortcode {
        padding: 40px 24px;
    }

    .st-products-grid--shortcode .st-product-card__title {
        font-size: 20px !important;
    }
}

@media (min-width: 1024px) {
    .st-products-grid--shortcode {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 48px 32px;
    }

    .st-products-grid--shortcode .st-product-card {
        padding: 48px 40px;
        max-width: none;
    }

    .st-products-grid--shortcode .st-product-card__title {
        font-size: 24px !important;
    }

    .st-products-grid--shortcode .st-product-card__description,
    .st-products-grid--shortcode .st-product-card__description.st-product-card__description {
        font-size: 16px !important;
    }

    .st-products-grid--shortcode .st-product-price__regular,
    .st-products-grid--shortcode .st-product-price__regular.st-product-price__regular {
        font-size: 16px !important;
    }

    .st-products-grid--shortcode .st-product-price__sale,
    .st-products-grid--shortcode .st-product-price__sale .amount,
    .st-products-grid--shortcode .st-product-price__sale.st-product-price__sale {
        font-size: 24px !important;
    }

    .st-products-grid--shortcode .st-product-price__savings,
    .st-products-grid--shortcode .st-product-price__savings.st-product-price__savings {
        font-size: 16px !important;
    }

    .st-products-grid--shortcode .st-product-card__button,
    .st-products-grid--shortcode .st-product-card__button.st-product-card__button {
        font-size: 16px !important;
    }
}
