/* Main grid container */
.most-viewed-products-section {
    margin: 30px 0;
    padding: 0 15px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e67e22;
}

/* Grid layout */
.most-viewed-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 4), 1fr);
    gap: 20px;
    padding: 10px;
}

/* Product card styling */
.mvp-product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mvp-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.mvp-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Image container */
.mvp-image-container {
    position: relative;
    padding-top: 100%; /* 1:1 aspect ratio */
    background: #f8f8f8;
    overflow: hidden;
}

.mvp-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mvp-product-card:hover .mvp-product-image {
    transform: scale(1.05);
}

.mvp-view-count {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px;
    font-size: 12px;
    text-align: center;
}

.mvp-view-count i {
    margin-right: 5px;
}

/* Product info */
.mvp-product-info {
    padding: 15px;
    text-align: center;
}

.mvp-product-title {
    font-size: 16px;
    margin: 0 0 8px;
    font-weight: 600;
    color: #333;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mvp-price {
    font-size: 18px;
    font-weight: 700;
    color: #e67e22;
}

.mvp-price del {
    color: #999;
    font-size: 14px;
    margin-right: 5px;
}

.mvp-price ins {
    text-decoration: none;
}

.mvp-sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .most-viewed-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .most-viewed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .most-viewed-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mvp-product-title {
        height: auto;
    }
}