.podconduit-hub-gallery {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.podconduit-hub-gallery[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

.podconduit-hub-gallery[data-columns="3"] {
    grid-template-columns: repeat(3, 1fr);
}

.podconduit-hub-gallery[data-columns="4"] {
    grid-template-columns: repeat(4, 1fr);
}

.podconduit-hub-gallery[data-columns="5"] {
    grid-template-columns: repeat(5, 1fr);
}

.podconduit-hub-gallery[data-columns="6"] {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1024px) {
    .podconduit-hub-gallery[data-columns="5"],
    .podconduit-hub-gallery[data-columns="6"] {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .podconduit-hub-gallery[data-columns="4"] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .podconduit-hub-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .podconduit-hub-gallery {
        grid-template-columns: 1fr;
    }
}

.podconduit-hub-product-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podconduit-hub-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.podconduit-hub-product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.podconduit-hub-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podconduit-hub-product-info {
    padding: 1rem;
}

.podconduit-hub-product-title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
}

.podconduit-hub-product-price {
    margin: 0 0 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #2c3e50;
}

.podconduit-hub-product-actions {
    display: flex;
    gap: 0.5rem;
}

.podconduit-hub-btn {
    flex: 1;
    display: inline-block;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.podconduit-hub-btn-view {
    background: #f5f5f5;
    color: #333;
}

.podconduit-hub-btn-view:hover {
    background: #e1e1e1;
    color: #000;
}

.podconduit-hub-btn-buy {
    background: #3498db;
    color: #fff;
}

.podconduit-hub-btn-buy:hover {
    background: #2980b9;
    color: #fff;
}
