/* Tabs Product Block Wrapper */
.tabs-product-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    padding: 0 20px;
}

.tab-item {
    padding: 15px 30px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    background: none;
}

.tab-item:hover {
    color: #0e2a52;
}

.tab-item.active {
    color: #0e2a52;
    font-weight: 500;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0e2a52;
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 30px 20px;
}

.tab-content.active {
    display: block;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-card {
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
}

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

.product-img {
    width: 100%;
    height: 180px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.placeholder-img {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0e0e0 25%, #f0f0f0 25%, #f0f0f0 50%, #e0e0e0 50%, #e0e0e0 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
}

.product-name {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 12px;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-inquiry {
    display: inline-block;
    padding: 8px 24px;
    background-color: #0e2a52;
    color: #fff;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-inquiry:hover {
    background-color: #0a1f3d;
}

/* Responsive */
@media (max-width: 1024px) {
    .tabs-product-wrapper {
        margin: 20px 15px;
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tabs-product-wrapper {
        margin: 15px 10px;
    }
    .tab-nav {
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .tab-item {
        padding: 10px 15px;
        font-size: 14px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

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