.v25-shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.v25-product-card {
    display: flex;
    min-height: 560px;
    flex-direction: column;
    gap: 0.95rem;
    overflow: hidden;
    border: 1px solid rgba(11, 28, 52, 0.08);
    border-radius: 8px;
    padding: 0 0 1.2rem;
    background: #fff;
    box-shadow: 0 18px 38px rgba(9, 25, 48, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.v25-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 141, 216, 0.24);
    box-shadow: 0 24px 54px rgba(9, 25, 48, 0.16);
}

.store-product-image-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f6f9fc 0%, #edf4f8 100%);
}

.v25-product-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    padding: 1.2rem;
    box-sizing: border-box;
    background: transparent;
}

.store-product-category {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(10, 18, 32, 0.78);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.v25-product-badge {
    align-self: flex-start;
    border-radius: 999px;
    padding: 0.34rem 0.68rem;
    background: #eef7ff;
    color: #0f4f7d;
    font-size: 0.78rem;
    font-weight: 900;
}

.store-product-meta,
.store-product-copy,
.store-product-features,
.store-product-actions {
    margin-right: 1.2rem;
    margin-left: 1.2rem;
}

.v25-product-card h3 {
    margin: 0;
    color: #10253a;
    font-size: 1.18rem;
    line-height: 1.4;
}

.store-product-copy {
    display: grid;
    gap: 0.55rem;
    min-height: 116px;
}

.v25-product-card p {
    margin: 0;
    color: #61707f;
    font-size: 0.95rem;
    line-height: 1.68;
}

.store-product-features {
    display: grid;
    gap: 0.48rem;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    color: #4e6274;
    line-height: 1.55;
}

.store-product-features li {
    position: relative;
    padding-left: 1rem;
}

.store-product-features li::before {
    content: '';
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff8c2f;
}

.store-product-actions {
    margin-top: auto;
}

.store-product-actions > a {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #ff8c2f;
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(255, 140, 47, 0.22);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.store-product-actions > a:hover,
.store-product-actions > a:focus {
    transform: translateY(-2px);
    background: #d96b13;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(255, 140, 47, 0.28);
}

.store-product-toolbar {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 1.2rem;
    border: 1px solid rgba(0, 51, 102, 0.1);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0, 51, 102, 0.06);
}

.store-product-search {
    display: flex;
    min-width: 0;
    gap: 0.65rem;
    align-items: center;
    color: var(--text-light);
    font-weight: 700;
}

.store-product-search i {
    color: var(--accent-color);
}

.store-product-toolbar > a {
    flex: 0 0 auto;
    border-radius: 8px;
    padding: 0.62rem 0.9rem;
    background: var(--primary-color);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.store-product-meta {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    justify-content: space-between;
}

.store-product-meta strong {
    color: #e06500;
    font-weight: 900;
    font-size: 1rem;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .v25-shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .v25-shop-grid {
        grid-template-columns: 1fr;
    }

    .v25-product-card {
        min-height: auto;
    }

    .store-product-copy {
        min-height: auto;
    }

    .store-product-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .store-product-toolbar > a {
        text-align: center;
    }
}
