.woo-grid-f381c44f {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media(min-width: 768px) {
    .woo-grid-f381c44f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .woo-grid-f381c44f {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.woo-card-f381c44f {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.woo-card-f381c44f:hover {
    transform: translateY(-5px);
}

.woo-img-wrap-f381c44f {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 130%; /* Aspect ratio */
    overflow: hidden;
}

.woo-img-f381c44f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.woo-badge-f381c44f {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.badge-bestseller {
    background: #c5a880;
    color: #111;
}

.badge-new {
    background: #111;
}

.woo-content-f381c44f {
    padding: 20px;
    flex-grow: 1;
}

.woo-cat-f381c44f {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.woo-title-f381c44f {
    font-size: 16px;
    margin: 0 0 12px;
    font-family: "Times New Roman", serif;
    font-weight: 400;
}

.woo-title-f381c44f a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woo-variations-mock-f381c44f {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.var-color-f381c44f {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #eaeaea;
}

.var-count-f381c44f {
    font-size: 10px;
    color: #777;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 4px;
}

.woo-price-f381c44f {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.woo-price-f381c44f ins {
    text-decoration: none;
}

.woo-price-f381c44f del {
    color: #999;
    font-weight: 400;
    margin-right: 8px;
    font-size: 13px;
}

.woo-add-to-cart-f381c44f {
    border-top: 1px solid #f0f0f0;
    padding: 15px;
    text-align: center;
}

.woo-add-to-cart-f381c44f a {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    padding: 0;
}

.woo-add-to-cart-f381c44f a:hover {
    color: #111;
    background: transparent;
}