/* Product card styling */
.sago-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sago-shadow);
    border: 1px solid var(--sago-border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.sago-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sago-shadow-hover);
}
.sago-product-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--sago-light-bg);
}
.sago-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.sago-product-card:hover .sago-product-image img {
    transform: scale(1.05);
}
.sago-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}
.badge {
    background: var(--sago-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
}
.badge.sale { background: var(--sago-primary); }
.badge.new { background: var(--sago-green); }

.sago-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 2;
}
.sago-actions a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: all 0.2s;
}
.sago-actions a:hover {
    background: var(--sago-primary);
    color: #fff;
    transform: scale(1.1);
}
.sago-product-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.sago-product-content .title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--sago-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sago-product-content .meta {
    font-size: 0.7rem;
    color: #6c757d;
}
.sago-product-content .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sago-primary);
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    margin: 4px 0;
}
.sago-product-content .price del {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: normal;
}
.sago-product-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}
.sago-product-buttons .button,
.sago-product-buttons .sago-wa {
    width: 100%;
    text-align: center;
    padding: 10px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.2s;
}
.sago-product-buttons .button {
    background: var(--sago-light-bg);
    color: var(--sago-text);
    border: 1px solid var(--sago-border);
}
.sago-product-buttons .button:hover {
    background: var(--sago-primary);
    color: #fff;
    border-color: var(--sago-primary);
}
.sago-product-buttons .sago-wa {
    background: #25D366;
    color: #fff;
}
.sago-product-buttons .sago-wa:hover {
    background: #128C7E;
    transform: translateY(-2px);
}