.motherland-product-grid-40ca1e57 {
    display: grid;
    gap: 20px;
    width: 100%;
}

.motherland-product-card-40ca1e57 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.motherland-product-card-40ca1e57:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.motherland-product-card-link-40ca1e57 {
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
}

.motherland-product-image-40ca1e57 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.motherland-product-details-40ca1e57 {
    padding: 15px;
    text-align: center;
}

.motherland-product-title-40ca1e57 {
    font-size: 16px;
    margin: 0 0 10px 0;
    color: #1C244B;
    font-weight: 600;
}

.motherland-product-price-40ca1e57 {
    font-size: 18px;
    font-weight: 700;
    color: #467FF7;
    display: block;
}

.motherland-product-add-to-cart-40ca1e57 {
    padding: 0 15px 15px;
}

.motherland-product-add-to-cart-40ca1e57 .button {
    display: block;
    width: 100%;
    text-align: center;
    background: #467FF7;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.motherland-product-add-to-cart-40ca1e57 .button:hover {
    background: #1C244B;
}

.motherland-product-pagination-40ca1e57 {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.motherland-product-pagination-40ca1e57 a,
.motherland-product-pagination-40ca1e57 span {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.motherland-product-pagination-40ca1e57 .current {
    background: #467FF7;
    color: #fff;
    border-color: #467FF7;
}