/* Frame View Override Styles */
.product-grid.view-frame {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.view-frame .product-card {
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
}

.view-frame .product-info h3 a,
.view-frame .product-info .product-name a {
    color: #fff !important;
}

.view-frame .product-img {
    height: 300px;
    width: 100%;
    background: #fff;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.view-frame .product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 10px;
}
